| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- /* pages/setting/setting.wxss */
- .setting_card {
- margin: 20rpx 0 0 0;
- }
- .setting_item {
- display: flex;
- align-items: center;
- justify-content: space-between;
- font-size: 28rpx;
- color: #333333;
- background: #ffffff;
- line-height: 120rpx;
- padding: 0 60rpx 0 30rpx;
- border-top: 1px solid #F8F8F8;
- }
- .setting_item:first-child {
- border: none;
- }
- .prem_win {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- display: flex;
- align-items: center;
- justify-content: center;
- z-index: 1;
- background-color: rgba(0, 0, 0, 0.48);
- }
- .prem_win_mid {
- width: 588rpx;
- height: 360rpx;
- text-align: center;
- border-radius: 24rpx;
- background: #ffffff;
- position: relative;
- }
- .prem_win_close {
- position: absolute;
- top: 40rpx;
- right: 45rpx;
- }
- .prem_win_tit {
- font-size: 35rpx;
- color: #222222;
- padding: 87rpx 0 50rpx 0;
- }
- .prem_win_inps {
- display: flex;
- justify-content: center;
- position: absolute;
- bottom: 113rpx;
- left: 0;
- right: 0;
- z-index: 0;
- }
- .prem_win_inps input {
- width: 60rpx;
- height: 60rpx;
- border: 1px solid #CCCCCC;
- margin: 0 6rpx;
- }
- .prem_win_inps input.prem_win_inps_vl {
- font-size: 20rpx;
- border: 1px solid var(--color);
- }
- .prem_win_inpt {
- height: 62rpx;
- opacity: 0;
- position: absolute;
- bottom: 113rpx;
- left: 0;
- right: 0;
- z-index: 1;
- color: transparent;
- }
|