抖音c端
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

index.ttss 14 KiB

2 anni fa
2 anni fa
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. @import "../../../app.ttss";
  2. button::after {
  3. border: none;
  4. }
  5. page {
  6. height: auto !important;
  7. background: #f4f5f9;
  8. }
  9. .order {
  10. width: 100%;
  11. padding-bottom: 40rpx;
  12. overflow: hidden;
  13. }
  14. .success {
  15. vertical-align: middle;
  16. width: 40rpx;
  17. margin-right: 10rpx;
  18. float: left;
  19. }
  20. .tips {
  21. width: 92%;
  22. height: 70rpx;
  23. background: #d4a971;
  24. color: #fff;
  25. padding: 20rpx 4% 0;
  26. }
  27. .tipsX {
  28. width: 92%;
  29. height: 70rpx;
  30. background: #2c8dff;
  31. color: #fff;
  32. padding: 20rpx 4% 0;
  33. }
  34. .merchantName {
  35. color: #3c3c3c !important;
  36. /* margin-left: 160rpx; */
  37. font-size: 28rpx;
  38. float: left;
  39. margin-left: 30rpx;
  40. height: 100%;
  41. line-height: 90rpx;
  42. }
  43. .tips view:nth-child(2) {
  44. font-size: 32rpx;
  45. padding-left: 16rpx;
  46. width: 100%;
  47. }
  48. .tips view:nth-child(1) {
  49. width: 100%;
  50. height: 32rpx;
  51. background: #fff;
  52. border-radius: 50%;
  53. color: #00c0ff;
  54. text-align: center;
  55. font-size: 28rpx;
  56. }
  57. .msg text:nth-child(1) {
  58. width: 90%;
  59. font-size: 28rpx;
  60. float: left;
  61. }
  62. .msg text:nth-child(2) {
  63. font-size: 24rpx;
  64. float: left;
  65. margin-left: 35rpx;
  66. }
  67. .section {
  68. /* margin-top: 2%; */
  69. background: #fff;
  70. }
  71. .detail_msg {
  72. width: 92%;
  73. display: flex;
  74. margin: 0 4%;
  75. margin-top: 10rpx;
  76. padding-bottom: 42rpx;
  77. border-bottom: 1rpx solid #eee;
  78. }
  79. .logo {
  80. display: block;
  81. width: 120rpx;
  82. height: 120rpx;
  83. border-radius: 16rpx;
  84. }
  85. .logo image {
  86. width: 120rpx;
  87. height: 120rpx;
  88. border-radius: 16rpx;
  89. }
  90. .sectionTit {
  91. padding-top: 30rpx;
  92. width: 92%;
  93. margin: 0 4%;
  94. font-size: 30rpx;
  95. color: #3c3c3c;
  96. }
  97. /* .info view:nth-child(1) {
  98. padding: 0 4%;
  99. width: 80%;
  100. overflow: hidden;
  101. text-overflow: ellipsis;
  102. white-space: nowrap;
  103. } */
  104. .info {
  105. width: 100%;
  106. position: relative;
  107. }
  108. .infoArrow {
  109. position: absolute;
  110. right: 26rpx;
  111. width: 20rpx;
  112. margin: auto;
  113. bottom: 90rpx;
  114. }
  115. /* .info view:nth-child(1) text {
  116. font-size: 30rpx;
  117. color: #000;
  118. letter-spacing: 0;
  119. } */
  120. /* .info view:nth-child(1) text:nth-child(2) {
  121. color: #ffae00;
  122. font-size: 24rpx;
  123. } */
  124. /* .info view:nth-child(2), .info view:nth-child(3) {
  125. font-size: 24rpx;
  126. padding-left: 4%;
  127. color: #919191;
  128. letter-spacing: 0;
  129. } */
  130. /* .info view:nth-child(2) text, .info view:nth-child(3) text {
  131. font-size: 22rpx;
  132. color: #b8b8b8;
  133. } */
  134. .payment {
  135. width: 92%;
  136. height: 120rpx;
  137. line-height: 120rpx;
  138. padding: 0 4%;
  139. display: flex;
  140. justify-content: space-between;
  141. border-bottom: 20rpx solid #ededed;
  142. }
  143. .payment view:nth-child(2) text:nth-child(1) {
  144. font-size: 36rpx;
  145. color: #ff3434;
  146. font-weight: bold;
  147. }
  148. .payment view:nth-child(2) text:nth-child(2) {
  149. font-size: 24rpx;
  150. color: #b4b4b4;
  151. padding-left: 18rpx;
  152. text-decoration: line-through;
  153. }
  154. .dhCode {
  155. position: relative;
  156. height: 96rpx;
  157. line-height: 96rpx;
  158. border-bottom: 1rpx solid #f4f5f9;
  159. padding-left: 5%;
  160. padding-right: 5%;
  161. }
  162. .barnumImg{
  163. float: left;
  164. height: 40rpx;
  165. width: 40rpx;
  166. margin: 24rpx 20rpx;
  167. }
  168. .classif {
  169. background: #fff;
  170. width: 100%;
  171. margin-top: 20rpx;
  172. }
  173. .wuliu {
  174. height: 96rpx;
  175. line-height: 96rpx;
  176. border-bottom: 1rpx solid #f4f5f9;
  177. padding-left: 5%;
  178. padding-right: 5%;
  179. overflow: hidden;
  180. }
  181. .left {
  182. float: left;
  183. }
  184. .sign {
  185. width: 160rpx;
  186. height: 60rpx;
  187. line-height: 60rpx;
  188. text-align: center;
  189. background-color: #00c0ff;
  190. color: #fff;
  191. border-radius: 12rpx;
  192. margin: 40rpx auto;
  193. padding: 12rpx 20rpx;
  194. font-size: 28rpx;
  195. }
  196. .left {
  197. float: left;
  198. font-size: 26rpx;
  199. color: #a6a6a6;
  200. }
  201. .copeCode {
  202. float: left;
  203. margin: 20rpx 10rpx;
  204. padding: 10rpx;
  205. height: 30rpx;
  206. line-height: 30rpx;
  207. border-radius: 8rpx;
  208. color: #df3502;
  209. border:1rpx #a6a6a6 solid;
  210. font-size: 28rpx;
  211. }
  212. .goInquire {
  213. float: left;
  214. margin: 20rpx 10rpx;
  215. padding: 10rpx;
  216. height: 30rpx;
  217. line-height: 30rpx;
  218. border:1rpx #a6a6a6 solid;
  219. border-radius: 8rpx;
  220. color: #3cc51f;
  221. font-size: 28rpx;
  222. }
  223. /*
  224. .classifShop{
  225. background: #FFFFFF;
  226. width: 100%;
  227. margin-top: 20rpx;
  228. padding-bottom: 20rpx;
  229. }
  230. .classifShop >view{
  231. font-size: 28rpx;
  232. color: #A6A6A6;
  233. position: relative;
  234. display: flex;
  235. justify-content: space-between;
  236. padding-left: 5%;
  237. padding-right: 5%;
  238. margin-bottom: 20rpx;
  239. }
  240. .classifShop >view:nth-child(1){
  241. height: 88rpx!important;
  242. line-height:94rpx;
  243. } */
  244. .classif > view:nth-child(2), .classif > view:nth-child(3) {
  245. position: relative;
  246. height: 94rpx;
  247. line-height: 94rpx;
  248. display: flex;
  249. justify-content: space-between;
  250. padding-left: 5%;
  251. padding-right: 5%;
  252. /* border-bottom: 1rpx solid #eee; */
  253. }
  254. .classif > view text:nth-child(2) {
  255. font-size: 28rpx;
  256. /* color: #3c3c3c; */
  257. }
  258. .classif > view text:nth-child(1) {
  259. font-size: 28rpx;
  260. color: #a6a6a6;
  261. float: left;
  262. }
  263. .classif > view:nth-child(1) {
  264. display: block;
  265. }
  266. .classif > view:nth-child(6) text:nth-child(2) {
  267. color: #666;
  268. }
  269. .spcode {
  270. position: absolute;
  271. right: 70rpx;
  272. bottom: 0;
  273. top: 0;
  274. margin: auto;
  275. width: 50rpx;
  276. z-index: 1;
  277. }
  278. .rArrow {
  279. position: absolute;
  280. right: 26rpx;
  281. height: 20rpx;
  282. width: 20rpx;
  283. margin: auto;
  284. bottom: 30rpx;
  285. }
  286. /*mask*/
  287. .drawer_screen {
  288. position: absolute;
  289. width: 100%;
  290. height: 100%;
  291. top: 0;
  292. left: 0;
  293. z-index: 1000;
  294. background: #000;
  295. opacity: 0.5;
  296. overflow: hidden;
  297. }
  298. .drawer_box {
  299. width: 650rpx;
  300. position: fixed;
  301. overflow: hidden;
  302. top: 50%;
  303. left: 0;
  304. z-index: 1001;
  305. margin: -150px 50rpx 0 50rpx;
  306. border-radius: 3px;
  307. }
  308. .drawer_title {
  309. padding: 15px;
  310. font: 20px "microsoft yahei";
  311. text-align: center;
  312. }
  313. .drawer_content {
  314. height: 210px;
  315. overflow-y: scroll; /*超出父盒子高度可滚动*/
  316. }
  317. .btn_ok {
  318. padding: 10px;
  319. font: 20px "microsoft yahei";
  320. text-align: center;
  321. border-top: 1px solid #e8e8ea;
  322. color: #3cc51f;
  323. }
  324. .top {
  325. padding-top: 8px;
  326. }
  327. .bottom {
  328. padding-bottom: 8px;
  329. }
  330. .title {
  331. height: 30px;
  332. line-height: 30px;
  333. width: 160rpx;
  334. text-align: center;
  335. display: inline-block;
  336. font: 300 28rpx/30px "microsoft yahei";
  337. }
  338. .input_base {
  339. border: 2rpx solid #ccc;
  340. padding-left: 10rpx;
  341. margin-right: 50rpx;
  342. }
  343. .input_h30 {
  344. height: 30px;
  345. line-height: 30px;
  346. }
  347. .input_h60 {
  348. height: 60px;
  349. }
  350. .input_view {
  351. font: 12px "microsoft yahei";
  352. background: #fff;
  353. color: #000;
  354. line-height: 30px;
  355. }
  356. input {
  357. font: 12px "microsoft yahei";
  358. background: #fff;
  359. color: #000;
  360. }
  361. radio {
  362. margin-right: 20px;
  363. }
  364. .grid {
  365. display: -webkit-box;
  366. display: box;
  367. }
  368. .col-0 {
  369. -webkit-box-flex: 0;
  370. box-flex: 0;
  371. }
  372. .col-1 {
  373. -webkit-box-flex: 1;
  374. box-flex: 1;
  375. }
  376. .fl {
  377. float: left;
  378. color: #3c3c3c !important;
  379. }
  380. .fr {
  381. float: left;
  382. }
  383. .clearfix:after {
  384. content: ".";
  385. display: block;
  386. height: 0;
  387. clear: both;
  388. visibility: hidden;
  389. }
  390. .panel {
  391. width: 600rpx;
  392. border-radius: 10rpx;
  393. background-color: #fff;
  394. margin: 30rpx auto 0;
  395. padding: 30rpx 0;
  396. position: relative;
  397. z-index: 10000000000;
  398. }
  399. .pane2 {
  400. background: #fff;
  401. opacity: 0.6;
  402. }
  403. .pane2 image {
  404. width: 500rpx;
  405. display: block;
  406. margin: 40rpx auto 0;
  407. }
  408. .barcode {
  409. height: 100rpx;
  410. width: 500rpx;
  411. margin: 0 auto;
  412. }
  413. .barnum {
  414. width: 88%;
  415. height: 46rpx;
  416. line-height: 46rpx;
  417. font-size: 32rpx;
  418. text-align: center;
  419. letter-spacing: 2rpx;
  420. white-space: nowrap;
  421. color: #999;
  422. }
  423. .barnum text {
  424. color: #333;
  425. }
  426. .barcode > canvas {
  427. width: 500rpx;
  428. height: 100rpx;
  429. }
  430. .qrcode {
  431. height: 340rpx;
  432. display: flex;
  433. flex-direction: column;
  434. justify-content: flex-end;
  435. align-items: center;
  436. }
  437. .qrcode > canvas {
  438. width: 350rpx;
  439. height: 350rpx;
  440. }
  441. .left {
  442. float: left;
  443. }
  444. .right {
  445. float: right;
  446. }
  447. .RMB {
  448. color: #fd782d !important;
  449. font-size: 24rpx !important;
  450. float: right;
  451. }
  452. .jine {
  453. color: #fd782d !important;
  454. font-size: 36rpx !important;
  455. font-weight: 400 !important;
  456. float: right;
  457. margin-left: 10rpx;
  458. }
  459. .jine1 {
  460. color: #b8b8b8 !important;
  461. font-size: 30rpx !important;
  462. font-weight: 400 !important;
  463. }
  464. .buy-view {
  465. /* background: #fff; */
  466. position: fixed;
  467. padding-top: 30rpx;
  468. height: 94rpx;
  469. bottom: 0;
  470. left: 0;
  471. right: 0;
  472. z-index: 100;
  473. padding-bottom: 30rpx;
  474. }
  475. .buy {
  476. background: linear-gradient(127deg, rgba(252, 177, 74, 1) 0%, rgba(254, 70, 20, 1) 100%);
  477. height: 94rpx;
  478. width: 670rpx;
  479. margin: 0 auto;
  480. color: #fff;
  481. font-size: 32rpx;
  482. line-height: 94rpx;
  483. border-radius: 61rpx;
  484. }
  485. .buyX {
  486. background: linear-gradient(180deg, #cc9a60 0%, #dfbf8e 100%);
  487. height: 94rpx;
  488. width: 670rpx;
  489. margin: 0 auto;
  490. color: #fff;
  491. font-size: 32rpx;
  492. line-height: 94rpx;
  493. border-radius: 61rpx;
  494. }
  495. .salePriceStr{
  496. color: #999;
  497. letter-spacing: 0;
  498. padding-left: 4%;
  499. overflow: hidden;
  500. }
  501. .subTitle{
  502. font-size: 22rpx;
  503. color: #b8b8b8;
  504. padding-left: 4%;
  505. letter-spacing: 0;
  506. }
  507. .xidanTiem{
  508. padding-left: 4%;
  509. color: #b8b8b8;
  510. letter-spacing: 0;
  511. font-size: 22rpx;
  512. }
  513. .rmb {
  514. color: #d5af67 ;
  515. font-size: 24rpx ;
  516. line-height: 40rpx ;
  517. float: left ;
  518. }
  519. .pri01 {
  520. font-size: 36rpx ;
  521. color: #d5af67 ;
  522. letter-spacing: 0 ;
  523. line-height: 40rpx ;
  524. float: left ;
  525. }
  526. .throgh {
  527. text-decoration: line-through ;
  528. margin-left: 10rpx ;
  529. color: #999 ;
  530. height: 32rpx ;
  531. line-height: 45rpx ;
  532. float: left;
  533. font-size: 26rpx;
  534. }
  535. .active {
  536. opacity: 0.6;
  537. }
  538. .game-entry {
  539. width: 690rpx;
  540. height: 140rpx;
  541. margin: 20rpx auto 0;
  542. }
  543. .gameimg {
  544. display: block;
  545. width: 100%;
  546. height: 140rpx;
  547. }
  548. /*
  549. .merchantVoList {
  550. width: 100%;
  551. }
  552. .merchantVoList .tel {
  553. width: 50rpx;
  554. height: 50rpx;
  555. float: right;
  556. z-index: 10;
  557. margin-top: 30rpx;
  558. } */
  559. .btns {
  560. background: #00c0ff;
  561. height: 94rpx;
  562. width: 670rpx;
  563. margin: 0 auto 30rpx;
  564. color: #fff;
  565. font-size: 36rpx;
  566. line-height: 94rpx;
  567. border-radius: 61rpx;
  568. }
  569. /* .merchantImgUrl{
  570. width: 90rpx;
  571. float: left;
  572. border-radius: 10rpx;
  573. z-index: 10;
  574. margin: 0 auto;
  575. } */
  576. .support-tansfer {
  577. width: 690rpx;
  578. border-radius: 50rpx;
  579. margin-top: 60rpx;
  580. background: linear-gradient(127deg, rgba(252, 177, 74, 1) 0%, rgba(254, 70, 20, 1) 100%) !important;
  581. }
  582. .share {
  583. width: 40rpx;
  584. height: 40rpx;
  585. margin-right: 20rpx;
  586. }
  587. .showT {
  588. width: 100%;
  589. height: 100vh;
  590. background-color: rgba(0, 0, 0, 0.1);
  591. position: fixed;
  592. top: 0;
  593. left: 0;
  594. overflow: hidden;
  595. }
  596. .titleBxo {
  597. width: 70%;
  598. margin: 300rpx auto;
  599. background-color: #fff;
  600. border-radius: 12rpx;
  601. overflow: hidden;
  602. }
  603. .titleBxo .text {
  604. margin: 40rpx auto 20rpx auto;
  605. text-align: center;
  606. font-size: 36rpx;
  607. }
  608. .titleBxo .p {
  609. margin-top: 10rpx auto 30rpx auto;
  610. font-size: 22rpx;
  611. text-align: center;
  612. }
  613. .btnBox {
  614. overflow: hidden;
  615. margin-top: 40rpx;
  616. margin-bottom: 20rpx;
  617. display: flex;
  618. justify-content: space-around;
  619. }
  620. .le {
  621. width: 40%;
  622. height: 60rpx;
  623. line-height: 60rpx;
  624. border-radius: 10rpx;
  625. background-color: #00c0ff;
  626. text-align: center;
  627. color: #fff;
  628. }
  629. .ri {
  630. width: 40%;
  631. height: 60rpx;
  632. line-height: 60rpx;
  633. border-radius: 10rpx;
  634. text-align: center;
  635. border: 1rpx solid #919191;
  636. }
  637. .childList {
  638. padding-left: 5%;
  639. padding-right: 5%;
  640. overflow: hidden;
  641. }
  642. .childTitle {
  643. font-size: 28rpx;
  644. color: #a6a6a6;
  645. margin-top: 20rpx;
  646. }
  647. .childItme {
  648. border-radius: 12rpx;
  649. overflow: hidden;
  650. background-color: #fff;
  651. margin: 20rpx;
  652. }
  653. .orderName {
  654. margin: 20rpx;
  655. font-size: 26rpx;
  656. }
  657. .chaildDetBox {
  658. margin: 20rpx;
  659. overflow: hidden;
  660. }
  661. .chaildImg {
  662. float: left;
  663. width: 100rpx;
  664. height: 100rpx;
  665. border-radius: 10rpx;
  666. }
  667. .childDataBox {
  668. float: left;
  669. width: 50%;
  670. margin-left: 20rpx;
  671. }
  672. .childPriceStr {
  673. font-size: 24rpx;
  674. color: #919191;
  675. letter-spacing: 0;
  676. margin-left: 20rpx;
  677. }
  678. .groupTextBox{
  679. background: #fff;
  680. overflow: hidden;
  681. padding-bottom: 10rpx;
  682. }
  683. .groupTitleBox{
  684. background: #fff;
  685. }
  686. .groupTitle{
  687. color: #333;
  688. letter-spacing: 0;
  689. font-size: 30rpx;
  690. height: 50rpx;
  691. line-height: 50rpx;
  692. width: 92%;
  693. margin: 0 auto;
  694. font-weight: bold;
  695. }
  696. .groupTitleS{
  697. color: #333;
  698. letter-spacing: 0;
  699. font-size: 28rpx;
  700. height: 50rpx;
  701. line-height: 50rpx;
  702. width: 90%;
  703. margin: 0 auto;
  704. /* font-weight: bold; */
  705. }
  706. .groupDetailsBox{
  707. width: 90%;
  708. margin: 0 auto;
  709. }
  710. .groupTiemBox{
  711. color: #333333;
  712. overflow: hidden;
  713. }
  714. .groupTiemName{
  715. float: left;
  716. font-size: 26rpx;
  717. /* color: #a6a6a6; */
  718. }
  719. .groupTiemPay{
  720. float: right;
  721. font-size: 26rpx;
  722. /* color: #a6a6a6; */
  723. }
  724. .yuandian{
  725. background-color: #333333;
  726. width: 4rpx;
  727. height: 4rpx;
  728. border-radius: 50%;
  729. margin: 16rpx 8rpx 0 0;
  730. float: left;
  731. }
  732. .notes {
  733. width: 100%;
  734. background: #fff;
  735. padding-bottom: 30rpx;
  736. }
  737. .notesH{
  738. width: 92%;
  739. font-weight: bold;
  740. font-size: 32rpx;
  741. color: #3c3c3c;
  742. margin: 10rpx auto;
  743. padding-top: 10rpx;
  744. }
  745. .timeText{
  746. color: #333;
  747. letter-spacing: 0;
  748. font-size: 14px;
  749. height: 25px;
  750. line-height: 25px;
  751. width: 92%;
  752. margin: 10rpx auto;
  753. }
  754. .Hchild{
  755. width: 92%;
  756. margin: 0 auto;
  757. color: #333;
  758. letter-spacing: 0;
  759. font-size: 12px;
  760. letter-spacing: 0;
  761. line-height: 21px;
  762. display: block;
  763. }
  764. .notesText{
  765. width: 92%;
  766. margin: 0 auto;
  767. color: #333;
  768. letter-spacing: 0;
  769. font-size: 24rpx;
  770. letter-spacing: 0;
  771. line-height: 42rpx;
  772. display: block;
  773. }
  774. .panel{
  775. position: relative;
  776. }
  777. .closeRq{
  778. position: absolute;
  779. width: 420rpx;
  780. height: 420rpx;
  781. line-height: 420rpx;
  782. text-align: center;
  783. background-color: rgba(0, 0, 0, 0.8);
  784. left: 50%; top: 50%;
  785. transform: translate(-50%, -50%); /* 50%为自身尺寸的一半 */
  786. z-index: 10000000;
  787. color: #fff;
  788. font-size: 38rpx;
  789. }
  790. .updataRqCode{
  791. width: 80rpx !important;
  792. height: 80rpx !important;
  793. margin-top: calc(50%-80rpx) !important;
  794. margin-left: calc(50%-80rpx) !important;
  795. display: inline-block !important;
  796. }
  797. .upDataRq{
  798. position: absolute;
  799. width: 100%;
  800. text-align: center;
  801. height: 80rpx;
  802. color: #fff ;
  803. top: 20%;
  804. left: 0;
  805. }
  806. .coedTiem{
  807. text-align: center;
  808. /* color: rgba(253,131,45,1); */
  809. margin-bottom: 20rpx;
  810. }
  811. .zhuangtai{
  812. margin-top: 20rpx;
  813. width: 100%;
  814. background-color: #fff;
  815. }
  816. .panel, .zhuangtai image {
  817. width:500rpx;
  818. display:block;
  819. border-radius:10rpx;
  820. margin:0 auto;
  821. padding:0;
  822. z-index:10000;
  823. overflow: hidden;
  824. }
  825. .panel{
  826. position: relative;
  827. }
  828. .goRefund{
  829. border: 1rpx solid #d4a971;
  830. border-radius: 50rpx;
  831. color: #3c3c3c;
  832. padding: 6rpx 12rpx;
  833. float: right;
  834. text-align: center;
  835. font-size: 24rpx;
  836. margin-right: 26rpx;
  837. }
  838. .evaluate{
  839. width: 80%;
  840. margin: 20rpx auto;
  841. background-color: #d4a971;
  842. color: #fff;
  843. font-size: 32rpx;
  844. text-align: center;
  845. padding: 10rpx 0 ;
  846. border-radius: 25rpx;
  847. }
  848. .serviceBox{
  849. margin: 40rpx auto;
  850. overflow: hidden;
  851. border: #d4a971 1px solid;
  852. border-radius: 24rpx;
  853. text-align: center;
  854. padding: 6rpx;
  855. font-size: 26rpx;
  856. color: #d4a971;
  857. width: 240rpx;
  858. }
  859. .serviceImg{
  860. width: 30rpx;
  861. height: 30rpx;
  862. float: left;
  863. margin-left: 20rpx;
  864. margin-top: 6rpx;
  865. }
  866. .serviceText{
  867. float: left;
  868. margin-left: 10rpx;
  869. }
  870. .explainText{
  871. margin-top: 20rpx;
  872. text-align: center;
  873. font-size: 24rpx;
  874. color: #b8b8b8;
  875. }