index.scss 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519
  1. .commission-wrap {
  2. background: url('http://file.shopro.top/imgs/commission/commission_bg1.jpg') no-repeat;
  3. background-size: cover;
  4. height: 100%;
  5. width: 100%;
  6. position: absolute;
  7. background-position: 50%;
  8. transition: all 0.3s ease-in-out 0s;
  9. overflow: hidden;
  10. // padding-right: 30rpx;
  11. }
  12. // 进度条
  13. .progress-box {
  14. .progress-tip {
  15. font-size: 24rpx;
  16. font-weight: 500;
  17. color: #c7b2ff;
  18. }
  19. .progress-num {
  20. font-size: 24rpx;
  21. position: absolute;
  22. color: #c7b2ff;
  23. bottom: -30rpx;
  24. white-space: nowrap;
  25. }
  26. .round-wrap {
  27. width: 30rpx;
  28. height: 30rpx;
  29. border: 2rpx solid #5c3cff;
  30. background: linear-gradient(0deg, #a36fff 0%, #846fff 100%);
  31. border-radius: 50%;
  32. position: absolute;
  33. bottom: -6rpx;
  34. transform: translateY(-50%);
  35. left: 0;
  36. margin-left: -15rpx;
  37. .round-inner {
  38. width: 20rpx;
  39. height: 20rpx;
  40. border: 2rpx solid #5c3cff;
  41. background: linear-gradient(0deg, #a36fff 0%, #846fff 100%);
  42. border-radius: 50%;
  43. position: absolute;
  44. top: 50%;
  45. left: 50%;
  46. transform: translate(-50%, -50%);
  47. }
  48. }
  49. }
  50. // 佣金中心权限验证蒙层
  51. .blur {
  52. filter: blur(20rpx);
  53. transition: all 0.3s ease-in-out 0s;
  54. }
  55. .auth-box {
  56. width: 100%;
  57. height: 100%;
  58. background: none;
  59. .notice-box {
  60. display: flex;
  61. flex-direction: column;
  62. justify-content: center;
  63. align-items: center;
  64. background-color: #fff;
  65. width: 612rpx;
  66. min-height: 658rpx;
  67. background: #ffffff;
  68. padding: 30rpx;
  69. border-radius: 20rpx;
  70. .img-wrap {
  71. margin-bottom: 50rpx;
  72. .notice-img {
  73. width: 180rpx;
  74. height: 170rpx;
  75. }
  76. }
  77. .notice-title {
  78. font-size: 35rpx;
  79. font-weight: bold;
  80. color: #46351b;
  81. margin-bottom: 28rpx;
  82. }
  83. .notice-detail {
  84. font-size: 28rpx;
  85. font-weight: 400;
  86. color: #999999;
  87. line-height: 36rpx;
  88. margin-bottom: 50rpx;
  89. }
  90. .notice-btn {
  91. width: 492rpx;
  92. line-height: 70rpx;
  93. background: linear-gradient(-90deg, #a36fff, #5336ff);
  94. box-shadow: 0px 7rpx 11rpx 2rpx rgba(124, 103, 214, 0.34);
  95. border-radius: 35rpx;
  96. font-size: 28rpx;
  97. font-weight: 500;
  98. color: #ffffff;
  99. margin-bottom: 10rpx;
  100. }
  101. .back-btn {
  102. width: 492rpx;
  103. line-height: 70rpx;
  104. font-size: 28rpx;
  105. font-weight: 500;
  106. color: #c5b8fb;
  107. background: none;
  108. }
  109. }
  110. }
  111. // 成为分销商
  112. .into-agent-modal {
  113. .condition-box {
  114. width: 640rpx;
  115. height: 786rpx;
  116. background: url('http://file.shopro.top/imgs/commission/into_commission.png') no-repeat;
  117. background-size: 100% 100%;
  118. }
  119. .goods-condition {
  120. width: 484rpx;
  121. height: 580rpx;
  122. padding: 80rpx 0 30rpx;
  123. display: flex;
  124. flex-direction: column;
  125. justify-content: center;
  126. align-items: center;
  127. position: relative;
  128. .card-wrap {
  129. width: 484rpx;
  130. height: 460rpx;
  131. padding: 10rpx;
  132. padding-bottom: 30rpx;
  133. }
  134. .modal-progress {
  135. .progress-tip {
  136. font-size: 24rpx;
  137. }
  138. .progress-box {
  139. margin-right: 10rpx;
  140. .cu-progress {
  141. width: 200rpx;
  142. position: relative;
  143. .round-wrap {
  144. width: 20rpx;
  145. height: 20rpx;
  146. }
  147. .round-inner {
  148. width: 10rpx;
  149. height: 10rpx;
  150. }
  151. }
  152. }
  153. }
  154. .card-box {
  155. background: rgba(#c3b6ff, 0.3);
  156. padding: 10rpx;
  157. border-radius: 10rpx;
  158. .img-wrap {
  159. background: #fff;
  160. width: 110rpx;
  161. height: 110rpx;
  162. border-radius: 10rpx;
  163. margin-right: 20rpx;
  164. .goods-img {
  165. width: 110rpx;
  166. height: 110rpx;
  167. border-radius: 10rpx;
  168. }
  169. }
  170. .detail {
  171. height: 110rpx;
  172. width: 280rpx;
  173. align-items: flex-start;
  174. .title {
  175. font-size: 20rpx;
  176. font-weight: 500;
  177. color: #333333;
  178. line-height: 35rpx;
  179. text-align: left;
  180. }
  181. .sub {
  182. font-size: 16rpx;
  183. font-weight: 500;
  184. color: #9281e2;
  185. text-align: left;
  186. width: 280rpx;
  187. }
  188. }
  189. }
  190. .filter-card {
  191. filter: grayscale(100%);
  192. filter: gray;
  193. }
  194. .btn-box {
  195. background-color: #fff;
  196. width: 100%;
  197. position: absolute;
  198. bottom: 0;
  199. .buy-btn {
  200. width: 390rpx;
  201. line-height: 60rpx;
  202. background: linear-gradient(-90deg, #a36fff, #5336ff);
  203. box-shadow: 0px 7rpx 11rpx 2rpx rgba(124, 103, 214, 0.34);
  204. border-radius: 35rpx;
  205. font-size: 24rpx;
  206. font-weight: 500;
  207. color: #ffffff;
  208. }
  209. .tips {
  210. font-size: 20rpx;
  211. font-weight: 500;
  212. color: #9281e2;
  213. }
  214. }
  215. }
  216. }
  217. // 用户资料卡片
  218. .user-card {
  219. // width: 690rpx;
  220. // width: 97%;
  221. min-height: 350rpx;
  222. border-radius: 14rpx;
  223. margin: 30rpx;
  224. background: url('http://file.shopro.top/imgs/commission/commission_card_bg.png') no-repeat;
  225. // background: url('@/static/images/default.jpg') no-repeat;
  226. background-size: 100% 100%;
  227. padding-top: 10rpx;
  228. .card-top {
  229. padding: 40rpx 40rpx 30rpx;
  230. margin-bottom: 30rpx;
  231. border-bottom: 1px solid rgba(#fff, 0.12);
  232. .user-name {
  233. font-size: 26rpx;
  234. font-weight: 500;
  235. color: #ffffff;
  236. line-height: 30rpx;
  237. margin-bottom: 20rpx;
  238. }
  239. .log-btn {
  240. width: 86rpx;
  241. line-height: 41rpx;
  242. border: 1rpx solid rgba(#ffffff, 0.33);
  243. border-radius: 32rpx;
  244. font-size: 22rpx;
  245. font-weight: 400;
  246. color: #ffffff;
  247. }
  248. .look-btn {
  249. color: #fff;
  250. font-size: 40rpx;
  251. }
  252. }
  253. .head-img-box {
  254. margin-right: 26rpx;
  255. width: 76rpx;
  256. height: 76rpx;
  257. border-radius: 50px;
  258. position: relative;
  259. background: #fff;
  260. padding: 10rpx;
  261. background-clip: padding-box;
  262. .head-img {
  263. width: 66rpx;
  264. height: 66rpx;
  265. border-radius: 50%;
  266. position: absolute;
  267. top: 50%;
  268. left: 50%;
  269. transform: translate(-50%, -50%);
  270. }
  271. }
  272. .user-info-box {
  273. .tag-box {
  274. background: rgba(0, 0, 0, 0.2);
  275. border-radius: 21rpx;
  276. line-height: 38rpx;
  277. .tag-img {
  278. width: 36rpx;
  279. height: 36rpx;
  280. border-radius: 50%;
  281. }
  282. .tag-title {
  283. font-size: 20rpx;
  284. padding: 0 10rpx;
  285. font-weight: 500;
  286. color: rgba(255, 255, 255, 1);
  287. line-height: 36rpx;
  288. }
  289. }
  290. }
  291. .card-bottom {
  292. margin: 0 40rpx 40rpx;
  293. .item-title {
  294. font-size: 24rpx;
  295. font-weight: 400;
  296. color: #ffffff;
  297. line-height: 30rpx;
  298. }
  299. .item-detail {
  300. font-size: 40rpx;
  301. font-family: DIN;
  302. font-weight: 500;
  303. color: #fefefe;
  304. line-height: 30rpx;
  305. margin-top: 30rpx;
  306. }
  307. }
  308. }
  309. // 滚动明细
  310. .commission-log {
  311. min-height: 400rpx;
  312. padding: 0 30rpx;
  313. margin-top: 60rpx;
  314. .log-scroll {
  315. height: 380rpx;
  316. .log-item-box {
  317. height: 78rpx;
  318. .log-time {
  319. margin-left: 30rpx;
  320. font-size: 22rpx;
  321. font-weight: 500;
  322. color: #fefefe;
  323. text-align: right;
  324. }
  325. }
  326. .loadmore-wrap {
  327. line-height: 80rpx;
  328. }
  329. .log-item {
  330. height: 48rpx;
  331. background: rgba(#5e49c3, 0.4);
  332. border-radius: 24rpx;
  333. padding-left: 6rpx;
  334. padding-right: 20rpx;
  335. .log-img {
  336. width: 40rpx;
  337. height: 40rpx;
  338. border-radius: 50%;
  339. margin-right: 10rpx;
  340. }
  341. .log-text {
  342. font-size: 22rpx;
  343. font-weight: 500;
  344. color: #fefefe;
  345. max-width: 480rpx;
  346. }
  347. }
  348. }
  349. }
  350. // 功能菜单
  351. .commission-bottom-bg {
  352. position: fixed;
  353. width: 100%;
  354. bottom: 0;
  355. z-index: 6;
  356. }
  357. .menu-box {
  358. flex-wrap: wrap;
  359. margin: 0rpx;
  360. // position: fixed;
  361. // width: 750rpx;
  362. bottom: 0;
  363. z-index: 10;
  364. .menu-item {
  365. // width: (690rpx/4);
  366. width: 25%;
  367. margin-bottom: 50rpx;
  368. .item-img {
  369. width: 68rpx;
  370. height: 68rpx;
  371. }
  372. .item-title {
  373. font-size: 24rpx;
  374. font-weight: 600;
  375. color: #fff;
  376. line-height: 30rpx;
  377. margin-top: 16rpx;
  378. }
  379. }
  380. }
  381. .bill {
  382. margin: 30rpx;
  383. font-weight: bold;
  384. }
  385. .u-flex-col {
  386. /* #ifndef APP-NVUE */
  387. display: flex;
  388. /* #endif */
  389. flex-direction: column;
  390. }
  391. .poster {
  392. padding: 24rpx 40rpx;
  393. .footer-btn {
  394. margin-top: 24rpx;
  395. display: flex;
  396. align-items: center;
  397. justify-content: space-between;
  398. view {
  399. width: 319rpx;
  400. height: 66rpx;
  401. border-radius: 40rpx;
  402. border: 1px solid #4070ff;
  403. font-size: 26rpx;
  404. font-family: PingFangSC-Regular, PingFang SC;
  405. font-weight: 400;
  406. color: #4070ff;
  407. line-height: 66rpx;
  408. text-align: center;
  409. }
  410. .save {
  411. background: #4070ff;
  412. color: #ffffff;
  413. }
  414. }
  415. }
  416. .dygbhg {
  417. background: #ffffff;
  418. border-radius: 15rpx 15rpx 0 0;
  419. position: fixed;
  420. bottom: 0;
  421. left: 0;
  422. width: 100%;
  423. box-shadow: 0px 0px 10px #00000024;
  424. display: flex;
  425. align-items: center;
  426. justify-content: space-evenly;
  427. }
  428. .whole {
  429. width: 45%;
  430. height: 88rpx;
  431. display: flex;
  432. color: #ffffff;
  433. align-items: center;
  434. justify-content: center;
  435. background: #f3f3f3;
  436. font-weight: bold;
  437. border-radius: 60rpx;
  438. color: #3d7eff;
  439. }
  440. .distinguish {
  441. width: 45%;
  442. height: 88rpx;
  443. display: flex;
  444. color: #ffffff;
  445. align-items: center;
  446. justify-content: center;
  447. background: #3d7eff;
  448. font-weight: bold;
  449. border-radius: 60rpx;
  450. margin: 38rpx 0;
  451. margin-left: 4%;
  452. }