| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- .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: 80rpx;
- border-bottom: 2rpx solid #ddd;
- box-sizing: border-box;
- padding-left: 30rpx;
- overflow: hidden;
- }
- .label-class {
- width: 85%;
- line-height: 80rpx;
- margin-left: 30rpx;
- padding-left: 0;
- font-size: 28rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- color: #000000;
- }
- .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;
- }
- }
|