app.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. /*@import url(/jyapp/css/layout.css?v=51430);*/
  2. /*@import url(/jyapp/css/font.css?v=51430);*/
  3. body{
  4. margin: 0px;
  5. font-family: tahoma, arial, 'Hiragino Sans GB', 'Microsoft YaHei', 宋体, sans-serif;
  6. -webkit-tap-highlight-color: transparent;
  7. font-size: 16px;
  8. }
  9. ul{
  10. list-style: none;
  11. padding: 0px;
  12. margin: 0px;
  13. }
  14. img{
  15. vertical-align: sub;
  16. }
  17. a{
  18. color: #0987ff;
  19. }
  20. ::-webkit-input-placeholder {
  21. color: #ddd;
  22. }
  23. .overflow-hidden{
  24. overflow: hidden;
  25. height: 100%;
  26. }
  27. [type='text']{
  28. border: 1px solid #ccc;
  29. border-radius: 4px;
  30. padding-left: 10px;
  31. padding-right: 0px;
  32. }
  33. [type='text'],textarea{
  34. box-shadow: 0px 0px 0px rgba(0,0,0,0);
  35. -webkit-appearance: none;
  36. }
  37. .red-border{
  38. border-color: red !important;
  39. }
  40. .btn{
  41. background-color: #24C0D7;
  42. text-align: center;
  43. vertical-align: middle;
  44. touch-action: manipulation;
  45. cursor: pointer;
  46. background-image: none;
  47. border: 1px solid transparent;
  48. white-space: nowrap;
  49. padding: 8px 12px;
  50. font-size: 14px;
  51. line-height: 1.42857143;
  52. border-radius: 4px;
  53. -webkit-user-select: none;
  54. -moz-user-select: none;
  55. -ms-user-select: none;
  56. user-select: none;
  57. color: #FFFFFF;
  58. position: relative;
  59. outline-width: 0px;
  60. box-shadow: none !important;
  61. }
  62. .btn[disabled]{
  63. cursor: not-allowed;
  64. pointer-events: none;
  65. opacity: .5;
  66. filter: alpha(opacity=65);
  67. -webkit-box-shadow: none;
  68. box-shadow: none;
  69. }
  70. .border-top{
  71. border-top: 1px solid #CCCCCC;
  72. }
  73. .hide{
  74. display: none;
  75. }
  76. .mustshare-mark{
  77. position: fixed;
  78. left: 0px;
  79. right: 0px;
  80. bottom: 0px;
  81. top: 0px;
  82. background-color: rgba(0,0,0,.84);
  83. z-index: 999999;
  84. display: none;
  85. }
  86. .mustshare-mark img:nth-child(1){
  87. position: absolute;
  88. top: 140px;
  89. left: 50%;
  90. margin-left: -141px;
  91. width: 282px;
  92. }
  93. .mustshare-mark img:nth-child(2){
  94. position: absolute;
  95. top: 350px;
  96. left: 50%;
  97. margin-left: -74px;
  98. width: 148px;
  99. }
  100. .error-body {
  101. width: 100%;
  102. margin: 0;
  103. padding: 0;
  104. text-align: center;
  105. }
  106. .verify-body {
  107. width: 90vw;
  108. margin: 0 auto;
  109. text-align: center;
  110. padding: 55px 0;
  111. }
  112. .verify-img{
  113. width: 100%;
  114. }
  115. .verify_logo {
  116. width: 100%;
  117. display: block;
  118. }
  119. .verify-content {
  120. border: #F5F5F5 solid 1px;
  121. margin: auto;
  122. background-color: #FFFFFF;
  123. box-shadow: 1px 1px 1px 1px grey;
  124. padding: 3vw;
  125. display: flex;
  126. flex-direction: column;
  127. }
  128. .verify-content .word {
  129. text-align: left;
  130. margin: 0px;
  131. }
  132. #antiimg{
  133. width: 100%;
  134. }
  135. .footBtn {
  136. margin-top: 5pt;
  137. display: flex;
  138. flex-direction: row;
  139. justify-content: space-between;
  140. }
  141. * {
  142. -webkit-touch-callout:none;
  143. -khtml-user-select:none;
  144. -moz-user-select:none;
  145. -ms-user-select:none;
  146. user-select:none;
  147. }
  148. a,input,button{
  149. outline: none !important;
  150. -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
  151. -webkit-focus-ring-color: rgba(0, 0, 0, 0) !important;
  152. }
  153. /*****app 第一版 布局*****/
  154. .app-layout-header{
  155. line-height: 44px;
  156. background-color: #FFFFFF;
  157. text-align: center;
  158. border-bottom: 1px solid #E6E6E6;
  159. font-size: 17px;
  160. position: absolute;
  161. padding-top: 20px;
  162. z-index: 99999;
  163. left: 0;
  164. right: 0;
  165. top: 0;
  166. color: #444444;
  167. }
  168. .app-layout-header>.app-back{
  169. position: absolute;
  170. font-size: 19px;
  171. padding-top: 20px;
  172. padding-left: 11px;
  173. padding-right: 40px;
  174. padding-bottom: 7px;
  175. left: 0px;
  176. top: 18px;
  177. color: #444444;
  178. }
  179. .app-layout-content-a,.app-layout-content-b{
  180. position: absolute;
  181. top: 44px;
  182. padding-top: 20px;
  183. overflow-y: auto;
  184. bottom: 0px;
  185. left: 0px;
  186. right:0px;
  187. -webkit-overflow-scrolling:touch;
  188. }
  189. .app-layout-content-a{
  190. bottom: 65px;
  191. }
  192. .app-layout-footer {
  193. width: 100%;
  194. background: #fff;
  195. position: fixed;
  196. left: 0;
  197. bottom: 0;
  198. z-index: 99;
  199. border-top: 1px solid #E6E6E6;
  200. box-sizing: border-box;
  201. }
  202. .app-layout-footer ul {
  203. width: 100%;
  204. }
  205. .app-layout-footer ul li {
  206. width: 25%;
  207. float: left;
  208. text-align: center;
  209. color: #888888;
  210. height: 49px;
  211. position: relative;
  212. }
  213. .app-layout-footer ul li span {
  214. font-size: 21px;
  215. display: block;
  216. width: 100%;
  217. text-align: center;
  218. margin-top: 10px;
  219. }
  220. .app-layout-footer ul li p {
  221. margin: 0;
  222. font-size: 10px;
  223. position: absolute;
  224. left: 0px;
  225. right: 0px;
  226. text-align: center;
  227. bottom: 2px;
  228. line-height: initial;
  229. }
  230. .app-layout-footer ul li.active span {
  231. color: #2CB7CA;
  232. }
  233. .app-layout-footer ul li.active p {
  234. color: #2CB7CA;
  235. }
  236. .easyalert{
  237. position: fixed;
  238. background-color: rgba(0,0,0,0.7);
  239. top: 50%;
  240. color: #fff;
  241. z-index: 999;
  242. border-radius: 6px;
  243. padding: 17px 20px;
  244. font-size: 15px;
  245. line-height: 22px;
  246. max-width: 260px;
  247. text-align: center;
  248. display: none;
  249. }
  250. .easyalert-icon{
  251. font-size: 13px;
  252. border-radius: 5px;
  253. width: 120px;
  254. height: 120px;
  255. padding: 0px;
  256. left: 50%;
  257. right: 50%;
  258. margin-top: -60px;
  259. margin-left: -60px;
  260. margin-right: -60px;
  261. }
  262. .jyapp-li-active{
  263. background-color: #e5e5e8 !important;
  264. }
  265. .app-layout-footer .jyapp-icon-sousuo{
  266. font-size: 42px;
  267. top: -17px;
  268. left: -10.5px;
  269. }
  270. /******************/
  271. .easypopup{
  272. background-color: rgba(0,0,0,0.7);
  273. position: fixed;
  274. left: 0px;
  275. right: 0px;
  276. top: 0px;
  277. bottom: 0px;
  278. display: none;
  279. z-index: 999;
  280. letter-spacing: 1px;
  281. }
  282. .easypopup>div{
  283. background-color: #fff;
  284. position: fixed;
  285. left: 50%;
  286. top: 50%;
  287. margin-left: -140px;
  288. border-radius: 4px;
  289. overflow: hidden;
  290. width: 280px;
  291. }
  292. .easypopup .easypopup-edit{
  293. width: 300px;
  294. margin-left: -150px;
  295. }
  296. .easypopup .easypopup-header{
  297. padding-top: 29px;
  298. padding-bottom: 16px;
  299. text-align: center;
  300. font-size: 17px;
  301. color: #1d1d1d;
  302. }
  303. .easypopup .easypopup-main .easypopup-content{
  304. padding: 0px 20px 18px 20px;
  305. color: #686868;
  306. }
  307. .easypopup .easypopup-edit .easypopup-content{
  308. padding: 0px 15px 18px 15px;
  309. color: #686868;
  310. }
  311. .easypopup .easypopup-alert .easypopup-content{
  312. padding: 38px 20px 24px 20px;
  313. }
  314. .easypopup .easypopup-content{
  315. text-align: center;
  316. font-size: 15px;
  317. }
  318. .easypopup .easypopup-edit [type='text']{
  319. height: 37px;
  320. border-radius: 3px;
  321. font-size: 16px;
  322. color: #1d1d1d;
  323. padding-left: 10px;
  324. width: 100%;
  325. }
  326. .easypopup .easypopup-edit ::-webkit-input-placeholder {
  327. color: #686868;
  328. }
  329. .easypopup .easypopup-footer{
  330. text-align: center;
  331. border-top: 1px solid #E0E0E0;
  332. display: table;
  333. width: 100%;
  334. font-size: 18px;
  335. }
  336. .easypopup .easypopup-footer>span{
  337. height: 50px;
  338. line-height: 50px;
  339. display: table-cell;
  340. background-color: #fff;
  341. }
  342. .easypopup .easypopup-footer>span:last-child{
  343. color: #2cb7ca;
  344. border-left: 1px solid #E0E0E0;
  345. }
  346. .easypopup .easypopup-footer>span:first-child{
  347. border-left: none;
  348. }
  349. .easypopup .easypopup-alert .easypopup-footer>span{
  350. width: 100%;
  351. }
  352. /*分享好友弹窗*/
  353. .share {
  354. position: fixed;
  355. top: 0;
  356. left: 0;
  357. width: 100%;
  358. height: 100%;
  359. background: rgba(0, 0, 0, 0.6);
  360. z-index: 99999;
  361. display: none;
  362. }
  363. .share .shareMain {
  364. width: 100%;
  365. background: #f4f4f9;
  366. position: absolute;
  367. left: 0;
  368. bottom: 0;
  369. }
  370. .share .shareMain ul{
  371. background-color: #f4f4f9;
  372. height: 120px;
  373. padding-top: 32px;
  374. box-sizing: border-box;
  375. }
  376. .share .shareMain ul li {
  377. float: left;
  378. text-align: center;
  379. margin: 0px 15px;
  380. }
  381. .share .shareMain ul li span {
  382. font-size: 50px;
  383. }
  384. .share .shareMain ul li span.jyapp-icon-weixin {
  385. color: #0ab70e;
  386. }
  387. .share .shareMain ul li span.jyapp-icon-qq {
  388. color: #4cafe9;
  389. }
  390. .share .shareMain ul li span.jyapp-icon-pengyouquan {
  391. color: #a5e537;
  392. }
  393. .share .shareMain ul li p {
  394. font-size: 14px;
  395. color: #1D1D1D;
  396. margin:0px;
  397. }
  398. .share .shareMain a.shareQx {
  399. display: block;
  400. height: 50px;
  401. line-height: 50px;
  402. text-align: center;
  403. background: #fff;
  404. font-size: 17px;
  405. color:#1d1d1d;
  406. }
  407. .clearfix::after, .clearfix::before {
  408. content: "";
  409. display: block;
  410. height: 0;
  411. clear: both;
  412. overflow: hidden;
  413. }
  414. ul, li, ol {
  415. list-style: none;
  416. }
  417. .clearfix a, .clearfix strong {
  418. color: #1d1d1d;
  419. }
  420. .jyapp-icon-weixin:before {
  421. content: "\AC";
  422. }
  423. .redspot{
  424. position: absolute;
  425. width: 8px;
  426. height: 8px;
  427. background: #f12c20;
  428. border-radius: 100%;
  429. }
  430. /* 统一头部 */
  431. .jy-app-header.app-layout-header .app-layout-content-a, .app-layout-content-b{
  432. top: 21.33333vw;
  433. padding-top: 0;
  434. }
  435. .jy-app-header.app-layout-header {
  436. display: flex;
  437. width: 100%;
  438. justify-content: space-between;
  439. align-items: center;
  440. }
  441. .jy-app-header.app-layout-header + .paddingtop {
  442. padding-top: 21.33333vw;
  443. }
  444. .jy-app-header.app-layout-header >.app-back,.jy-app-header.app-layout-header >.app-back_,.jy-app-header.app-layout-header > .header-share {
  445. top: auto;
  446. bottom: 0;
  447. position: unset;
  448. padding: 16px 0;
  449. position: relative;
  450. }
  451. .jy-app-header.app-layout-header span.app-back.jyapp-icon.jyapp-icon-zuojiantou::after {
  452. content: "";
  453. display: inline-block;
  454. width: 4em;
  455. height: 100%;
  456. position: absolute;
  457. top: 0;
  458. left: 0;
  459. }
  460. .j-header.jy-app-header {
  461. height: 21.33333vw;
  462. padding: 10.66667vw 3.2vw 0 3.2vw;
  463. font-family: inherit;
  464. background: inherit;
  465. }
  466. .jy-app-header {
  467. height: 21.33333vw;
  468. padding: 10.66667vw 3.2vw 0 3.2vw;
  469. -webkit-box-sizing: border-box;
  470. box-sizing: border-box;
  471. background: #fff;
  472. font-family: Avenir,Helvetica,Arial,sans-serif;
  473. }
  474. .jy-app-header .icon-left {}
  475. .js_dialog .box .box_bd .weui-icon-checked,
  476. .vip-check-out .weui-cells_checkbox .weui-check:checked+.weui-icon-checked,
  477. .vip-check-out .weui-cells_checkbox .weui-check[aria-checked=true]+.weui-icon-checked{
  478. color: #2cb7ca;
  479. }