1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .content {
- padding: 52rpx 32rpx;
- }
- .content .question checkbox {
- display: inline-block;
- vertical-align: middle;
- margin-bottom: 2px;
- }
- .content .question text {
- font-weight: bold;
- color: #000;
- font-size: 30rpx;
- }
- .btm {
- height: 170rpx;
- position: fixed;
- width: 100%;
- left: 0;
- bottom: 0;
- /* background: #fff; */
- }
- .btm-btn {
- width: 100%;
- height: 84rpx;
- font-size: 36rpx;
- color: #FFFFFF;
- margin: 0 40rpx;
- background: #FA7D22;
- border-radius: 42rpx;
- }
- checkbox .wx-checkbox-input {
- border-radius: 50%;
- width: 46rpx;
- height: 46rpx;
- box-sizing: border-box;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked {
- border: 1rpx solid #f3333e;
- background: #f3333e;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before {
- border-radius: 50%;
- width: 40rpx;
- height: 40rpx;
- line-height: 40rpx;
- text-align: center;
- font-size: 30rpx;
- color: #fff;
- background: transparent;
- transform: translate(-50%, -50%) scale(1);
- -webkit-transform: translate(-50%, -50%) scale(1);
- }
|