123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- @import "../index.wxss";
- checkbox .wx-checkbox-input{
- border-radius: 50%;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- border-radius: 50%;
- border: 1px solid #03C29D;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
- content: '';
- width: 40rpx;
- height: 40rpx;
- border-radius: 50%;
- text-align: center;
- background-color: #03C29D;
- }
- .banner {
- width: 750rpx;
- height: 220rpx;
- display: block;
- }
- .picker-view {
- width: 100%;
- height: 100rpx;
- border-radius: 0;
- }
- .deduct-tips {
- width: 100%;
- height: 96rpx;
- display: flex;
- }
- .deduct-tips>text {
- font-family: PingFangSC-Regular;
- font-size: 28rpx;
- color: #666666;
- margin-top: 36rpx;
- margin-left: 30rpx;
- }
- .bottom-view,
- .bottom-view-X {
- background-color: white;
- position: fixed;
- bottom: 0;
- width: 100%;
- display: flex;
- height: 120rpx;
- }
- .bottom-view-X {
- height: 176rpx;
- }
- .bottom-content-view {
- width: 100%;
- height: 120rpx;
- display: flex;
- flex-direction: row;
- }
- .bottom-content-view>text:first-child {
- font-family: PingFangSC-Regular;
- font-size: 30rpx;
- color: #333333;
- line-height: 108rpx;
- margin-left: 30rpx;
- }
- .bottom-content-view>text:nth-child(2) {
- font-family: PingFangSC-Semibold;
- font-size: 40rpx;
- color: #FF5D4F;
- line-height: 108rpx;
- margin-left: 4rpx;
- }
- .bottom-content-view>view {
- width: 240rpx;
- height: 88rpx;
- background: #03C29D;
- border-radius: 10rpx;
- font-family: PingFangSC-Semibold;
- font-size: 34rpx;
- line-height: 88rpx;
- text-align: center;
- color: #FFFFFF;
- margin: auto 30rpx auto auto;
- }
- .group {
- -webkit-tap-highlight-color: transparent;
- display: inline-block;
- margin: auto 30rpx auto auto;
- }
- checkbox {
- -webkit-tap-highlight-color: transparent;
- display: inline-block;
- }
- .input-view>text{
- font-family: PingFangSC-Regular;
- font-size: 32rpx;
- color: #333333;
- line-height: 100rpx;
- margin-left: 60rpx;
- }
- input {
- font-size: 32rpx;
- }
|