app.wxss 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  1. @import "lib/style/icon.wxss";
  2. /* init tags */
  3. page {
  4. font-family:PingFang SC !important;
  5. /* size */
  6. --sizehgr: 48rpx;
  7. --sizehg: 44rpx;
  8. --sizelgr: 40rpx;
  9. --sizelg: 36rpx;
  10. --sizenor: 30rpx;
  11. --sizesm: 28rpx;
  12. --sizesmr: 24rpx;
  13. --sizetn: 20rpx;
  14. --sizetnr: 16rpx;
  15. /* color */
  16. --tit: #666;
  17. --theme: #e51b35;
  18. --dark: #333;
  19. --darkgray: #666;
  20. --lightgray: #999;
  21. --bg: #e6e6e6;
  22. --fg: #fff;
  23. --raduis: 10rpx;
  24. --wrp: 20rpx;
  25. --txtsub: 0.88em;
  26. --themecolor: #002063;
  27. --themeborcolor: #e6e6e6;
  28. --themebor: 1rpx solid var(--themeborcolor);
  29. --themerad: 10rpx;
  30. --themedanger: #e6233c;
  31. --colorattr: #036eb8;
  32. --colorp: #9d9d9d;
  33. --shadow: 0 2px 4px #666;
  34. width: 100vw;
  35. /* height: 100vh; */
  36. color: var(--dark);
  37. font-size: var(--sizenor);
  38. overflow-x: hidden;
  39. background-color: var(--themeborcolor);
  40. }
  41. view, page {
  42. box-sizing: border-box;
  43. }
  44. .both {
  45. margin: 0 10rpx;
  46. }
  47. button {
  48. margin-left: 0;
  49. margin-right: 0;
  50. font-size: inherit;
  51. line-height: normal;
  52. padding: 12rpx 32rpx;
  53. background-color: transparent;
  54. }
  55. .button-hover {
  56. background-color: transparent;
  57. }
  58. image {
  59. display: block;
  60. }
  61. textarea {
  62. width: 100%
  63. }
  64. /*****************************/
  65. /******* embellishment *******/
  66. .assetsbg {
  67. /* Safari 5.1 - 6.0 */
  68. background: -webkit-linear-gradient(left, #ff4a76, #ff9605);
  69. /* Opera 11.1 - 12.0 */
  70. background: -o-linear-gradient(left, #ff4a76, #ff9605);
  71. /* Firefox 3.6 - 15 */
  72. background: -moz-linear-gradient(left, #ff4a76, #ff9605);
  73. background: linear-gradient(left, #ff4a76, #ff9605);
  74. }
  75. .shadow {
  76. box-shadow: var(--shadow);
  77. }
  78. /* 反色 anti-color */
  79. .acolorw {
  80. color: #fff;
  81. }
  82. .subtxt {
  83. color: darkgray;
  84. }
  85. .txtdanger {
  86. color: var(--theme);
  87. }
  88. .themerad {
  89. border-radius: var(--raduis)
  90. }
  91. /* 不换行 */
  92. .nowrap, .nowrap-ell {
  93. white-space: nowrap;
  94. }
  95. .nowrap-ell, .txtelldup {
  96. text-overflow: ellipsis;
  97. }
  98. .txtelldup {
  99. display: -webkit-box;
  100. -webkit-line-clamp: 2;
  101. -webkit-box-orient: vertical
  102. }
  103. .txtt, .txty {
  104. margin-top: .4em;
  105. }
  106. .txtb, .txty {
  107. margin-bottom: .4em;
  108. }
  109. .txtl, .txtx {
  110. margin-left: .4em;
  111. }
  112. .txtr, .txtx {
  113. margin-right: .4em
  114. }
  115. /* 文字 */
  116. .txtanti {
  117. color: #fff;
  118. }
  119. .txtcenter {
  120. text-align: center;
  121. }
  122. .txtbold {
  123. font-weight: bold;
  124. }
  125. .txtpro {
  126. font-size: 1.12em;
  127. }
  128. .txtsub {
  129. font-size: 0.88em;
  130. }
  131. .txthgr {
  132. font-size: var(--sizehgr);
  133. }
  134. .txthg {
  135. font-size: var(--sizehg);
  136. }
  137. .txtlgr {
  138. font-size: var(--sizelgr);
  139. }
  140. .txt-large, .txtlg, .txt-opt {
  141. font-size: var(--sizelg);
  142. }
  143. .txt-normal, .txt {
  144. font-size: var(--sizenor);
  145. }
  146. .txt-small, .txtsm {
  147. font-size: var(--sizesm);
  148. }
  149. .txt-smaller, .txtsmr {
  150. font-size: var(--sizesmr);
  151. }
  152. .txttn, .txttn {
  153. font-size: var(--sizetn);
  154. }
  155. .txtbold {
  156. font-weight: bold;
  157. }
  158. .txt-opt, .txt-highlight, .txtboldr {
  159. font-weight: bolder;
  160. }
  161. .txt-lighter {
  162. font-weight: lighter;
  163. }
  164. /* 文字状态 */
  165. .active, .txt-highlight, .discounts {
  166. color: var(--theme);
  167. }
  168. .note {
  169. color: var(--gray);
  170. }
  171. .inactive, .notetit {
  172. color: #666;
  173. }
  174. .common {
  175. color: initial;
  176. }
  177. /* 背景色,前景色 */
  178. .bg {
  179. background-color: var(--bg);
  180. }
  181. .fg {
  182. background-color: var(--fg);
  183. }
  184. /* cover */
  185. .cover {
  186. background-color: rgba(0, 0, 0, 0.8);
  187. }
  188. .danger {
  189. border-color: red;
  190. }
  191. /* 超链接颜色 */
  192. .hyperlink {
  193. color: #00f;
  194. }
  195. /* 删除线 */
  196. .s {
  197. text-decoration-line: line-through;
  198. }
  199. /* 图标大小 */
  200. .icon-huge image, .temp-box, .imghg image, .boxhg {
  201. width: 180rpx;
  202. height: 180rpx;
  203. }
  204. .icon-larger image, .imglgr image, .boxlgr {
  205. width: 160rpx;
  206. height: 160rpx;
  207. }
  208. .icon-head, .icon-large image, .imglg image, .boxlg {
  209. width: 140rpx;
  210. height: 140rpx;
  211. }
  212. .icon, .icon-normal image, .img image, .box {
  213. width: 44rpx;
  214. height: 44rpx;
  215. }
  216. .icon-common image, .icon-small image, .imgsm image, .boxsm {
  217. width: 32rpx;
  218. height: 32rpx;
  219. }
  220. .icon-smaller image, .imgsmr image, .boxsmr {
  221. width: 28rpx;
  222. height: 28rpx;
  223. }
  224. /**********************/
  225. /******* layout *******/
  226. /* 盒子 */
  227. .boxpro {
  228. height: 1.12em !important;
  229. width: 1.12em !important;
  230. }
  231. .boxsub {
  232. height: 0.88em !important;
  233. width: 0.88em !important;
  234. }
  235. /* 定位 */
  236. .posabswrp, .posrel {
  237. position: relative;
  238. }
  239. .posabs {
  240. position: absolute;
  241. }
  242. .posfix {
  243. position: fixed;
  244. }
  245. ::-webkit-scrollbar, .hide {
  246. display: none;
  247. }
  248. /* 圆 */
  249. .circle {
  250. border-radius: 50%;
  251. }
  252. /* 填充圆 */
  253. .circle .filled, .full, .col.scroll, .fully {
  254. height: 100%;
  255. }
  256. .circle .filled, .full, .row.scroll, .fullx {
  257. width: 100%;
  258. }
  259. /* 行布局,列布局 */
  260. /* lv : listview */
  261. .row, .col, .lv, .lv .li {
  262. display: -webkit-box;
  263. display: flex;
  264. }
  265. .col {
  266. flex-direction: column;
  267. }
  268. .col.reverse {
  269. flex-direction: column-reverse;
  270. }
  271. .row.wrap, .col.wrap {
  272. flex-wrap: wrap;
  273. }
  274. /* 弹性格,收缩格,扩展格 */
  275. .flexible, .shrinkable, .growable {
  276. min-width: 0;
  277. }
  278. .flexible {
  279. flex: 1;
  280. -prefix-box-flex: 1;
  281. -webkit-box-flex: 1;
  282. /*  -webkit-flex: 1; *//*  -moz-box-flex: 1; *//*  -ms-flex: 1; */
  283. }
  284. .shrinkable {
  285. flex-shrink: 1;
  286. }
  287. .growable {
  288. flex-grow: 1;
  289. }
  290. /* 内容包裹方式 包裹wrapped:wrp 插入inserted:in 结合combined:comb 单边side */
  291. /* 垂直方向vertical:ver,水平方向horizontal:hor */
  292. /* normal */
  293. .wrp, .inright, .inleft, .wrpy, .wrptop, .inbot {
  294. padding-top: 24rpx;
  295. }
  296. .wrp, .inright, .intop, .wrpleft, .inbot {
  297. padding-left: 24rpx;
  298. }
  299. .wrp, .inleft, .intop, .wrpright, .inbot {
  300. padding-right: 24rpx;
  301. }
  302. .wrp, .inright, .inleft, .intop, .wrpy, .wrpbot {
  303. padding-bottom: 24rpx;
  304. }
  305. /* little */
  306. .wrplit, .combverlit {
  307. padding-top: 10rpx;
  308. }
  309. .wrplit, .combhorlit {
  310. padding-left: 10rpx;
  311. }
  312. .wrplit, .combhorlit {
  313. padding-right: 10rpx;
  314. }
  315. .wrplit, .combverlit, .sidebotlit {
  316. padding-bottom: 10rpx;
  317. }
  318. .inrightlit {
  319. padding: 10rpx 10rpx 10rpx 0;
  320. }
  321. .insertedbot-lit {
  322. padding: 10rpx 10rpx 0;
  323. }
  324. /* large */
  325. .wrplg, .combinedhorlg, .combhorlg, .insertedtoplg, .intoplg, .inbotlg,
  326. .sideleftlg {
  327. padding-left: 32rpx;
  328. }
  329. .wrplg, .combinedhorlg, .combhorlg, .insertedtoplg, .intoplg, .insertedleftlg,
  330. .inleftlg, .inbotlg, .wrprlg {
  331. padding-right: 32rpx;
  332. }
  333. .wrplg, .combinedverlg, .combverlg, .insertedleftlg, .inleftlg, .inbotlg,
  334. .sidetoplg {
  335. padding-top: 32rpx;
  336. }
  337. .wrplg, .combinedverlg, .combverlg, .insertedtoplg, .intoplg, .insertedleftlg,
  338. .inleftlg, .sidebotlg {
  339. padding-bottom: 32rpx;
  340. }
  341. .wrplgr {
  342. padding: 40rpx;
  343. }
  344. /* 垂直居中,水平居中,水平锤子居中,倒序 */
  345. .row.center, .col.center, .row.main-center, .row.maincenter, .col.main-center,
  346. .col.maincenter {
  347. justify-content: center;
  348. }
  349. .row.center, .col.center, .row.cross-center, .row.crosscenter, .col.crosscenter,
  350. .col.cross-center {
  351. align-items: center;
  352. }
  353. /* 两端对齐 */
  354. .between {
  355. justify-content: space-between;
  356. }
  357. /* 平铺 */
  358. .around {
  359. justify-content: space-around;
  360. }
  361. /* 左对齐 */
  362. .row.left {
  363. justify-content: flex-start;
  364. }
  365. .col.left {
  366. align-items: flex-start;
  367. }
  368. /* 右对齐 */
  369. .row.right {
  370. justify-content: flex-end;
  371. }
  372. .col.right {
  373. align-items: flex-end;
  374. }
  375. /* 底部对齐 */
  376. .row.bot {
  377. align-items: flex-end;
  378. }
  379. .col.bot {
  380. justify-content: flex-end;
  381. }
  382. /* 滚动 */
  383. .circle, .nowrap-ell, .scrolly, .noscroll {
  384. overflow: hidden;
  385. }
  386. .scrolly {
  387. overflow-y: scroll;
  388. }
  389. .row.scroll {
  390. overflow-x: scroll;
  391. overflow-y: hidden;
  392. }
  393. /* 边 bor */
  394. .bor, .bortop, .bory {
  395. border-top: var(--themebor);
  396. }
  397. .bor, .borleft, .borx {
  398. border-left: var(--themebor);
  399. }
  400. .bor, .borright, .borx {
  401. border-right: var(--themebor);
  402. }
  403. .bor, .borbot, .bory {
  404. border-bottom: var(--themebor);
  405. }
  406. /* 块间距 gap */
  407. /* less:ls */
  408. .gapbot, .gaprb, .gaplb, .gapy {
  409. margin-bottom: 24rpx;
  410. }
  411. .gaptop, .gaprt, .gaplt, .gapy {
  412. margin-top: 24rpx;
  413. }
  414. .gapleft, .gaplt, .gaplb{
  415. margin-left: 24rpx;
  416. }
  417. .gapright, .gaprt, .gaprb {
  418. margin-right: 24rpx;
  419. }
  420. .gaptoplit {
  421. margin-top: 20rpx;
  422. }
  423. .gapbotlit {
  424. margin-bottom: 20rpx;
  425. }
  426. .gapleftlit {
  427. margin-left: 20rpx;
  428. }
  429. .gaprightlit {
  430. margin-right: 20rpx;
  431. }
  432. .gaptopls {
  433. margin-top: 10rpx;
  434. }
  435. .gapbotls {
  436. margin-bottom: 10rpx;
  437. }
  438. .gapleftls {
  439. margin-left: 10rpx;
  440. }
  441. .gaprightls {
  442. margin-right: 10rpx;
  443. }
  444. /* 组件样式 */
  445. /* .banner {
  446. margin: var(--wrp);
  447. height: 20%;
  448. overflow: hidden;
  449. border-radius: var(--raduis);
  450. }
  451. .banner image {
  452. width: 100%;
  453. }
  454. .personalPanel {
  455. margin: var(--wrp);
  456. padding: var(--wrp);
  457. background-color: var(--fg);
  458. border-radius: var(--raduis);
  459. }
  460. .personalPanel .avatar {
  461. height: 112rpx;
  462. width: 112rpx;
  463. display: inline-block;
  464. margin-right: var(--wrp);
  465. }
  466. .personalPanel .subinfo {
  467. color: darkgray;
  468. font-size: var(--sizesmr);
  469. }
  470. .article {
  471. padding: var(--wrp);
  472. }
  473. .article .title {
  474. font-weight: bold;
  475. }
  476. .article .more {
  477. font-size: var(--txtsub);
  478. color: darkgray;
  479. }
  480. .article .empty {
  481. font-size: var(--sizesmr);
  482. color: darkgray;
  483. height: 420rpx;
  484. }
  485. .article .empty image {
  486. width: 290rpx;
  487. height: 190rpx;
  488. margin-bottom: calc(var(--wrp) * 2);
  489. }
  490. .btngroup {
  491. }
  492. .btn {
  493. color: #fff;
  494. background-color: #e3485a;
  495. width: 80%;
  496. padding: var(--wrp);
  497. }
  498. .btnround {
  499. border-radius: 40rpx;
  500. } */
  501. /* main style */