/* package_B/page/changePassword/index.wxss */ .change_container { width: 100vw; height: 100vh; background-color: #F3F4F5; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; } .form_box { width: 100%; height: 100vh; display: flex; flex-direction: column; justify-content: space-between; align-items: center; } .form_item { width: 100vw; border-top: 1rpx solid rgba(204, 204, 204, 0.3); display: flex; justify-content: flex-start; align-items: center; padding-left: 30rpx; background-color: #fff; position: relative; } .form_item:first-child { border-top: none; } .input_label { width: 150rpx; flex-shrink: 0; } .form_item .input_label { color: #333333; font-size: 30rpx; font-weight: bolder; } .change_container .form_item input { height: 100rpx; padding-left: 30rpx; } .tips{ position: absolute; bottom: -10rpx; left: 10rpx; color: red; font-size:26rpx; transform: translate(20rpx,-10rpx); display: none; } .change_container .warning .tips{ display: block; } .reset_password { width: 540rpx; height: 80rpx; box-sizing: border-box; color: #fff; font-weight: normal; background-color: #477DF3; border-radius: 40rpx; position: absolute; bottom: 30rpx; left: 50%; transform: translateX(-50%); }