jcq.css 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060
  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. }
  417. .table_top.clearfix.j-top p {
  418. color: #151515;
  419. font-weight: 500;
  420. font-size: 16px;
  421. }
  422. .table_top.clearfix.j-top p.b-num {
  423. color: #4B84FF;
  424. font-size: 32px;
  425. }
  426. .table_top.clearfix.j-top p.b-num b {
  427. margin-left: 5px;
  428. }
  429. .warn-prompt {
  430. background-color: #e7f2fe;
  431. color: #157df1;
  432. border-color: #e7f2fe;
  433. display: flex;
  434. justify-content: space-between;
  435. }
  436. .warn-prompt .iconfont {
  437. font-size: 14px;
  438. font-weight: 500;
  439. color: #8F959F;
  440. margin-left: 0;
  441. }
  442. .warn-prompt span a {
  443. font-size: 14px;
  444. font-weight: 500;
  445. color: #2168FB;
  446. }
  447. .table-list-top {
  448. background-color: #fff;
  449. padding: 10px;
  450. box-shadow: 0 0 5px rgba(0, 0, 0, .05);
  451. margin-bottom: 20px;
  452. padding-bottom: 2px;
  453. }
  454. .table-list-body {
  455. background-color: #fff;
  456. background-color: #fff;
  457. padding: 10px;
  458. box-shadow: 0 0 5px rgba(0, 0, 0, .05)
  459. }
  460. .j-top-wrap dl.clearfix {
  461. display: flex;
  462. flex-wrap: wrap;
  463. align-items: center;
  464. }
  465. .j-top-wrap dl.clearfix .ms-btn.ms-btn-primary.mt3.w60 {
  466. margin-left: 20px;
  467. }
  468. .j-top-title,
  469. .j-top-content {
  470. background-color: #fff;
  471. box-shadow: 0 0 5px rgba(0, 0, 0, .05);
  472. padding: 10px 20px;
  473. }
  474. .j-top-content {
  475. padding-top: 20px;
  476. min-height: 417px;
  477. }
  478. .j-top-content .table-wrap {
  479. margin-top: 10px;
  480. }
  481. .j-bgend {
  482. background-color: transparent;
  483. padding: 0;
  484. }
  485. .buy-number .price-common .con .bottom .btn-buy {
  486. background-color: #2168FB;
  487. color: #fff;
  488. }
  489. .form-group label {
  490. font-weight: 500 !important;
  491. color: #151515 !important;
  492. }
  493. /* 移动端适配 */
  494. @media (max-width: 767px) {
  495. .form-group .input-text.radio{
  496. min-width: 180px;
  497. width: auto;
  498. justify-content: flex-start;
  499. }
  500. .form-group .input-text.radio>label:not(:first-child) {
  501. margin-left: .4rem;
  502. }
  503. .warn-prompt-wrap1ass {
  504. border: none;
  505. font-size: .24rem;
  506. padding: auto 0;
  507. }
  508. .release-app2 .aside-right .how-many .j-goumai .ms-btn-primary.w60 {
  509. padding: .1rem .4rem;
  510. width: auto;
  511. }
  512. .j-goumai {
  513. position: absolute;
  514. top: .48rem;
  515. right: 0px;
  516. }
  517. .j-search-btn{
  518. margin-top: .2rem;
  519. margin-bottom: .2rem;
  520. }
  521. .j-icon-search{
  522. display: none;
  523. }
  524. .j-search-btn input:first-child{
  525. margin-left: 0 !important;
  526. }
  527. .j-top-wrap dl.clearfix {
  528. position: relative;
  529. }
  530. .warn-prompt-cont {
  531. padding: 0 !important;
  532. }
  533. .header .header-left {
  534. height: 100%;
  535. display: flex;
  536. }
  537. .mobile-price .m-price-banner {
  538. background-color: #f3f3f3;
  539. padding: 0;
  540. }
  541. .mobile-price .new-price-tab ul li {
  542. color: #8f959f;
  543. font-size: .28rem;
  544. margin-right: 0;
  545. /* width: 240px; */
  546. /* height: 59px; */
  547. line-height: 1.18rem;
  548. border: 1px solid #d3e8ff;
  549. }
  550. .mobile-price ul li.active {
  551. background-color: #e3ecff;
  552. color: #2168fb;
  553. border: #2168fb;
  554. border: 1px solid #2168fb;
  555. }
  556. .mobile-price .tab li a {
  557. color: #151515;
  558. border-bottom-color: none;
  559. border: none;
  560. font-size: .28rem;
  561. font-weight: 500;
  562. }
  563. .mobile-price .m-publish .con .num {
  564. color: #2168FB;
  565. font-size: .64rem;
  566. text-align: left;
  567. border-bottom: 1px solid #a8d1ff;
  568. padding-bottom: .2rem;
  569. margin-bottom: .4rem;
  570. }
  571. .mobile-price .m-price-common .con .num span {
  572. font-size: .28rem;
  573. color: #2D4B73;
  574. margin-left: .2rem;
  575. }
  576. .mobile-price .m-price-common .con {
  577. background-color: #fff;
  578. padding: .4rem;
  579. color: #2d4b73;
  580. border: 1px solid #a8d1ff;
  581. margin-bottom: .4rem;
  582. position: relative;
  583. }
  584. .mobile-price .m-price-common .con .bottom {
  585. position: absolute;
  586. right: .4rem;
  587. bottom: .4rem;
  588. width: 2rem;
  589. height: .8rem;
  590. line-height: .8rem;
  591. }
  592. .mobile-price .m-price-common .con .b-price {
  593. font-size: .4rem;
  594. position: absolute;
  595. /* right: 1.2rem; */
  596. left: 66%;
  597. bottom: 1.2rem;
  598. color: #ff7429;
  599. }
  600. .mobile-price .m-price-common .con .b-price span {
  601. font-size: .64rem;
  602. }
  603. .mobile-price .m-price-common .con .bottom a {
  604. width: 2rem;
  605. height: .8rem;
  606. padding: 0;
  607. line-height: .8rem;
  608. background-color: #2168fb;
  609. color: #fff;
  610. text-align: center;
  611. }
  612. .mobile-price .m-price-common .con .recommended {
  613. background: transparent;
  614. }
  615. .mobile-price .help dl .right {
  616. font-size: .28rem;
  617. font-weight: 400;
  618. }
  619. .fixed-right li {
  620. padding: 0;
  621. }
  622. .row-mobile .table.table-bordered {
  623. border: 1px solid #e5e5e5;
  624. position: relative;
  625. }
  626. .row-mobile .table.table-bordered tr td span.icon-duihao {
  627. color: #13c960;
  628. }
  629. .row-mobile .table.table-bordered tr td span.icon-xingxing,
  630. .row-mobile .table.table-bordered tr td span.icon-xingxing2 {
  631. font-size: .24rem;
  632. color: #ffc000;
  633. }
  634. .tool-classs .con ul li {
  635. width: 48%;
  636. height: 4.4rem;
  637. }
  638. .tool-classs .con ul li .t-con .img-wrap img {
  639. width: .6rem;
  640. }
  641. .tool-classs .con ul li .img-wrap {
  642. width: .6rem;
  643. height: auto;
  644. margin-bottom: 0;
  645. float: left;
  646. }
  647. .tool-classs .con ul li p {
  648. font-size: .24rem;
  649. padding: 0 .1rem;
  650. margin-top: .8rem;
  651. text-align: left;
  652. }
  653. .tool-classs .con ul li .tit {
  654. float: left;
  655. font-size: .28rem;
  656. font-weight: 500;
  657. line-height: .6rem;
  658. margin-left: .1rem;
  659. }
  660. .tool-classs .con ul li:nth-of-type(odd) {
  661. margin-right: .2rem;
  662. margin-left: 0;
  663. margin-top: .2rem;
  664. padding: 0 .1rem;
  665. }
  666. .tool-classs .con ul li:nth-child(even) {
  667. margin-top: .2rem;
  668. margin-right: 0;
  669. padding: 0 .1rem;
  670. }
  671. .tool-classs .con ul li {
  672. padding-top: 0;
  673. }
  674. .tool-classs .con ul li:nth-of-type(odd) .t-con,
  675. .tool-classs .con ul li:nth-of-type(4) .t-con {
  676. border: none;
  677. }
  678. .tool-classs .con ul li .t-con,
  679. .tool-classs .con ul li:nth-of-type(n+3) .t-con {
  680. padding-bottom: 0;
  681. padding-top: .2rem;
  682. }
  683. .user-center1>.row>.col-sm-10 {
  684. padding-left: 0;
  685. }
  686. .user-center1 .account-management .pwd .form-group label {
  687. width: auto;
  688. top: -0.2rem;
  689. left: .08rem;
  690. }
  691. .j-form .form-control {
  692. margin-left: 0;
  693. }
  694. .user-center1 .aside-right .balance-recharge .b-num {
  695. font-size: .48rem;
  696. }
  697. .user-center1 .aside-right .balance-recharge .b-tit {
  698. font-size: .28rem;
  699. }
  700. .user-center1 .aside-right .balance-recharge .recharge-btn {
  701. top: 33%;
  702. line-height: .4rem;
  703. }
  704. .user-center1 .aside-right .balance-recharge p {
  705. font-size: .24rem;
  706. }
  707. .j-partition {
  708. width: 112%;
  709. margin: 0 -0.36rem;
  710. margin-bottom: .2rem;
  711. }
  712. .table_top.clearfix.j-top a {
  713. width: 50%;
  714. margin-bottom: .4rem;
  715. padding: 0 .4rem;
  716. }
  717. .table_top.clearfix.j-top a {
  718. width: 50%;
  719. margin-bottom: .4rem;
  720. padding: 0 .4rem;
  721. }
  722. .table_top.clearfix.j-top a:nth-child(even) {
  723. border-right: none;
  724. }
  725. .table_top.clearfix.j-top a:nth-last-child(-n+2) {
  726. margin-bottom: 0;
  727. }
  728. .table_top.clearfix.j-top p.b-num {
  729. font-size: .48rem;
  730. }
  731. .table_top.clearfix.j-top p {
  732. font-size: .28rem;
  733. }
  734. .table_top.clearfix.j-top.top2 a {
  735. width: 2.1rem;
  736. }
  737. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3 {
  738. padding: .1rem;
  739. }
  740. .table_top.clearfix.j-top.top2 a:nth-child(even) {
  741. border-right: 1px solid #e5e5e5;
  742. }
  743. .table_top.clearfix.j-top.top2 a:nth-child(3),
  744. .table_top.clearfix.j-top.top2 a:nth-child(5) {
  745. border-right: none;
  746. }
  747. .j-label-text{
  748. width: auto !important;
  749. }
  750. .j-label-text-radio{
  751. width: 3.6rem !important;
  752. }
  753. .j-label-text-je{
  754. width: 3.2rem !important;
  755. }
  756. .j-label-open {
  757. width: 1.6rem !important;
  758. }
  759. .size-list{
  760. overflow-y: scroll;
  761. max-height: calc(100vh - 3.8rem);
  762. }
  763. .footer .left dl{
  764. margin-right: .6rem;
  765. }
  766. .warn-prompt {
  767. flex-wrap: wrap;
  768. padding: .1rem .2rem;
  769. margin-top: 0 !important;
  770. }
  771. .warn-prompt span:not(:first-child) {
  772. margin-top: .1rem;
  773. }
  774. .warn-prompt .iconfont {
  775. margin-right: 0;
  776. font-size: .24rem;
  777. padding-left: 0;
  778. float: left;
  779. }
  780. .warn-prompt span b {
  781. padding-left: 0;
  782. font-weight: 400;
  783. font-size: 14px;
  784. }
  785. .table_top.clearfix.j-top {
  786. padding-bottom: 0;
  787. margin-bottom: 0;
  788. }
  789. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3.tx-j {
  790. width: auto;
  791. padding: .1rem .4rem;
  792. margin-top: .2rem;
  793. margin-bottom: .2rem;
  794. }
  795. .form-group .control-label.col-sm-2 {
  796. color: #151515;
  797. }
  798. .encapsulation .upload-icon {
  799. width: 2.4rem;
  800. height: 2.4rem;
  801. background-position: center;
  802. margin-right: .2rem;
  803. }
  804. .encapsulation .upload-icon .text {
  805. margin-top: 1.6rem;
  806. }
  807. .img-note {
  808. width: 3rem;
  809. padding-left: .2rem;
  810. margin-top: 0;
  811. }
  812. .clearfix.col-sm-6.flex.items-end.flex-wrap {
  813. align-items: start;
  814. }
  815. .radio-box {
  816. width: 3rem;
  817. height: 1.2rem;
  818. font-size: .28rem;
  819. float: left;
  820. }
  821. ul.period li:nth-child(even) {
  822. margin-right: 0;
  823. }
  824. ul.period li:nth-child(odd) {
  825. margin-right: .2rem;
  826. }
  827. .radio-box .left .title {
  828. font-size: .24rem;
  829. margin-bottom: .1rem;
  830. margin-top: .1rem;
  831. }
  832. .radio-box .left .content {
  833. font-size: .32rem;
  834. }
  835. .radio-box div span {
  836. font-size: .48rem;
  837. }
  838. .form-group.clearfix .col-sm-10 {
  839. padding: 0;
  840. width: 100%;
  841. }
  842. .form-group.clearfix .col-sm-10.ptfz {
  843. padding: 0 15px;
  844. }
  845. .form-group.clearfix .col-sm-10 .clearfix.period {
  846. padding: 0;
  847. border-bottom: 1px solid #e5e5e5;
  848. }
  849. .pay-num {
  850. width: 3.6rem;
  851. line-height: .48rem;
  852. }
  853. .form-group.clearfix {
  854. display: flex;
  855. flex-wrap: wrap;
  856. align-items: center;
  857. }
  858. .form-group.clearfix .col-sm-6 {
  859. width: 100%;
  860. }
  861. .img-note.fl.col-sm-6 {
  862. width: 50%;
  863. }
  864. .ms-btn {
  865. font-size: .28rem;
  866. }
  867. .ms-btn.w140 {
  868. width: 84vw;
  869. margin: 0 auto;
  870. }
  871. }