jcq.css 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014
  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: 100px;
  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. .warn-prompt-wrap1ass {
  496. border: none;
  497. font-size: .24rem;
  498. padding: auto 0;
  499. }
  500. .release-app2 .aside-right .how-many .j-goumai .ms-btn-primary.w60 {
  501. padding: .1rem .4rem;
  502. width: auto;
  503. }
  504. .j-goumai {
  505. position: absolute;
  506. top: .48rem;
  507. right: 0px;
  508. }
  509. .j-top-wrap dl.clearfix {
  510. position: relative;
  511. }
  512. .warn-prompt-cont {
  513. padding: 0 !important;
  514. }
  515. .header .header-left {
  516. height: 100%;
  517. display: flex;
  518. align-items: center;
  519. }
  520. .mobile-price .m-price-banner {
  521. background-color: #f3f3f3;
  522. padding: 0;
  523. }
  524. .mobile-price .new-price-tab ul li {
  525. color: #8f959f;
  526. font-size: .28rem;
  527. margin-right: 0;
  528. /* width: 240px; */
  529. /* height: 59px; */
  530. line-height: 1.18rem;
  531. border: 1px solid #d3e8ff;
  532. }
  533. .mobile-price ul li.active {
  534. background-color: #e3ecff;
  535. color: #2168fb;
  536. border: #2168fb;
  537. border: 1px solid #2168fb;
  538. }
  539. .mobile-price .tab li a {
  540. color: #151515;
  541. border-bottom-color: none;
  542. border: none;
  543. font-size: .28rem;
  544. font-weight: 500;
  545. }
  546. .mobile-price .m-publish .con .num {
  547. color: #2168FB;
  548. font-size: .64rem;
  549. text-align: left;
  550. border-bottom: 1px solid #a8d1ff;
  551. padding-bottom: .2rem;
  552. margin-bottom: .4rem;
  553. }
  554. .mobile-price .m-price-common .con .num span {
  555. font-size: .28rem;
  556. color: #2D4B73;
  557. margin-left: .2rem;
  558. }
  559. .mobile-price .m-price-common .con {
  560. background-color: #fff;
  561. padding: .4rem;
  562. color: #2d4b73;
  563. border: 1px solid #a8d1ff;
  564. margin-bottom: .4rem;
  565. position: relative;
  566. }
  567. .mobile-price .m-price-common .con .bottom {
  568. position: absolute;
  569. right: .4rem;
  570. bottom: .4rem;
  571. width: 2rem;
  572. height: .8rem;
  573. line-height: .8rem;
  574. }
  575. .mobile-price .m-price-common .con .b-price {
  576. font-size: .4rem;
  577. position: absolute;
  578. right: 1.2rem;
  579. bottom: 1.2rem;
  580. color: #ff7429;
  581. }
  582. .mobile-price .m-price-common .con .b-price span {
  583. font-size: .64rem;
  584. }
  585. .mobile-price .m-price-common .con .bottom a {
  586. width: 2rem;
  587. height: .8rem;
  588. padding: 0;
  589. line-height: .8rem;
  590. background-color: #2168fb;
  591. color: #fff;
  592. text-align: center;
  593. }
  594. .mobile-price .m-price-common .con .recommended {
  595. background: transparent;
  596. }
  597. .mobile-price .help dl .right {
  598. font-size: .28rem;
  599. font-weight: 400;
  600. }
  601. .fixed-right li {
  602. padding: 0;
  603. }
  604. .row-mobile .table.table-bordered {
  605. border: 1px solid #e5e5e5;
  606. position: relative;
  607. }
  608. .row-mobile .table.table-bordered tr td span.icon-duihao {
  609. color: #13c960;
  610. }
  611. .row-mobile .table.table-bordered tr td span.icon-xingxing,
  612. .row-mobile .table.table-bordered tr td span.icon-xingxing2 {
  613. font-size: .24rem;
  614. color: #ffc000;
  615. }
  616. .tool-classs .con ul li {
  617. width: 48%;
  618. height: 4.4rem;
  619. }
  620. .tool-classs .con ul li .t-con .img-wrap img {
  621. width: .6rem;
  622. }
  623. .tool-classs .con ul li .img-wrap {
  624. width: .6rem;
  625. height: auto;
  626. margin-bottom: 0;
  627. float: left;
  628. }
  629. .tool-classs .con ul li p {
  630. font-size: .24rem;
  631. padding: 0 .1rem;
  632. margin-top: .8rem;
  633. }
  634. .tool-classs .con ul li .tit {
  635. float: left;
  636. font-size: .28rem;
  637. font-weight: 500;
  638. line-height: .6rem;
  639. margin-left: .1rem;
  640. }
  641. .tool-classs .con ul li:nth-of-type(odd) {
  642. margin-right: .6rem;
  643. margin-left: 0;
  644. margin-top: .2rem;
  645. padding: 0 .1rem;
  646. }
  647. .tool-classs .con ul li:nth-child(even) {
  648. margin-top: .2rem;
  649. margin-right: 0;
  650. padding: 0 .1rem;
  651. }
  652. .tool-classs .con ul li {
  653. padding-top: 0;
  654. }
  655. .tool-classs .con ul li:nth-of-type(odd) .t-con,
  656. .tool-classs .con ul li:nth-of-type(4) .t-con {
  657. border: none;
  658. }
  659. .tool-classs .con ul li .t-con,
  660. .tool-classs .con ul li:nth-of-type(n+3) .t-con {
  661. padding-bottom: 0;
  662. padding-top: .2rem;
  663. }
  664. .user-center1>.row>.col-sm-10 {
  665. padding-left: 0;
  666. }
  667. .user-center1 .account-management .pwd .form-group label {
  668. width: auto;
  669. top: -0.2rem;
  670. left: .08rem;
  671. }
  672. .j-form .form-control {
  673. margin-left: 0;
  674. }
  675. .user-center1 .aside-right .balance-recharge .b-num {
  676. font-size: .48rem;
  677. }
  678. .user-center1 .aside-right .balance-recharge .b-tit {
  679. font-size: .28rem;
  680. }
  681. .user-center1 .aside-right .balance-recharge .recharge-btn {
  682. top: 33%;
  683. line-height: .4rem;
  684. }
  685. .user-center1 .aside-right .balance-recharge p {
  686. font-size: .24rem;
  687. }
  688. .j-partition {
  689. width: 112%;
  690. margin: 0 -0.36rem;
  691. margin-bottom: .2rem;
  692. }
  693. .table_top.clearfix.j-top a {
  694. width: 50%;
  695. margin-bottom: .4rem;
  696. padding: 0 .4rem;
  697. }
  698. .table_top.clearfix.j-top a {
  699. width: 50%;
  700. margin-bottom: .4rem;
  701. padding: 0 .4rem;
  702. }
  703. .table_top.clearfix.j-top a:nth-child(even) {
  704. border-right: none;
  705. }
  706. .table_top.clearfix.j-top a:nth-last-child(-n+2) {
  707. margin-bottom: 0;
  708. }
  709. .table_top.clearfix.j-top p.b-num {
  710. font-size: .48rem;
  711. }
  712. .table_top.clearfix.j-top p {
  713. font-size: .28rem;
  714. }
  715. .table_top.clearfix.j-top.top2 a {
  716. width: 2.1rem;
  717. }
  718. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3 {
  719. padding: .1rem;
  720. }
  721. .table_top.clearfix.j-top.top2 a:nth-child(even) {
  722. border-right: 1px solid #e5e5e5;
  723. }
  724. .table_top.clearfix.j-top.top2 a:nth-child(3),
  725. .table_top.clearfix.j-top.top2 a:nth-child(5) {
  726. border-right: none;
  727. }
  728. .warn-prompt {
  729. flex-wrap: wrap;
  730. padding: 0;
  731. }
  732. .warn-prompt .iconfont {
  733. margin-right: 0;
  734. font-size: .24rem;
  735. padding-left: 0;
  736. }
  737. .warn-prompt span b {
  738. padding-left: 0;
  739. font-weight: 400;
  740. }
  741. .table_top.clearfix.j-top {
  742. padding-bottom: 0;
  743. margin-bottom: 0;
  744. }
  745. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3.tx-j {
  746. width: auto;
  747. padding: .1rem .4rem;
  748. margin-top: .2rem;
  749. margin-bottom: .2rem;
  750. }
  751. .form-group .control-label.col-sm-2 {
  752. color: #151515;
  753. }
  754. .encapsulation .upload-icon {
  755. width: 2.4rem;
  756. height: 2.4rem;
  757. background-position: center;
  758. margin-right: .2rem;
  759. }
  760. .encapsulation .upload-icon .text {
  761. margin-top: 1.6rem;
  762. }
  763. .img-note {
  764. width: 3rem;
  765. padding-left: .2rem;
  766. margin-top: 0;
  767. }
  768. .clearfix.col-sm-6.flex.items-end.flex-wrap {
  769. align-items: start;
  770. }
  771. .radio-box {
  772. width: 3rem;
  773. height: 1.2rem;
  774. font-size: .28rem;
  775. float: left;
  776. }
  777. ul.period li:nth-child(even) {
  778. margin-right: 0;
  779. }
  780. ul.period li:nth-child(odd) {
  781. margin-right: .2rem;
  782. }
  783. .radio-box .left .title {
  784. font-size: .24rem;
  785. margin-bottom: .1rem;
  786. margin-top: .1rem;
  787. }
  788. .radio-box .left .content {
  789. font-size: .32rem;
  790. }
  791. .radio-box div span {
  792. font-size: .48rem;
  793. }
  794. .form-group.clearfix .col-sm-10 {
  795. padding: 0;
  796. width: 100%;
  797. }
  798. .form-group.clearfix .col-sm-10.ptfz {
  799. padding: 0 15px;
  800. }
  801. .form-group.clearfix .col-sm-10 .clearfix.period {
  802. padding: 0;
  803. border-bottom: 1px solid #e5e5e5;
  804. }
  805. .pay-num {
  806. width: 3.6rem;
  807. line-height: .48rem;
  808. }
  809. .form-group.clearfix {
  810. display: flex;
  811. flex-wrap: wrap;
  812. align-items: center;
  813. }
  814. .form-group.clearfix .col-sm-6 {
  815. width: 100%;
  816. }
  817. .img-note.fl.col-sm-6 {
  818. width: 50%;
  819. }
  820. .ms-btn {
  821. font-size: .28rem;
  822. }
  823. .ms-btn.w140 {
  824. width: 74vw;
  825. }
  826. }