depositAdmin.wxss 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  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. .swiper-box {
  17. height: calc(100% - 40px);
  18. }
  19. .list-scroll-content {
  20. height: 100%;
  21. }
  22. .navbar {
  23. display: flex;
  24. height: 40px;
  25. padding: 0 5px;
  26. background: #fff;
  27. box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  28. position: relative;
  29. z-index: 10;
  30. }
  31. .navbar .nav-item {
  32. flex: 1;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. height: 100%;
  37. font-size: 15px;
  38. color: #303133;
  39. position: relative;
  40. }
  41. .navbar .nav-item.current {
  42. color: #921a23;
  43. }
  44. .navbar .nav-item.current:after {
  45. content: '';
  46. position: absolute;
  47. left: 50%;
  48. bottom: 0;
  49. -webkit-transform: translateX(-50%);
  50. transform: translateX(-50%);
  51. width: 44px;
  52. height: 0;
  53. border-bottom: 2px solid #921a23;
  54. }
  55. .uni-swiper-item {
  56. height: auto;
  57. }
  58. .order-item {
  59. display: flex;
  60. flex-direction: column;
  61. padding-left: 30rpx;
  62. background: #fff;
  63. margin-bottom: 16rpx;
  64. /* 多条商品 */
  65. /* 单条商品 */
  66. }
  67. .order-item .i-top {
  68. display: flex;
  69. align-items: center;
  70. height: 80rpx;
  71. padding-right: 30rpx;
  72. font-size: 28rpx;
  73. color: #303133;
  74. position: relative;
  75. }
  76. .order-item .i-top .time {
  77. flex: 1;
  78. }
  79. .order-item .i-top .state {
  80. color: #921a23;
  81. }
  82. .order-item .i-top .del-btn {
  83. padding: 10rpx 0 10rpx 36rpx;
  84. font-size: 32rpx;
  85. color: #909399;
  86. position: relative;
  87. }
  88. .order-item .i-top .del-btn:after {
  89. content: '';
  90. width: 0;
  91. height: 30rpx;
  92. border-left: 1px solid #dcdfe6;
  93. position: absolute;
  94. left: 20rpx;
  95. top: 50%;
  96. -webkit-transform: translateY(-50%);
  97. transform: translateY(-50%);
  98. }
  99. .order-item .goods-box {
  100. height: 160rpx;
  101. padding: 20rpx 0;
  102. white-space: nowrap;
  103. }
  104. .order-item .goods-box .goods-item {
  105. width: 120rpx;
  106. height: 120rpx;
  107. display: inline-block;
  108. margin-right: 24rpx;
  109. }
  110. .order-item .goods-box .goods-img {
  111. display: block;
  112. width: 100%;
  113. height: 100%;
  114. }
  115. .order-item .goods-box-single {
  116. display: flex;
  117. padding: 20rpx 0;
  118. }
  119. .order-item .goods-box-single .goods-img {
  120. display: block;
  121. width: 120rpx;
  122. height: 120rpx;
  123. }
  124. .order-item .goods-box-single .right {
  125. flex: 1;
  126. display: flex;
  127. flex-direction: column;
  128. padding: 0 30rpx 0 24rpx;
  129. overflow: hidden;
  130. }
  131. .order-item .goods-box-single .right .row {
  132. margin-top: 10rpx;
  133. justify-content: space-between;
  134. }
  135. .order-item .goods-box-single .right .row_title {
  136. display: inline-block;
  137. padding: 7rpx 11rpx;
  138. font-size: 20rpx;
  139. font-family: PingFang SC;
  140. font-weight: 500;
  141. color: #fd5b23;
  142. background: #ffeae5;
  143. border-radius: 5rpx;
  144. }
  145. .order-item .goods-box-single .right .title {
  146. font-size: 30rpx;
  147. color: #303133;
  148. line-height: 1;
  149. width: 80%;
  150. }
  151. .order-item .goods-box-single .right .attr-box {
  152. display: flex;
  153. justify-content: flex-end;
  154. font-size: 26rpx;
  155. color: #909399;
  156. }
  157. .order-item .goods-box-single .right .price {
  158. display: inline;
  159. font-size: 30rpx;
  160. color: #303133;
  161. }
  162. .order-item .goods-box-single .right .price:before {
  163. content: '¥';
  164. font-size: 24rpx;
  165. }
  166. .order-item .price-box {
  167. display: flex;
  168. justify-content: flex-end;
  169. align-items: baseline;
  170. padding: 20rpx 30rpx;
  171. font-size: 26rpx;
  172. color: #909399;
  173. }
  174. .order-item .price-box .num {
  175. margin: 0 8rpx;
  176. color: #303133;
  177. }
  178. .order-item .price-box .price {
  179. font-size: 32rpx;
  180. color: #303133;
  181. }
  182. .order-item .price-box .price:before {
  183. content: '¥';
  184. font-size: 24rpx;
  185. margin: 0 2rpx 0 8rpx;
  186. }
  187. .order-item .action-box {
  188. display: flex;
  189. justify-content: flex-end;
  190. align-items: center;
  191. height: 100rpx;
  192. position: relative;
  193. padding-right: 30rpx;
  194. }
  195. .order-item .action-btn {
  196. width: 160rpx;
  197. height: 60rpx;
  198. margin: 0;
  199. margin-left: 24rpx;
  200. padding: 0;
  201. text-align: center;
  202. line-height: 60rpx;
  203. font-size: 26rpx;
  204. color: #303133;
  205. background: #fff;
  206. border-radius: 100px;
  207. color: #901b21;
  208. border: #901b21;
  209. }
  210. .order-item .action-btn:after {
  211. border-radius: 100px;
  212. }
  213. .order-item .action-btn.recom {
  214. color: #921a23;
  215. }
  216. .order-item .action-btn.recom:after {
  217. border-color: #921a23;
  218. }
  219. .order-item .action-btn.evaluate {
  220. color: #fd5b23;
  221. }
  222. .order-item .action-btn.evaluate:after {
  223. border-color: #fd5b23;
  224. }
  225. /* load-more */
  226. .uni-load-more {
  227. display: flex;
  228. flex-direction: row;
  229. height: 80rpx;
  230. align-items: center;
  231. justify-content: center;
  232. }
  233. .uni-load-more__text {
  234. font-size: 28rpx;
  235. color: #999;
  236. }
  237. .uni-load-more__img {
  238. height: 24px;
  239. width: 24px;
  240. margin-right: 10px;
  241. }
  242. .uni-load-more__img > view {
  243. position: absolute;
  244. }
  245. .uni-load-more__img > view view {
  246. width: 6px;
  247. height: 2px;
  248. border-top-left-radius: 1px;
  249. border-bottom-left-radius: 1px;
  250. background: #999;
  251. position: absolute;
  252. opacity: 0.2;
  253. -webkit-transform-origin: 50%;
  254. transform-origin: 50%;
  255. -webkit-animation: load 1.56s ease infinite;
  256. animation: load 1.56s ease infinite;
  257. }
  258. .uni-load-more__img > view view:nth-child(1) {
  259. -webkit-transform: rotate(90deg);
  260. transform: rotate(90deg);
  261. top: 2px;
  262. left: 9px;
  263. }
  264. .uni-load-more__img > view view:nth-child(2) {
  265. -webkit-transform: rotate(180deg);
  266. transform: rotate(180deg);
  267. top: 11px;
  268. right: 0;
  269. }
  270. .uni-load-more__img > view view:nth-child(3) {
  271. -webkit-transform: rotate(270deg);
  272. transform: rotate(270deg);
  273. bottom: 2px;
  274. left: 9px;
  275. }
  276. .uni-load-more__img > view view:nth-child(4) {
  277. top: 11px;
  278. left: 0;
  279. }
  280. .load1,
  281. .load2,
  282. .load3 {
  283. height: 24px;
  284. width: 24px;
  285. }
  286. .load2 {
  287. -webkit-transform: rotate(30deg);
  288. transform: rotate(30deg);
  289. }
  290. .load3 {
  291. -webkit-transform: rotate(60deg);
  292. transform: rotate(60deg);
  293. }
  294. .load1 view:nth-child(1) {
  295. -webkit-animation-delay: 0s;
  296. animation-delay: 0s;
  297. }
  298. .load2 view:nth-child(1) {
  299. -webkit-animation-delay: 0.13s;
  300. animation-delay: 0.13s;
  301. }
  302. .load3 view:nth-child(1) {
  303. -webkit-animation-delay: 0.26s;
  304. animation-delay: 0.26s;
  305. }
  306. .load1 view:nth-child(2) {
  307. -webkit-animation-delay: 0.39s;
  308. animation-delay: 0.39s;
  309. }
  310. .load2 view:nth-child(2) {
  311. -webkit-animation-delay: 0.52s;
  312. animation-delay: 0.52s;
  313. }
  314. .load3 view:nth-child(2) {
  315. -webkit-animation-delay: 0.65s;
  316. animation-delay: 0.65s;
  317. }
  318. .load1 view:nth-child(3) {
  319. -webkit-animation-delay: 0.78s;
  320. animation-delay: 0.78s;
  321. }
  322. .load2 view:nth-child(3) {
  323. -webkit-animation-delay: 0.91s;
  324. animation-delay: 0.91s;
  325. }
  326. .load3 view:nth-child(3) {
  327. -webkit-animation-delay: 1.04s;
  328. animation-delay: 1.04s;
  329. }
  330. .load1 view:nth-child(4) {
  331. -webkit-animation-delay: 1.17s;
  332. animation-delay: 1.17s;
  333. }
  334. .load2 view:nth-child(4) {
  335. -webkit-animation-delay: 1.3s;
  336. animation-delay: 1.3s;
  337. }
  338. .load3 view:nth-child(4) {
  339. -webkit-animation-delay: 1.43s;
  340. animation-delay: 1.43s;
  341. }
  342. @-webkit-keyframes load {
  343. 0% {
  344. opacity: 1;
  345. }
  346. 100% {
  347. opacity: 0.2;
  348. }
  349. }
  350. .bind-admin-wappper {
  351. width: 600rpx;
  352. height: 682rpx;
  353. border-radius: 20rpx;
  354. background-color: #fff;
  355. }
  356. .bind-admin-wappper .title {
  357. padding-top: 70rpx;
  358. font-size: 42rpx;
  359. text-align: center;
  360. font-family: PingFang SC;
  361. font-weight: 500;
  362. color: #901b21;
  363. }
  364. .bind-admin-wappper .admin-item .item-name {
  365. padding-top: 55rpx;
  366. padding-bottom: 20rpx;
  367. font-size: 32rpx;
  368. font-family: PingFang SC;
  369. font-weight: 500;
  370. color: #333333;
  371. padding-left: 68rpx;
  372. }
  373. .bind-admin-wappper .admin-item .item-val {
  374. width: 470rpx;
  375. height: 70rpx;
  376. line-height: 70rpx;
  377. margin: 0 auto;
  378. background: #ffffff;
  379. border: 1px solid #999999;
  380. border-radius: 6px;
  381. outline: none;
  382. }
  383. .bind-admin-wappper .admin-item .item-val input {
  384. padding-left: 20rpx;
  385. display: block;
  386. height: 70rpx;
  387. line-height: 70rpx;
  388. }
  389. .bind-admin-wappper .btn-wrapper {
  390. margin-top: 60rpx;
  391. display: flex;
  392. justify-content: space-between;
  393. height: 50rpx;
  394. padding: 0 65rpx;
  395. }
  396. .bind-admin-wappper .btn-wrapper .btn {
  397. text-align: center;
  398. font-size: 30rpx;
  399. font-family: PingFang SC;
  400. font-weight: 500;
  401. line-height: 70rpx;
  402. color: #666666;
  403. width: 224rpx;
  404. height: 70rpx;
  405. border-radius: 6rpx;
  406. border: 1px solid #999999;
  407. }
  408. .bind-admin-wappper .btn-wrapper .btn1 {
  409. color: #fff;
  410. background-color: #901b21;
  411. }
  412. .top-search {
  413. width: 750rpx;
  414. height: 100rpx;
  415. display: flex;
  416. justify-content: center;
  417. align-items: center;
  418. position: relative;
  419. }
  420. .top-search .search-key {
  421. width: 700rpx;
  422. height: 70rpx;
  423. padding-left: 100rpx;
  424. background: #FFFFFF;
  425. box-shadow: 0px 1rpx 21rpx 0px rgba(144, 27, 33, 0.12);
  426. border-radius: 35rpx;
  427. position: relative;
  428. }
  429. .top-search .search-logo {
  430. width: 36rpx;
  431. height: 36rpx;
  432. position: absolute;
  433. top: 0;
  434. bottom: 0;
  435. left: 50rpx;
  436. margin: auto;
  437. }
  438. .top-search .search-btn {
  439. width: 150rpx;
  440. height: 70rpx;
  441. border-radius: 30rpx;
  442. color: #901b21;
  443. text-align: center;
  444. line-height: 70rpx;
  445. position: absolute;
  446. top: 0;
  447. bottom: 0;
  448. right: 10rpx;
  449. margin: auto;
  450. z-index: 9;
  451. }