styleK.css 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. /*
  2. <!--
  3. * 17素材vip建站专区模块代码
  4. * 详尽信息请看官网:http://www.17sucai.com/pins/vip
  5. *
  6. * Copyright , 温州易站网络科技有限公司版权所有
  7. *
  8. * 请尊重原创,未经允许请勿转载。
  9. * 在保留版权的前提下可应用于个人或商业用途
  10. -->
  11. */
  12. html,body {
  13. color: #333;
  14. margin: 0;
  15. height: 100%;
  16. font-family: "Myriad Set Pro","Helvetica Neue",Helvetica,Arial,Verdana,sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. -moz-osx-font-smoothing: grayscale;
  19. font-weight: normal;
  20. }
  21. * {
  22. -webkit-box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. box-sizing: border-box;
  25. }
  26. a {
  27. text-decoration: none;
  28. color: #000;
  29. }
  30. a, label, button, input, select {
  31. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  32. }
  33. img {
  34. border: 0;
  35. }
  36. body {
  37. background: #f5f5f5;
  38. color: #666;
  39. }
  40. html, body, div, dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, blockquote, pre, button, fieldset, form, input, legend, textarea, th, td {
  41. margin: 0;
  42. padding: 0;
  43. }
  44. a {
  45. text-decoration: none;
  46. color: #08acee;
  47. }
  48. button {
  49. outline: 0;
  50. }
  51. img {
  52. border: 0;
  53. }
  54. button,input,optgroup,select,textarea {
  55. margin: 0;
  56. font: inherit;
  57. color: inherit;
  58. outline: none;
  59. }
  60. li {
  61. list-style: none;
  62. }
  63. a {
  64. color: #666;
  65. }
  66. .clearfix::after {
  67. clear: both;
  68. content: ".";
  69. display: block;
  70. height: 0;
  71. visibility: hidden;
  72. }
  73. .clearfix {
  74. }
  75. /* 必要布局样式css */
  76. .aui-flexView {
  77. width: 100%;
  78. height: 100%;
  79. margin: 0 auto;
  80. display: -webkit-box;
  81. display: -webkit-flex;
  82. display: -ms-flexbox;
  83. display: flex;
  84. -webkit-box-orient: vertical;
  85. -webkit-box-direction: normal;
  86. -webkit-flex-direction: column;
  87. -ms-flex-direction: column;
  88. flex-direction: column;
  89. }
  90. .aui-scrollView {
  91. width: 100%;
  92. height: 100%;
  93. -webkit-box-flex: 1;
  94. -webkit-flex: 1;
  95. -ms-flex: 1;
  96. flex: 1;
  97. overflow-y: auto;
  98. overflow-x: hidden;
  99. -webkit-overflow-scrolling: touch;
  100. position: relative;
  101. margin-top: 0;
  102. }
  103. .aui-navBar {
  104. height: 44px;
  105. position: relative;
  106. display: -webkit-box;
  107. display: -webkit-flex;
  108. display: -ms-flexbox;
  109. display: flex;
  110. z-index: 1002;
  111. background: #fbfbfb;
  112. }
  113. .aui-navBar:after {
  114. content: '';
  115. position: absolute;
  116. z-index: 2;
  117. bottom: 0;
  118. left: 0;
  119. width: 100%;
  120. height: 1px;
  121. border-bottom: 1px solid #d8d8d8;
  122. -webkit-transform: scaleY(0.5);
  123. transform: scaleY(0.5);
  124. -webkit-transform-origin: 0 100%;
  125. transform-origin: 0 100%;
  126. }
  127. .aui-navBar-item {
  128. height: 44px;
  129. min-width: 25%;
  130. -webkit-box-flex: 0;
  131. -webkit-flex: 0 0 25%;
  132. -ms-flex: 0 0 25%;
  133. flex: 0 0 25%;
  134. padding: 0 0.9rem;
  135. display: -webkit-box;
  136. display: -webkit-flex;
  137. display: -ms-flexbox;
  138. display: flex;
  139. -webkit-box-align: center;
  140. -webkit-align-items: center;
  141. -ms-flex-align: center;
  142. align-items: center;
  143. font-size: 0.7rem;
  144. white-space: nowrap;
  145. overflow: hidden;
  146. color: #a0a0a0;
  147. position: relative;
  148. }
  149. .aui-navBar-item:first-child {
  150. -webkit-box-ordinal-group: 2;
  151. -webkit-order: 1;
  152. -ms-flex-order: 1;
  153. order: 1;
  154. margin-right: -25%;
  155. font-size: 0.9rem;
  156. font-weight: bold;
  157. }
  158. .aui-navBar-item:last-child {
  159. -webkit-box-ordinal-group: 4;
  160. -webkit-order: 3;
  161. -ms-flex-order: 3;
  162. order: 3;
  163. -webkit-box-pack: end;
  164. -webkit-justify-content: flex-end;
  165. -ms-flex-pack: end;
  166. justify-content: flex-end;
  167. }
  168. .aui-center {
  169. -webkit-box-ordinal-group: 3;
  170. -webkit-order: 2;
  171. -ms-flex-order: 2;
  172. order: 2;
  173. display: -webkit-box;
  174. display: -webkit-flex;
  175. display: -ms-flexbox;
  176. display: flex;
  177. -webkit-box-pack: center;
  178. -webkit-justify-content: center;
  179. -ms-flex-pack: center;
  180. justify-content: center;
  181. -webkit-box-align: center;
  182. -webkit-align-items: center;
  183. -ms-flex-align: center;
  184. align-items: center;
  185. height: 44px;
  186. width: 50%;
  187. margin-left: 25%;
  188. }
  189. .aui-center-title {
  190. text-align: center;
  191. width: 100%;
  192. white-space: nowrap;
  193. overflow: hidden;
  194. display: block;
  195. text-overflow: ellipsis;
  196. font-size: 0.95rem;
  197. color: #7d7d7d;
  198. }
  199. .icon {
  200. width: 20px;
  201. height: 20px;
  202. display: block;
  203. border: none;
  204. float: left;
  205. background-size: 20px;
  206. background-repeat: no-repeat;
  207. }
  208. .icon-return {
  209. background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAYAAAA6/NlyAAAFPUlEQVRoQ+Xab4gUdRzH8fd3du8IMlKKiIJMC+mJd+6uFWVhioFZoFRahGDl3Wr4JEKw6I9nkVkE9ch0dy96JNUT8b/BhXVQRt3uXj4p5XpQIR4SmF1/b2fnG7Nz6unO7t3OzsyO5z3d383Oa7+/mfnM9/cTrrA/uZy8+vS86fLR4O/NnPNlAbahtMf6QWcC/wK7JVNY7wUeebCmO5LQthu45QJQ/wRzoWSOFRpFRxqsazvvQuIHMbjuYpiCWu9JdvCFKQPWro77kfjHiNxUjdIzYC6ZMhXWruTzGNIDXOtSwVNg7ZJMcWOj1bXHR25Ka3diExgvI1zjAhpGeUOy+e1esJEDazq5A2U1Ile7TOOTWLwuuULGKzZSYE0nD6EsRqTdBXucsrlBeo993gw2MmDtTu5HZCkQcwH9StlcLr3fF5vFthxcCRRtsSOgnYhcfD9RVeAnsFZKdnDQD2xLwQ7WGESYWXXvVMqIfsWotbzZKHnpD9WSu7R2dczCaDsMzHG5Xv9DOU7JWug3tiUV1nWJ+VhyCJHrq7CqI4j0M1peHQQ2dLA+m7iHmLEXoRoLZ1Frj2SLa/y6Xt2OE9qU1nRqDeg7IDe4VPY0SL9k8yuDxIZWYe1ObUR0M8g0F+xJhA8kU3gzaGwoYO1OvYLoJlcsegrYIpnCzjCwgYO1O3EAjMUIV7lUdgg1tkluoDcsbKBg7Ur2YchCIO4COkHZfNKv9NTID+b7TWssUHwCPFiVnuwzU/0ZrBV+pqeWgceiYgHRWdXpSRXhKGptaBXW1ymtT82dwbT2AdDZLq/ZppOeyvcFFSgmW2VfprR2zU0hbXsQudklKv6DcoKS9UCrsb5UWJ/puJt43I6KM1ywf2DpfkzdEAVs0+BKo82Ifwpyo8tj5wxiHJHMwGOTnW5hjPM8pSdstFnWAckVu8NANPIdnsD63NzZmO15hOku0/gkKlubabQ1Amh0rDfwusQWVF5zefScRnm12UZbo4hGxnsDp1MvorrVJViYWPql5ApLGjmJMMd6A9vtmXjsBwzcblb2OshhyRaXhQmZ7Hd5AlcSotO5sJ+91Ush5xpwJevOqDyOzv0gnsEVtJOuvgGdU52u7ELzCyWrM0ropsAVtNN9LCLcWmPlZoiyuaoVb0Zu07xp8Dh0vTek3zD0IdlZHJjstRbUOF/A505O0/P7QGu9Aw9jWo/Kh8WjQWEmc1xfwZVqp5MHUVnk2uVAT6OypZWhxHdwBV23j8VZLO2RXOH9yVTE7zGBgMfQG0E3Iy6dSvQsqm9Jtvi236CJjhcY2JneqTWovltjleEv0D7JFldMdJJ+fh4ouIJeO28BsdgeuHRjiv2hvQVJ90m2sMpPVL1jBQ520LV241SaeiXE6GfUfDyMgBIKuIK2XynL7Z8Bt1dVwImiP1Ky7g0aHRp4XECpsSZsdzXlW0bLS4NEhwoeh/4OuM29b80JKD8RVCs3dPD5VFZ/X8cwZXNZEPm7ZWDnFTN1GEsXue7cUR2yr3zJFvv8vIO3FOwElMQOkBp7sxgG7fFzdbHl4DF0nd13/ubvSIAraHt/pdCDSI39leySTN7T/srxl0RkwE6lOx9BYtmajX3liOQKTTX2IwWuoOsu3TCC6l7JFlZ7vZFFDuxM7zqLc6p/Y8gXsjP/sBd0JMEVtNMg/Br0DpedeiNY5fXSO7irUXRkwedTWXssX73mbEdv2SaZ/EtTCjwOvQ/VBeejqDJCmyZle2FoyoEvRNFEbmxH0BnKpR7pPbavUaw9PtJT2gtoov+54sD/AwDxB1vYRS9mAAAAAElFTkSuQmCC');
  210. }
  211. .divHeight-bot-line {
  212. background: #f5f5f5;
  213. position: relative;
  214. /* overflow:hidden; */
  215. height: 10px;
  216. }
  217. .divHeight-bot-line:after {
  218. content: '';
  219. position: absolute;
  220. z-index: 2;
  221. bottom: 0;
  222. left: 0;
  223. width: 100%;
  224. height: 1px;
  225. border-bottom: 1px solid #d2d2d2;
  226. -webkit-transform: scaleY(0.5);
  227. transform: scaleY(0.5);
  228. -webkit-transform-origin: 0 100%;
  229. transform-origin: 0 100%;
  230. }
  231. .aui-app-box {
  232. padding: 0.5rem;
  233. }
  234. .aui-app-flex-box {
  235. background: #fff;
  236. border-radius: 4px;
  237. padding: 0.8rem;
  238. margin-bottom: 10px;
  239. /* overflow: hidden; */
  240. }
  241. .aui-app-flex {
  242. /* padding: 15px; */
  243. position: relative;
  244. display: -webkit-box;
  245. display: -webkit-flex;
  246. display: flex;
  247. -webkit-box-align: center;
  248. -webkit-align-items: center;
  249. align-items: center;
  250. padding-bottom: 10px;
  251. }
  252. .aui-app-flex-hd {
  253. margin-right: .8em;
  254. width: 50px;
  255. height: 50px;
  256. line-height: 50px;
  257. text-align: center;
  258. }
  259. .aui-app-flex-hd img {
  260. width: 100%;
  261. max-height: 100%;
  262. border-radius: 4px;
  263. vertical-align: top;
  264. }
  265. .aui-app-flex-bd {
  266. -webkit-box-flex: 1;
  267. -webkit-flex: 1;
  268. flex: 1;
  269. min-width: 0;
  270. }
  271. .aui-app-flex-bd h2 {
  272. color: #333;
  273. font-size: 1rem;
  274. padding-bottom: 10px;
  275. }
  276. .aui-app-flex-bd h2 em {
  277. color: #ff9000;
  278. font-size: 0.7rem;
  279. border-radius: 3px;
  280. border: 1px solid #ff9000;
  281. font-style: normal;
  282. padding: 0 0.2rem;
  283. }
  284. .aui-app-flex-fr {
  285. color: #fff;
  286. font-size: 0.8rem;
  287. border-radius: 3px;
  288. background: #ff9000;
  289. padding: 0.5rem 1.5rem;
  290. }
  291. .box-line {
  292. position: relative;
  293. }
  294. .box-line:before {
  295. content: " ";
  296. position: absolute;
  297. top: 0;
  298. left: 0;
  299. width: 200%;
  300. height: 100%;
  301. border: 1px solid #D9D9D9;
  302. -webkit-transform: scaleX(0.5);
  303. transform: scaleX(0.5);
  304. -webkit-transform-origin: 100% 0;
  305. transform-origin: 100% 0;
  306. color: rgba(207, 207, 207, 0.95);
  307. transform-origin: 0 0;
  308. border-radius: 5px;
  309. }
  310. .aui-app-flex:after {
  311. content: '';
  312. position: absolute;
  313. z-index: 2;
  314. bottom: 0;
  315. left: 0;
  316. width: 100%;
  317. height: 1px;
  318. // border-bottom: 1px solid #d8d8d8;
  319. -webkit-transform: scaleY(0.5);
  320. transform: scaleY(0.5);
  321. -webkit-transform-origin: 0 100%;
  322. transform-origin: 0 100%;
  323. }
  324. .aui-app-flex-bd p {
  325. font-size: 0.7rem;
  326. }
  327. .aui-app-flex-text {
  328. font-size: 0.8rem;
  329. color: #999;
  330. padding-top: 10px;
  331. }