jcq.css 18 KB

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