common.scss 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895
  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. &:first-child{
  795. margin-right: 60px;
  796. }
  797. }
  798. }
  799. }
  800. }
  801. //原厂搜索
  802. #store-list table .search-content-pc{
  803. position: relative;
  804. float: left;
  805. padding-left: 558px;
  806. width: auto;
  807. }
  808. #store-list table .search-content-pc .form-control{
  809. width: 190px;
  810. height: 28px;
  811. background-color: #ffffff;
  812. border-radius: 3px;
  813. border: solid 1px #2496f1;
  814. }
  815. #store-list table .search-content-pc .input-group-btn{
  816. position: absolute;
  817. top: 0;
  818. right: 0px;
  819. }
  820. #store-list table .search-content-pc .input-group-btn button{
  821. width: 69px;
  822. height: 28px;
  823. font-size: 14px;
  824. color: #fff;
  825. background-color: #2496f1;
  826. outline: none;
  827. border: none;
  828. }
  829. #store-list a .btn {
  830. width: 110px;
  831. height: 28px;
  832. background-color: #ffffff;
  833. border-radius: 3px;
  834. border: solid 1px #2496f1;
  835. outline: none;
  836. }
  837. //品牌索引
  838. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(5) a{
  839. width: 33px!important;
  840. }
  841. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6){
  842. width: 100px!important;
  843. margin: 0 0 0 10px!important;
  844. }
  845. .recommend-brand .brand-content .brand-index-tab .index-group:nth-child(6) a{
  846. width: 100px!important;
  847. }