member.css 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. body {
  2. color: #515a6e;
  3. font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, \\5FAE\8F6F\96C5\9ED1, Arial, sans-serif;
  4. }
  5. p {
  6. margin: 0;
  7. }
  8. .v-title{
  9. position: absolute;
  10. bottom: 0;
  11. left: 0;
  12. background-color: #4c4c50;
  13. color: #fabf64;
  14. width: 150px;
  15. height: 50px;
  16. line-height: 50px;
  17. text-align: center;
  18. font-weight: 600;
  19. border-top-left-radius: 10px;
  20. border-top-right-radius:10px;
  21. }
  22. /* 会员中心 */
  23. .vip-model {
  24. display: flex;
  25. flex-wrap: nowrap;
  26. justify-content: flex-start;
  27. font-size: 14px;
  28. position: relative;
  29. margin-top: 10px;
  30. padding-top: 20px;
  31. }
  32. .v-left {
  33. width: 320px;
  34. border-right: 1px solid #f8f8f8;
  35. padding: 0 20px;
  36. }
  37. .v-left .v-name {
  38. font-size: 16px;
  39. font-weight: 600;
  40. margin-bottom: 10px;
  41. }
  42. .v-left .v-logo {
  43. width: 100px;
  44. height: 100px;
  45. border-radius: 100px;
  46. border: 1px solid #ddd;
  47. }
  48. .v-left .vip-interest {
  49. margin: 20px 0;
  50. line-height: 2.8;
  51. }
  52. .v-left .vip-title {
  53. font-size: 24px;
  54. font-weight: 600;
  55. color: #ed4014;
  56. }
  57. .v-right {
  58. flex: 1;
  59. padding: 0 16px;
  60. }
  61. .vip-list {
  62. display: flex;
  63. flex-wrap: nowrap;
  64. justify-content: space-around;
  65. }
  66. .vip-list .vip-item {
  67. width: 150px;
  68. font-weight: 600;
  69. border-radius: 10px;
  70. text-align: center;
  71. padding-bottom: 10px;
  72. cursor: pointer;
  73. margin-bottom: 12px;
  74. position: relative;
  75. box-shadow: 1px 1px 2px #ddd, -1px -1px 2px #ddd;
  76. }
  77. .vip-list .vip-item.active {
  78. color: #4c4c50;
  79. background: linear-gradient(to bottom, #fabf6440, #fabf64);
  80. }
  81. .vip-list .vip-item.active .vip-red {
  82. color: #ed4014;
  83. }
  84. .vip-list .vip-name {
  85. font-size: 16px;
  86. padding: 10px 0;
  87. }
  88. .vip-list .vip-price {
  89. font-size: 14px;
  90. margin-bottom: 15px;
  91. }
  92. .vip-list .vip-market-price {
  93. margin-left: 10px;
  94. text-decoration: line-through;
  95. opacity: 0.8;
  96. }
  97. .vip-list .price-value {
  98. font-size: 26px;
  99. font-weight: 600;
  100. margin-left: 3px;
  101. }
  102. .vip-list .vip-desc {
  103. color: #999;
  104. font-size: 12px;
  105. }
  106. .vip-list .vip-red {
  107. color: #e12424;
  108. font-weight: 600;
  109. }
  110. .vip-tips {
  111. color: #999;
  112. font-size: 12px;
  113. margin: 10px 0;
  114. text-align: center;
  115. position: relative;
  116. }
  117. .vip-tips::before {
  118. content: '';
  119. position: absolute;
  120. width: 25%;
  121. height: 1px;
  122. top: 0;
  123. bottom: 0;
  124. left: 5%;
  125. margin: auto;
  126. background-color: #f8f8f8;
  127. }
  128. .vip-tips::after {
  129. content: '';
  130. position: absolute;
  131. width: 25%;
  132. height: 1px;
  133. top: 0;
  134. bottom: 0;
  135. right: 5%;
  136. margin: auto;
  137. background-color: #f8f8f8;
  138. }
  139. .pay-line .pay-icon {
  140. width: 25px;
  141. height: 25px;
  142. }
  143. .pay-tips {
  144. color: #e12424;
  145. font-weight: 600;
  146. font-size: 12px;
  147. margin-top: 8px;
  148. }
  149. .pay-item {
  150. border: 1px solid #ddd;
  151. padding: 0 15px;
  152. border-radius: 5px;
  153. cursor: pointer;
  154. height: 35px;
  155. margin-right: 15px;
  156. }
  157. .pay-item .iconfont {
  158. margin-right: 5px;
  159. }
  160. .pay-item .icon-zhifubaozhifu {
  161. color: #027AFF;
  162. }
  163. .pay-item .icon-weixinzhifu {
  164. color: #62b900;
  165. }
  166. .pay-cont {
  167. padding: 10px;
  168. display: flex;
  169. flex-wrap: nowrap;
  170. justify-content: flex-start;
  171. }
  172. .pay-cont .pay-img {
  173. width: 150px;
  174. height: 150px;
  175. background-color: #eee;
  176. position: relative;
  177. }
  178. .pay-cont .pay-desc {
  179. padding-left: 20px;
  180. line-height: 2.2;
  181. font-size: 14px;
  182. }
  183. .pay-cont .iconfont {
  184. vertical-align: middle;
  185. font-size: 16px;
  186. margin: 0 5px 0 10px;
  187. }
  188. .iconfont {
  189. vertical-align: middle;
  190. }
  191. .dis-agreement {
  192. display: none;
  193. text-align: center;
  194. height: 170px;
  195. line-height: 170px;
  196. font-size: 18px;
  197. font-weight: 600;
  198. color: #ed4014;
  199. }
  200. .pay-agreement {
  201. margin-top: 5px;
  202. }
  203. .pay-agreement span {
  204. font-size: 12px;
  205. color: #999;
  206. margin: 0 !important;
  207. }
  208. .agreement-txt {
  209. cursor: pointer;
  210. }
  211. .agreement-txt:hover {
  212. color: #ed4014;
  213. }
  214. .money-color {
  215. color: #ed4014;
  216. font-size: 30px;
  217. font-weight: 600;
  218. margin-left: 2px;
  219. }
  220. .vip-banner {
  221. background-color: #eee;
  222. height: 60px;
  223. width: 100%;
  224. margin-bottom: 10px;
  225. border-radius: 30px;
  226. }
  227. .font-12 {
  228. font-size: 12px !important;
  229. }
  230. .font-13 {
  231. font-size: 13px !important;
  232. }
  233. .open-member {
  234. width: 100px;
  235. height: 24px;
  236. border-radius: 24px;
  237. vertical-align: middle;
  238. cursor: pointer;
  239. margin-right: 10px;
  240. }
  241. .vip-top {
  242. height: 70px;
  243. background: url('/static/logo/v-topbgs.png') no-repeat center center;
  244. margin: 0 0 8px 0;
  245. display: flex;
  246. flex-wrap: nowrap;
  247. justify-content: flex-end;
  248. padding: 10px 40px;
  249. color: #333;
  250. position: relative;
  251. }
  252. .vip-top .vt-logo {
  253. width: 50px;
  254. height: 50px;
  255. border-radius: 50px;
  256. border: 1px solid #eee;
  257. margin-right: 10px;
  258. }
  259. .vip-top .vt-name {
  260. font-size: 16px;
  261. font-weight: 600;
  262. padding-top: 5px;
  263. margin: 0;
  264. }
  265. .il-vip {
  266. text-align: center;
  267. }
  268. .il-vip img {
  269. width: 40px;
  270. height: 40px;
  271. }
  272. .il-interest {
  273. line-height: 3.8;
  274. text-align: left;
  275. font-size: 14px;
  276. font-weight: 600;
  277. position: relative;
  278. display: flex;
  279. flex-wrap: wrap;
  280. justify-content: space-between;
  281. }
  282. .il-interest .il-item {
  283. width: 50%;
  284. }
  285. .il-interest .il-item img {
  286. width: 35px;
  287. height: 35px;
  288. }
  289. .member-model {
  290. line-height: 1.8;
  291. padding: 10px;
  292. display: none;
  293. position: absolute;
  294. left: 0;
  295. top: 0;
  296. z-index: 3;
  297. background-color: #fff;
  298. }
  299. .member-model .member-btn {
  300. text-align: right;
  301. margin-top: 20px;
  302. }
  303. .agreement-content {
  304. height: 500px;
  305. overflow: auto;
  306. text-indent: 2em;
  307. }
  308. .agreement-content .font-600 {
  309. font-weight: 600;
  310. font-size: 18px;
  311. }
  312. .member-btn button {
  313. background-color: #F56C6C;
  314. border: 1px solid transparent;
  315. border-color: #F56C6C;
  316. font-size: 14px;
  317. border-radius: 4px;
  318. padding: 0 15px;
  319. height: 32px;
  320. color: #fff;
  321. }
  322. .member-btn button:hover {
  323. background-color: #F56C6C90;
  324. border-color: #F56C6C90;
  325. }
  326. .i-cost {
  327. position: absolute;
  328. width: 30px;
  329. top: -10px;
  330. left: 5px;
  331. }
  332. .coupon-modal {
  333. position: absolute;
  334. bottom: 0;
  335. right: 0;
  336. background: #ed4014;
  337. padding: 20px;
  338. z-index: 2;
  339. font-size: 12px;
  340. color: #999;
  341. border-radius: 10px;
  342. display: none;
  343. }
  344. .coupon-bg {
  345. background: #fff;
  346. border-radius: 10px;
  347. padding: 10px 20px;
  348. }
  349. .coupon-price {
  350. color: #ed4014;
  351. font-size: 26px;
  352. font-weight: 600;
  353. }
  354. .coupon-desc {
  355. font-size: 14px;
  356. }
  357. .coupon-tips {
  358. border-top: 1px dashed #ddd;
  359. margin-top: 10px;
  360. padding-top: 10px;
  361. font-size: 12px;
  362. }
  363. .coupon-close {
  364. position: absolute;
  365. left: 0px;
  366. top: 0;
  367. line-height: 1;
  368. color: #fff;
  369. font-size: 30px;
  370. transform: rotateZ(45deg);
  371. cursor: pointer;
  372. }