|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* package_mine/pages/userInfo/index.wxss */
- .form_container {
- width: 100%;
- padding: 30rpx;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: center;
- }
- .upload_box {
- margin-bottom: 130rpx;
- position: relative;
- }
- .image_item {
- width: 200rpx;
- height: 200rpx;
- border-radius: 50%;
-
- }
- .upload_img {
- width: 80rpx;
- height: 80rpx;
- position: absolute;
- right: -10rpx;
- bottom: -10rpx;
- }
- .form_item {
- width: 100%;
- padding: 30rpx 0;
- margin-bottom: 30rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- position: relative;
- font-size: 30rpx;
- color: #666666;
- border-bottom: 1rpx solid #EDEDED;
- }
- .value_box {
- width: 420rpx;
- /* min-height: 68rpx; */
- padding: 0 55rpx 0 20rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- border-radius: 34rpx;
- position: relative;
- color: #333333;
- font-size: 26rpx;
- }
- .tips{
- position: absolute;
- bottom: -40rpx;
- left: -13rpx;
- color: red;
- font-size: 24rpx;
- transform: translate(27rpx, -5rpx);
- display: none;
- }
- .form_item.warning .tips, .upload_box.warning .tips{
- display: block;
- }
-
-
- /* 按钮区 */
- .btn_list {
- width: 100%;
- margin-top: 500rpx;
- padding: 10rpx 0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .btn_item {
- width: 100%;
- height: 90rpx;
- border-radius: 40rpx;
- text-align: center;
- line-height: 80rpx;
- font-size: 32rpx;
- }
-
- .submit_btn {
- color: #ffffff;
- background-color: #3275E9;
- }
|