coupon.wxss 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page,
  12. .content {
  13. background: #f8f6f6;
  14. height: 100%;
  15. }
  16. .navbar {
  17. display: -webkit-box;
  18. display: -webkit-flex;
  19. display: flex;
  20. height: 40px;
  21. padding: 0 5px;
  22. background: #fff;
  23. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  24. position: relative;
  25. z-index: 10;
  26. }
  27. .navbar .nav-item {
  28. -webkit-box-flex: 1;
  29. -webkit-flex: 1;
  30. flex: 1;
  31. display: -webkit-box;
  32. display: -webkit-flex;
  33. display: flex;
  34. -webkit-box-pack: center;
  35. -webkit-justify-content: center;
  36. justify-content: center;
  37. -webkit-box-align: center;
  38. -webkit-align-items: center;
  39. align-items: center;
  40. height: 100%;
  41. font-size: 15px;
  42. color: #303133;
  43. position: relative;
  44. }
  45. .navbar .nav-item.current {
  46. color: #bc253a;
  47. }
  48. .navbar .nav-item.current:after {
  49. content: '';
  50. position: absolute;
  51. left: 50%;
  52. bottom: 0;
  53. -webkit-transform: translateX(-50%);
  54. transform: translateX(-50%);
  55. width: 44px;
  56. height: 0;
  57. border-bottom: 2px solid #bc253a;
  58. }
  59. .swiper-box {
  60. height: calc(100% - 40px);
  61. }
  62. .swiper-box .tab-content {
  63. padding: 25rpx 0px;
  64. font-size: 28rpx;
  65. color: #1b1b1b;
  66. }
  67. .row {
  68. border-radius: 15rpx;
  69. margin: 0 25rpx;
  70. margin-bottom: 25rpx;
  71. height: 200rpx;
  72. overflow: hidden;
  73. background-color: #ffffff;
  74. }
  75. .row .list-interval {
  76. border: 1px dashed #ebeef5;
  77. height: 100%;
  78. }
  79. .row .list-interval .top,
  80. .row .list-interval .bottom {
  81. border-radius: 100rpx;
  82. width: 30rpx;
  83. height: 30rpx;
  84. position: absolute;
  85. background-color: #f8f6f6;
  86. right: -15rpx;
  87. }
  88. .row .list-interval .top {
  89. top: -18rpx;
  90. }
  91. .row .list-interval .bottom {
  92. bottom: -18rpx;
  93. }
  94. .row .list-money {
  95. height: 100%;
  96. }
  97. .row .list-money image {
  98. height: 100%;
  99. width: 20rpx;
  100. }
  101. .row .list-money .list-money-text {
  102. width: 220rpx;
  103. padding: 0 25rpx;
  104. text-align: center;
  105. color: #909399;
  106. }
  107. .row .list-money .list-money-text .tit {
  108. padding: 15rpx 0rpx;
  109. font-size: 55rpx;
  110. font-weight: bold;
  111. }
  112. .row .list-money .list-money-text .tit.action {
  113. color: #fc4141;
  114. }
  115. .row .list-money .list-money-text .price {
  116. padding-bottom: 25rpx;
  117. }
  118. .row .row_list_right {
  119. -webkit-box-flex: 1;
  120. -webkit-flex-grow: 1;
  121. flex-grow: 1;
  122. padding-left: 25rpx;
  123. line-height: 1;
  124. }
  125. .row .row_list_right .right_time {
  126. color: #909399;
  127. font-size: 24rpx;
  128. }
  129. .row .row_list_right .right_use {
  130. margin: 15rpx 0;
  131. padding: 10rpx;
  132. width: 140rpx;
  133. text_align: center;
  134. border-radius: 50rpx;
  135. color: #fff;
  136. font-size: 20rpx;
  137. }
  138. .row .row_list_right .right_use.action {
  139. background-color: #fc4141;
  140. }
  141. .row .row_list_right .right_use.noAction {
  142. background-color: #999999;
  143. }
  144. .row .row_list_right .right_top {
  145. margin: 15rpx 0;
  146. font-size: 32rpx;
  147. height: 50rpx;
  148. color: #909399;
  149. }
  150. .row .row_list_right .right_top .right_name {
  151. font-weight: bold;
  152. }
  153. .row .row_list_right .right_top .right_title {
  154. font-weight: bold;
  155. }
  156. .row .row_list_right .right_top .right_title.action {
  157. color: #606266;
  158. }
  159. .row .iconlocation {
  160. font-size: 36rpx;
  161. color: #909399;
  162. }
  163. .uni-load-more {
  164. display: -webkit-box;
  165. display: -webkit-flex;
  166. display: flex;
  167. -webkit-box-orient: horizontal;
  168. -webkit-box-direction: normal;
  169. -webkit-flex-direction: row;
  170. flex-direction: row;
  171. height: 80rpx;
  172. -webkit-box-align: center;
  173. -webkit-align-items: center;
  174. align-items: center;
  175. -webkit-box-pack: center;
  176. -webkit-justify-content: center;
  177. justify-content: center;
  178. }