| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /* subpages/warmReminder/warmReminder.wxss */
- .container {
- min-height: 100vh !important;
- background: #F8F9FA;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .custom-class {
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- }
- .custom-item-class {
- min-height: calc(100vh - 45px) !important;
- }
- .tab-class {
- font-size: 28rpx !important;
- }
- .swipe-page {
- width: 100vw;
- display: flex;
- flex-direction: column;
- }
- .swipe-content {
- margin: 20rpx 30rpx;
- border-radius: 16rpx;
- overflow: hidden;
- width: calc(100% - 60rpx);
- }
- .title-view {
- display: flex;
- flex-direction: row;
- }
- .title-view text {
- font-size: 28rpx;
- flex: 1;
- line-height: 40rpx;
- margin: 0 20rpx;
- color: #333333;
- }
- .title-icon {
- width: 32rpx;
- margin-top: 4rpx;
- line-height: 40rpx;
- height: 32rpx;
- }
- .answer-view-icon {
- width: 32rpx;
- height: 32rpx;
- line-height: 32rpx;
- }
- .answer-view {
- display: flex;
- flex-direction: row;
- }
- .answer-view text {
- flex: 1;
- font-size: 24rpx;
- line-height: 34rpx;
- margin: 0 20rpx;
- color: #666666;
- }
- .van-cell:after {
- border-bottom: 0 !important;
- }
|