common.scss 21 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118
  1. // scroll
  2. ::-webkit-scrollbar {
  3. width: 5px;
  4. height: 5px;
  5. background: hsla(0, 0%, 100%, 0.6);
  6. }
  7. ::-webkit-scrollbar-track {
  8. border-radius: 0;
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. border-radius: 0;
  12. background-color: rgba(95,95,95,.4);
  13. transition: background-color .15s;
  14. &:hover {
  15. background-color: rgba(95,95,95, .7);
  16. }
  17. }
  18. // ie等滚动条遮住元素
  19. html, body {
  20. -ms-overflow-style: scrollbar;
  21. }
  22. #cnzz_stat_icon_1267002346 {
  23. display: none;
  24. }
  25. // common style
  26. .clearfix {
  27. &:before, &:after {
  28. display: table;
  29. content: " ";
  30. }
  31. &:after {
  32. clear: both;
  33. }
  34. }
  35. .list-unstyled {
  36. padding-left: 0;
  37. list-style: none;
  38. }
  39. .list-inline li {
  40. display: inline-block;
  41. padding-left: 5px;
  42. padding-right: 5px;
  43. }
  44. .hide {
  45. opacity: 0;
  46. visibility: hidden;
  47. pointer-events: none;
  48. }
  49. .pull-left {
  50. float: left;
  51. }
  52. .pull-right {
  53. float: right;
  54. }
  55. .container {
  56. width: $container-width;
  57. margin: 0 auto;
  58. }
  59. .dl-horizontal dt {
  60. float: left;
  61. width: 160px;
  62. overflow: hidden;
  63. clear: left;
  64. text-align: right;
  65. text-overflow: ellipsis;
  66. white-space: nowrap;
  67. }
  68. .dl-horizontal dd {
  69. display: block;
  70. margin-left: 180px;
  71. &:before, &:after {
  72. display: table;
  73. content: " ";
  74. }
  75. &:after {
  76. clear: both;
  77. }
  78. }
  79. .dropdown {
  80. position: relative;
  81. .dropdown-toggle {
  82. cursor: pointer;
  83. }
  84. .dropdown-menu {
  85. position: absolute;
  86. left: 0;
  87. top: 100%;
  88. min-width: 100%;
  89. display: none;
  90. background-color: $white;
  91. z-index: 100;
  92. }
  93. &:hover {
  94. .dropdown-menu {
  95. display: block;
  96. }
  97. }
  98. }
  99. // button
  100. .btn {
  101. display: inline-block;
  102. height: 36px;
  103. line-height: 1;
  104. padding: 3px 12px;
  105. margin: 0;
  106. border: 1px solid transparent;
  107. text-align: center;
  108. white-space: nowrap;
  109. vertical-align: middle;
  110. -ms-touch-action: manipulation;
  111. touch-action: manipulation;
  112. cursor: pointer;
  113. -webkit-user-select: none;
  114. -moz-user-select: none;
  115. -ms-user-select: none;
  116. &.btn-default {
  117. color: $text;
  118. background-color: $white;
  119. border-color: $dividers;
  120. }
  121. &.btn-primary {
  122. color: $white;
  123. background-color: $primary;
  124. border-color: $primary;
  125. }
  126. }
  127. // form
  128. .form-control {
  129. -webkit-appearance: none;
  130. -moz-appearance: none;
  131. appearance: none;
  132. background-color: $white;
  133. background-image: none;
  134. border: $border;
  135. color: $text;
  136. display: inline-block;
  137. font-size: inherit;
  138. height: 36px;
  139. line-height: 1;
  140. outline: none;
  141. padding: 3px 10px;
  142. width: 100%;
  143. &.input-primary {
  144. border-color: $primary;
  145. }
  146. }
  147. .input-group {
  148. position: relative;
  149. display: inline-table;
  150. width: 100%;
  151. border-collapse: separate;
  152. .form-control, .input-group-btn {
  153. display: table-cell;
  154. }
  155. .input-group-addon, .input-group-btn {
  156. position: relative;
  157. width: 1px;
  158. white-space: nowrap;
  159. vertical-align: middle;
  160. }
  161. .form-control {
  162. position: relative;
  163. z-index: 2;
  164. float: left;
  165. width: 100%;
  166. }
  167. .input-group-btn {
  168. .btn {
  169. position: relative;
  170. }
  171. }
  172. }
  173. // vue animate
  174. .slide-down-enter-active, .slide-down-leave-active {
  175. transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
  176. opacity: .7;
  177. transform: translate3d(0, 4em, 0);
  178. }
  179. .slide-down-enter, .slide-down-leave-active {
  180. opacity: .3;
  181. transform: translate3d(0, 4em, 0);
  182. }
  183. .slide-left-enter-active, .slide-left-leave-active {
  184. transition: all .2s cubic-bezier(0, 1.2, 1, 0.5);
  185. opacity: .5;
  186. transform: translate3d(2em, 0, 0);
  187. }
  188. .slide-left-enter, .slide-left-leave-active {
  189. opacity: .3;
  190. transform: translate3d(2em, 0, 0);
  191. }
  192. .slide-right-enter-active, .slide-right-leave-active {
  193. transition: all .4s cubic-bezier(0, 1.2, 1, 0.5);
  194. opacity: .5;
  195. transform: translate3d(5em, 0, 0);
  196. }
  197. .slide-right-enter, .slide-right-leave-active {
  198. opacity: .3;
  199. transform: translate3d(5em, 0, 0);
  200. }
  201. .fade-enter-active, .fade-leave-active {
  202. transition: opacity .25s
  203. }
  204. .fade-enter, .fade-leave-active {
  205. opacity: 0
  206. }
  207. .fade-move {
  208. transition: transform .25s;
  209. }
  210. .page-enter-active, .page-leave-active {
  211. transition: opacity .25s
  212. }
  213. .page-enter, .page-leave-active {
  214. opacity: 0
  215. }
  216. .module-enter-active, .module-leave-active {
  217. transition: opacity .25s
  218. }
  219. .module-enter, .module-leave-active {
  220. opacity: 0
  221. }
  222. .aside-enter-active {
  223. transition: opacity .25s cubic-bezier(1, -1.17, 1, -1.17);
  224. }
  225. .aside-leave-active {
  226. transition: opacity 0s
  227. }
  228. .aside-enter, .aside-leave-active {
  229. opacity: 0
  230. }
  231. // 轮播
  232. .swiper-pagination-bullet{
  233. width: 12px !important;
  234. height: 12px !important;
  235. opacity: 1 !important;
  236. background: none !important;
  237. border: #fff 1px solid;
  238. }
  239. .swiper-pagination-bullet.swiper-pagination-bullet-active{
  240. background: #fff !important;
  241. }
  242. .swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets{
  243. bottom: 20px !important;
  244. }
  245. .swiper-button-prev i,.swiper-button-next i{
  246. font-size: 40px;
  247. color: #fff;
  248. opacity: 1;
  249. font-weight: 900;
  250. text-shadow: 2px 0px 5px #333;
  251. }
  252. .swiper-button-prev,.swiper-button-next{
  253. background: none !important;
  254. width: 40px !important;
  255. height: 80px !important;
  256. line-height: 80px;
  257. margin-top: -45px !important;
  258. opacity: .6;
  259. }
  260. .swiper-button-prev:hover,.swiper-button-next:hover{
  261. opacity: 1;
  262. }
  263. .menu-title{
  264. line-height: 30px;
  265. font-size: 14px;
  266. margin-bottom: 10px;
  267. }
  268. .menu-title a {
  269. color: #5078cb;
  270. font-size: 14px;
  271. }
  272. /* 产品分类调整*/
  273. .el-tree {
  274. border: none !important;
  275. /*min-height: 300px;*/
  276. }
  277. .el-tree--highlight-current .el-tree-node.is-current>.el-tree-node__content,.el-tree-node:hover{
  278. background: none !important;
  279. }
  280. .el-tree-node__content:hover{
  281. background: none !important;
  282. }
  283. .el-tree-node__content:hover span{
  284. color: #5078cb;
  285. }
  286. .is-current>div.el-tree-node__content:first-child{
  287. color: #5078cb;
  288. }
  289. .el-pagination .el-pager li.active{
  290. background-color: #5078cb;
  291. border-color: #337ab7;
  292. }
  293. .el-tree-node__content .el-tree-node__expand-icon{
  294. font-family: "iconfont" !important;
  295. font-size: 14px;
  296. font-style: normal;
  297. -webkit-font-smoothing: antialiased;
  298. width: inherit;
  299. height: inherit;
  300. border: inherit;
  301. font-weight: bold;
  302. text-shadow: -1px 0px 0 #333;
  303. margin-right: 3px !important;
  304. }
  305. div.el-tree-node__content{
  306. line-height: 36px;
  307. height: 36px;
  308. }
  309. /*.el-tree-node__children .el-tree-node__content{
  310. padding-left: 8px !important;
  311. }*/
  312. .el-tree-node__expand-icon.is-leaf{
  313. visibility: hidden;
  314. }
  315. .el-tree-node__expand-icon:before{
  316. content: "\E621";
  317. }
  318. .el-pagination{
  319. margin-bottom: 15px;
  320. }
  321. // 留言板弹出框
  322. .dialog .el-dialog__header{
  323. display: none;
  324. }
  325. .dialog .el-dialog__body{
  326. padding: 0 !important;
  327. }
  328. /*留言板查看*/
  329. .messageBoard .img-item .preview {
  330. display: block;
  331. position: absolute;
  332. top: 0;
  333. right: 0;
  334. z-index: 1000;
  335. width: 82px;
  336. height: 70px;
  337. overflow: hidden;
  338. }
  339. .messageBoard .img-item .preview img.previewImage{
  340. //background: #fff url('/images/all/msg_uploadPic.png')no-repeat center center;
  341. //max-height: 68px;
  342. //max-width: 80px;
  343. //line-height: 68px;
  344. //cursor: pointer;
  345. max-height: 82px;
  346. max-width: 70px;
  347. cursor: pointer;
  348. line-height: 70px;
  349. overflow: hidden;
  350. //width:100%;
  351. //height:0;
  352. //padding-bottom: 100%;
  353. //overflow:hidden;
  354. //background-position: center center;
  355. //background-repeat: no-repeat;
  356. //-webkit-background-size:cover;
  357. //-moz-background-size:cover;
  358. //background-size:cover;
  359. }
  360. .messageBoard .img-item input[type="file"] {
  361. position: absolute;
  362. top: 0;
  363. left: 0;
  364. width: 100%;
  365. height: 100%;
  366. text-align: center;
  367. opacity: 0;
  368. line-height: 70px;
  369. display: inline-block !important;
  370. }
  371. .messageBoard .img-item .hover-show{
  372. position: absolute;
  373. z-index: 1001;
  374. width: 82px;
  375. height: 70px;
  376. opacity: 0;
  377. top: 0;
  378. left: 0;
  379. background: rgba(0, 0, 0, 0.5);
  380. }
  381. .messageBoard .img-item:hover .hover-show{
  382. opacity: 1;
  383. }
  384. .messageBoard .img-item .hover-show .delete{
  385. position: absolute;
  386. top: 3px;
  387. right: 3px;
  388. padding: 0;
  389. width: 20px;
  390. height: 20px;
  391. float: right;
  392. text-align: center;
  393. }
  394. .messageBoard .img-item .hover-show .delete i{
  395. color: #fff;
  396. font-size: 16px;
  397. }
  398. .messageBoard .img-item .hover-show a{
  399. display: inline-block;
  400. width: 100%;
  401. height: 70px;
  402. font-size: 14px;
  403. color: #fff;
  404. text-align: center;
  405. line-height: 70px;
  406. }
  407. .messageBoard .img-item .hover-show a i{
  408. margin-right: 5px;
  409. font-size: 16px;
  410. }
  411. .messageBoard .img-item #image-box .x-floating-wrap{
  412. position: fixed;
  413. z-index: 99998;
  414. background: #000;
  415. top: 0;
  416. left: 0;
  417. width: 680px;
  418. height: 100%;
  419. opacity: 0.5;
  420. }
  421. /*查看大图*/
  422. #image-box .x-floating-wrap,.image-box .x-floating-wrap {
  423. position: fixed;
  424. z-index: 99998;
  425. background: #000;
  426. top: 0;
  427. left: 0;
  428. width: 100%;
  429. height: 100%;
  430. opacity: 0.5;
  431. }
  432. #image-box,.image-box{
  433. display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
  434. position: fixed;
  435. top: 50%;
  436. margin-top: -350px;
  437. left: 50%;
  438. margin-left: -600px;
  439. z-index: 2020;
  440. }
  441. #image-box .x-floating,.image-box .x-floating {
  442. vertical-align:middle !important;
  443. display:table-cell;
  444. text-align:center;
  445. _position:absolute;
  446. _top:50%; _left:50%;
  447. top: inherit !important;
  448. left: inherit !important;
  449. }
  450. #image-box .x-floating img ,.image-box .x-floating img {
  451. margin: auto auto;
  452. max-width: 970px !important;
  453. max-height: 600px !important;
  454. -webkit-user-select: none;
  455. -moz-user-select: none;
  456. -ms-user-select: none;
  457. user-select: none;
  458. }
  459. #image-box .x-floating-wrap,.image-box .x-floating-wrap{
  460. z-index: 1000000 !important;
  461. }
  462. #item-content{
  463. color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
  464. position: relative;
  465. z-index: 10000000;
  466. }
  467. #item-content div.x-close-wrap{
  468. position: absolute;
  469. right: -15px;
  470. line-height: 30px;
  471. top: -13px;
  472. color: #fff;
  473. width: 35px;
  474. height: 35px;
  475. background: rgba(0, 0, 0, 0.5);
  476. border-radius: 100%;
  477. opacity: 1;
  478. margin: 0;
  479. z-index: 100000;
  480. min-height: initial;
  481. text-align: center;
  482. }
  483. #item-content div.x-close-wrap a{
  484. position: relative;
  485. left: 0;
  486. bottom: 0;
  487. font-size: 34px;
  488. color: #fff;
  489. }
  490. #item-content div.x-close-wrap a:hover{
  491. color: #fff !important;
  492. }
  493. #item-content div.x-close-wrap:hover{
  494. cursor: pointer;
  495. opacity: .9;
  496. }
  497. #item-content div.x-close-wrap img{
  498. width: 30px !important;
  499. height: 30px !important;
  500. }
  501. #item-content .img{
  502. position: relative;
  503. z-index: 10;
  504. }
  505. /*查看大图*/
  506. #image-box .x-floating-wrap,.image-box .x-floating-wrap {
  507. position: fixed;
  508. z-index: 99998;
  509. background: #000;
  510. top: 0;
  511. left: 0;
  512. width: 100%;
  513. height: 100%;
  514. opacity: 0.5;
  515. }
  516. #image-box,.image-box{
  517. display:table; overflow:hidden; margin-left:50px; _position:relative; width: 1200px;height: 700px;
  518. position: fixed;
  519. top: 50%;
  520. margin-top: -350px;
  521. left: 50%;
  522. margin-left: -600px;
  523. z-index: 2000;
  524. }
  525. #image-box .x-floating,.image-box .x-floating {
  526. vertical-align:middle !important;
  527. display:table-cell;
  528. text-align:center;
  529. _position:absolute;
  530. _top:50%; _left:50%;
  531. top: inherit !important;
  532. left: inherit !important;
  533. }
  534. #image-box .x-floating img ,.image-box .x-floating img {
  535. margin: auto auto;
  536. max-width: 970px !important;
  537. max-height: 600px !important;
  538. -webkit-user-select: none;
  539. -moz-user-select: none;
  540. -ms-user-select: none;
  541. user-select: none;
  542. }
  543. #image-box .x-floating-wrap,.image-box .x-floating-wrap{
  544. z-index: 1000000 !important;
  545. }
  546. #item-content{
  547. color:#fff; display:inline-block; _position:relative; _top:-50%; _left:-50%;
  548. position: relative;
  549. z-index: 10000000;
  550. }
  551. #item-content div.x-close-wrap{
  552. position: absolute;
  553. right: -15px;
  554. line-height: 30px;
  555. top: -13px;
  556. color: #fff;
  557. width: 35px;
  558. height: 35px;
  559. background: rgba(0, 0, 0, 0.5);
  560. border-radius: 100%;
  561. opacity: 1;
  562. margin: 0;
  563. z-index: 100000;
  564. min-height: initial;
  565. text-align: center;
  566. }
  567. #item-content div.x-close-wrap a{
  568. position: relative;
  569. left: 0;
  570. bottom: 0;
  571. font-size: 34px;
  572. color: #fff;
  573. }
  574. #item-content div.x-close-wrap a:hover{
  575. color: #fff !important;
  576. }
  577. #item-content div.x-close-wrap:hover{
  578. cursor: pointer;
  579. opacity: .9;
  580. }
  581. #item-content div.x-close-wrap img{
  582. width: 30px !important;
  583. height: 30px !important;
  584. }
  585. #item-content .img{
  586. position: relative;
  587. z-index: 10;
  588. }
  589. .componentDetail .el-dialog--tiny{
  590. width: 320px !important;
  591. }
  592. .componentDetail .el-dialog__body{
  593. padding: 14px !important;
  594. }
  595. a {
  596. color: #2d8cf0;
  597. background: 0 0;
  598. text-decoration: none;
  599. outline: 0;
  600. cursor: pointer;
  601. //transition: color .2s ease;
  602. }
  603. .select-adder {
  604. background:url("../../static/images/all/xiala.png") right no-repeat #fff !important;
  605. background-position-x: 100% !important;
  606. }
  607. select {
  608. /*将默认的select选择框样式清除*/
  609. appearance:none;
  610. -moz-appearance:none;
  611. -webkit-appearance:none;
  612. -ms-appearance:none;
  613. }
  614. select::-ms-expand {
  615. display: none;
  616. }
  617. /*input number 箭头*/
  618. input::-webkit-outer-spin-button,
  619. input::-webkit-inner-spin-button {
  620. -webkit-appearance: none;
  621. }
  622. input[type="number"]{
  623. -moz-appearance: textfield;
  624. }
  625. .banner-img {
  626. display: block;
  627. margin: 10px auto;
  628. }
  629. .fl {
  630. float: left !important;
  631. }
  632. .fr {
  633. float: right !important;
  634. }
  635. /*new 标签*/
  636. @keyframes newAnimate {
  637. 0% {
  638. transform: translate(0px, 0px);
  639. }
  640. 50% {
  641. transform: translate(0px, -3px);
  642. }
  643. 100% {
  644. transform: translate(0px, 0px);
  645. }
  646. }
  647. img.new-animate{
  648. position: relative;
  649. top: -7px;
  650. animation: newAnimate 1s infinite;
  651. }
  652. /*提示横条*/
  653. .com-result{
  654. position: relative;
  655. height: 30px;
  656. width: 100%;
  657. line-height: 30px;
  658. text-align: center;
  659. background: #fef6f2;
  660. border: 1px solid #ec854d;
  661. overflow: hidden ;
  662. }
  663. .com-result .text{
  664. width: 100%;
  665. text-align: center;
  666. font-size: 14px;
  667. color: #f15601;
  668. }
  669. .com-result .text em{
  670. margin-right: 3px;
  671. font-style: normal;
  672. }
  673. .com-result .text a {
  674. color: #5078cb;
  675. }
  676. .com-result .close-tip{
  677. position: absolute;
  678. right: 0;
  679. padding-right: 10px;
  680. font-size: 20px;
  681. font-weight: bold;
  682. color: #ef1d1d;
  683. line-height: 28px;
  684. }
  685. .clear-float {
  686. clear: both;
  687. }
  688. .inline-block {
  689. display: inline-block;
  690. vertical-align: middle;
  691. }
  692. .text-ellipse {
  693. overflow: hidden;
  694. text-overflow: ellipsis;
  695. white-space: nowrap;
  696. }
  697. //企业简介查看更多
  698. .dialog-description{
  699. margin:0 auto;
  700. width: 100%;
  701. text-align: center;
  702. div.el-dialog{
  703. width: 814px !important;
  704. //height: 252px;
  705. .el-dialog__header{
  706. display: none;
  707. }
  708. .el-dialog__body {
  709. width: 100%;
  710. height: 100%;
  711. padding: 0!important;
  712. .header{
  713. overflow: hidden;
  714. padding: 0 15px;
  715. width: 100%;
  716. height: 50px;
  717. line-height: 50px;
  718. border-bottom: 1px solid #ddd;
  719. span:first-child {
  720. position: relative;
  721. float: left;
  722. font-size: 14px;
  723. color: #666;
  724. font-weight: bold;
  725. img{
  726. margin-right: 5px;
  727. }
  728. }
  729. span:last-child {
  730. float: right;
  731. margin-top: 10px;
  732. font-size: 32px;
  733. }
  734. }
  735. .content {
  736. padding: 15px 0;
  737. margin: 0 auto;
  738. width: 768px;
  739. height: auto;
  740. p{
  741. text-align: left;
  742. font-size: 12px;
  743. font-weight: normal;
  744. line-height: 19px;
  745. letter-spacing: 0;
  746. color: #333333;
  747. }
  748. }
  749. }
  750. }
  751. }
  752. //资质证明
  753. .certificate {
  754. div.el-dialog.el-dialog--tiny{
  755. width: 1070px !important;
  756. }
  757. }
  758. //产品展示分页器
  759. .recommend-fragment {
  760. background: #fff;
  761. .swiper-pagination {
  762. bottom: 8px!important;
  763. li.swiper-pagination-bullet{
  764. width: 8px!important;
  765. height: 8px!important;
  766. display: inline-block;
  767. border-radius: 100%;
  768. background: #9c9c9c !important;
  769. opacity: 0.2;
  770. }
  771. li.swiper-pagination-bullet.swiper-pagination-bullet-active{
  772. width: 10px!important ;
  773. height: 10px!important ;
  774. background-color: #4d4d4d!important ;
  775. }
  776. }
  777. }
  778. #goods-list-fragment {
  779. .content-adv {
  780. margin: 15px 0;
  781. width: 100%;
  782. padding-right: 10px;
  783. overflow: hidden;
  784. position:relative;
  785. .title-adv{
  786. position: absolute;
  787. top: 5px;
  788. left: 45px;
  789. float: left;
  790. span{
  791. font-size: 16px;
  792. font-weight: bold;
  793. color: #333;
  794. }
  795. }
  796. }
  797. }
  798. //原厂搜索
  799. #store-list table .search-content-pc{
  800. position: relative;
  801. float: left;
  802. padding-left: 460px;
  803. width: auto;
  804. }
  805. #store-list table .search-content-pc .form-control{
  806. margin-top: 0;
  807. width: 283px;
  808. height: 28px;
  809. background-color: #ffffff;
  810. border-radius: 3px;
  811. border: solid 1px #2496f1;
  812. }
  813. #store-list table .search-content-pc .input-group-btn{
  814. //position: absolute;
  815. //top: 0;
  816. //right: 0px;
  817. }
  818. #store-list table .search-content-pc .input-group-btn button{
  819. top: 0;
  820. width: 69px;
  821. height: 28px;
  822. font-size: 14px;
  823. color: #fff;
  824. background-color: #2496f1;
  825. outline: none;
  826. border: none;
  827. }
  828. #store-list a .btn {
  829. width: 110px;
  830. height: 28px;
  831. background-color: #ffffff;
  832. border-radius: 3px;
  833. border: solid 1px #2496f1;
  834. outline: none;
  835. }
  836. #store-list .search-content-pc ul{
  837. left: 461px;
  838. }
  839. //品牌索引
  840. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(5) a{
  841. width: 33px!important;
  842. }
  843. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6){
  844. width: 100px!important;
  845. margin: 0 0 0 10px!important;
  846. }
  847. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6) a{
  848. width: 100px!important;
  849. }
  850. .block {
  851. display: block;
  852. }
  853. //求购搜索
  854. .apply-info .apply-info-title .search .search-content-pc {
  855. position: relative;
  856. z-index: 0;
  857. input {
  858. width: 283px!important;
  859. height: 32px;
  860. border: 1px solid #2496f1;
  861. line-height: 32px;
  862. font-size: 13px;
  863. margin-top: 14px;
  864. border: {
  865. top-right-radius: 0;
  866. bottom-right-radius: 0;
  867. }
  868. }
  869. span.input-group-btn .btn{
  870. top: 7px;
  871. display: inline-block;
  872. width: 69px;
  873. color: #fff;
  874. background: #2496f1;
  875. text-align: center;
  876. margin: 0 6px 0 -1px;
  877. border: {
  878. top-right-radius: 3px;
  879. bottom-right-radius: 3px;
  880. }
  881. cursor: pointer;
  882. }
  883. ul{
  884. left: 0 !important ;
  885. top: 46px !important ;
  886. }
  887. }
  888. //进度条
  889. .progress_bar .el-progress{
  890. width: 511px;
  891. height: 15px;
  892. border-radius: 7px;
  893. }
  894. .progress_bar .el-progress-bar__inner{
  895. background: #ffbe04;
  896. }
  897. .progress_bar .el-progress-bar__innerText{
  898. font-size: 16px;
  899. color: #0083c5;
  900. }
  901. //未中奖 询价不够
  902. .no-prise .el-dialog--small{
  903. top: 30% !important;
  904. width: 682px;
  905. height: 328px;
  906. background-color: #ffffff;
  907. border-radius: 13px;
  908. }
  909. .no-prise .el-dialog--small .el-dialog__body{
  910. position: relative;
  911. }
  912. .no-prise .el-dialog--small .el-dialog__header {
  913. display: none;
  914. }
  915. .no-prise .dialog-content img.hua{
  916. position: absolute;
  917. top: -170px;
  918. left: 50%;
  919. margin-left: -218px;
  920. }
  921. .no-prise .dialog-content p{
  922. margin-top: 100px;
  923. font-size: 36px;
  924. color: #846244;
  925. }
  926. .no-prise .dialog-content .close{
  927. position: absolute;
  928. top: 0px;
  929. right: 0px;
  930. width: 30px;
  931. height: 30px;
  932. line-height: 23px;
  933. text-align: center;
  934. font-size: 30px;
  935. background: rgba(0,0,0,.9);
  936. border-radius: 50%;
  937. }
  938. .no-prise .el-dialog__footer {
  939. margin: 0 auto;
  940. text-align: center;
  941. }
  942. .no-prise .dialog-footer a{
  943. display: inline-block;
  944. width: 278px;
  945. height: 57px;
  946. line-height: 57px;
  947. text-align: center;
  948. font-size: 36px;
  949. color: #ffffff;
  950. background-color: #f29844;
  951. border-radius: 28px;
  952. }
  953. //中奖提示
  954. .get-prise .el-dialog--small {
  955. height: auto;
  956. }
  957. .get-prise .dialog-content p{
  958. font-size: 28px;
  959. text-align: left;
  960. }
  961. .get-prise .qr{
  962. padding: 0 90px 0 20px;
  963. overflow: hidden
  964. }
  965. .get-prise .qr p{
  966. float: left;
  967. width: 300px;
  968. margin-top: 20px;
  969. text-align: left;
  970. }
  971. .get-prise .qr img{
  972. float: right;
  973. height: 100px;
  974. }
  975. .get-prise .dialog-footer a{
  976. margin-top: 10px;
  977. }
  978. //查看中奖产品
  979. .look-prise .el-dialog--small{
  980. width: 825px;
  981. height: auto;
  982. }
  983. .look-prise .btn-tip{
  984. margin: 43px auto 0;
  985. width: 278px;
  986. height: 57px;
  987. line-height: 57px;
  988. text-align: center;
  989. font-size: 36px;
  990. color: #fff;
  991. background-color: #f29844;
  992. border-radius: 28px
  993. }
  994. .look-prise .prise-tab{
  995. overflow: hidden;
  996. margin: 20px 0;
  997. }
  998. .look-prise .prise-tab span{
  999. display: inline-block;
  1000. float: left;
  1001. color: #f08829;
  1002. font-size: 30px;
  1003. &:first-child{
  1004. width: 180px;
  1005. }
  1006. &:nth-child(2){
  1007. width: 170px;
  1008. }
  1009. &:nth-child(3){
  1010. width: 170px;
  1011. }
  1012. &:last-child{
  1013. width: 150px;
  1014. }
  1015. }
  1016. .look-prise ul{
  1017. list-style: none;
  1018. margin-top: 40px;
  1019. }
  1020. .look-prise ul li {
  1021. overflow: hidden;
  1022. margin-bottom: 24px;
  1023. &:last-child {
  1024. margin-bottom: 40px;
  1025. }
  1026. }
  1027. .look-prise ul li div{
  1028. float: left;
  1029. overflow: hidden;
  1030. color: #846244;
  1031. font-size: 24px;
  1032. text-overflow: ellipsis;
  1033. white-space: nowrap;
  1034. &:first-child{
  1035. width: 180px;
  1036. }
  1037. &:nth-child(2){
  1038. width: 170px;
  1039. }
  1040. &:nth-child(3){
  1041. width: 170px;
  1042. }
  1043. &:last-child{
  1044. width: 150px;
  1045. }
  1046. }
  1047. .look-prise .prise-style{
  1048. font-size: 20px;
  1049. color: #f08829;
  1050. }
  1051. .look-prise .prise-style img{
  1052. margin-left: 20px;
  1053. width: 100px;
  1054. height: 100px;
  1055. }
  1056. .look-prise .no_prise{
  1057. margin: 60px auto 50px;
  1058. font-size: 32px;
  1059. color: #f08829;
  1060. }
  1061. .look-prise .no_prise i{
  1062. margin-right: 10px;
  1063. font-size: 40px;
  1064. color: #f08829;
  1065. }