style.css 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340
  1. html,
  2. body {
  3. min-width: 980px;
  4. color: #333;
  5. background: #fff;
  6. position: relative;
  7. font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans GB", "Hiragino Sans GB W3", "WenQuanYi Micro Hei", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  8. }
  9. a:hover {
  10. text-decoration: none;
  11. }
  12. .btn-lightblue{
  13. background-color: #0babf9;
  14. border-color: #0babf9;
  15. color: #fff;
  16. }
  17. .btn-lightblue:hover{
  18. background-color: #0ba2eb;
  19. border-color: #0ba2eb;
  20. color: #fff;
  21. }
  22. /*文字超出省略号*/
  23. .ellipsis{
  24. white-space: nowrap;
  25. overflow: hidden;
  26. text-overflow: ellipsis;
  27. }
  28. .red{
  29. color: #e7040f;
  30. }
  31. .red:hover{
  32. color: #e7040f;
  33. }
  34. @media screen and (min-width: 768px){
  35. .container {
  36. width: 970px;
  37. }
  38. }
  39. @media screen and (min-width: 992px){
  40. .container {
  41. width: 970px;
  42. }
  43. }
  44. @media screen and (min-width: 1200px){
  45. .container {
  46. width: 1170px;
  47. }
  48. }
  49. /* 公共头部 */
  50. /*====================================================*/
  51. .mainhead{
  52. position: relative;
  53. padding-top: 10px;
  54. padding-bottom: 10px;
  55. border-bottom: 1px solid #ccc;
  56. /*box-shadow: 0 1px 3px #eee;*/
  57. }
  58. .mainhead .logo{
  59. position: relative;
  60. /* width: 190px; */
  61. height: 40px;
  62. margin: 0;
  63. }
  64. .mainhead .logo img{
  65. width: auto;
  66. height: 100%;
  67. display: block;
  68. }
  69. .mainhead .nav{
  70. position: relative;
  71. display: inline-block;
  72. height: 44px;
  73. line-height: 44px;
  74. }
  75. .mainhead .nav ul{
  76. list-style: none;
  77. margin: 0;
  78. }
  79. .mainhead .nav ul li{
  80. display: inline;
  81. padding: 0 25px;
  82. }
  83. .mainhead .nav ul li a{
  84. color: #333;
  85. font-size: 15px;
  86. }
  87. .mainhead .nav ul li a:hover{
  88. text-decoration: none;
  89. color: #0babf9;
  90. }
  91. .mainhead .nav ul li.active a{
  92. color: #0babf9;
  93. }
  94. .mainhead .user-control{
  95. position: relative;
  96. display: inline-block;
  97. height: 44px;
  98. line-height: 44px;
  99. margin-left: 35px;
  100. }
  101. .mainhead .user-control .register{
  102. background-color: #0babf9;
  103. border-color: #0babf9;
  104. }
  105. .mainhead .user-control .register:hover{
  106. background-color: #0ba2eb;
  107. border-color: #0ba2eb;
  108. }
  109. .mainhead .user-control .user-head{
  110. display: inline-block;
  111. vertical-align: middle;
  112. width: 32px;
  113. height: 32px;
  114. }
  115. .mainhead .user-control .user-name,.mainhead .user-control .layout{
  116. color: #333;
  117. padding: 0 10px;
  118. }
  119. .mainhead .user-control .layout{
  120. border-left: 1px solid #ccc;
  121. }
  122. /* 公共底部 */
  123. /*====================================================*/
  124. footer{
  125. position: relative;
  126. width: 100%;
  127. background-color: #333333;
  128. color: #fff;
  129. margin-top: 50px;
  130. }
  131. footer .footer-nav{
  132. padding-top: 60px;
  133. /*padding-bottom: 20px;*/
  134. }
  135. footer .footer-nav a{
  136. color: #fff;
  137. }
  138. footer .footer-nav h4{
  139. margin-bottom: 20px;
  140. }
  141. footer .footer-nav p{
  142. font-size: 12px;
  143. line-height: 34px;
  144. margin: 0;
  145. }
  146. footer .copyright{
  147. line-height: 40px;
  148. font-size: 12px;
  149. margin-bottom: 20px;
  150. }
  151. /* 右侧浮窗 */
  152. /*====================================================*/
  153. .side-box{
  154. position: fixed;
  155. bottom: 50%;
  156. width: 52px;
  157. right: 10px;
  158. margin-bottom: -112px;
  159. z-index: 99999;
  160. }
  161. .side-box .side-list{
  162. }
  163. .side-box .side-item,.side-box .side-item-totop{
  164. border: 1px solid #ddd;
  165. width: 100%;
  166. height: 52px;
  167. }
  168. .side-box .side-item a,.side-box .side-item-totop a{
  169. position: relative;
  170. display: block;
  171. width: 100%;
  172. height: 100%;
  173. background-color: #fff;
  174. background-image: url(../image/side-ico.png);
  175. background-repeat: no-repeat;
  176. }
  177. .side-box .side-item a .tips{
  178. position: absolute;
  179. width: 18px;
  180. height: 18px;
  181. line-height: 18px;
  182. font-size: 10px;
  183. right: -10px;
  184. top: -2px;
  185. color: #fff;
  186. background-color: #ff0000;
  187. border-radius: 18px;
  188. text-align: center;
  189. }
  190. .side-box .side-item.index a{
  191. background-position: 0 0;
  192. }
  193. .side-box .side-item.cart a{
  194. background-position: 0 -50px;
  195. }
  196. .side-box .side-item.kefu a{
  197. background-position: 0 -100px;
  198. }
  199. .side-box .side-item:first-child{
  200. border-bottom: none;
  201. }
  202. .side-box .side-item:last-child{
  203. border-top: none;
  204. }
  205. .side-box .side-item-totop{
  206. position: absolute;
  207. left: 0;
  208. bottom: -67px;
  209. display: none;
  210. }
  211. .side-box .side-item-totop a{
  212. background-position: 0 -150px;
  213. }
  214. /*@media screen and (min-width: 768px){
  215. .side-box {
  216. margin-right: -470px;
  217. }
  218. }
  219. @media screen and (min-width: 992px){
  220. .side-box {
  221. margin-right: -570px;
  222. }
  223. }
  224. @media screen and (min-width: 1200px){
  225. .side-box {
  226. margin-right: -670px;
  227. }
  228. }*/
  229. /* 公共导航*/
  230. /*====================================================*/
  231. .my-nav{
  232. width: 100%;
  233. background-color: #257cc1;
  234. }
  235. .my-nav .nav-list{
  236. position: relative;
  237. margin-bottom: 0;
  238. height: 50px;
  239. line-height: 50px;
  240. }
  241. .my-nav .nav-list li{
  242. float: left;
  243. margin-right: 36px;
  244. }
  245. .my-nav .nav-list li a{
  246. color: #bdd1e7;
  247. text-decoration: none;
  248. }
  249. .my-nav .nav-list li a:hover{
  250. color: #fff;
  251. }
  252. .my-nav .nav-list li.active a{
  253. color: #fff;
  254. }
  255. /* 首页 ,模板页*/
  256. /*====================================================*/
  257. /*首页轮播*/
  258. .index-banner{
  259. width: 100%;
  260. height: auto;
  261. }
  262. .session-ad{
  263. margin-top: 20px;
  264. }
  265. .session-ad img{
  266. width: 100%;
  267. height: auto;
  268. position: relative;
  269. }
  270. .template-title{
  271. font-size: 28px;
  272. margin-top: 50px;
  273. margin-bottom: 25px;
  274. }
  275. /*中间内容tab*/
  276. .product-wrapper{
  277. width: 100%;
  278. position: relative;
  279. overflow: hidden;
  280. }
  281. .product-wrapper .product-tab{
  282. margin-bottom: 40px;
  283. }
  284. .product-wrapper .product-list{
  285. margin-bottom: 0;
  286. }
  287. .product-wrapper .product-list li{
  288. position: relative;
  289. padding-left: 15px;
  290. padding-right: 15px;
  291. float: left;
  292. width: 20%;
  293. height: 286px;
  294. box-sizing: border-box;
  295. margin-bottom: 30px;
  296. }
  297. .product-wrapper .product-list li:last-child{
  298. }
  299. .product-wrapper .product-list li > a,
  300. .product-wrapper .product-list li .list_item
  301. {
  302. position: relative;
  303. display: block;
  304. width: 100%;
  305. height: 100%;
  306. box-sizing: border-box;
  307. border: 1px solid #ddd;
  308. text-align: center;
  309. overflow: hidden;
  310. }
  311. .product-wrapper .product-list li > a .prduct-img,
  312. .product-wrapper .product-list li .list_item .prduct-img
  313. {
  314. position: relative;
  315. height: 100%;
  316. display: inline-block;
  317. }
  318. .product-wrapper .product-list li > a .product-title,
  319. .product-wrapper .product-list li .list_item .product-title
  320. {
  321. position: absolute;
  322. left: 0;
  323. top: 0;
  324. width: 100%;
  325. height: 100%;
  326. line-height: 40px;
  327. background-color: rgba(0,0,0,.5);
  328. color: #fff;
  329. font-size: 14px;
  330. text-align: center;
  331. margin: 0;
  332. display: none;
  333. }
  334. .product-wrapper .product-list li >a .product-title img,
  335. .product-wrapper .product-list li .list_item .product-title img
  336. {
  337. position: absolute;
  338. left: 12px;
  339. bottom: 3px;
  340. }
  341. .product-wrapper .page{
  342. text-align: right;
  343. }
  344. .product-wrapper .page .pagination{
  345. margin: 0;
  346. }
  347. /*底部广告*/
  348. .ad-foot{
  349. }
  350. .ad-foot img{
  351. position: relative;
  352. width: 100%;
  353. height: auto;
  354. }
  355. /*模板页和个人中心页大banner*/
  356. .template{
  357. position: relative;
  358. width: 100%;
  359. height: auto;
  360. overflow: hidden;
  361. }
  362. .template .center{
  363. position: relative;
  364. top: 0;
  365. left: 50%;
  366. margin-left: -1000px;
  367. width: 2000px;
  368. height: auto;
  369. }
  370. .template .user-info{
  371. position: absolute;
  372. width: 580px;
  373. height: 166px;
  374. bottom: 30px;
  375. left: 50%;
  376. margin-left: -290px;
  377. background-color: rgba(255,255,255,.8);
  378. border-radius: 8px;
  379. }
  380. .template .user-info .user-head{
  381. position: absolute;
  382. width: 120px;
  383. height: 120px;
  384. top: -60px;
  385. left: 50%;
  386. margin-left: -60px;
  387. border-radius: 50%;
  388. border: 4px solid #7f7f7f;
  389. cursor: pointer;
  390. overflow: hidden;
  391. }
  392. .template .user-info .user-head .user-img{
  393. width: 100%;
  394. height: 100%;
  395. }
  396. .template .user-info .shade{
  397. position: absolute;
  398. width: 100%;
  399. height: 100%;
  400. top: 0;
  401. left: 0;
  402. background-color: rgba(0,0,0,.4);
  403. text-align: center;
  404. display: none;
  405. }
  406. .template .file-input{
  407. position: absolute;
  408. width: 100%;
  409. height: 100%;
  410. opacity: 0;
  411. z-index: 2;
  412. cursor: pointer;
  413. }
  414. .template .user-info .shade span{
  415. color: #fff;
  416. font-size: 28px;
  417. margin-top: 42px;
  418. z-index: 1;
  419. }
  420. .template .user-info .user-head:hover .shade{
  421. display: block;
  422. }
  423. .template .user-info .user-name{
  424. margin-top: 75px;
  425. height: 46px;
  426. line-height: 46px;
  427. margin-bottom: 0;
  428. text-align: center;
  429. color: #000;
  430. font-size: 16px;
  431. }
  432. .template .user-info .user-email{
  433. text-align: center;
  434. }
  435. .template .user-info .user-email span{
  436. display: inline-block;
  437. color: #257cc1;
  438. font-size: 12px;
  439. border: 1px solid #257cc1;
  440. height: 22px;
  441. line-height: 20px;
  442. padding: 0 5px;
  443. border-radius: 11px;
  444. }
  445. .template .user-info .edit{
  446. position: absolute;
  447. right: 0;
  448. top: -42px;
  449. }
  450. /*模板页*/
  451. .template-classify{
  452. margin-bottom: 30px;
  453. }
  454. .template-classify dl{
  455. margin-bottom: 10px;
  456. }
  457. .template-classify dl dt,.template-classify dl dd{
  458. line-height: 30px;
  459. }
  460. .template-classify dl dt{
  461. text-align: left;
  462. width: 70px;
  463. }
  464. .template-classify dl dd{
  465. margin-left: 75px;
  466. }
  467. .template-classify dl dd a{
  468. color: #666666;
  469. text-decoration: none;
  470. margin: 0 15px;
  471. }
  472. .template-classify dl dd a.active{
  473. color: #0babf9;
  474. }
  475. .template-classify dl dd a:hover{
  476. color: #0babf9;
  477. }
  478. /* 订单详情,我的订单 -订单详情*/
  479. /*====================================================*/
  480. .order-detail,.my-detail{
  481. margin-top: 40px;
  482. }
  483. .order-detail .order-form{
  484. padding-left: 40px;
  485. padding-right: 40px;
  486. padding-bottom: 5px;
  487. }
  488. .order-detail .order-form .form-list .form-group{
  489. margin-bottom: 10px;
  490. }
  491. .order-detail .order-form .form-list .form-group:last-child{
  492. margin-bottom: 0;
  493. }
  494. .order-detail .order-form .btn-area{
  495. text-align: right;
  496. }
  497. .my-detail .order-number{
  498. line-height: 56px;
  499. font-size: 21px;
  500. color: #000;
  501. border-bottom: 2px solid #000;
  502. margin: 0;
  503. }
  504. .my-detail .order-number span{
  505. float: right;
  506. font-size: 14px;
  507. margin-top: 22px;
  508. cursor: pointer;
  509. }
  510. .my-detail .progress-order{
  511. margin: 35px 0;
  512. }
  513. .my-detail .progress-order .progress-cell{
  514. position: relative;
  515. float: left;
  516. width: 20%;
  517. text-align: center;
  518. }
  519. .my-detail .progress-order .progress-cell .progress-num{
  520. position: relative;
  521. display: block;
  522. width: 42px;
  523. height: 42px;
  524. line-height: 42px;
  525. background-color: #fff;
  526. border: 1px solid #e5e5e5;
  527. color: #393a3a;
  528. margin-left: 56px;
  529. border-radius: 21px;
  530. z-index: 2;
  531. }
  532. .my-detail .progress-order .progress-cell .progress-text{
  533. display: block;
  534. color: #393a3a;
  535. margin-top: 14px;
  536. }
  537. .my-detail .progress-order .progress-cell .progress-border{
  538. position: absolute;
  539. display: block;
  540. width: 100%;
  541. height: 2px;
  542. background-color: #e5e5e5;
  543. left: 0;
  544. top: 22px;
  545. z-index: 1;
  546. }
  547. .my-detail .progress-order .progress-cell.active .progress-num{
  548. background-color: #0babf9;
  549. color: #fff;
  550. border: 1px solid #0babf9;
  551. }
  552. .my-detail .progress-order .progress-cell.active .progress-border{
  553. background-color: #0babf9;
  554. }
  555. .my-detail .order-title{
  556. padding: 10px 15px 8px 15px;
  557. line-height: 26px;
  558. background-color: #e0e0e0;
  559. color: #565156;
  560. font-size: 16px;
  561. font-weight: 700;
  562. line-height: 1;
  563. }
  564. .my-detail .address{
  565. padding: 30px;
  566. }
  567. .my-detail .address p{
  568. margin: 0;
  569. line-height: 31px;
  570. color: #000;
  571. }
  572. .my-detail .order-list{
  573. width: 100%;
  574. }
  575. .my-detail .order-list .order-item{
  576. position: relative;
  577. padding: 20px;
  578. border-bottom: 1px solid #f5f5f5;
  579. }
  580. .my-detail .order-list .order-item:last-child{
  581. border-bottom: none;
  582. }
  583. .my-detail .order-list .item-img{
  584. width: 112px;
  585. height: 112px;
  586. margin-right: 16px;
  587. overflow: hidden;
  588. }
  589. .my-detail .order-list .item-img img{
  590. width: 100%;
  591. }
  592. .my-detail .order-list .item-title{
  593. margin-left: 128px;
  594. margin-right: 220px;
  595. }
  596. .my-detail .order-list .item-title h5,.my-detail .order-list .item-title p{
  597. margin: 0;
  598. }
  599. .my-detail .order-list .item-title h5{
  600. font-size: 16px;
  601. font-weight: 700;
  602. color: #000;
  603. margin-bottom: 8px;
  604. }
  605. .my-detail .order-list .item-title .describe{
  606. margin-bottom: 6px;
  607. }
  608. .my-detail .order-list .item-num{
  609. position: absolute;
  610. top: 20px;
  611. right: 120px;
  612. }
  613. .my-detail .order-list .item-price{
  614. position: absolute;
  615. top: 20px;
  616. right: 20px;
  617. font-weight: 700;
  618. }
  619. .order-box{
  620. color: #252516;
  621. border: 1px solid #eee;
  622. }
  623. .order-box .order-info{
  624. padding: 12px;
  625. border-bottom: 1px solid #eee;
  626. }
  627. .order-box h4{
  628. font-size: 14px;
  629. font-weight: 700;
  630. }
  631. .order-box .order-info p{
  632. margin: 0;
  633. line-height: 28px;
  634. }
  635. .order-box .order-info hr{
  636. margin-bottom: 5px;
  637. margin-top: 5px;
  638. }
  639. .order-box .order-list{
  640. padding: 12px;
  641. }
  642. .order-box .order-list .order-item{
  643. margin-bottom: 10px;
  644. position: relative;
  645. }
  646. .order-box .order-list .order-item:last-child{
  647. margin-bottom: 0;
  648. }
  649. .order-box .order-list .order-item .item-img{
  650. width: 50px;
  651. height: 50px;
  652. margin-right: 8px;
  653. overflow: hidden;
  654. }
  655. .order-box .order-list .order-item .item-img img{
  656. width: 100%;
  657. height: 100%;
  658. }
  659. .order-box .order-list .order-item .item-title{
  660. margin-left: 58px;
  661. margin-right: 70px;
  662. }
  663. .order-box .order-list .order-item .item-title h5,.order-box .order-list .order-item .item-title p{
  664. margin: 0;
  665. line-height: 25px;
  666. height: 25px;
  667. overflow: hidden;
  668. }
  669. .order-box .order-list .order-item .item-title h5{
  670. font-weight: 700;
  671. }
  672. .order-box .item-price{
  673. position: absolute;
  674. font-weight: 700;
  675. right: 0;
  676. top: 0;
  677. }
  678. /* 我的账户,收货地址*/
  679. /*====================================================*/
  680. .my-account{
  681. margin-top: 40px;
  682. }
  683. .my-account .account-list{
  684. margin: 0;
  685. }
  686. .my-account .account-list li{
  687. height: 46px;
  688. line-height: 46px;
  689. }
  690. .my-account .account-list li a{
  691. color: #333;
  692. text-decoration: none;
  693. }
  694. .my-account .account-list li.active a{
  695. font-weight: 700;
  696. }
  697. .my-account .account-form{
  698. border-left: 1px solid #cdcdcd;
  699. padding-left: 56px;
  700. padding-bottom: 30px;
  701. }
  702. .my-account .account-form .account-title{
  703. border-bottom: 2px solid #000000;
  704. font-size: 26px;
  705. line-height: 56px;
  706. margin-bottom: 20px;
  707. margin-top: 0;
  708. }
  709. /* 我的订单table*/
  710. /*====================================================*/
  711. .order-table{
  712. border: 1px solid #ddd;
  713. text-align: center;
  714. margin-bottom: 0;
  715. }
  716. .order-table>thead>tr>th{
  717. border-bottom: 1px solid #ddd;
  718. border-left: 1px solid #ddd;
  719. text-align: center;
  720. background-color: #f5f5f5;
  721. }
  722. .check-all{
  723. float: right;
  724. font-size: 14px;
  725. font-weight: normal;
  726. color: #000;
  727. margin-top: 13px;
  728. }
  729. .check-all span{
  730. margin-left: 5px;
  731. }
  732. .check-all:hover{
  733. color: #000;
  734. }
  735. /* 我的订单tab切换*/
  736. /*====================================================*/
  737. .order-tab{
  738. margin-top: 40px;
  739. margin-bottom: 35px;
  740. }
  741. .order-tab a{
  742. display: inline-block;
  743. float: left;
  744. width: 12.5%;
  745. text-align: center;
  746. height: 50px;
  747. line-height: 48px;
  748. font-size: 15px;
  749. color: #030f13;
  750. border-left:1px solid #ddd;
  751. border-top: 1px solid #ddd;
  752. border-bottom: 1px solid #ddd;
  753. text-decoration: none;
  754. }
  755. .order-tab a:last-child{
  756. border-right: 1px solid #ddd;
  757. }
  758. .order-tab a.active,.order-tab a:hover{
  759. color: #fff;
  760. background-color: #257cc1;
  761. /*border-color: #257cc1;*/
  762. }
  763. .font-nom{
  764. font-weight: normal;
  765. margin-left: 10px;
  766. }
  767. .table-list{
  768. margin-bottom: 10px;
  769. }
  770. .table-list>thead>tr>th{
  771. text-align: left;
  772. }
  773. .table-list>thead>tr>th span.glyphicon{
  774. cursor: pointer;
  775. margin-top: 2px;
  776. }
  777. .table-list>tbody>tr>td{
  778. vertical-align: middle;
  779. }
  780. .table-list>tbody>tr>td.list-td{
  781. padding: 0;
  782. }
  783. .table-list .order-list{
  784. text-align: left;
  785. margin-bottom: 0;
  786. }
  787. .table-list .order-list li{
  788. position: relative;
  789. border-bottom: 1px solid #ddd;
  790. padding: 15px 20px;
  791. height: 130px;
  792. }
  793. .table-list .order-list li:last-child{
  794. border: none;
  795. }
  796. .table-list .order-list li .pro-img{
  797. width: 98px;
  798. height: 98px;
  799. border: 1px solid #f4f4f4;
  800. overflow: hidden;
  801. }
  802. .table-list .order-list li .pro-img img{
  803. width: 100%;
  804. display: block;
  805. }
  806. .table-list .order-list li .pro-title{
  807. margin-left: 108px;
  808. margin-right: 220px;
  809. font-weight: 700;
  810. }
  811. .table-list .order-list li .pro-price{
  812. position: absolute;
  813. top: 15px;
  814. right: 20px;
  815. font-weight: 700;
  816. }
  817. .table-list .order-list li .pro-num{
  818. position: absolute;
  819. top: 15px;
  820. right: 120px;
  821. font-weight: 700;
  822. }
  823. /* 购物车*/
  824. /*====================================================*/
  825. .shop-cart{
  826. margin-top: 35px;
  827. margin-bottom: 25px;
  828. border: 1px solid #ddd;
  829. }
  830. .shop-cart .checkbox{
  831. margin: 0;
  832. }
  833. .shop-cart>thead>tr>th{
  834. text-align: left;
  835. background-color: #f5f5f5;
  836. border-bottom: none;
  837. }
  838. .shop-cart>tbody>tr>td{
  839. /*border-top: 2px solid #9a9a9a;*/
  840. /* vertical-align: middle;*/
  841. }
  842. .shop-cart .product{
  843. position: relative;
  844. }
  845. .shop-cart .product .pro-img{
  846. width: 100px;
  847. height: 100px;
  848. border: 1px solid #f4f4f4;
  849. overflow: hidden;
  850. }
  851. .shop-cart .product .pro-img img{
  852. width: 100%;
  853. display: block;
  854. }
  855. .shop-cart .pro-title{
  856. margin-left: 110px;
  857. margin-right: 220px;
  858. color: #4c4c4b;
  859. line-height: 26px;
  860. }
  861. .shop-cart .pro-color{
  862. width: 200px;
  863. position: absolute;
  864. right: 0;
  865. top: 0;
  866. }
  867. .shop-cart .pro-color p{
  868. margin: 0;
  869. line-height: 26px;
  870. color: #4c4c4b;
  871. }
  872. .shop-cart .sub{
  873. font-weight: 700;
  874. }
  875. .shop-cart .del a{
  876. color: #4c4c4b;
  877. }
  878. .shop-cart .count{
  879. border: 1px solid #dbdcdc;
  880. width: 102px;
  881. height: 28px;
  882. }
  883. .shop-cart .count input {
  884. border:none;
  885. background: none;
  886. }
  887. .shop-cart .count span,
  888. .shop-cart .count input
  889. {
  890. height: 26px;
  891. line-height: 26px;
  892. border-right: 1px solid #dbdcdc;
  893. display: inline-block;
  894. float: left;
  895. }
  896. .shop-cart .count span:last-child{
  897. border-right: none;
  898. }
  899. .shop-cart .count .click-btn{
  900. width: 20px;
  901. text-align: center;
  902. color: #8e908f;
  903. cursor: pointer;
  904. }
  905. .shop-cart .count .num{
  906. width: 60px;
  907. text-align: center;
  908. color: #222;
  909. }
  910. .total{
  911. padding-left: 10px;
  912. height: 46px;
  913. border: 1px solid #ddd;
  914. }
  915. .total .checkbox{
  916. margin-top: 13px;
  917. }
  918. .total .count{
  919. line-height: 44px;
  920. font-size: 24px;
  921. color: #999999;
  922. margin-right: 50px;
  923. }
  924. .total .count span{
  925. color: #f90b32;
  926. }
  927. .total .btn{
  928. position: relative;
  929. top: -1px;
  930. right: -1px;
  931. border-radius: 0;
  932. }
  933. /* 登录注册页面*/
  934. /*====================================================*/
  935. html.full-screen,html.full-screen body{
  936. width: 100%;
  937. height: 100%;
  938. min-height: 600px;
  939. }
  940. html.bg-gray,html.bg-gray body{
  941. background-color: #eee !important;
  942. }
  943. .bg-gray .mainhead{
  944. background-color: #fff;
  945. }
  946. /*登陆 注册框*/
  947. .login-box{
  948. position: absolute;
  949. width: 408px;
  950. left: 50%;
  951. margin-left: -204px;
  952. padding: 0 43px;
  953. background-color: #fff;
  954. border-radius: 10px;
  955. box-shadow: 0 0 5px #ccc;
  956. color: #75828e;
  957. }
  958. .login-box .login-tab{
  959. text-align: center;
  960. padding: 20px 0;
  961. }
  962. .login-box .login-tab a{
  963. color: #999;
  964. font-size: 18px;
  965. margin: 0 10px;
  966. text-decoration: none;
  967. }
  968. .login-box .login-tab .active{
  969. border-bottom: 1px solid #0babf9;
  970. }
  971. .login-box .login-tab .active,.login-box .login-tab a:hover{
  972. color: #0babf9;
  973. }
  974. .login-box .login-form{
  975. margin-top: 20px;
  976. }
  977. .login-box .login-form .form-group{
  978. position: relative;
  979. margin-bottom: 20px;
  980. }
  981. .login-box .login-form .form-control{
  982. height: 36px;
  983. }
  984. .login-box .login-form .checkbox{
  985. margin-top: 0;
  986. margin-bottom: 20px;
  987. }
  988. .login-box .login-form .checkbox .forget{
  989. color: #75828e;
  990. }
  991. .login-box .login-form .btn-area .btn{
  992. padding: 7px 12px;
  993. background-color: #58c6f8;
  994. border-color: #58c6f8;
  995. }
  996. .login-box .login-form .btn-area .btn:hover{
  997. background-color: #0babf9;
  998. border-color: #0babf9;
  999. }
  1000. .login-box .other-login{
  1001. text-align: center;
  1002. position: relative;
  1003. margin: 30px 0;
  1004. height: 21px;
  1005. line-height: 21px;
  1006. }
  1007. .login-box .other-login span{
  1008. position: relative;
  1009. z-index: 2;
  1010. padding: 0 20px;
  1011. background-color: #fff;
  1012. }
  1013. .login-box .other-login .line{
  1014. position: absolute;
  1015. width: 100%;
  1016. height: 1px;
  1017. top: 10px;
  1018. left: 0;
  1019. background-color: #cbd4da;
  1020. }
  1021. .login-box .wx-box{
  1022. text-align: center;
  1023. padding-top: 10px;
  1024. padding-bottom: 25px;
  1025. font-size: 0;
  1026. }
  1027. .login-box .wx-box a{
  1028. display: inline-block;
  1029. width: 36px;
  1030. height: 36px;
  1031. margin: 0 10px;
  1032. }
  1033. .login-box .wx-box a img{
  1034. width: 100%;
  1035. height: 100%;
  1036. display: block;
  1037. }
  1038. .login-box .verification-input{
  1039. width: 210px;
  1040. }
  1041. .login-box .verification{
  1042. position: absolute;
  1043. top: 0;
  1044. left: 210px;
  1045. width: 110px;
  1046. height: 36px;
  1047. }
  1048. .login-box .verification img{
  1049. width: 100%;
  1050. height: 100%;
  1051. display: block;
  1052. cursor: pointer;
  1053. }
  1054. .login{
  1055. height: 440px;
  1056. top: 50%;
  1057. margin-top: -220px;
  1058. }
  1059. .register-box{
  1060. margin-top: 40px;
  1061. position: relative;
  1062. }
  1063. .h60{
  1064. height: 60px;
  1065. }
  1066. .product-title {
  1067. padding: 15px;
  1068. text-align:left;
  1069. }
  1070. .product-title .title {
  1071. text-align:left;
  1072. font-size: 16px;
  1073. line-height: 1;
  1074. white-space: nowrap;
  1075. overflow: hidden;
  1076. text-overflow: ellipsis;
  1077. margin-bottom: 10px;
  1078. }
  1079. .product-title .remark {
  1080. text-align: left;
  1081. ddisplay: -webkit-box;
  1082. -webkit-box-orient: vertical;
  1083. -webkit-line-clamp: 2;
  1084. overflow: hidden;
  1085. line-height: 1.2em;
  1086. font-size: 12px;
  1087. margin-bottom: 20px;
  1088. }
  1089. .product-title .fenlei {
  1090. text-align: left;
  1091. }
  1092. .product-title .fenlei span {
  1093. border:1px #fff solid;
  1094. border-radius:50px;
  1095. -webkit-border-radius:50px;
  1096. font-size: 12px;
  1097. padding: 4px 5px;
  1098. text-align: center;
  1099. float: left;
  1100. line-height: 1;
  1101. margin-bottom: 5px;
  1102. margin-right: 10px;
  1103. }
  1104. .product-title .btn {
  1105. background: #0babf9;
  1106. width: 120px;
  1107. }
  1108. .product-title .btn.btn_two {
  1109. background: none;
  1110. color: #0babf9;
  1111. border: 1px #0babf9 solid;
  1112. margin-top: 10px;
  1113. }
  1114. .product-title .btn:hover {
  1115. color: #fff;
  1116. }
  1117. .product-title .use_number {
  1118. margin-top: 20px;
  1119. }
  1120. .kong {
  1121. width: 580px;
  1122. margin: 100px auto 200px auto;
  1123. text-align: left;
  1124. border: 1px #ddd solid;
  1125. padding: 20px;
  1126. }
  1127. .kong_img {
  1128. width: 80px;
  1129. display: block;
  1130. margin: 0 auto;
  1131. }
  1132. .kong p {
  1133. font-size: 20px;
  1134. margin-bottom: 20px;
  1135. text-align: center;
  1136. color: #666;
  1137. margin-top: 10px;
  1138. }
  1139. .kong_btn_area {
  1140. text-align: center;
  1141. }
  1142. .kong_btn_area .btn {
  1143. background: #0babf9;
  1144. color: #fff;
  1145. }
  1146. .payment_item {
  1147. float: left;
  1148. width: 33.333%;
  1149. }
  1150. .payment_item_content {
  1151. position: relative;
  1152. }
  1153. .payment_item_content label {
  1154. border: 1px #ddd solid;
  1155. padding: 12px;
  1156. display: block;
  1157. margin: 0;
  1158. line-height: 1;
  1159. text-align: center;
  1160. border-right:none;
  1161. }
  1162. .payment_form_c .payment_item:last-child .payment_item_content label {
  1163. border-right:1px #ddd solid;
  1164. }
  1165. .payment_form_wap {
  1166. padding: 10px;
  1167. margin-bottom: 40px;
  1168. }
  1169. .payment_item_content input[type=radio] {
  1170. position: absolute;
  1171. top: 0;
  1172. left: 0;
  1173. width: 100%;
  1174. height: 100%;
  1175. filter:alpha(opacity=0);
  1176. -moz-opacity:0;
  1177. -webkit-opacity: 0;
  1178. opacity: 0;
  1179. margin: 0;
  1180. padding: 0;
  1181. }
  1182. .payment_item .payment_item_content input[type=radio]:checked + label {
  1183. color: #0ba2eb;
  1184. border:1px #0ba2eb solid;
  1185. }
  1186. #qrcode canvas {
  1187. width: 256px;
  1188. height: 256px;
  1189. margin-left: 35px;
  1190. }
  1191. .order-list .tip {
  1192. text-align: center;
  1193. margin-top: 15px;
  1194. font-size: 15px;
  1195. color: #666;
  1196. }
  1197. .pay_page {
  1198. float: none;
  1199. margin: 0 auto;
  1200. }
  1201. .minheight500 {
  1202. min-height: 500px;
  1203. }
  1204. .order-box-new {
  1205. border:1px #ddd solid;
  1206. box-shadow: 0 0 5px #888888;
  1207. -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.2);
  1208. }
  1209. .pay_title {
  1210. font-size: 16px;
  1211. text-align: center;
  1212. border-bottom: 1px #ddd solid;
  1213. padding: 10px;
  1214. }
  1215. .bank_input {
  1216. margin-bottom: 10px;
  1217. }
  1218. .bank_input span{
  1219. vertical-align: middle;
  1220. }
  1221. .bank_input input {
  1222. height: 30px;
  1223. border:1px #ddd solid;
  1224. padding: 5px 10px;
  1225. width: 240px;
  1226. }
  1227. .article_title {
  1228. text-align: center;
  1229. font-size: 20px;
  1230. padding: 20px 0 10px 0;
  1231. font-weight: bold;
  1232. margin-top: 30px;
  1233. }
  1234. .article_time {
  1235. text-align: center;
  1236. }
  1237. .article_content {
  1238. margin: 0 auto;
  1239. width: 980px;
  1240. padding: 20px;
  1241. }
  1242. .track_title {
  1243. padding: 20px 0;
  1244. border-bottom: 2px #222 solid;
  1245. font-size: 16px;
  1246. margin-top: 20px;
  1247. }
  1248. .track_title .code {
  1249. float: left;
  1250. }
  1251. .track_title .time {
  1252. color: #999;
  1253. float: right;
  1254. }
  1255. .track_list_ul,
  1256. .track_list_ul li
  1257. {
  1258. font-style: normal;
  1259. list-style: none;
  1260. margin: 0 ;
  1261. padding: 0;
  1262. }
  1263. .track_list {
  1264. padding: 20px;
  1265. }
  1266. .track_list_ul li {
  1267. position: relative;
  1268. padding-left: 50px;
  1269. }
  1270. .track_list_ul li:before {
  1271. position: absolute;
  1272. content: "";
  1273. width: 12px;
  1274. height: 12px;
  1275. border-radius:100px;
  1276. background: #999;
  1277. top: 0;
  1278. left: 0;
  1279. z-index: 1;
  1280. }
  1281. .track_list_ul li:after {
  1282. position: absolute;
  1283. width: 1px;
  1284. background: #ddd;
  1285. height: 100%;
  1286. content: "";
  1287. top: 0;
  1288. left: 6px;
  1289. }
  1290. .track_list_ul li:first-child:before {
  1291. bbackground: #0084f4;
  1292. }
  1293. .track_list_ul .time {
  1294. font-size: 14px;
  1295. color: #222;
  1296. font-weight: bold;
  1297. line-height: 1;
  1298. }
  1299. .track_list_ul .content {
  1300. padding: 10px 0 20px;
  1301. }
  1302. .del_diy_btn {
  1303. position: absolute;
  1304. bottom: 10px;
  1305. right: 20px;
  1306. width: 30px;
  1307. height: 30px;
  1308. text-align: right;
  1309. }
  1310. .del_diy_btn img {
  1311. width: 22px;
  1312. height: 22px;
  1313. margin-top: 3px;
  1314. }
  1315. .select_border {
  1316. border: 1px #ddd solid;
  1317. padding: 3px 10px;
  1318. line-height: 1;
  1319. }