123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- /* pages/real-name-authentication/real-name-authentication.wxss */
- page {
- background-color: #F5F6FA;
- }
- .module {
- width: 100%;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- flex-direction: column;
- background-color: #fff;
- margin: 20rpx 0;
- }
- .module-label {
- width: 100%;
- color: #333333;
- font-weight: 500;
- font-size: 28rpx;
- padding: 28rpx 0 16rpx;
- }
- .form-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- }
- .form-row {
- width: 100%;
- height: 84rpx;
- display: flex;
- align-items: center;
- border-bottom: 1px solid #ECECEC;
- box-sizing: border-box;
- }
- .form-row:last-child {
- border-bottom: none;
- }
- .form-input {
- flex: 1;
- font-size: 26rpx;
- }
- .placeholder {
- color: #999999;
- }
- .form-label {
- width: 170rpx;
- color: #333333;
- font-size: 28rpx;
- }
- .btn-box {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 40rpx 30rpx;
- box-sizing: border-box;
- }
- .btn-box button {
- width: 100%;
- height: 84rpx;
- line-height: 84rpx;
- background-color: #2B86FF;
- border-radius: 8rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 34rpx;
- font-weight: 500;
- color: #fff;
- }
- /* 弹窗 */
- .mask {
- width: 100%;
- height: 100vh;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- background: rgba(0, 0, 0, 0.4);
- }
- .window {
- width: calc(100% - 120rpx);
- height: 360rpx;
- overflow: hidden;
- position: fixed;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- z-index: 99999;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- background-color: #fff;
- border-radius: 24rpx;
- }
- .window-title {
- color: #333333;
- font-size: 48rpx;
- font-weight: bold;
- margin-bottom: 14rpx;
- }
- .window-msg {
- color: #999999;
- font-size: 30rpx;
- }
- .window-btn-box {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin-top: 55rpx;
- }
- .window-btn-box>button {
- width: 250rpx;
- height: 76rpx;
- line-height: 76rpx;
- background-color: #2B86FF;
- border-radius: 8rpx;
- color: #FFFFFF;
- font-size: 34rpx;
- }
|