jcq.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268
  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. .j-label-text {
  498. width: 420px;
  499. }
  500. /* 移动端适配 */
  501. @media (max-width: 767px) {
  502. .cleanUp {
  503. margin-top: .2rem;
  504. }
  505. .form-group .input-text.radio {
  506. min-width: 180px;
  507. width: auto;
  508. justify-content: flex-start;
  509. }
  510. .form-group .input-text.radio>label:not(:first-child) {
  511. margin-left: .4rem;
  512. }
  513. .warn-prompt-wrap1ass {
  514. border: none;
  515. font-size: .24rem;
  516. padding: auto 0;
  517. }
  518. .release-app2 .aside-right .how-many .j-goumai .ms-btn-primary.w60 {
  519. padding: .1rem .4rem;
  520. width: auto;
  521. }
  522. .j-top-wrap dl.clearfix .ms-btn.ms-btn-primary.mt3.w60 {
  523. margin-left: 0;
  524. }
  525. .j-goumai {
  526. top: .48rem;
  527. right: 0px;
  528. }
  529. .j-search-btn {
  530. margin-top: .2rem;
  531. margin-bottom: .2rem;
  532. }
  533. .j-icon-search {
  534. display: none;
  535. }
  536. .j-search-btn input:first-child {
  537. margin-left: 0 !important;
  538. }
  539. .j-top-wrap dl.clearfix {
  540. position: relative;
  541. }
  542. .warn-prompt-cont {
  543. padding: 0 !important;
  544. }
  545. .header .header-left {
  546. height: 100%;
  547. display: flex;
  548. }
  549. .mobile-price .m-price-banner {
  550. background-color: #f3f3f3;
  551. padding: 0;
  552. }
  553. .mobile-price .new-price-tab ul li {
  554. color: #8f959f;
  555. font-size: .28rem;
  556. margin-right: 0;
  557. /* width: 240px; */
  558. /* height: 59px; */
  559. line-height: 1.18rem;
  560. border: 1px solid #d3e8ff;
  561. }
  562. .mobile-price ul li.active {
  563. background-color: #e3ecff;
  564. color: #2168fb;
  565. border: #2168fb;
  566. border: 1px solid #2168fb;
  567. }
  568. .mobile-price .tab li a {
  569. color: #151515;
  570. border-bottom-color: none;
  571. border: none;
  572. font-size: .28rem;
  573. font-weight: 500;
  574. }
  575. .mobile-price .m-publish .con .num {
  576. color: #2168FB;
  577. font-size: .64rem;
  578. text-align: left;
  579. border-bottom: 1px solid #a8d1ff;
  580. padding-bottom: .2rem;
  581. margin-bottom: .4rem;
  582. }
  583. .mobile-price .m-price-common .con .num span {
  584. font-size: .28rem;
  585. color: #2D4B73;
  586. margin-left: .2rem;
  587. }
  588. .mobile-price .m-price-common .con {
  589. background-color: #fff;
  590. padding: .4rem;
  591. color: #2d4b73;
  592. border: 1px solid #a8d1ff;
  593. margin-bottom: .4rem;
  594. position: relative;
  595. }
  596. .mobile-price .m-price-common .con .bottom {
  597. position: absolute;
  598. right: .4rem;
  599. bottom: .4rem;
  600. width: 2rem;
  601. height: .8rem;
  602. line-height: .8rem;
  603. }
  604. .mobile-price .m-price-common .con .b-price {
  605. font-size: .4rem;
  606. position: absolute;
  607. /* right: 1.2rem; */
  608. left: 66%;
  609. bottom: 1.2rem;
  610. color: #ff7429;
  611. }
  612. .mobile-price .m-price-common .con .b-price span {
  613. font-size: .64rem;
  614. }
  615. .mobile-price .m-price-common .con .bottom a {
  616. width: 2rem;
  617. height: .8rem;
  618. padding: 0;
  619. line-height: .8rem;
  620. background-color: #2168fb;
  621. color: #fff;
  622. text-align: center;
  623. }
  624. .mobile-price .m-price-common .con .recommended {
  625. background: transparent;
  626. }
  627. .mobile-price .help dl .right {
  628. font-size: .28rem;
  629. font-weight: 400;
  630. }
  631. .fixed-right li {
  632. padding: 0;
  633. }
  634. .row-mobile .table.table-bordered {
  635. border: 1px solid #e5e5e5;
  636. position: relative;
  637. }
  638. .row-mobile .table.table-bordered tr td span.icon-duihao {
  639. color: #13c960;
  640. }
  641. .row-mobile .table.table-bordered tr td span.icon-xingxing,
  642. .row-mobile .table.table-bordered tr td span.icon-xingxing2 {
  643. font-size: .24rem;
  644. color: #ffc000;
  645. }
  646. .tool-classs .con ul li {
  647. width: 48%;
  648. height: 4.4rem;
  649. }
  650. .tool-classs .con ul li .t-con .img-wrap img {
  651. width: .6rem;
  652. }
  653. .tool-classs .con ul li .img-wrap {
  654. width: .6rem;
  655. height: auto;
  656. margin-bottom: 0;
  657. float: left;
  658. }
  659. .tool-classs .con ul li p {
  660. font-size: .24rem;
  661. padding: 0 .1rem;
  662. margin-top: .8rem;
  663. text-align: left;
  664. }
  665. .tool-classs .con ul li .tit {
  666. float: left;
  667. font-size: .28rem;
  668. font-weight: 500;
  669. line-height: .6rem;
  670. margin-left: .1rem;
  671. }
  672. .tool-classs .con ul li:nth-of-type(odd) {
  673. margin-right: .2rem;
  674. margin-left: 0;
  675. margin-top: .2rem;
  676. padding: 0 .1rem;
  677. }
  678. .tool-classs .con ul li:nth-child(even) {
  679. margin-top: .2rem;
  680. margin-right: 0;
  681. padding: 0 .1rem;
  682. }
  683. .tool-classs .con ul li {
  684. padding-top: 0;
  685. }
  686. .tool-classs .con ul li:nth-of-type(odd) .t-con,
  687. .tool-classs .con ul li:nth-of-type(4) .t-con {
  688. border: none;
  689. }
  690. .tool-classs .con ul li .t-con,
  691. .tool-classs .con ul li:nth-of-type(n+3) .t-con {
  692. padding-bottom: 0;
  693. padding-top: .2rem;
  694. }
  695. .user-center1>.row>.col-sm-10 {
  696. padding-left: 0;
  697. }
  698. .user-center1 .account-management .pwd .form-group label {
  699. width: auto;
  700. top: -0.2rem;
  701. left: .08rem;
  702. }
  703. .j-form .form-control {
  704. margin-left: 0;
  705. }
  706. .user-center1 .aside-right .balance-recharge .b-num {
  707. font-size: .48rem;
  708. }
  709. .user-center1 .aside-right .balance-recharge .b-tit {
  710. font-size: .28rem;
  711. }
  712. .user-center1 .aside-right .balance-recharge .recharge-btn {
  713. top: 33%;
  714. line-height: .4rem;
  715. }
  716. .user-center1 .aside-right .balance-recharge p {
  717. font-size: .24rem;
  718. }
  719. .j-partition {
  720. width: 112%;
  721. margin: 0 -0.36rem;
  722. margin-bottom: .2rem;
  723. }
  724. .table_top.clearfix.j-top a {
  725. width: 50%;
  726. margin-bottom: .4rem;
  727. padding: 0 .4rem;
  728. }
  729. .table_top.clearfix.j-top a {
  730. width: 50%;
  731. margin-bottom: .4rem;
  732. padding: 0 .4rem;
  733. }
  734. .table_top.clearfix.j-top a:nth-child(even) {
  735. border-right: none;
  736. }
  737. .table_top.clearfix.j-top a:nth-last-child(-n+2) {
  738. /* margin-bottom: 0; */
  739. }
  740. .table_top.clearfix.j-top p.b-num {
  741. font-size: .48rem;
  742. }
  743. .table_top.clearfix.j-top p {
  744. font-size: .28rem;
  745. }
  746. .table_top.clearfix.j-top.top2 a {
  747. width: 2.1rem;
  748. }
  749. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3 {
  750. padding: .1rem;
  751. }
  752. .table_top.clearfix.j-top.top2 a:nth-child(even) {
  753. border-right: 1px solid #e5e5e5;
  754. }
  755. .table_top.clearfix.j-top.top2 a:nth-child(3),
  756. .table_top.clearfix.j-top.top2 a:nth-child(5) {
  757. border-right: none;
  758. }
  759. .j-label-text {
  760. width: calc(100% - 1.7rem)!important;
  761. }
  762. .j-label-text-radio {
  763. width: 3.6rem !important;
  764. }
  765. .j-label-text-je {
  766. width: 3.2rem !important;
  767. }
  768. .j-label-open {
  769. width: 1.6rem !important;
  770. }
  771. .size-list {
  772. overflow-y: scroll;
  773. max-height: calc(100vh - 3.8rem);
  774. }
  775. .footer .left dl {
  776. margin-right: .6rem;
  777. }
  778. .warn-prompt {
  779. flex-wrap: wrap;
  780. padding: .1rem .2rem;
  781. margin-top: 0 !important;
  782. }
  783. .warn-prompt span:not(:first-child) {
  784. margin-top: .1rem;
  785. }
  786. .warn-prompt .iconfont {
  787. margin-right: 0;
  788. font-size: .24rem;
  789. padding-left: 0;
  790. float: left;
  791. }
  792. .warn-prompt span b {
  793. padding-left: 0;
  794. font-weight: 400;
  795. font-size: 14px;
  796. }
  797. .table_top.clearfix.j-top {
  798. padding-bottom: 0;
  799. margin-bottom: 0;
  800. }
  801. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3.tx-j {
  802. width: auto;
  803. padding: .1rem .4rem;
  804. margin-top: .2rem;
  805. margin-bottom: .2rem;
  806. }
  807. .form-group .control-label.col-sm-2 {
  808. color: #151515;
  809. }
  810. .encapsulation .upload-icon {
  811. width: 2.4rem;
  812. height: 2.4rem;
  813. background-position: center;
  814. margin-right: .2rem;
  815. }
  816. .encapsulation .upload-icon .text {
  817. margin-top: 1.6rem;
  818. }
  819. .img-note {
  820. width: 3rem;
  821. padding-left: .2rem;
  822. margin-top: 0;
  823. }
  824. .clearfix.col-sm-6.flex.items-end.flex-wrap {
  825. align-items: start;
  826. }
  827. .radio-box {
  828. width: 3rem;
  829. height: 1.2rem;
  830. font-size: .28rem;
  831. float: left;
  832. }
  833. ul.period li:nth-child(even) {
  834. margin-right: 0;
  835. }
  836. ul.period li:nth-child(odd) {
  837. margin-right: .2rem;
  838. }
  839. .radio-box .left .title {
  840. font-size: .24rem;
  841. margin-bottom: .1rem;
  842. margin-top: .1rem;
  843. }
  844. .radio-box .left .content {
  845. font-size: .32rem;
  846. }
  847. .radio-box div span {
  848. font-size: .48rem;
  849. }
  850. .form-group.clearfix .col-sm-10 {
  851. padding: 0;
  852. width: 100%;
  853. }
  854. .form-group.clearfix .col-sm-10.ptfz {
  855. padding: 0 15px;
  856. }
  857. .form-group.clearfix .col-sm-10 .clearfix.period {
  858. padding: 0;
  859. border-bottom: 1px solid #e5e5e5;
  860. }
  861. .pay-num {
  862. width: 3.6rem;
  863. line-height: .48rem;
  864. }
  865. .form-group.clearfix {
  866. display: flex;
  867. flex-wrap: wrap;
  868. align-items: center;
  869. }
  870. .form-group.clearfix .col-sm-6 {
  871. width: 100%;
  872. }
  873. .img-note.fl.col-sm-6 {
  874. width: 50%;
  875. }
  876. .ms-btn {
  877. font-size: .28rem;
  878. }
  879. .ms-btn.w140 {
  880. width: 84vw;
  881. margin: 0 auto;
  882. }
  883. }
  884. /* 下载页预览样式 */
  885. .template-3 .t-bg-3{
  886. background: linear-gradient(to bottom, #39b4ff,#d4efff, #ffffff);
  887. height:634px;
  888. position: absolute;
  889. left: 0;
  890. top: 0;
  891. width: 100%;
  892. z-index: -1;
  893. right: 0;
  894. }
  895. .t-bg-3 img.img-logo {
  896. position: absolute;
  897. top: 21px;
  898. right: 146.66px;
  899. width: 324px;
  900. height: 326px;
  901. }
  902. .template-btn-wrap>div>a{
  903. padding: 5px 10px;
  904. border: 1px solid #6d9cfb;
  905. border-radius: 25px;
  906. }
  907. .template-common .t-code img{
  908. width: 200px;
  909. height: 200px;
  910. }
  911. .template-3 .content{
  912. margin-top: 84px;
  913. }
  914. .template-common .t-introduce .tit{
  915. font-size: 16px;
  916. font-weight: 500;
  917. }
  918. .template-common .t-introduce p{
  919. font-size: 14px;
  920. color: #727272;
  921. }
  922. .template-common .t-name .tit{
  923. font-size: 26px;
  924. font-weight: 700;
  925. }
  926. @media (max-width: 767px) {
  927. .j-app-detail {
  928. width: 100%;
  929. padding: 0 .64rem;
  930. }
  931. .j-app-detail .j-top-bg {
  932. margin: 0 -.64rem;
  933. background: linear-gradient(to bottom, #39b4ff, #ffffff);
  934. height: 3.74rem;
  935. padding: 0 .64rem;
  936. padding-top: 1.34rem;
  937. }
  938. .j-app-detail .j-top-bg img.img-logo {
  939. position: absolute;
  940. top: 2px;
  941. right: 2px;
  942. }
  943. .j-app-detail .j-top-bg .img-tips {
  944. position: absolute;
  945. top: .48rem;
  946. right: .64rem;
  947. }
  948. .j-app-detail .j-app-top {
  949. display: flex;
  950. align-items: start;
  951. justify-content: start;
  952. }
  953. .j-app-detail .j-app-top .app-img {
  954. height: 2.2rem;
  955. width: 2.2rem;
  956. border-radius: .2rem;
  957. overflow: hidden;
  958. box-shadow: 0 5px 10px rgba(175, 197, 223, 0.2);
  959. }
  960. .j-app-detail .j-app-top .app-info {
  961. margin-left: .36rem;
  962. }
  963. .j-app-detail .j-app-top .app-img img {
  964. width: 100%;
  965. height: 100%;
  966. }
  967. .j-app-detail .j-app-top .app-info .app-title {
  968. font-size: .48rem;
  969. font-weight: 700;
  970. color: #111111;
  971. margin-top: .2rem;
  972. }
  973. .google-play {
  974. margin-top: .2rem;
  975. }
  976. .j-app-detail .app-detail-content .coarse-title {
  977. margin-top: .2rem;
  978. font-size: .32rem;
  979. font-weight: 500;
  980. color: #111111;
  981. }
  982. .j-app-detail .app-detail-content p {
  983. margin-top: .2rem;
  984. font-size: .28rem;
  985. font-weight: 400;
  986. color: #727272;
  987. }
  988. .j-app-detail .app-info-detail>div {
  989. display: flex;
  990. justify-content: space-between;
  991. font-size: 14px;
  992. font-weight: 400;
  993. color: #111111;
  994. padding: .2rem 0;
  995. border-bottom: 1px solid #F2F2F2;
  996. }
  997. .j-app-detail .app-info-detail>div:last-child {
  998. border-bottom: 1px solid #F2F2F2;
  999. }
  1000. .j-app-detail .app-info-detail>div>div:nth-child(1) {
  1001. color: #727272;
  1002. }
  1003. .j-score-tops {
  1004. display: flex;
  1005. justify-content: start;
  1006. align-items: end;
  1007. }
  1008. .j-score-tops .pf{
  1009. font-size: .8rem;
  1010. font-weight: 500;
  1011. color: #111111;
  1012. }
  1013. .j-score-tops .score-comments{
  1014. font-size: 13px;
  1015. color: #666666;
  1016. padding-bottom: .1rem;
  1017. }
  1018. .j-bottom-btn{
  1019. display: inline-block;
  1020. width: 90vw;
  1021. background: linear-gradient(to right, #2168FB, #34BFFF);
  1022. border-radius: 25px;
  1023. color: #fff;
  1024. height: .96rem;
  1025. text-align: center;
  1026. line-height: .96rem;
  1027. font-size: .32rem;
  1028. font-weight: 500;
  1029. position: fixed;
  1030. bottom: .4rem;
  1031. left: 50%;
  1032. transform: translateX(-50%);
  1033. box-shadow: 0 5px 10px rgba(175, 197, 223, 2.2);
  1034. }
  1035. .template-footer{
  1036. margin-bottom: 0.5rem;
  1037. }
  1038. .j-bottom-btn:hover{
  1039. color: #fff;
  1040. }
  1041. }