index.wxss 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. @charset "UTF-8";
  2. /* 页面左右间距 */
  3. /* 文字尺寸 */
  4. /*文字颜色*/
  5. /* 边框颜色 */
  6. /*颜色*/
  7. /* 图片加载中颜色 */
  8. /* 行为相关颜色 */
  9. /* 功能栏字体大小 */
  10. /*功能栏左侧小图标*/
  11. page,
  12. .container {
  13. height: auto;
  14. min-height: 100%;
  15. background-color: #0109ac;
  16. }
  17. .container {
  18. padding-bottom: 130rpx;
  19. position: relative;
  20. }
  21. .alertChargeBox .alertCharge {
  22. justify-content: flex-start;
  23. flex-wrap: wrap;
  24. padding: 30rpx;
  25. }
  26. .alertChargeBox .alertCharge .chargeItem {
  27. width: 25%;
  28. text-align: center;
  29. position: relative;
  30. height: 180rpx;
  31. padding: 40rpx;
  32. margin: 20rpx 0;
  33. }
  34. .alertChargeBox .alertCharge .chargeItem.actionCharge {
  35. border: 1px solid #d7272b;
  36. border-radius: 10rpx;
  37. }
  38. .alertChargeBox .alertCharge .chargeItem .chargeImgIcon {
  39. position: absolute;
  40. top: 10rpx;
  41. right: 10rpx;
  42. font-size: 18rpx;
  43. font-weight: bold;
  44. color: #ffffff;
  45. border-top-right-radius: 90rpx;
  46. border-top-left-radius: 90rpx;
  47. border-bottom-right-radius: 90rpx;
  48. padding: 5rpx 15rpx;
  49. background-color: #d7272b;
  50. }
  51. .alertChargeBox .alertCharge .chargeItem .chargeTextBox {
  52. position: absolute;
  53. bottom: 10rpx;
  54. right: 0;
  55. left: 0;
  56. justify-content: center;
  57. color: #223438;
  58. font-size: 24rpx;
  59. text-align: center;
  60. }
  61. .alertChargeBox .alertCharge .chargeItem .chargeTextBox .chargeIcon {
  62. width: 35rpx;
  63. height: 35rpx;
  64. margin-right: 10rpx;
  65. }
  66. .alertChargeBox .alertCharge .chargeItem .chargeImgBox .chargeImg {
  67. width: 77rpx;
  68. }
  69. .alertChargeBox .chargeButtom {
  70. padding: 30rpx;
  71. background-color: #fff6f6;
  72. }
  73. .alertChargeBox .chargeButtom .left {
  74. font-weight: bold;
  75. flex-grow: 1;
  76. justify-content: flex-start;
  77. }
  78. .alertChargeBox .chargeButtom .left .chargeIcon {
  79. width: 40rpx;
  80. height: 40rpx;
  81. }
  82. .alertChargeBox .chargeButtom .left .num {
  83. margin-left: 10rpx;
  84. color: #16363a;
  85. font-size: 30rpx;
  86. }
  87. .alertChargeBox .chargeButtom .left .tip {
  88. margin-left: 10rpx;
  89. color: #d82a2e;
  90. font-size: 24rpx;
  91. }
  92. .alertChargeBox .chargeButtom .right {
  93. background-color: #d7272b;
  94. color: #ffffff;
  95. border-radius: 99rpx;
  96. padding: 5rpx 40rpx;
  97. font-size: 26rpx;
  98. }
  99. .alertAddBox {
  100. background: #0109ac;
  101. position: fixed;
  102. bottom: 0;
  103. left: 0;
  104. right: 0;
  105. padding: 20rpx 30rpx;
  106. z-index: 1;
  107. }
  108. .alertAddBox .textAlertBox {
  109. flex-shrink: 0;
  110. text-align: center;
  111. font-size: 28rpx;
  112. color: #ffffff;
  113. padding-right: 20rpx;
  114. }
  115. .alertAddBox .textAlertBox .psBox {
  116. font-size: 40rpx;
  117. font-weight: bold;
  118. }
  119. .alertAddBox .textAlertBox .psBox .psImgIcon {
  120. margin-right: 10rpx;
  121. width: 30rpx;
  122. }
  123. .alertAddBox .addUser {
  124. flex-grow: 1;
  125. background: #d7272b;
  126. border: 1px solid #170911;
  127. border-radius: 7px;
  128. line-height: 1;
  129. font-size: 31rpx;
  130. font-weight: bold;
  131. color: #ffffff;
  132. text-align: center;
  133. padding: 30rpx;
  134. line-height: 24rpx;
  135. }
  136. .topImg {
  137. width: 100%;
  138. }
  139. .contentBox {
  140. position: relative;
  141. width: 0px;
  142. min-width: 100%;
  143. margin-bottom: 32rpx;
  144. }
  145. .contentBox .btoomBg {
  146. background-color: #ffffff;
  147. min-height: 50vh;
  148. height: 100%;
  149. position: absolute;
  150. top: 32rpx;
  151. right: 30rpx;
  152. left: 42rpx;
  153. }
  154. .contentBox .topBg {
  155. position: relative;
  156. margin-left: 30rpx;
  157. margin-right: 42rpx;
  158. box-shadow: 3px 5rpx 3rpx 0rpx rgba(4, 0, 0, 0.15);
  159. line-height: 0;
  160. }
  161. .contentBox .topBg .leftIcon {
  162. position: absolute;
  163. top: 30rpx;
  164. left: -30rpx;
  165. width: 100rpx;
  166. }
  167. .contentBox .topBg .tpConent {
  168. background: #ffffff;
  169. line-height: 1;
  170. min-height: 50vh;
  171. padding-top: 28rpx;
  172. padding-bottom: 20rpx;
  173. }
  174. .contentBox .topBg .tpConent .erweima {
  175. width: 300rpx;
  176. height: 300rpx;
  177. margin: 0 auto;
  178. }
  179. .contentBox .topBg .tpConent .erweima image {
  180. width: 100%;
  181. height: 100%;
  182. }
  183. .contentBox .topBg .tpConent .Etitle {
  184. margin-top: 20rpx;
  185. text-align: center;
  186. font-size: 24rpx;
  187. }
  188. .contentBox .topBg .down {
  189. text-align: center;
  190. }
  191. .contentBox .topBg .tjContent {
  192. margin-top: 70rpx;
  193. justify-content: space-around;
  194. text-align: center;
  195. }
  196. .contentBox .topBg .tjContent .tjItem .topText {
  197. font-size: 50rpx;
  198. font-weight: bold;
  199. color: #3a3a3a;
  200. }
  201. .contentBox .topBg .tjContent .tjItem .topText .iconTip {
  202. font-size: 20rpx;
  203. }
  204. .contentBox .topBg .tjContent .tjItem .bottomText {
  205. margin-top: 10rpx;
  206. font-size: 24rpx;
  207. font-family: PingFang SC;
  208. font-weight: 500;
  209. color: #333333;
  210. }
  211. .contentBox .topBg .tpTitle {
  212. text-align: center;
  213. font-size: 48rpx;
  214. font-weight: bold;
  215. color: #ffc103;
  216. margin-top: 50rpx;
  217. margin-bottom: 45rpx;
  218. }
  219. .contentBox .topBg .tpRight {
  220. display: flex;
  221. justify-content: flex-end;
  222. }
  223. .contentBox .topBg .tpRight .textBox {
  224. background: #d7272b;
  225. border-radius: 99rpx 0px 0px 99rpx;
  226. padding: 10rpx;
  227. padding-left: 20rpx;
  228. font-size: 25rpx;
  229. font-weight: 500;
  230. color: #ffffff;
  231. }
  232. .contentBox .topBg .endTextBox {
  233. padding: 0 84rpx;
  234. margin-bottom: 32rpx;
  235. }
  236. .contentBox .topBg .endTextBox .leftLine,
  237. .contentBox .topBg .endTextBox .rightLine {
  238. border-bottom: 1rpx solid #d7272b;
  239. flex-grow: 1;
  240. position: relative;
  241. }
  242. .contentBox .topBg .endTextBox .leftLine .roundness,
  243. .contentBox .topBg .endTextBox .rightLine .roundness {
  244. position: absolute;
  245. top: -5rpx;
  246. height: 10rpx;
  247. width: 10rpx;
  248. background-color: #d7272b;
  249. border-radius: 99rpx;
  250. }
  251. .contentBox .topBg .endTextBox .leftLine .roundness {
  252. right: 0;
  253. }
  254. .contentBox .topBg .endTextBox .rightLine .roundness {
  255. left: 0;
  256. }
  257. .contentBox .topBg .endTextBox .textLine {
  258. padding: 0 20rpx;
  259. }
  260. .contentBox .topBg .input {
  261. padding: 0 30rpx;
  262. margin: 50rpx 30rpx;
  263. margin-bottom: 20rpx;
  264. background: #ebebeb;
  265. border-radius: 30rpx;
  266. }
  267. .contentBox .topBg .tabsBox {
  268. padding-bottom: 20rpx;
  269. border-bottom: 1px solid #ebebeb;
  270. margin-bottom: 50rpx;
  271. }
  272. .contentBox .topBg .itemList {
  273. flex-wrap: wrap;
  274. justify-content: start;
  275. padding: 0 15rpx;
  276. }
  277. .contentBox .topBg .itemList .itemData {
  278. width: 50%;
  279. flex-grow: 0;
  280. flex-shrink: 0;
  281. padding: 0 15rpx;
  282. margin-bottom: 30rpx;
  283. }
  284. .contentBox .topBg .itemList .itemData .itemContentBox {
  285. padding: 0 15rpx;
  286. }
  287. .contentBox .topBg .itemList .itemData .itemContentBox .itemImgbox {
  288. width: 100%;
  289. padding-top: 100%;
  290. position: relative;
  291. margin-bottom: 20rpx;
  292. }
  293. .contentBox .topBg .itemList .itemData .itemContentBox .itemImgbox .itemAddress {
  294. position: absolute;
  295. bottom: 0;
  296. left: 0;
  297. right: 0;
  298. background: #262626;
  299. opacity: 0.6;
  300. color: #ffffff;
  301. font-size: 24rpx;
  302. padding: 10rpx 0;
  303. text-align: center;
  304. }
  305. .contentBox .topBg .itemList .itemData .itemContentBox .itemImgbox .itemImg {
  306. position: absolute;
  307. top: 0;
  308. left: 0;
  309. width: 100%;
  310. height: 100%;
  311. }
  312. .contentBox .topBg .itemList .itemData .itemContentBox .itemImgbox .iconBox {
  313. padding-top: 10rpx;
  314. position: absolute;
  315. top: -18rpx;
  316. left: -18rpx;
  317. height: 73rpx;
  318. width: 62rpx;
  319. z-index: 1;
  320. background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAD4AAABJCAYAAABl5pU9AAAByUlEQVR4Xu2WuUpDQRiFz59IDBYWvoELGBLtfAEb7ex8zExcEBHBFIKN2rjESESCWGijjVuId46oKCKJa3LRuWfqKeY7c775xw5yuXEwPYcELQN3rDo6NkFwM0Hcj6ibAteNJyMBVV2PWzKarlddczwhTVfVVXVVPfAE9HPTzy3wir/gqeqquqoedgJyXI6H3fBXOlVdVVfVw05AjsvxsBuucSbH5bgcDzsBOS7Hw2645rgcl+NyPOwE5LgcD7vhmuNyXI7L8bATkONyPOyGa47LcTkux8NOQI7H7XjNPBzT0YIxNUTYrIFThGVjKlqcN85dEM4s5XKHezvvAWsjI/1ROjMTUwjdBCcNtkXSZe5ZHD4+qH31NmMIobPgRkQANmBWjJq+VDiunHwVtt2+LoXQEfAmgLIHS2hgrlCvnP0WNoYQfghO3sFsFZ7O39pC4XT/oluwXQrhW+BXAJdJFtljS4VK5Spu2A6G8Cn4JYhFb3R9jZuVwXr97q/AfhYCYLMEpwHrbbG3BThxDmAeKbjranZtAtuPDv/L9fIwtgjhGdyTzowlRN7ljqrrBvh/SfrBod+G4MEBKwM9k3gaQwwNth3Pfj6feQD3Gv28AEEvGQAAAABJRU5ErkJggg==);
  321. background-size: 100% 100%;
  322. color: #ffffff;
  323. font-size: 24rpx;
  324. text-align: center;
  325. }
  326. .contentBox .topBg .itemList .itemData .itemContentBox .itemNameBox {
  327. margin-bottom: 20rpx;
  328. font-size: 30rpx;
  329. font-weight: bold;
  330. }
  331. .contentBox .topBg .itemList .itemData .itemContentBox .itemNameBox .itemName {
  332. color: #333333;
  333. }
  334. .contentBox .topBg .itemList .itemData .itemContentBox .itemNameBox .itemVote {
  335. color: #d7272b;
  336. }
  337. .contentBox .topBg .itemList .itemData .itemBottom {
  338. background: #ffc103;
  339. color: #ffffff;
  340. font-size: 30rpx;
  341. padding: 15rpx;
  342. text-align: center;
  343. }
  344. .contentBox .topBg .phItemList {
  345. padding: 0 30rpx;
  346. margin-top: -50rpx;
  347. }
  348. .contentBox .topBg .phItemList .phItem {
  349. padding: 20rpx 0;
  350. }
  351. .contentBox .topBg .phItemList .phItem .icon {
  352. flex-shrink: 0;
  353. width: 50rpx;
  354. }
  355. .contentBox .topBg .phItemList .phItem .icon .tipImg {
  356. width: 42rpx;
  357. }
  358. .contentBox .topBg .phItemList .phItem .icon .tipText {
  359. color: #d7272b;
  360. font-size: 36rpx;
  361. font-weight: bold;
  362. }
  363. .contentBox .topBg .phItemList .phItem .phRightBox {
  364. flex-grow: 1;
  365. border-bottom: 1px solid #ebebeb;
  366. padding: 20rpx 0;
  367. }
  368. .contentBox .topBg .phItemList .phItem .phRightBox .avatarBox {
  369. flex-shrink: 0;
  370. }
  371. .contentBox .topBg .phItemList .phItem .phRightBox .avatarBox .avatarImg {
  372. width: 96rpx;
  373. height: 96rpx;
  374. border-radius: 99rpx;
  375. margin-left: 10rpx;
  376. }
  377. .contentBox .topBg .phItemList .phItem .phRightBox .phTextBox {
  378. flex-grow: 1;
  379. margin-left: 15rpx;
  380. }
  381. .contentBox .topBg .phItemList .phItem .phRightBox .phTextBox .phTtemName {
  382. color: #333333;
  383. font-size: 32rpx;
  384. }
  385. .contentBox .topBg .phItemList .phItem .phRightBox .phTextBox .phItemAddress {
  386. color: #999999;
  387. font-size: 24rpx;
  388. margin-top: 10rpx;
  389. }
  390. .contentBox .topBg .phItemList .phItem .phRightBox .phRight {
  391. flex-shrink: 0;
  392. text-align: right;
  393. justify-content: right;
  394. }
  395. .contentBox .topBg .phItemList .phItem .phRightBox .phRight .textVote {
  396. color: #ffbb17;
  397. font-size: 36rpx;
  398. font-weight: bold;
  399. margin-right: 13rpx;
  400. }
  401. .contentBox .topBg .phItemList .phItem .phRightBox .phRight .phTipImg {
  402. width: 23rpx;
  403. height: 39rpx;
  404. }
  405. .u-countdown-item {
  406. padding: 10rpx;
  407. border-radius: 8rpx;
  408. overflow: hidden;
  409. }
  410. .alertBox {
  411. padding-bottom: 40rpx;
  412. }
  413. .alertBox .titleImg {
  414. width: 100%;
  415. z-index: -1;
  416. }
  417. .alertBox .title {
  418. text-align: center;
  419. font-size: 36rpx;
  420. font-weight: bold;
  421. color: #333333;
  422. margin-top: -80rpx;
  423. }
  424. .alertBox .titleTip {
  425. text-align: center;
  426. font-size: 24rpx;
  427. font-weight: bold;
  428. color: #808080;
  429. }
  430. .alertBox .lxTtem {
  431. margin: 0 40rpx;
  432. padding: 30rpx 0;
  433. border-bottom: 1px solid #ebebeb;
  434. }
  435. .alertBox .lxTtem .leftTitle {
  436. justify-content: start;
  437. width: 43rpx;
  438. flex-grow: 1;
  439. color: #333333;
  440. font-size: 28rpx;
  441. }
  442. .alertBox .lxTtem .leftTitle .leftImgTip {
  443. flex-shrink: 0;
  444. height: 30rpx;
  445. margin-right: 20rpx;
  446. }
  447. .alertBox .lxTtem .rightTip {
  448. border: 1px solid #d7272b;
  449. opacity: 0.5;
  450. border-radius: 50%;
  451. width: 32rpx;
  452. height: 32rpx;
  453. justify-content: center;
  454. }
  455. .alertBox .lxTtem .rightTip .xzTip {
  456. width: 20rpx;
  457. height: 20rpx;
  458. border-radius: 99rpx;
  459. background-color: #d7272b;
  460. }
  461. .alertBox .pushtyle {
  462. background: #d7272b;
  463. box-shadow: 0px 16rpx 16rpx 0px rgba(215, 39, 43, 0.5);
  464. border-radius: 10rpx;
  465. color: #ffffff;
  466. font-size: 28rpx;
  467. font-weight: bold;
  468. text-align: center;
  469. padding: 20rpx 0;
  470. margin: 0 40rpx;
  471. margin-top: 40rpx;
  472. }