1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- .header {
- height: 90rpx;
- line-height: 90rpx;
- width: 100vw;
- text-align: center;
- font-size: 28rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- border-bottom: 1rpx solid #dddddd;
- box-sizing: border-box;
- position: fixed;
- top: 0;
- }
- .checkbox {
- height: 160rpx;
- border-bottom: 2rpx solid #ddd;
- box-sizing: border-box;
- padding-left: 30rpx;
- overflow: hidden;
- }
- .label-class {
- width: 85%;
- height: 100%;
- margin-left: 30rpx;
- padding-left: 0;
- }
- .label {
- margin-top: 20rpx;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- margin-bottom: 10rpx;
- }
- .check-text {
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #999999;
- }
- .footer {
- position: fixed;
- display: flex;
- align-items: center;
- justify-content: space-around;
- height: 110rpx;
- width: 100vw;
- bottom: 0;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- .but {
- width: 400rpx;
- height: 90rpx;
- background: #3874F6;
- border-radius: 100rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- line-height: 44px;
- }
- }
|