12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* pages/member/investigation/investigation.wxss */
- page {
- background: #FFF;
- height: 100%;
- }
- .investigation-container {
- position: relative;
- padding: 20rpx 30rpx 200rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- }
- .tips {
- font-size: 24rpx;
- font-weight: 400;
- color: #999999;
- }
- .questions-detail {
- margin-top: 40rpx;
- }
- .questions-title {
- font-size: 28rpx;
- line-height: 40rpx;
- font-weight: 400;
- color: #000000;
- }
- .questions-box {
- margin-top: 24rpx;
- }
- .questions-box text {
- font-size: 28rpx;
- color: #666;
- }
- .questions-icon {
- width: 48rpx;
- height: 48rpx;
- margin-right: 40rpx;
- }
- .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;
- }
|