jcq.css 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  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: 104%;
  373. height: 20px;
  374. background-color: #f2f2f5;
  375. margin: 0 -15px;
  376. margin-bottom: 10px;
  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. }
  404. .table_top.clearfix.j-top a {
  405. border-right: 1px solid #e5e5e5;
  406. }
  407. .table_top.clearfix.j-top.top2 a {
  408. width: 150px;
  409. text-align: center;
  410. }
  411. .table_top.clearfix.j-top a:last-child {
  412. border-right: none;
  413. }
  414. .table_top.clearfix.j-top p {
  415. color: #151515;
  416. font-weight: 500;
  417. font-size: 16px;
  418. }
  419. .table_top.clearfix.j-top p.b-num {
  420. color: #4B84FF;
  421. font-size: 32px;
  422. }
  423. .table_top.clearfix.j-top p.b-num b {
  424. margin-left: 5px;
  425. }
  426. .warn-prompt {
  427. background-color: #e7f2fe;
  428. color: #157df1;
  429. border-color: #e7f2fe;
  430. display: flex;
  431. justify-content: space-between;
  432. }
  433. .warn-prompt .iconfont {
  434. font-size: 14px;
  435. font-weight: 500;
  436. color: #8F959F;
  437. margin-left: 0;
  438. }
  439. .warn-prompt span a {
  440. font-size: 14px;
  441. font-weight: 500;
  442. color: #2168FB;
  443. }
  444. .table-list-top {
  445. background-color: #fff;
  446. padding: 10px;
  447. box-shadow: 0 0 5px rgba(0, 0, 0, .05);
  448. margin-bottom: 20px;
  449. padding-bottom: 2px;
  450. }
  451. .table-list-body {
  452. background-color: #fff;
  453. background-color: #fff;
  454. padding: 10px;
  455. box-shadow: 0 0 5px rgba(0, 0, 0, .05)
  456. }
  457. /* 移动端适配 */
  458. @media (max-width: 767px) {
  459. .header .header-left {
  460. height: 100%;
  461. display: flex;
  462. align-items: center;
  463. }
  464. .mobile-price .m-price-banner {
  465. background-color: #f3f3f3;
  466. padding: 0;
  467. }
  468. .mobile-price .new-price-tab ul li {
  469. color: #8f959f;
  470. font-size: .28rem;
  471. margin-right: 0;
  472. /* width: 240px; */
  473. /* height: 59px; */
  474. line-height: 1.18rem;
  475. border: 1px solid #d3e8ff;
  476. }
  477. .mobile-price ul li.active {
  478. background-color: #e3ecff;
  479. color: #2168fb;
  480. border: #2168fb;
  481. border: 1px solid #2168fb;
  482. }
  483. .mobile-price .tab li a {
  484. color: #151515;
  485. border-bottom-color: none;
  486. border: none;
  487. font-size: .28rem;
  488. font-weight: 500;
  489. }
  490. .mobile-price .m-publish .con .num {
  491. color: #2168FB;
  492. font-size: .64rem;
  493. text-align: left;
  494. border-bottom: 1px solid #a8d1ff;
  495. padding-bottom: .2rem;
  496. margin-bottom: .4rem;
  497. }
  498. .mobile-price .m-price-common .con .num span {
  499. font-size: .28rem;
  500. color: #2D4B73;
  501. margin-left: .2rem;
  502. }
  503. .mobile-price .m-price-common .con {
  504. background-color: #fff;
  505. padding: .4rem;
  506. color: #2d4b73;
  507. border: 1px solid #a8d1ff;
  508. margin-bottom: .4rem;
  509. position: relative;
  510. }
  511. .mobile-price .m-price-common .con .bottom {
  512. position: absolute;
  513. right: .4rem;
  514. bottom: .4rem;
  515. width: 2rem;
  516. height: .8rem;
  517. line-height: .8rem;
  518. }
  519. .mobile-price .m-price-common .con .b-price {
  520. font-size: .4rem;
  521. position: absolute;
  522. right: 1.2rem;
  523. bottom: 1.2rem;
  524. color: #ff7429;
  525. }
  526. .mobile-price .m-price-common .con .b-price span {
  527. font-size: .64rem;
  528. }
  529. .mobile-price .m-price-common .con .bottom a {
  530. width: 2rem;
  531. height: .8rem;
  532. padding: 0;
  533. line-height: .8rem;
  534. background-color: #2168fb;
  535. color: #fff;
  536. text-align: center;
  537. }
  538. .mobile-price .m-price-common .con .recommended {
  539. background: transparent;
  540. }
  541. .mobile-price .help dl .right {
  542. font-size: .28rem;
  543. font-weight: 400;
  544. }
  545. .fixed-right li {
  546. padding: 0;
  547. }
  548. .row-mobile .table.table-bordered {
  549. border: 1px solid #e5e5e5;
  550. position: relative;
  551. }
  552. .row-mobile .table.table-bordered tr td span.icon-duihao {
  553. color: #13c960;
  554. }
  555. .row-mobile .table.table-bordered tr td span.icon-xingxing,
  556. .row-mobile .table.table-bordered tr td span.icon-xingxing2 {
  557. font-size: .24rem;
  558. color: #ffc000;
  559. }
  560. .tool-classs .con ul li {
  561. width: 48%;
  562. height: 4.4rem;
  563. }
  564. .tool-classs .con ul li .t-con .img-wrap img {
  565. width: .6rem;
  566. }
  567. .tool-classs .con ul li .img-wrap {
  568. width: .6rem;
  569. height: auto;
  570. margin-bottom: 0;
  571. float: left;
  572. }
  573. .tool-classs .con ul li p {
  574. font-size: .24rem;
  575. padding: 0 .1rem;
  576. margin-top: .8rem;
  577. }
  578. .tool-classs .con ul li .tit {
  579. float: left;
  580. font-size: .28rem;
  581. font-weight: 500;
  582. line-height: .6rem;
  583. margin-left: .1rem;
  584. }
  585. .tool-classs .con ul li:nth-of-type(odd) {
  586. margin-right: .6rem;
  587. margin-left: 0;
  588. margin-top: .2rem;
  589. padding: 0 .1rem;
  590. }
  591. .tool-classs .con ul li:nth-child(even) {
  592. margin-top: .2rem;
  593. margin-right: 0;
  594. padding: 0 .1rem;
  595. }
  596. .tool-classs .con ul li {
  597. padding-top: 0;
  598. }
  599. .tool-classs .con ul li:nth-of-type(odd) .t-con,
  600. .tool-classs .con ul li:nth-of-type(4) .t-con {
  601. border: none;
  602. }
  603. .tool-classs .con ul li .t-con,
  604. .tool-classs .con ul li:nth-of-type(n+3) .t-con {
  605. padding-bottom: 0;
  606. padding-top: .2rem;
  607. }
  608. .user-center1>.row>.col-sm-10 {
  609. padding-left: 0;
  610. }
  611. .user-center1 .account-management .pwd .form-group label {
  612. width: auto;
  613. top: -0.2rem;
  614. left: .08rem;
  615. }
  616. .j-form .form-control {
  617. margin-left: 0;
  618. }
  619. .user-center1 .aside-right .balance-recharge .b-num {
  620. font-size: .48rem;
  621. }
  622. .user-center1 .aside-right .balance-recharge .b-tit {
  623. font-size: .28rem;
  624. }
  625. .user-center1 .aside-right .balance-recharge .recharge-btn {
  626. top: 33%;
  627. line-height: .4rem;
  628. }
  629. .user-center1 .aside-right .balance-recharge p {
  630. font-size: .24rem;
  631. }
  632. .j-partition {
  633. width: 112%;
  634. margin: 0 -0.36rem;
  635. margin-bottom: .2rem;
  636. }
  637. .table_top.clearfix.j-top a {
  638. width: 50%;
  639. margin-bottom: .4rem;
  640. padding: 0 .4rem;
  641. }
  642. .table_top.clearfix.j-top a {
  643. width: 50%;
  644. margin-bottom: .4rem;
  645. padding: 0 .4rem;
  646. }
  647. .table_top.clearfix.j-top a:nth-child(even) {
  648. border-right: none;
  649. }
  650. .table_top.clearfix.j-top a:nth-last-child(-n+2) {
  651. margin-bottom: 0;
  652. }
  653. .table_top.clearfix.j-top p.b-num {
  654. font-size: .48rem;
  655. }
  656. .table_top.clearfix.j-top p {
  657. font-size: .28rem;
  658. }
  659. .table_top.clearfix.j-top.top2 a {
  660. width: 2.1rem;
  661. }
  662. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3 {
  663. padding: .1rem;
  664. }
  665. .table_top.clearfix.j-top.top2 a:nth-child(even) {
  666. border-right: 1px solid #e5e5e5;
  667. }
  668. .table_top.clearfix.j-top.top2 a:nth-child(3),
  669. .table_top.clearfix.j-top.top2 a:nth-child(5) {
  670. border-right: none;
  671. }
  672. .warn-prompt {
  673. flex-wrap: wrap;
  674. padding: 0;
  675. }
  676. .warn-prompt .iconfont {
  677. margin-right: 0;
  678. font-size: .24rem;
  679. padding-left: 0;
  680. }
  681. .warn-prompt span b {
  682. padding-left: 0;
  683. font-weight: 400;
  684. }
  685. .table_top.clearfix.j-top {
  686. padding-bottom: 0;
  687. margin-bottom: 0;
  688. }
  689. .table_top.clearfix.j-top a.ms-btn.ms-btn-primary.mt3.tx-j {
  690. width: auto;
  691. padding: .1rem .4rem;
  692. margin-top: .2rem;
  693. margin-bottom: .2rem;
  694. }
  695. .form-group .control-label.col-sm-2 {
  696. color: #151515;
  697. }
  698. .encapsulation .upload-icon {
  699. width: 2.4rem;
  700. height: 2.4rem;
  701. background-position: center;
  702. margin-right: .2rem;
  703. }
  704. .encapsulation .upload-icon .text {
  705. margin-top: 1.6rem;
  706. }
  707. .img-note {
  708. width: 3rem;
  709. padding-left: .2rem;
  710. margin-top: 0;
  711. }
  712. .clearfix.col-sm-6.flex.items-end.flex-wrap {
  713. align-items: start;
  714. }
  715. .radio-box {
  716. width: 3rem;
  717. height: 1.2rem;
  718. font-size: .28rem;
  719. float: left;
  720. }
  721. ul.period li:nth-child(even) {
  722. margin-right: 0;
  723. }
  724. ul.period li:nth-child(odd) {
  725. margin-right: .2rem;
  726. }
  727. .radio-box .left .title {
  728. font-size: .24rem;
  729. margin-bottom: .1rem;
  730. margin-top: .1rem;
  731. }
  732. .radio-box .left .content {
  733. font-size: .32rem;
  734. }
  735. .radio-box div span {
  736. font-size: .48rem;
  737. }
  738. .form-group.clearfix .col-sm-10 {
  739. padding: 0;
  740. width: 100%;
  741. }
  742. .form-group.clearfix .col-sm-10.ptfz {
  743. padding: 0 15px;
  744. }
  745. .form-group.clearfix .col-sm-10 .clearfix.period {
  746. padding: 0;
  747. border-bottom: 1px solid #e5e5e5;
  748. }
  749. .pay-num {
  750. width: 3.6rem;
  751. line-height: .48rem;
  752. }
  753. .form-group.clearfix {
  754. display: flex;
  755. flex-wrap: wrap;
  756. align-items: center;
  757. }
  758. .form-group.clearfix .col-sm-6 {
  759. width: 100%;
  760. }
  761. .img-note.fl.col-sm-6 {
  762. width: 50%;
  763. }
  764. .ms-btn {
  765. font-size: .28rem;
  766. }
  767. .ms-btn.w140 {
  768. width: 74vw;
  769. }
  770. }