jcq.css 23 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264
  1. .flex {
  2. display: flex;
  3. }
  4. .flex-column {
  5. flex-direction: column;
  6. }
  7. .flex-row {
  8. flex-direction: row;
  9. }
  10. .flex-wrap {
  11. flex-wrap: wrap;
  12. }
  13. .flex-nowrap {
  14. flex-wrap: nowrap;
  15. }
  16. .justify-start {
  17. justify-content: flex-start;
  18. }
  19. .justify-end {
  20. justify-content: flex-end;
  21. }
  22. .justify-center {
  23. justify-content: center;
  24. }
  25. .justify-between {
  26. justify-content: space-between;
  27. }
  28. .items-center {
  29. align-items: center;
  30. }
  31. .items-start {
  32. align-items: flex-start;
  33. }
  34. .items-end {
  35. align-items: flex-end;
  36. }
  37. .text-center {
  38. text-align: center;
  39. }
  40. .text-left {
  41. text-align: left;
  42. }
  43. .text-right {
  44. text-align: right;
  45. }
  46. .w-full {
  47. width: 100%;
  48. }
  49. .h-full {
  50. height: 100%;
  51. }
  52. .ms-btn {
  53. border-radius: 5px;
  54. font-size: 16px;
  55. /* width: 136px; */
  56. }
  57. .img-note {
  58. width: 300px;
  59. margin-top: 10px;
  60. margin-left: 0;
  61. padding-left: 0;
  62. }
  63. .img-note p {
  64. font-size: 13px;
  65. }
  66. .encapsulation .upload-icon {
  67. width: 144px;
  68. height: 144px;
  69. background-position: center 50px;
  70. margin-bottom: 0;
  71. }
  72. .encapsulation .upload-icon .text {
  73. margin-top: 100px;
  74. }
  75. .form-group .input-text.radio {
  76. width: 180px;
  77. display: flex;
  78. justify-content: space-between;
  79. align-items: start;
  80. margin-top: 0;
  81. margin-bottom: 0;
  82. margin-left: 0px;
  83. }
  84. .radio-box {
  85. width: 230px;
  86. height: 88px;
  87. position: relative;
  88. display: flex;
  89. align-items: center;
  90. justify-content: space-between;
  91. font-size: 16px;
  92. font-weight: 500;
  93. color: #151515;
  94. border: 1px solid #edeff0;
  95. margin-bottom: 20px;
  96. cursor: pointer;
  97. }
  98. .radio-box.active {
  99. border: 1px solid #157df1;
  100. }
  101. .radio-box .left {
  102. padding-top: 0;
  103. padding-right: 30px;
  104. border-right: 1px solid #E5E5E5;
  105. }
  106. .radio-box .left .title {
  107. font-size: 14px;
  108. color: #8F959F;
  109. margin-bottom: 10px;
  110. }
  111. .radio-box div span {
  112. color: #157df1;
  113. font-size: 32px;
  114. font-weight: 500;
  115. }
  116. .radio-box .radio-checked {
  117. position: absolute;
  118. bottom: 0;
  119. right: 0;
  120. display: none;
  121. }
  122. .radio-box.active .radio-checked {
  123. display: block;
  124. }
  125. .pay-num {
  126. text-align: left;
  127. line-height: 20px;
  128. }
  129. .pay-num b {
  130. font-size: 32px;
  131. font-weight: 500;
  132. margin-left: 10px;
  133. }
  134. .pay-num b span {
  135. font-size: 14px;
  136. }
  137. .yxq-title {
  138. font-weight: bold;
  139. font-size: 16px;
  140. margin-bottom: 10px;
  141. color: #151515;
  142. margin-top: 10px;
  143. }
  144. .price-1 .title {
  145. font-size: 30px;
  146. font-weight: 700;
  147. color: #151515;
  148. }
  149. .price-tab li:first-of-type {
  150. border-radius: 0;
  151. }
  152. .price-tab li:last-of-type {
  153. border-radius: 0;
  154. }
  155. .price-tab ul li {
  156. color: #8f959f;
  157. font-size: 18px;
  158. margin-right: 0;
  159. width: 240px;
  160. height: 59px;
  161. line-height: 59px;
  162. }
  163. .price-tab ul li.active {
  164. background-color: #e3ecff;
  165. color: #2168fb;
  166. border: #2168fb;
  167. border: 1px solid #2168fb;
  168. }
  169. .price-tab ul {
  170. width: auto;
  171. height: auto;
  172. display: flex;
  173. justify-content: center;
  174. margin-bottom: 0;
  175. }
  176. .price-con .price-common {
  177. margin-top: 60px;
  178. }
  179. .buy-number .price-common .con {
  180. border-color: #a8d1ff;
  181. }
  182. .buy-number .price-common .con .bottom-con .b-price {
  183. color: #ff7429;
  184. }
  185. .buy-number .price-common .con .c-top .num {
  186. color: #2168fb;
  187. }
  188. .buy-number .price-common .con .bottom-con dl {
  189. border-color: #C2DCFF;
  190. border-width: 2px;
  191. }
  192. .c-top .text {
  193. width: 80px;
  194. height: 30px;
  195. border-radius: 25px;
  196. background-color: #c2dcff;
  197. color: #2168fb;
  198. line-height: 30px;
  199. margin: 0 auto;
  200. margin-bottom: 20px;
  201. }
  202. .help dl .answer .right,
  203. .help dl .answer .right span {
  204. color: #8f959f !important;
  205. }
  206. .const-table-bor table.table-bordered>tbody>tr>td,
  207. .const-table-bor table.table-bordered>tbody>tr>th,
  208. .const-table-bor table.table-bordered>tfoot>tr>td,
  209. .const-table-bor table.table-bordered>tfoot>tr>th,
  210. .const-table-bor table.table-bordered>thead>tr>td,
  211. .const-table-bor table.table-bordered>thead>tr>th {
  212. border-width: 2px;
  213. border-color: #C2DCFF !important;
  214. color: #2D4B73;
  215. }
  216. .const-table-bor table.table-bordered>tbody>tr:first-child>th:last-child {
  217. background-color: #c6e1fa;
  218. color: #2168FB;
  219. position: relative;
  220. }
  221. .const-table-bor table.table-bordered>tbody>tr:first-child>th:nth-last-child(2) {
  222. background-color: #e2f0ff;
  223. color: #2168FB;
  224. }
  225. .const-table-bor table.table-bordered>tbody>tr:first-child>th:nth-last-child(3) {
  226. background-color: #f0f7ff;
  227. color: #2168FB;
  228. }
  229. .price-con .price-common .badge {
  230. background-color: #ff7429;
  231. border-radius: 25px;
  232. }
  233. .tool-classs .con ul li {
  234. width: 360px;
  235. height: 318px;
  236. background-color: #fff;
  237. }
  238. .tool-classs .con ul li .t-con {
  239. border: none;
  240. }
  241. .tool-classs .con {
  242. box-shadow: none;
  243. background-color: transparent;
  244. }
  245. .tool-classs .con ul li:nth-of-type(n+4) {
  246. margin-top: 20px;
  247. margin-right: 20px;
  248. }
  249. .tool-classs .con ul li:nth-of-type(3) {
  250. margin-left: 20px;
  251. }
  252. .tool-classs .con ul li:nth-of-type(1) {
  253. margin-right: 20px;
  254. }
  255. .tool-classs .con ul li .tit {
  256. color: #151515;
  257. font-size: 20px;
  258. font-weight: 700;
  259. }
  260. .tool-classs .con ul li p {
  261. font-size: 15px;
  262. color: #8F959F;
  263. }
  264. .tool-classs .con ul li .ms-btn {
  265. border: 1px solid #2168fb;
  266. border-radius: 5px;
  267. height: 36px;
  268. padding: 0;
  269. text-align: center;
  270. font-size: 16px;
  271. color: #2168FB;
  272. padding: 7px 30px;
  273. width: auto;
  274. }
  275. .user-center1 .account-management>ul {
  276. border-bottom: 0;
  277. background-color: #fff;
  278. font-weight: 500;
  279. font-size: 15px;
  280. color: #8F959F;
  281. margin-bottom: 2px;
  282. padding-left: 5px;
  283. }
  284. .user-center1 .account-management>ul li.active {
  285. color: #4B84FF;
  286. font-weight: 700;
  287. border-bottom: 2px solid #4B84FF;
  288. }
  289. .user-center1 .account-management .tab {
  290. padding: 0 5px;
  291. }
  292. .user-center1 .account-management .data .table1 tr th:first-of-type {
  293. width: 40px;
  294. color: #151515;
  295. font-weight: 500;
  296. font-size: 14px;
  297. text-align: right;
  298. }
  299. .user-center1 .account-management .data .table1 tr td {
  300. color: #151515;
  301. font-weight: 400;
  302. font-size: 14px;
  303. text-align: left;
  304. padding-left: 40px;
  305. }
  306. .table.table1 tr {
  307. height: 40px;
  308. }
  309. .user-center1 .account-management .data hr {
  310. margin: 10px 0;
  311. }
  312. .user-center1 .account-management .data .table2 tr th:first-of-type {
  313. width: 100px;
  314. text-align: right;
  315. color: #151515;
  316. font-weight: 500;
  317. font-size: 14px;
  318. }
  319. .user-center1 .account-management .data .table2 tr td {
  320. color: #151515;
  321. font-weight: 400;
  322. font-size: 14px;
  323. text-align: left;
  324. padding-left: 40px;
  325. }
  326. .user-center1 .account-management .data table {
  327. margin-top: 0;
  328. }
  329. .user-center1 .account-management .pwd .form-group {
  330. display: flex;
  331. }
  332. .user-center1 .account-management .data table tr td .ms-btn-default {
  333. border: 1px solid #4B84FF;
  334. color: #4B84FF;
  335. width: auto;
  336. }
  337. .user-center1 .account-management .pwd .form-group label {
  338. width: 100px;
  339. text-align: right;
  340. color: #151515;
  341. font-weight: 500;
  342. font-size: 14px;
  343. position: absolute;
  344. top: 50%;
  345. transform: translateY(-50%);
  346. }
  347. .user-center1 .account-management .pwd .form-group label span {
  348. color: red;
  349. margin-right: 5px;
  350. }
  351. .j-form .form-control {
  352. margin-left: 125px;
  353. }
  354. .user-center1 .account-management .pwd .ms-btn {
  355. width: auto;
  356. padding: 7px 30px;
  357. margin-left: 124px;
  358. }
  359. .user-center1 .aside-right .balance-recharge .b-num {
  360. color: #4B84FF;
  361. }
  362. .user-center1 .aside-right .balance-recharge .b-tit {
  363. color: #151515;
  364. font-size: 16px;
  365. font-weight: 500;
  366. }
  367. .user-center1 .aside-right .balance-recharge {
  368. border: 0px;
  369. margin-bottom: 10px;
  370. }
  371. .j-partition {
  372. width: 113%;
  373. height: 20px;
  374. background-color: #f2f2f5;
  375. margin: 0 -40px;
  376. margin-bottom: 20px;
  377. box-shadow: 0 0 5px rgba(255, 255, 255, .05);
  378. }
  379. .user-center1>.row>.col-sm-10 {
  380. padding-left: 20px;
  381. }
  382. .user-center1 .aside-right .balance-recharge p {
  383. color: #8F959F;
  384. font-size: 14px;
  385. }
  386. .user-center1 .aside-right .balance-recharge .recharge-btn {
  387. line-height: 30px;
  388. }
  389. .user-center1 .aside-right .user-table .table th {
  390. background-color: #f5f6f7;
  391. color: #8f959f;
  392. font-size: 14px;
  393. padding: 7px 10px;
  394. }
  395. .user-center1 .aside-right .user-table .table td {
  396. font-size: 14px;
  397. color: #000;
  398. }
  399. .table_top.clearfix.j-top {
  400. background-color: #fff;
  401. padding: 15px 5px;
  402. margin-bottom: 20px;
  403. display: flex;
  404. flex-wrap: wrap;
  405. align-items: center;
  406. }
  407. .table_top.clearfix.j-top a {
  408. border-right: 1px solid #e5e5e5;
  409. }
  410. .table_top.clearfix.j-top.top2 a {
  411. width: 150px;
  412. text-align: center;
  413. }
  414. .table_top.clearfix.j-top a:last-child {
  415. border-right: none;
  416. margin-left: 0px;
  417. }
  418. .table_top.clearfix.j-top p {
  419. color: #151515;
  420. font-weight: 500;
  421. font-size: 16px;
  422. }
  423. .table_top.clearfix.j-top p.b-num {
  424. color: #4B84FF;
  425. font-size: 32px;
  426. }
  427. .table_top.clearfix.j-top p.b-num b {
  428. margin-left: 5px;
  429. }
  430. .warn-prompt {
  431. background-color: #e7f2fe;
  432. color: #157df1;
  433. border-color: #e7f2fe;
  434. display: flex;
  435. justify-content: space-between;
  436. }
  437. .warn-prompt .iconfont {
  438. font-size: 14px;
  439. font-weight: 500;
  440. color: #8F959F;
  441. margin-left: 0;
  442. }
  443. .warn-prompt span a {
  444. font-size: 14px;
  445. font-weight: 500;
  446. color: #2168FB;
  447. }
  448. .table-list-top {
  449. background-color: #fff;
  450. padding: 10px;
  451. box-shadow: 0 0 5px rgba(0, 0, 0, .05);
  452. margin-bottom: 20px;
  453. padding-bottom: 2px;
  454. }
  455. .table-list-body {
  456. background-color: #fff;
  457. background-color: #fff;
  458. padding: 10px;
  459. box-shadow: 0 0 5px rgba(0, 0, 0, .05)
  460. }
  461. .j-top-wrap dl.clearfix {
  462. display: flex;
  463. flex-wrap: wrap;
  464. align-items: center;
  465. }
  466. .j-top-wrap dl.clearfix .ms-btn.ms-btn-primary.mt3.w60 {
  467. margin-left: 20px;
  468. }
  469. .j-top-title,
  470. .j-top-content {
  471. background-color: #fff;
  472. box-shadow: 0 0 5px rgba(0, 0, 0, .05);
  473. padding: 10px 20px;
  474. }
  475. .j-top-content {
  476. padding-top: 20px;
  477. min-height: 417px;
  478. }
  479. .j-top-content .table-wrap {
  480. margin-top: 10px;
  481. }
  482. .j-bgend {
  483. background-color: transparent;
  484. padding: 0;
  485. }
  486. .buy-number .price-common .con .bottom .btn-buy {
  487. background-color: #2168FB;
  488. color: #fff;
  489. }
  490. .form-group label {
  491. font-weight: 500 !important;
  492. color: #151515 !important;
  493. }
  494. .step1 label span {
  495. float: left;
  496. }
  497. /* 移动端适配 */
  498. @media (max-width: 767px) {
  499. .cleanUp {
  500. margin-top: .2rem;
  501. }
  502. .form-group .input-text.radio {
  503. min-width: 180px;
  504. width: auto;
  505. justify-content: flex-start;
  506. }
  507. .form-group .input-text.radio>label:not(:first-child) {
  508. margin-left: .4rem;
  509. }
  510. .warn-prompt-wrap1ass {
  511. border: none;
  512. font-size: .24rem;
  513. padding: auto 0;
  514. }
  515. .release-app2 .aside-right .how-many .j-goumai .ms-btn-primary.w60 {
  516. padding: .1rem .4rem;
  517. width: auto;
  518. }
  519. .j-top-wrap dl.clearfix .ms-btn.ms-btn-primary.mt3.w60 {
  520. margin-left: 0;
  521. }
  522. .j-goumai {
  523. top: .48rem;
  524. right: 0px;
  525. }
  526. .j-search-btn {
  527. margin-top: .2rem;
  528. margin-bottom: .2rem;
  529. }
  530. .j-icon-search {
  531. display: none;
  532. }
  533. .j-search-btn input:first-child {
  534. margin-left: 0 !important;
  535. }
  536. .j-top-wrap dl.clearfix {
  537. position: relative;
  538. }
  539. .warn-prompt-cont {
  540. padding: 0 !important;
  541. }
  542. .header .header-left {
  543. height: 100%;
  544. display: flex;
  545. }
  546. .mobile-price .m-price-banner {
  547. background-color: #f3f3f3;
  548. padding: 0;
  549. }
  550. .mobile-price .new-price-tab ul li {
  551. color: #8f959f;
  552. font-size: .28rem;
  553. margin-right: 0;
  554. /* width: 240px; */
  555. /* height: 59px; */
  556. line-height: 1.18rem;
  557. border: 1px solid #d3e8ff;
  558. }
  559. .mobile-price ul li.active {
  560. background-color: #e3ecff;
  561. color: #2168fb;
  562. border: #2168fb;
  563. border: 1px solid #2168fb;
  564. }
  565. .mobile-price .tab li a {
  566. color: #151515;
  567. border-bottom-color: none;
  568. border: none;
  569. font-size: .28rem;
  570. font-weight: 500;
  571. }
  572. .mobile-price .m-publish .con .num {
  573. color: #2168FB;
  574. font-size: .64rem;
  575. text-align: left;
  576. border-bottom: 1px solid #a8d1ff;
  577. padding-bottom: .2rem;
  578. margin-bottom: .4rem;
  579. }
  580. .mobile-price .m-price-common .con .num span {
  581. font-size: .28rem;
  582. color: #2D4B73;
  583. margin-left: .2rem;
  584. }
  585. .mobile-price .m-price-common .con {
  586. background-color: #fff;
  587. padding: .4rem;
  588. color: #2d4b73;
  589. border: 1px solid #a8d1ff;
  590. margin-bottom: .4rem;
  591. position: relative;
  592. }
  593. .mobile-price .m-price-common .con .bottom {
  594. position: absolute;
  595. right: .4rem;
  596. bottom: .4rem;
  597. width: 2rem;
  598. height: .8rem;
  599. line-height: .8rem;
  600. }
  601. .mobile-price .m-price-common .con .b-price {
  602. font-size: .4rem;
  603. position: absolute;
  604. /* right: 1.2rem; */
  605. left: 66%;
  606. bottom: 1.2rem;
  607. color: #ff7429;
  608. }
  609. .mobile-price .m-price-common .con .b-price span {
  610. font-size: .64rem;
  611. }
  612. .mobile-price .m-price-common .con .bottom a {
  613. width: 2rem;
  614. height: .8rem;
  615. padding: 0;
  616. line-height: .8rem;
  617. background-color: #2168fb;
  618. color: #fff;
  619. text-align: center;
  620. }
  621. .mobile-price .m-price-common .con .recommended {
  622. background: transparent;
  623. }
  624. .mobile-price .help dl .right {
  625. font-size: .28rem;
  626. font-weight: 400;
  627. }
  628. .fixed-right li {
  629. padding: 0;
  630. }
  631. .row-mobile .table.table-bordered {
  632. border: 1px solid #e5e5e5;
  633. position: relative;
  634. }
  635. .row-mobile .table.table-bordered tr td span.icon-duihao {
  636. color: #13c960;
  637. }
  638. .row-mobile .table.table-bordered tr td span.icon-xingxing,
  639. .row-mobile .table.table-bordered tr td span.icon-xingxing2 {
  640. font-size: .24rem;
  641. color: #ffc000;
  642. }
  643. .tool-classs .con ul li {
  644. width: 48%;
  645. height: 4.4rem;
  646. }
  647. .tool-classs .con ul li .t-con .img-wrap img {
  648. width: .6rem;
  649. }
  650. .tool-classs .con ul li .img-wrap {
  651. width: .6rem;
  652. height: auto;
  653. margin-bottom: 0;
  654. float: left;
  655. }
  656. .tool-classs .con ul li p {
  657. font-size: .24rem;
  658. padding: 0 .1rem;
  659. margin-top: .8rem;
  660. text-align: left;
  661. }
  662. .tool-classs .con ul li .tit {
  663. float: left;
  664. font-size: .28rem;
  665. font-weight: 500;
  666. line-height: .6rem;
  667. margin-left: .1rem;
  668. }
  669. .tool-classs .con ul li:nth-of-type(odd) {
  670. margin-right: .2rem;
  671. margin-left: 0;
  672. margin-top: .2rem;
  673. padding: 0 .1rem;
  674. }
  675. .tool-classs .con ul li:nth-child(even) {
  676. margin-top: .2rem;
  677. margin-right: 0;
  678. padding: 0 .1rem;
  679. }
  680. .tool-classs .con ul li {
  681. padding-top: 0;
  682. }
  683. .tool-classs .con ul li:nth-of-type(odd) .t-con,
  684. .tool-classs .con ul li:nth-of-type(4) .t-con {
  685. border: none;
  686. }
  687. .tool-classs .con ul li .t-con,
  688. .tool-classs .con ul li:nth-of-type(n+3) .t-con {
  689. padding-bottom: 0;
  690. padding-top: .2rem;
  691. }
  692. .user-center1>.row>.col-sm-10 {
  693. padding-left: 0;
  694. }
  695. .user-center1 .account-management .pwd .form-group label {
  696. width: auto;
  697. top: -0.2rem;
  698. left: .08rem;
  699. }
  700. .j-form .form-control {
  701. margin-left: 0;
  702. }
  703. .user-center1 .aside-right .balance-recharge .b-num {
  704. font-size: .48rem;
  705. }
  706. .user-center1 .aside-right .balance-recharge .b-tit {
  707. font-size: .28rem;
  708. }
  709. .user-center1 .aside-right .balance-recharge .recharge-btn {
  710. top: 33%;
  711. line-height: .4rem;
  712. }
  713. .user-center1 .aside-right .balance-recharge p {
  714. font-size: .24rem;
  715. }
  716. .j-partition {
  717. width: 112%;
  718. margin: 0 -0.36rem;
  719. margin-bottom: .2rem;
  720. }
  721. .table_top.clearfix.j-top a {
  722. width: 50%;
  723. margin-bottom: .4rem;
  724. padding: 0 .4rem;
  725. }
  726. .table_top.clearfix.j-top a {
  727. width: 50%;
  728. margin-bottom: .4rem;
  729. padding: 0 .4rem;
  730. }
  731. .table_top.clearfix.j-top a:nth-child(even) {
  732. border-right: none;
  733. }
  734. .table_top.clearfix.j-top a:nth-last-child(-n+2) {
  735. /* margin-bottom: 0; */
  736. }
  737. .table_top.clearfix.j-top p.b-num {
  738. font-size: .48rem;
  739. }
  740. .table_top.clearfix.j-top p {
  741. font-size: .28rem;
  742. }
  743. .table_top.clearfix.j-top.top2 a {
  744. width: 2.1rem;
  745. }
  746. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3 {
  747. padding: .1rem;
  748. }
  749. .table_top.clearfix.j-top.top2 a:nth-child(even) {
  750. border-right: 1px solid #e5e5e5;
  751. }
  752. .table_top.clearfix.j-top.top2 a:nth-child(3),
  753. .table_top.clearfix.j-top.top2 a:nth-child(5) {
  754. border-right: none;
  755. }
  756. .j-label-text {
  757. width: auto !important;
  758. }
  759. .j-label-text-radio {
  760. width: 3.6rem !important;
  761. }
  762. .j-label-text-je {
  763. width: 3.2rem !important;
  764. }
  765. .j-label-open {
  766. width: 1.6rem !important;
  767. }
  768. .size-list {
  769. overflow-y: scroll;
  770. max-height: calc(100vh - 3.8rem);
  771. }
  772. .footer .left dl {
  773. margin-right: .6rem;
  774. }
  775. .warn-prompt {
  776. flex-wrap: wrap;
  777. padding: .1rem .2rem;
  778. margin-top: 0 !important;
  779. }
  780. .warn-prompt span:not(:first-child) {
  781. margin-top: .1rem;
  782. }
  783. .warn-prompt .iconfont {
  784. margin-right: 0;
  785. font-size: .24rem;
  786. padding-left: 0;
  787. float: left;
  788. }
  789. .warn-prompt span b {
  790. padding-left: 0;
  791. font-weight: 400;
  792. font-size: 14px;
  793. }
  794. .table_top.clearfix.j-top {
  795. padding-bottom: 0;
  796. margin-bottom: 0;
  797. }
  798. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3.tx-j {
  799. width: auto;
  800. padding: .1rem .4rem;
  801. margin-top: .2rem;
  802. margin-bottom: .2rem;
  803. }
  804. .form-group .control-label.col-sm-2 {
  805. color: #151515;
  806. }
  807. .encapsulation .upload-icon {
  808. width: 2.4rem;
  809. height: 2.4rem;
  810. background-position: center;
  811. margin-right: .2rem;
  812. }
  813. .encapsulation .upload-icon .text {
  814. margin-top: 1.6rem;
  815. }
  816. .img-note {
  817. width: 3rem;
  818. padding-left: .2rem;
  819. margin-top: 0;
  820. }
  821. .clearfix.col-sm-6.flex.items-end.flex-wrap {
  822. align-items: start;
  823. }
  824. .radio-box {
  825. width: 3rem;
  826. height: 1.2rem;
  827. font-size: .28rem;
  828. float: left;
  829. }
  830. ul.period li:nth-child(even) {
  831. margin-right: 0;
  832. }
  833. ul.period li:nth-child(odd) {
  834. margin-right: .2rem;
  835. }
  836. .radio-box .left .title {
  837. font-size: .24rem;
  838. margin-bottom: .1rem;
  839. margin-top: .1rem;
  840. }
  841. .radio-box .left .content {
  842. font-size: .32rem;
  843. }
  844. .radio-box div span {
  845. font-size: .48rem;
  846. }
  847. .form-group.clearfix .col-sm-10 {
  848. padding: 0;
  849. width: 100%;
  850. }
  851. .form-group.clearfix .col-sm-10.ptfz {
  852. padding: 0 15px;
  853. }
  854. .form-group.clearfix .col-sm-10 .clearfix.period {
  855. padding: 0;
  856. border-bottom: 1px solid #e5e5e5;
  857. }
  858. .pay-num {
  859. width: 3.6rem;
  860. line-height: .48rem;
  861. }
  862. .form-group.clearfix {
  863. display: flex;
  864. flex-wrap: wrap;
  865. align-items: center;
  866. }
  867. .form-group.clearfix .col-sm-6 {
  868. width: 100%;
  869. }
  870. .img-note.fl.col-sm-6 {
  871. width: 50%;
  872. }
  873. .ms-btn {
  874. font-size: .28rem;
  875. }
  876. .ms-btn.w140 {
  877. width: 84vw;
  878. margin: 0 auto;
  879. }
  880. }
  881. /* 下载页预览样式 */
  882. .template-3 .t-bg-3{
  883. background: linear-gradient(to bottom, #39b4ff,#d4efff, #ffffff);
  884. height:634px;
  885. position: absolute;
  886. left: 0;
  887. top: 0;
  888. width: 100%;
  889. z-index: -1;
  890. right: 0;
  891. }
  892. .t-bg-3 img.img-logo {
  893. position: absolute;
  894. top: 21px;
  895. right: 146.66px;
  896. width: 324px;
  897. height: 326px;
  898. }
  899. .template-btn-wrap>div>a{
  900. padding: 5px 10px;
  901. border: 1px solid #6d9cfb;
  902. border-radius: 25px;
  903. }
  904. .template-common .t-code img{
  905. width: 200px;
  906. height: 200px;
  907. }
  908. .template-3 .content{
  909. margin-top: 84px;
  910. }
  911. .template-common .t-introduce .tit{
  912. font-size: 16px;
  913. font-weight: 500;
  914. }
  915. .template-common .t-introduce p{
  916. font-size: 14px;
  917. color: #727272;
  918. }
  919. .template-common .t-name .tit{
  920. font-size: 26px;
  921. font-weight: 700;
  922. }
  923. @media (max-width: 767px) {
  924. .j-app-detail {
  925. width: 100%;
  926. padding: 0 .64rem;
  927. }
  928. .j-app-detail .j-top-bg {
  929. margin: 0 -.64rem;
  930. background: linear-gradient(to bottom, #39b4ff, #ffffff);
  931. height: 3.74rem;
  932. padding: 0 .64rem;
  933. padding-top: 1.34rem;
  934. }
  935. .j-app-detail .j-top-bg img.img-logo {
  936. position: absolute;
  937. top: 2px;
  938. right: 2px;
  939. }
  940. .j-app-detail .j-top-bg .img-tips {
  941. position: absolute;
  942. top: .48rem;
  943. right: .64rem;
  944. }
  945. .j-app-detail .j-app-top {
  946. display: flex;
  947. align-items: start;
  948. justify-content: start;
  949. }
  950. .j-app-detail .j-app-top .app-img {
  951. height: 2.2rem;
  952. width: 2.2rem;
  953. border-radius: .2rem;
  954. overflow: hidden;
  955. box-shadow: 0 5px 10px rgba(175, 197, 223, 0.2);
  956. }
  957. .j-app-detail .j-app-top .app-info {
  958. margin-left: .36rem;
  959. }
  960. .j-app-detail .j-app-top .app-img img {
  961. width: 100%;
  962. height: 100%;
  963. }
  964. .j-app-detail .j-app-top .app-info .app-title {
  965. font-size: .48rem;
  966. font-weight: 700;
  967. color: #111111;
  968. margin-top: .2rem;
  969. }
  970. .google-play {
  971. margin-top: .2rem;
  972. }
  973. .j-app-detail .app-detail-content .coarse-title {
  974. margin-top: .2rem;
  975. font-size: .32rem;
  976. font-weight: 500;
  977. color: #111111;
  978. }
  979. .j-app-detail .app-detail-content p {
  980. margin-top: .2rem;
  981. font-size: .28rem;
  982. font-weight: 400;
  983. color: #727272;
  984. }
  985. .j-app-detail .app-info-detail>div {
  986. display: flex;
  987. justify-content: space-between;
  988. font-size: 14px;
  989. font-weight: 400;
  990. color: #111111;
  991. padding: .2rem 0;
  992. border-bottom: 1px solid #F2F2F2;
  993. }
  994. .j-app-detail .app-info-detail>div:last-child {
  995. border-bottom: 1px solid #F2F2F2;
  996. }
  997. .j-app-detail .app-info-detail>div>div:nth-child(1) {
  998. color: #727272;
  999. }
  1000. .j-score-tops {
  1001. display: flex;
  1002. justify-content: start;
  1003. align-items: end;
  1004. }
  1005. .j-score-tops .pf{
  1006. font-size: .8rem;
  1007. font-weight: 500;
  1008. color: #111111;
  1009. }
  1010. .j-score-tops .score-comments{
  1011. font-size: 13px;
  1012. color: #666666;
  1013. padding-bottom: .1rem;
  1014. }
  1015. .j-bottom-btn{
  1016. display: inline-block;
  1017. width: 90vw;
  1018. background: linear-gradient(to right, #2168FB, #34BFFF);
  1019. border-radius: 25px;
  1020. color: #fff;
  1021. height: .96rem;
  1022. text-align: center;
  1023. line-height: .96rem;
  1024. font-size: .32rem;
  1025. font-weight: 500;
  1026. position: fixed;
  1027. bottom: .4rem;
  1028. left: 50%;
  1029. transform: translateX(-50%);
  1030. box-shadow: 0 5px 10px rgba(175, 197, 223, 2.2);
  1031. }
  1032. .template-footer{
  1033. margin-bottom: 0.5rem;
  1034. }
  1035. .j-bottom-btn:hover{
  1036. color: #fff;
  1037. }
  1038. }