remind.wxss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .container.data-v-9bbd684a {
  2. min-height: 100vh;
  3. background-color: #F8F9FB;
  4. display: flex;
  5. flex-direction: column;
  6. }
  7. .content.data-v-9bbd684a {
  8. flex: 1;
  9. padding: 30rpx 40rpx;
  10. position: relative;
  11. overflow: hidden;
  12. }
  13. .loading-tip.data-v-9bbd684a {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. padding: 80rpx 0;
  18. font-size: 28rpx;
  19. color: #999;
  20. }
  21. .decor-bg.data-v-9bbd684a {
  22. position: absolute;
  23. top: -100rpx;
  24. right: -100rpx;
  25. width: 400rpx;
  26. height: 400rpx;
  27. background: radial-gradient(circle, rgba(31, 108, 255, 0.05) 0%, transparent 70%);
  28. z-index: 0;
  29. }
  30. .info-card.data-v-9bbd684a {
  31. background: #FFF;
  32. border-radius: 32rpx;
  33. padding: 40rpx;
  34. box-shadow: 0 8rpx 30rpx rgba(0, 0, 0, 0.02);
  35. position: relative;
  36. z-index: 1;
  37. }
  38. .info-list.data-v-9bbd684a {
  39. display: flex;
  40. flex-direction: column;
  41. }
  42. .info-item.data-v-9bbd684a {
  43. display: flex;
  44. align-items: center;
  45. padding: 36rpx 0;
  46. border-bottom: 2rpx solid #F5F7FA;
  47. }
  48. .info-item.border-none.data-v-9bbd684a {
  49. border-bottom: none;
  50. }
  51. .info-item .label-wrap.data-v-9bbd684a {
  52. display: flex;
  53. align-items: center;
  54. width: 200rpx;
  55. flex-shrink: 0;
  56. }
  57. .info-item .label-wrap .dot.data-v-9bbd684a {
  58. width: 8rpx;
  59. height: 8rpx;
  60. background: #1F6CFF;
  61. border-radius: 50%;
  62. margin-right: 16rpx;
  63. }
  64. .info-item .label-wrap .label.data-v-9bbd684a {
  65. font-size: 30rpx;
  66. color: #666;
  67. font-weight: 500;
  68. }
  69. .info-item .value.data-v-9bbd684a {
  70. font-size: 30rpx;
  71. color: #1A1A1A;
  72. font-weight: bold;
  73. flex: 1;
  74. }
  75. .info-item .value-group.data-v-9bbd684a {
  76. display: flex;
  77. flex-direction: column;
  78. gap: 8rpx;
  79. }
  80. .info-item .value-group .sub-value.data-v-9bbd684a {
  81. font-size: 24rpx;
  82. color: #999;
  83. font-weight: normal;
  84. }
  85. .action-area.data-v-9bbd684a {
  86. margin-top: 80rpx;
  87. display: flex;
  88. flex-direction: column;
  89. align-items: center;
  90. position: relative;
  91. z-index: 1;
  92. }
  93. .action-area .start-btn.data-v-9bbd684a {
  94. width: 100%;
  95. height: 100rpx;
  96. background: linear-gradient(135deg, #1F6CFF 0%, #0056FF 100%);
  97. color: #FFFFFF;
  98. border-radius: 50rpx;
  99. display: flex;
  100. align-items: center;
  101. justify-content: center;
  102. font-size: 32rpx;
  103. font-weight: bold;
  104. box-shadow: 0 12rpx 24rpx rgba(31, 108, 255, 0.2);
  105. margin-bottom: 30rpx;
  106. }
  107. .action-area .start-btn.data-v-9bbd684a::after {
  108. border: none;
  109. }
  110. .action-area .start-btn.data-v-9bbd684a:active {
  111. transform: scale(0.98);
  112. opacity: 0.9;
  113. }
  114. .action-area .bottom-tip.data-v-9bbd684a {
  115. font-size: 24rpx;
  116. color: #999;
  117. }