jcq.css 19 KB

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