FitPackageForm.scss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. .com-renew-form{
  2. width:100%;
  3. min-height:500px;
  4. position:relative;
  5. .renew-form{
  6. width:90%;
  7. height:100%;
  8. min-height:500px;
  9. margin:auto;
  10. border-top-right-radius: 10px;
  11. border-top-left-radius: 10px;
  12. background:#FFF;
  13. overflow: hidden;
  14. .renew-top{
  15. height:40px;
  16. background:#a07c5a;
  17. display:flex;
  18. flex-direction: row;
  19. .renew-top-header{
  20. height:100%;
  21. width:20%;
  22. display:flex;
  23. justify-content: center;
  24. align-items: center;
  25. .icon{
  26. width:30px;
  27. height:30px;
  28. border-radius: 50%;
  29. }
  30. }
  31. .renew-top-name{
  32. height:100%;
  33. width:80%;
  34. display:flex;
  35. padding-left:10px;
  36. justify-content: flex-start;
  37. align-items: center;
  38. color:#FFF;
  39. }
  40. }
  41. }
  42. .renew-tips{
  43. height:30px;
  44. display: flex;
  45. justify-content: flex-start;
  46. align-items: center;
  47. margin-top:20px;
  48. .text{
  49. margin-left:20px;
  50. font-weight: bold;
  51. color:#593320;
  52. .txt{
  53. color:#b21c1c;
  54. }
  55. }
  56. }
  57. .renew-list{
  58. margin-left:10px;
  59. margin-right: 10px;
  60. display: flex;
  61. flex-direction: row;
  62. overflow-y: auto;
  63. overflow-x: auto;
  64. padding-top:20px;
  65. height:240px;
  66. .list-items{
  67. display: flex;
  68. flex-direction: row;
  69. .item{
  70. width:180px;
  71. // height:220px;
  72. border:1px solid #CCC;
  73. margin-right:10px;
  74. border-radius: 10px;
  75. position:relative;
  76. background:#faf9fa;
  77. display:flex;
  78. overflow: hidden;
  79. flex-direction: column;
  80. .active{
  81. position:absolute;
  82. right:0px;
  83. top:0px;
  84. z-index:999;
  85. background:#FFF;
  86. border-radius: 50%;;
  87. }
  88. .tips{
  89. display: flex;
  90. justify-content: center;
  91. align-items: center;
  92. background:#b21c1c;
  93. border-bottom-right-radius: 20px;
  94. color:#FFF;
  95. width:100px;
  96. height:25px;
  97. line-height: 25px;
  98. overflow: hidden;
  99. left:0px;
  100. top:0px;
  101. position:absolute;
  102. z-index:99;
  103. }
  104. .item-img{
  105. padding-top:30px;
  106. .package-img{
  107. width:100%;
  108. height:160px;
  109. }
  110. .bottomBg{
  111. border-bottom:1px dashed #a1a1a1;
  112. }
  113. .vip-list{
  114. display:flex;
  115. width:95%;
  116. margin-left:5px;
  117. margin-right:5px;
  118. flex-direction: column;
  119. border:1px solid red;
  120. .vip-item{
  121. display:flex;
  122. flex-direction: row;
  123. border:1px solid red;
  124. min-height:30px;
  125. line-height: 30px;
  126. font-size:12px;
  127. .vip-img{
  128. display:flex;
  129. width:10%;
  130. height:100%;
  131. justify-content:center;
  132. align-items: center;
  133. .img{
  134. width:24px;
  135. height:18px;
  136. margin-top:10px;
  137. }
  138. }
  139. .vip-content{
  140. display:flex;
  141. width:90%;
  142. height:100%;
  143. flex-direction: column;
  144. justify-content: flex-start;
  145. align-items: center;
  146. .content-item{
  147. display:flex;
  148. flex-direction: row;
  149. width:100%;
  150. height:100%;
  151. justify-content: flex-start;
  152. align-items: center;
  153. .vip-item-cap{
  154. display:flex;
  155. width:50%;
  156. height:100%;
  157. justify-content: flex-start;
  158. align-items: center;
  159. margin-left:10px;
  160. }
  161. .vip-item-text{
  162. display:flex;
  163. width:70%;
  164. height:100%;
  165. margin-right: 10px;
  166. justify-content: flex-end;
  167. align-items: center;
  168. }
  169. }
  170. }
  171. }
  172. }
  173. }
  174. .item-price{
  175. background:#CCC;
  176. height:40px;
  177. display: flex;
  178. flex-direction: row;
  179. justify-content: center;
  180. align-items: center;
  181. color:#FFF;
  182. border-bottom-left-radius: 10px;
  183. border-bottom-right-radius: 10px;
  184. .price{
  185. font-size:18px;
  186. .sign{
  187. font-size:12px;
  188. }
  189. }
  190. }
  191. }
  192. .actived{
  193. border:1px solid #b21c1c!important;
  194. .item-price{
  195. background:#b21c1c!important;
  196. }
  197. }
  198. }
  199. }
  200. .renew-btns{
  201. width:100%;
  202. display: flex;
  203. justify-content: center;
  204. align-items: center;
  205. margin-top:20px;
  206. .btn-pay{
  207. width:200px;
  208. height:30px;
  209. display: flex;
  210. justify-content: center;
  211. align-items: center;
  212. border-radius: 10px;
  213. background:#b21c1c;
  214. padding:0px;
  215. border:none;
  216. color:#FFF;
  217. line-height: 30px;
  218. font-size:14px;
  219. }
  220. }
  221. .letter{
  222. background: url(/static/images/letter.png) no-repeat;
  223. height:120px;
  224. position:absolute;
  225. width:100%;
  226. bottom:0px;
  227. left:0px;
  228. }
  229. }