warmReminder.wxss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /* subpages/warmReminder/warmReminder.wxss */
  2. .container {
  3. min-height: 100vh !important;
  4. background: #F8F9FA;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. box-sizing: border-box;
  10. }
  11. .custom-class {
  12. min-height: 100vh;
  13. display: flex;
  14. flex-direction: column;
  15. }
  16. .custom-item-class {
  17. min-height: calc(100vh - 45px) !important;
  18. }
  19. .tab-class {
  20. font-size: 28rpx !important;
  21. }
  22. .swipe-page {
  23. width: 100vw;
  24. display: flex;
  25. flex-direction: column;
  26. }
  27. .swipe-content {
  28. margin: 20rpx 30rpx;
  29. border-radius: 16rpx;
  30. overflow: hidden;
  31. width: calc(100% - 60rpx);
  32. }
  33. .title-view {
  34. display: flex;
  35. flex-direction: row;
  36. }
  37. .title-view text {
  38. font-size: 28rpx;
  39. flex: 1;
  40. line-height: 40rpx;
  41. margin: 0 20rpx;
  42. color: #333333;
  43. }
  44. .title-icon {
  45. width: 32rpx;
  46. margin-top: 4rpx;
  47. line-height: 40rpx;
  48. height: 32rpx;
  49. }
  50. .answer-view-icon {
  51. width: 32rpx;
  52. height: 32rpx;
  53. line-height: 32rpx;
  54. }
  55. .answer-view {
  56. display: flex;
  57. flex-direction: row;
  58. }
  59. .answer-view text {
  60. flex: 1;
  61. font-size: 24rpx;
  62. line-height: 34rpx;
  63. margin: 0 20rpx;
  64. color: #666666;
  65. }
  66. .van-cell:after {
  67. border-bottom: 0 !important;
  68. }