<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, textarea, input, select, a{
  color: #333;
  font-size: 14px;
  font-family: "PingFang SC", "Lantinghei SC", "Microsoft YaHei", "Helvetica Neue", "Open Sans", Arial, "Hiragino Sans GB", sans-serif;

}
body{
  background-color: #f5f5f5;
}
body.fit-edit{
  overflow: hidden;
  margin-right: 8px;
}
ul, li {
  list-style: none;
}


img{
  max-width: 100%;
}
a{
  text-decoration:none;
  transition: opacity 0.2s ease-out;
}

.error {
    color: #FF6464;
}

button,
textarea,
input{
  outline: none;
  border: none;
}
button{
  background-color: transparent;
}
input[type='button'] {
  background-color: transparent;
  outline: none;
  border: none;
}

video:focus{
  outline: none;
}


/*é€šç”¨æ&nbsp;·å¼*/
.main-bg{
  color: #fff;
  background-color: #27e;
}
.main-txt{
  color: #27e;
}
.color-red{
  color: #ff6464;
}


select,
.select{
  display: inline-block;
  padding-left: 10px;
  padding-right: 24px;
  height: 34px;
  border: 1px solid #bbb;
  border-radius: 4px;
  outline: none;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  background-color: transparent;
  background-image: url(../images/sicon_select_bottomarrow.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 14px;
  background-color: #fff;
}
select:focus,
.select:focus{
  border: 1px solid #27e;
}
.select-1 select,
.select-1 .select{
  width: 100%;
}
.select-2,
.select-3{
  overflow: hidden;
}
.select-2 select,
.select-2 .select{
  width: 50%;
  float: left;
}
.select-2 select:first-child,
.select-2 .select:first-child{
  border-radius: 4px 0 0 4px;
}
.select-2 select:last-child,
.select-2 .select:last-child{
  border-radius: 0 4px 4px 0;
}
.select-3 select,
.select-3 .select{
  width: 33.333%;
  float: left;
  border-radius: 0;
}
.select-3 select:first-child,
.select-3 .select:first-child{
  border-radius: 4px 0 0 4px;
}
.select-3 select:last-child,
.select-3 .select:last-child{
  border-radius: 0 4px 4px 0;
}




*::-webkit-scrollbar {/*æ»šåŠ¨æ¡æ•´ä½“æ&nbsp;·å¼*/
  width: 8px;     /*é«˜å®½åˆ†åˆ«å¯¹åº”æ¨ªç«–æ»šåŠ¨æ¡çš„å°ºå¯¸*/
  height: 8px;
}
*::-webkit-scrollbar-thumb {/*æ»šåŠ¨æ¡é‡Œé¢å°æ–¹å—*/
  border-radius: 0px;
  /*-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);*/
  background: rgba(0,0,0,0.1);
}
*::-webkit-scrollbar-track {/*æ»šåŠ¨æ¡é‡Œé¢è½¨é“*/
  /*-webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.05);*/
  border-radius: 0px;
  background: rgba(0,0,0,0.1);
}


input[type="text"],
input[type="password"]{
  width: 200px;
  height: 34px;
  border: 1px solid #bbb;
  border-radius: 4px;
  padding: 0 10px;
  transition: all 0.2s ease-out;
  line-height: normal;
}
input[type="text"]:focus,
input[type="password"]:focus{
  border: 1px solid #27e;
}
input[type="text"]:disabled,
input[type="password"]:disabled{
  background-color:#f5f5f5;
  border: 1px solid transparent;
}

.input-has-unit{
  display: inline-block;
  position: relative;
}
.input-has-unit .ihu-unit{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  font-size: 14px;
  height: 20px;
  line-height: 20px;
}
.input-has-unit input{
  padding-right: 30px;
}

input[type="file"]{
  height: 40px;
  line-height: 35px;
}

input[type="checkbox"],
input[type="radio"]{
  width: 20px;
  height: 20px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-position: center center;
  display: inline-block;
  vertical-align: middle;
}
input[type="checkbox"]{
  background-image: url(../images/icon_checkbox.png);
}
input[type='checkbox']:checked{
  background-image: url(../images/icon_checkbox_on.png);
}
input[type="radio"]{
  background-image: url(../images/icon_radio.png);
}
input[type='radio']:checked{
  background-image: url(../images/icon_radio_on.png);
}

.row-list-box{
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  padding: 0 10px;
  display: inline-block;
  vertical-align: middle;
  max-width: none;
}
.row-list-box:hover{
  background-color: #eee;
}
.row-list-box &gt; span{
  margin-left: 4px;
  line-height: 34px;
  display: inline-block;
  vertical-align: middle;
}

textarea{
  min-height: 80px;
  border: 1px solid #bbb;
  border-radius: 4px;
  padding: 10px;
  transition: all 0.2s ease-out;
  vertical-align: top;
}
textarea:focus{
  border: 1px solid #27e;
}
textarea:disabled{
  border: 1px solid transparent;
  padding: 8px 0;
}



.all-empty{
  text-align: center;
}
.all-empty .ae-txt{
  color: #666;
}


.file-upload{
  height: 34px;
  line-height: 32px;
  border: 1px solid #ddd;
  border-radius: 40px;
  display: inline-block;
  padding: 0 20px;
  position: relative;
  transition: all 0.2s ease-out;
  user-select: none;
}
.file-upload:hover{
  background-color: #eee;
}
.file-upload &gt; input[type='file']{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  outline: none;
  background-color: transparent;
  opacity: 0;
}


.file-box{
  display: inline-block;
  vertical-align: top;
  border-radius: 40px;
  height: 34px;
  line-height: 34px;
  background-color: #f5f5f5;
  margin: 0 10px 10px 0;
}
.file-box .fb-txt{
  padding: 0 14px;
}
.file-box .btn-small-red,
.file-box .btn-small-blue{
  border-radius: 0px 40px 40px 0px;
}



.settime{
  background-image: url(../images/icon_settime.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px;
}








.fn-more{
  padding-right: 14px;
  transition: all 0.2s ease-out;
  background-image: url(../images/006.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 14px 14px;
  color: #27e;
  cursor: pointer;
  user-select: none;
}


.fn-edit{
  padding-left: 24px;
  transition: all 0.2s ease-out;
  background-image: url(../images/icon_revise.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 20px;
  color: #27e;
  cursor: pointer;
  user-select: none;
}


.fn-close{
  display: inline-block;
  width: 34px;
  height: 34px;
  background-image: url(../images/ico_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease-out;
  user-select: none;
}
.fn-close:hover{
  background-color: #eee;
}


.fn-remove{
  padding-left: 24px;
  transition: all 0.2s ease-out;
  background-image: url(../images/icon_rm.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 20px;
  color: #ff6464;
  cursor: pointer;
  user-select: none;
}


.fn-add{
  padding-left: 24px;
  transition: all 0.2s ease-out;
  background-image: url(../images/icon_add.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 20px;
  color: #27e;
  cursor: pointer;
  user-select: none;
}






.btn-big{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: #27e;
  border-radius: 40px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border: none;
  min-width: 120px;
  user-select: none;
}
.btn-big:hover{
  text-decoration: none;
  background-color: #3784f5;
  opacity: 1;
}


.btn-big-h{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 40px;
  height: 40px;
  line-height: 38px;
  padding: 0 20px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  min-width: 120px;
  user-select: none;
}
.btn-big-h:hover{
  text-decoration: none;
  background-color: #eee;
  opacity: 1;
}

.btn-big-blue{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: rgba(41,119,234,0.1);
  border-radius: 40px;
  color: #27e;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border: none;
  min-width: 120px;
  user-select: none;
}
.btn-big-blue:hover{
  text-decoration: none;
  background-color: rgba(41,119,234,0.2);
  opacity: 1;
}

.btn-big-red{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: rgba(255,100,100,0.1);
  border-radius: 40px;
  color: #ff6464;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border: none;
  min-width: 120px;
  user-select: none;
}
.btn-big-red:hover{
  text-decoration: none;
  background-color: rgba(255,100,100,0.2);
  opacity: 1;
}





.btn-small{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: #27e;
  border-radius: 40px;
  color: #fff;
  height: 34px;
  line-height: 34px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  border: none;
  user-select: none;
}
.btn-small:hover{
  text-decoration: none;
  background-color: #3784f5;
  opacity: 1;
}


.btn-small-h{
  display: inline-block;
  transition: all 0.2s ease-out;
  border-radius: 40px;
  border: 1px solid #DDDDDD;
  height: 34px;
  line-height: 32px;
  padding: 0 14px;
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  user-select: none;
}
.btn-small-h:hover{
  text-decoration: none;
  background-color: #eee;
  opacity: 1;
}

.btn-small-blue{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: rgba(41,119,234,0.1);
  border-radius: 40px;
  color: #27e;
  height: 34px;
  line-height: 34px;
  padding: 0 14px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border: none;
  user-select: none;
}
.btn-small-blue:hover{
  text-decoration: none;
  background-color: rgba(41,119,234,0.2);
  opacity: 1;
}

.btn-small-red{
  display: inline-block;
  transition: all 0.2s ease-out;
  background-color: rgba(255,100,100,0.1);
  border-radius: 40px;
  color: #ff6464;
  height: 34px;
  line-height: 34px;
  padding: 0 14px;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  border: none;
  user-select: none;
}
.btn-small-red:hover{
  text-decoration: none;
  background-color: rgba(255,100,100,0.2);
  opacity: 1;
}

.btn-small-h.remove{
  padding-left: 34px;
  background-position: 12px center;
}
.btn-small-h.add{
  padding-left: 40px;
  background-position: 15px center;
}


.loading {
  line-height: 20px;
  display: inline-block;
  background-image: url(../images/ico_loading.gif);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-left: 28px;
  font-size: 14px;
  user-select: none;
}
/*é¡µé¢åŠ&nbsp;è½½åŠ¨ç”»*/
#loading{
    
}
.load1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.8);
    z-index: 900;
    padding: 10%;
    opacity: 1;
    /*animation: load 1.5s infinite ease-in-out;*/
}

    .load1 .loader,
    .load1 .loader:before,
    .load1 .loader:after {
        background: #999;
        -webkit-animation: load1 1s infinite ease-in-out;
        animation: load1 1s infinite ease-in-out;
        width: 1em;
        height: 4em;
    }

        .load1 .loader:before,
        .load1 .loader:after {
            position: absolute;
            top: 0;
            content: '';
        }

        .load1 .loader:before {
            left: -1.5em;
            -webkit-animation-delay: -0.32s;
            animation-delay: -0.32s;
        }

    .load1 .loader {
        text-indent: -9999em;
        position: absolute;
        top: 50%;
        margin-top: -30px;
        left: 50%;
        margin-left: -10px;
        font-size: 11px;
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

        .load1 .loader:after {
            left: 1.5em;
        }
@keyframes load {
    0%, 80%, 100% {
        opacity:0.6;
    }

    40% {
        opacity:1
    }
}
@-webkit-keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0 #999;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em #999;
        height: 5em;
    }
}

@keyframes load1 {
    0%, 80%, 100% {
        box-shadow: 0 0 #999;
        height: 4em;
    }

    40% {
        box-shadow: 0 -2em #999;
        height: 5em;
    }
}

/*é¡µé¢åŠ&nbsp;è½½åŠ¨ç”» end*/

.btn-loading::before {
    content: '';
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: -4px;
    margin-right: 4px;
    background-image: url(../images/ico_loading.gif);
    background-size: 20px 20px;
    background-repeat: no-repeat;
}
input.btn-loading {
  background-image: url(../images/ico_loading.gif);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 20px center;
  padding-left: 44px;
}

.btn-disabled{
  background-color: #eee;
  color: #666;
  cursor: no-drop;
  user-select: none;
}
.btn-disabled:hover{
  background-color: #eee;
  color: #666;
  cursor: no-drop;
}




.nomore{
  color: #A9A9A9;
  text-align: center;
  margin-bottom: 40px;
  user-select: none;
}
.nomore::before{
  content: '';
  display: inline-block;
  width: 46px;
  height: 10px;
  background-image: url(../images/icon_nomore_left.png);
  margin-right: 10px;
  background-repeat:no-repeat; 
  background-size:100% 100%;
}
.nomore::after{
  content: '';
  display: inline-block;
  width: 46px;
  height: 10px;
  background-image: url(../images/icon_nomore_right.png);
  margin-left: 10px;
  background-repeat:no-repeat; 
  background-size:100% 100%;
}



.page-tab{
  border-bottom: 1px solid #eee;
}

.page-tab .p-li{
  display: inline-block;
  height: 50px;
  line-height: 50px;
  min-width: 50px;
  text-align: center;
  margin-right: 20px;
  font-size: 14px;
  color: #999;
  position: relative;
}
.page-tab .p-li:hover{
  color: #666;
}
.page-tab .p-li.on{
  color: #333;
}
.page-tab .p-li.on::after{
  content: '';
  display: block;
  width: 100%;
  height: 3px;
  background-color: #27e;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: opacity 0.2s ease-out;
}


.search{
  display: inline-block;
  height: 40px;
  border-radius: 40px;
  background-color: #fff;
  border: 2px solid #27e;

}
.search &gt; .se-input{
  vertical-align: middle;
  display: inline-block;
  height: 100%;
  background-color: transparent;
  margin-left: 16px;
  border: 0;
  width: 180px;
  transition: all 0.2s ease-out;
  line-height: normal;
}
.search &gt; .se-back{
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 100%;
  background-image: url(../images/icon_search_back.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 40px 0 0 40px;
  border-right: 1px solid #eee;
  cursor: pointer;
  transition: all 0.2s ease-out;
  margin-right: -10px;
}
.search &gt; .se-back:hover{
  background-color: rgba(41,119,234,0.1);
}
.search &gt; .select{
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  border: 1px solid transparent;
  background-color: transparent;
  transition: all 0.2s ease-out;
  margin-right: -16px;
}
.search &gt; .se-go{
  display: inline-block;
  vertical-align: middle;
  line-height: 36px;
  padding-left: 34px;
  padding-right: 12px;
  height: 100%;
  background-image: url(../images/icon_search.png);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 10px center;
  border-radius: 0px 40px 40px 0px;
  cursor: pointer;
  transition: all 0.2s ease-out;
  position: relative;
  float: right;
  background-color: transparent;
}
.search &gt; .se-go:hover{
  background-color: rgba(41,119,234,0.1);
}
.search &gt; .se-go::before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0px;
  border-left: 1px solid #ddd;
  height: 18px;
}




.wrap-600px{
  width: 660px;
  padding: 0 30px;
  margin: 0 auto;
}
.wrap-800px{
  width: 860px;
  padding: 0 30px;
  margin: 0 auto;
}
.wrap-1200px{
  width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}


.top-30px{
  margin-top: 30px;
}
.top-20px{
  margin-top: 20px;
}
.bottom-30px{
  margin-bottom: 30px;
}
.bottom-20px{
  margin-bottom: 20px;
}
.right-20px{
  margin-right: 20px;
}



/*å›¾æ&nbsp;‡*/
.ico-14px,.ico-20px,.ico-40px,.ico-80px,.ico-100px{
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
}
.ico-14px{
  width: 14px;
  height: 14px;
  background-size: 14px 14px;
}
.ico-20px{
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}
.ico-40px{
  width: 40px;
  height: 40px;
  background-size: 40px 40px;
}
.ico-80px{
  width: 80px;
  height: 80px;
  background-size: 80px 80px;
}
.ico-100px{
  width: 100px;
  height: 100px;
  background-size: 100px 100px;
}

.ico-001{
  background-image: url(../images/001.png);
}
.ico-002{
  background-image: url(../images/002.png);
}
.ico-003{
  background-image: url(../images/003.png);
}
.ico-004{
  background-image: url(../images/004.png);
}
.ico-005{
  background-image: url(../images/005.png);
}
.ico-006{
  background-image: url(../images/006.png);
}
.ico-007{
  background-image: url(../images/007.png);
}
.ico-008{
  background-image: url(../images/008.png);
}
.ico-009{
  background-image: url(../images/009.png);
}
.ico-010{
  background-image: url(../images/010.png);
}
.ico-011{
  background-image: url(../images/011.png);
}
.ico-012{
  background-image: url(../images/012.png);
}
.ico-013{
  background-image: url(../images/013.png);
}
.ico-014{
  background-image: url(../images/014.png);
}
.ico-empty{
  background-image: url(../images/ico_empty.png);
}
.ico-a04{
  background-image: url(../images/a04.png);
}
.ico-consumption{
  background-image: url(../images/consumption-fill.png);
}
.ico-hot{
  background-image: url(../images/hot.png);
}
.ico-dongtai{
  background-image: url(../images/dongtai.png);
}

/*å›¾æ&nbsp;‡ END*/


.select-num{
  display: inline-block;
  background-color: #eee;
  border-radius: 4px;
  border: 1px solid #eee;
  height: 34px;
  font-size: 0;
}
.select-num .sn-fn{
  display: inline-block;
  vertical-align: top;
  height: 32px;
  background-color: #fff;
  cursor: pointer;
  width: 32px;
  border-radius: 4px 0 0 4px;
  text-align: center;
  line-height: 30px;
  font-size: 18px;
  transition: all 0.2s ease-out;
  user-select: none;
}
.select-num .sn-fn:last-child{
  border-radius: 0 4px 4px 0;
}
.select-num .sn-fn:hover{
  opacity: 0.8;
}
.select-num .sn-input{
  background-color: #eee;
  border: 0;
  width: 40px;
  height: 32px;
  text-align: center;
  padding: 0;
}
.select-num .sn-input:focus{
  border: 0;
}




.input-shell{
  overflow: hidden;
  margin-bottom: 20px;
}
.input-shell-hr{
  border-top: 1px solid #eee;
  margin-bottom: 20px;
}
.input-shell .is-label{
  float: left;
  width: 20%;
  line-height: 1;
  padding: 10px 30px 10px 0px;
  text-align: right;
  color: #666;
}
.input-shell .is-label-2{
  float: left;
  width: 20%;
  text-align: right;
  padding-right: 30px;
  color: #666;
}
.input-shell .requireds{
  color: #ff6464;
  font-weight: bold;
  margin-right: 6px;
}
.input-shell textarea{
  width: 400px;
}
.input-shell .is-right{
  float: right;
  width: 80%;
}
.input-shell .is-r-textarea{
  max-width: 400px;
  white-space: pre-wrap;
}
.input-shell .is-fn{
  float: right;
  width: 80%;
}
.input-shell .is-fn &gt; *{
  margin-right: 10px;
  margin-bottom: 10px;
}
.input-shell.price{
  background: #fff url(../images/a03.png) no-repeat center center;
  background-size: cover;
  line-height: 40px;
  border-radius: 4px;
  padding: 10px 0;
}
.input-shell .is-r-price{
  color: #FF6464;
  font-size: 24px;
  line-height: 1;
  vertical-align: text-bottom;
}
.input-shell .is-r-beforeprice{
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.input-shell .is-r-fn{
  margin-left: 20px;
}




.badge-num{
  display: inline-block;
  height: 16px;
  line-height: 16px;
  background-color: #FF6464;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  padding: 0 4px;
}
.badge-num:empty{
  display: none;
}




.tips-1{
  background-color: #f5f5f5;
  border: 1px solid #eee;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.6;
}
.tips-2{
  background-color: #f5f5f5;
  border: 1px solid #eee;
  padding: 8px 12px;
  border-radius: 4px;
  color: #FF6464;
  font-size: 14px;
  line-height: 1.6;
}
.tips-3{
  background-color: #FF6464;
  border: 1px solid transparent;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.tips-3 a{
  display: inline;
  border-radius: 20px;
  padding: 4px 10px;
  line-height: 1.6;
  border: 0;
}



.card-commodity{
  display: inline-block;
  vertical-align: top;
  width: 216px;
  position: relative;
}
.card-commodity::after{
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  box-sizing: border-box;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.1);
  border: 1px solid #bbb;
  transition: all 0.2s ease-out;
  opacity: 0;
}
.card-commodity:hover::after{
  opacity: 1;
}
.card-commodity .cc-pic{
  height: 216px;
  object-fit: cover;
  background-color: #f5f5f5;
}
.card-commodity .cc-title{
  margin-top: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-commodity .cc-bottom{
  margin-top: 6px;
}
.card-commodity .cc-b-price{
  font-size: 18px;
  color: #ff6464;
  font-weight: bold;
}
.card-commodity .cc-b-before{
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
}
.card-commodity .cc-b-txt{
  font-size: 12px;
  color: #666;
  margin-top: 6px;
}



.card-select{
  display: inline-block;
  vertical-align: top;
  width: 300px;
  border-radius: 4px;
  border: 1px solid #eee;
  padding: 30px;
  position: relative;
}
.card-select:hover{
  border: 1px solid #bbb;
}
.card-select .cs-top{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  text-align: right;
  padding: 4px;
}
.card-select .cs-top &gt; *{
  vertical-align: top;
  width: 34px;
  height: 34px;
  background-position: center center;
  border: 1px solid transparent;
}
.card-select .cs-top input[type="radio"]{
  float: left;
}
.card-select .cs-b-li{
  margin-bottom: 10px;
}
.card-select .cs-bottom .cs-b-li:last-child{
  margin-bottom: 0;
}
.card-select .cs-b-l-title{
  font-size: 16px;
  display: block;
  overflow: hidden;
  line-height: 20px;
}
.card-select .cs-b-li .ico-20px{
  float: left;
  margin-right: 4px;
}
.card-select .cs-b-l-txt{
  color: #666;
  display: block;
  overflow: hidden;
  line-height: 20px;
}

.card-select-shell{
  margin-bottom: -20px;
}
.card-select-shell .card-select{
  height: 150px;
  margin: 0 20px 20px 0;
}
.card-select-shell .card-select.add{
  text-align: center;
  line-height: 90px;
}
.card-select-shell-2{
  margin-bottom: -20px;
}
.card-select-shell-2 .card-select{
  margin: 0 20px 20px 0;
  height: 110px;
}
.card-select-shell-2 .card-select.add{
  text-align: center;
  line-height: 50px;
}



.page-title{
  display: inline-block;
  font-size: 20px;
  position: relative;
  z-index: 2;
}
.page-title::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: #FFD18C;
  z-index: -1;
}



.browsing-path{
  font-size: 0;
}
.browsing-path .bp-li::after{
  padding: 0 8px;
  color: #ccc;
  content: "/";
}
.browsing-path .bp-li{
  color: #27e;
}
.browsing-path .bp-li:last-child{
  pointer-events: none;
  font-weight: bold;
  color: #333;
}
.browsing-path .bp-li:last-child::after{
  display: none;
}




.table-box{
  width: 100%;
  text-align: left;
  border-spacing: 0;
  background-color: #fff;
}
.table-box th{
  border-bottom: 2px solid #ddd;
  vertical-align: top;
  padding-bottom: 15px;
  line-height: 20px;
}
.table-box th input[type="checkbox"]{
  vertical-align: top;
}
.table-box td{
  border-bottom: 1px solid #eee;
  vertical-align: top;
  padding: 8px 10px 8px 0;
  max-width: 100px;
}
.table-box .tb-txt{
  line-height: 20px;
  padding: 7px 0;
  display: inline-block;
}
.table-box td input[type="checkbox"]{
  margin: 7px 0;
}
.table-box .tb-t-time{
  font-size: 12px;
  color: #666;
}

.table-box .tb-picbox{
  display: inline-block;
  margin: 0 10px 10px 0;
}
.table-box .tb-picbox-shell{
  margin-bottom: -10px;
}
.table-box .tb-p-pic{
  width: 34px;
  height: 34px;
  background-color: #f5f5f5;
  vertical-align: middle;
  object-fit: cover;
}
.table-box .tb-p-txt{
  margin-left: 2px;
}
.table-box .tb-fnbox{
  font-size: 0;
  margin-bottom: -10px;
}
.table-box .tb-fnbox &gt; *{
  margin: 0 10px 10px 0;
}


.page-totop{
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #eee;
  padding-top: 6px;
  font-size: 12px;
  text-align: center;
  border: 1px solid #ddd;
  cursor: pointer;
  display: none;
  transition: background-color 0.2s ease-out;
}
.page-totop:hover{
  background-color: #fff;
}



.txt-hide{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



/*åˆ†é¡µæ’ä»¶æ&nbsp;·å¼*/
footer {
    background-color: #fff;
    margin-top:20px;
    padding:0 20px 20px 20px;
}
.pagination {
  display: inline-block;
  margin-right:10px;
  margin: 14px 0;
  border-radius: 4px;
}
.pagination &gt; li {
  display: inline-block;
  margin-right: 4px;
}
.pagination &gt; li &gt; a,
.pagination &gt; li &gt; span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  border-radius:4px;
}
.pagination &gt; li:first-child &gt; a,
.pagination &gt; li:first-child &gt; span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination &gt; li:last-child &gt; a,
.pagination &gt; li:last-child &gt; span {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination &gt; li &gt; a:hover,
.pagination &gt; li &gt; span:hover,
.pagination &gt; li &gt; a:focus,
.pagination &gt; li &gt; span:focus {
  z-index: 2;
  background-color: #eee;
  border-color: #ddd;
}
.pagination &gt; .active &gt; a,
.pagination &gt; .active &gt; span,
.pagination &gt; .active &gt; a:hover,
.pagination &gt; .active &gt; span:hover,
.pagination &gt; .active &gt; a:focus,
.pagination &gt; .active &gt; span:focus {
  z-index: 3;
  color: #fff;
  cursor: default;
  background-color: #27e;
  border-color: #27e;
}
.pagination &gt; .disabled &gt; span,
.pagination &gt; .disabled &gt; span:hover,
.pagination &gt; .disabled &gt; span:focus,
.pagination &gt; .disabled &gt; a,
.pagination &gt; .disabled &gt; a:hover,
.pagination &gt; .disabled &gt; a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}
.pagination-lg &gt; li &gt; a,
.pagination-lg &gt; li &gt; span {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
}
.pagination-lg &gt; li:first-child &gt; a,
.pagination-lg &gt; li:first-child &gt; span {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}

.pagination-lg &gt; li:last-child &gt; a,
.pagination-lg &gt; li:last-child &gt; span {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.pagination-sm &gt; li &gt; a,
.pagination-sm &gt; li &gt; span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
}
.pagination-sm &gt; li:first-child &gt; a,
.pagination-sm &gt; li:first-child &gt; span {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.pagination-sm &gt; li:last-child &gt; a,
.pagination-sm &gt; li:last-child &gt; span {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.btn-toolbar,.pagination {
  float:none;
  display: inline-block;
  vertical-align: middle;
}
.btn-toolbar {
    
}
.pagination {
  margin: 20px 10px 0 0;
}
.toolbar_text {
    display: inline-block;
    padding: 6px 18px;
    margin: 20px 0 0 0;
    font-size: 14px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-image: none;
    color: #666;
    background-color: #ededed;
    border-radius: 4px;
}
.toolbar_text&gt;em {
  font-size: 14px;
  color: #333;
  font-style: normal;
  font-weight: bold;
}


@-webkit-keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);

  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0)
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom
  -webkit-animation-duration:1s;
  animation-duration:1s;
  -webkit-animation-fill-mode:both;
  animation-fill-mode:both;
}


.all-card{
  background-color: #fff;
  padding: 20px;
}
.all-card .ac-top{
  line-height: 20px;
  margin-bottom: 20px;
}
.all-card .ac-top .fn-more{
  float: right;
}
.all-card .ac-content-txt .act-link{
  display: block;
  margin-bottom: 10px;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}


/*â€”â€”é€šç”¨æ&nbsp;·å¼ENDâ€”â€”*/


.ad{
    background-color:#fff;
    /*background-image:url(../images/ad_bg.png);*/
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center center;
}



.web-top{
  line-height: 40px;
}
.web-top .wt-l-txt{
  margin-right: 10px;
}
.web-top .wt-l-link{
  margin: 0 5px;
  color: #27e;
}
.web-top .wt-left{
  display: inline-block;
}
.web-top .wt-left .hr{
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #ddd;
  margin: 0 5px;
}
.web-top .wt-right{
  float: right;
}
.web-top .wt-r-link{
  color: #FF6464;
  font-size:18px;
}



.nav-main{
  background-color: #fff;
  height: 100px;
  padding: 20px 30px;
}
.nav-main .logo{
  height: 60px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}

.nav-main .tab-list{
  display: inline-block;
  vertical-align: top;
}
.nav-main .tab-list .link{
  display: inline-block;
  font-size: 16px;
  height: 40px;
  line-height: 38px;
  position: relative;
  border: 1px solid transparent;
  padding: 0 15px;
  background: no-repeat right 4px center;
  background-size: 14px 14px;
  margin-top: 10px;
}
.nav-main .tab-list .link:hover,
.nav-main .small-tab:hover .link{
  background-color: #f5f5f5;
  /*border: 1px solid #eee;*/
  /*background-image: url(../images/006.png);*/
}
.nav-main .tab-list .link i{
  vertical-align: -4px;
  margin-right: 4px;
}
.nav-main .tab-list .link.on{
  color: #27e;
}
.nav-main .tab-list .link .badge-num{
  position: absolute;
  top: 2px;
  left: 30px;
}
.nav-main .small-tab{
  display: inline-block;
  background-image: url(../images/sicon_select_bottomarrow.png);
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 10px 14px;
  position: relative;
}
.nav-main .small-tab:hover .sm-ta-box{
  display: block;
}
.nav-main .sm-ta-box{
  display: none;
  background-color: #f5f5f5;
  padding: 20px;
  width: 300px;
  position: absolute;
  left: 0px;
  top: 39px;
  border: 1px solid #eee;
  z-index: 10;
  max-height: 300px;
  overflow: auto;
  box-shadow: 2px 2px 0 0 rgba(0,0,0,0.1);
}

    

.nav-main .nm-search{
  float: right;
}
.nav-main .nm-se-hot{
  font-size: 12px;
  margin-top: 4px;
  margin-left: 6px;
}
.nav-main .nm-se-hot a{
  font-size: 12px;
  color: #666;
}
.nav-main .nm-se-hot a:hover{
  color: #333;
}



.nav-downbox .na-ca-li{
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #eee;
}
.nav-downbox .na-ca-li:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.nav-downbox .na-ca-l-pic{
  width: 34px;
  height: 34px;
  background-color: #eee;
  object-fit: cover;
  float: left;
  margin-right: 10px;
}
.nav-downbox .na-ca-l-title{
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nav-downbox .na-ca-l-num{
  font-size: 12px;
  color: #666;
}
.nav-downbox .na-ca-l-money{
  color: #FF6464;
  margin: 10px 0px;
  display: inline-block;
  vertical-align: middle;
  font-size: 20px;
}
.nav-downbox .na-ca-l-fn{
  float: right;
}
.nav-downbox .na-ca-l-fn2{
  margin-left: 6px;
}










.home-title{
  text-align: center;
  margin-bottom: 30px;
}
.home-title .ht-main{
  font-size: 18px;
  display: inline-block;
  position: relative;
}
.home-title .ht-main::before,
.home-title .ht-main::after{
  content: '';
  display: inline-block;
  width: 100px;
  height: 10px;
  margin: 0 16px;
  background: url(../images/a01.png) no-repeat center center;
}
.home-title .ht-main::after{
  background-image: url(../images/a02.png);
}
.home-title .ht-en{
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}





.card-goods{
  overflow: hidden;
}
.card-goods .cg-pic{
  width: 100px;
  height: 100px;
  object-fit: contain;
    float: left;
    border: 1px solid #eee;
}
.card-goods .cg-right{
  padding-left: 10px;
  overflow: hidden;
}
.card-goods .cg-r-title{
  margin-bottom: 4px;
  font-weight: bold;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-goods .cg-r-num{
  font-size: 16px;
  color: #FF6464;
  margin-bottom: 4px;
}
.card-goods .cg-r-other{
  color: #999;
  margin-bottom: 4px;
}



.wrap{
  width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
}
/*åº•éƒ¨*/
.web-footer{
  padding-top: 60px;
  background-color: #234;
  color: #fff;
}
.web-footer &gt; .wrap &gt; ul{
  display: inline-block;
  vertical-align: top;
  margin-right: 40px;
  margin-bottom: 40px;
}
.web-footer &gt; .wrap &gt; ul &gt; li{
  color: #fff;
  margin-bottom: 14px;
  font-weight: 300;
  opacity: 0.8;
}
.web-footer &gt; .wrap &gt; ul &gt; li.top{
  font-size: 18px;
  font-weight: normal;
  opacity: 1;
}
.web-footer &gt; .wrap &gt; ul &gt; li &gt; a{
  color: #fff;
  background-repeat: no-repeat;
  background-size: 4px 7px;
  background-position: right center;
  padding-right: 10px;
}
.web-footer &gt; .wrap &gt; .ewm{
  display: inline-block;
  vertical-align: top;
  float: right;
}
.web-footer &gt; .wrap &gt; .ewm &gt; *{
  vertical-align: middle;
}
.web-footer &gt; .wrap &gt; .ewm &gt; img{
  width: 120px;
}
.web-footer &gt; .wrap &gt; .ewm &gt; span{
  color: #fff;
  display: inline-block;
  line-height: 1.6;
  margin-left: 16px;
  opacity:0.8;
  font-weight: 300;
}
.web-footer &gt; .wrap &gt; .copyright{
  border-top: 1px solid rgba(255,255,255,0.1);
  line-height: 50px;
  text-align: center;
}
.web-footer &gt; .wrap &gt; .copyright &gt; span{
  display: inline-block;
  color: #fff;
  font-weight: 300;
  opacity: 0.8;
}
.web-footer &gt; .wrap &gt; .copyright &gt; span:last-child{
  margin-left: 10px;
}



.home-row-2{
    overflow: hidden;
    margin-top: 20px;
}
.home-row-2 .hr2-left{
    float: left;
}
.home-row-2 .hr2-right{
    float: right;
}


.card-1{
  background-color: #fff;
  padding: 20px;
  overflow: hidden;
  display: block;
  position: relative;
}
.card-1 .zhuan{
  position: absolute;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../images/zhuan.png);
  background-size: 20px 20px;
}
.card-1 .c1-pic{
  width:120px;
  height:120px;
  object-fit: contain;
  float: left;
}
.card-1 .c1-right{
  overflow: hidden;
  padding-left: 20px;
  width:65%;
}
.card-1 .c1-r-title{
  font-size:18px;
  margin-bottom: 10px;
  font-weight: bold;
  color:#27e;
}
.card-1 .c1-r-title-shell {
    display: inline-block;
    margin-bottom: 10px;
}
.card-1 .c1-r-title-shell &gt; * {
    display:inline-block;
    vertical-align: middle;
    margin:0;
}
.card-1 .c1-r-txt{
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color:#666;
    text-align: justify;
    min-height:48px;
}
.card-1 .c1-r-info {
    margin-bottom: 10px;
}
.card-1 .c1-r-i-key{
  color: #999;
  margin-right: 20px;
}
.card-1 .c1-r-i-val{
  color: #333;
  font-style: normal;
  margin-left: 6px;
}
.card-1 .c1-r-i-val.price {
    color: #ff6464;
    font-size: 16px;
    vertical-align: middle;
    font-weight: bold;
}
.card-1 .c1-r-b-comname {
    color: #27e;
    margin-right:20px;
}
.card-1 .c1-r-b-base {
    margin-right:20px;
}
.card-1 .c1-absolute {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
    height: 102px;
}
.card-1 .c1-a-center {
    color: #999;
    margin-top: 10px;
}
.card-1 .c1-a-btn {
    position: absolute;
    bottom: 0px;
    right: 0px;
    white-space: nowrap;
}


.detail-commodity{
  background-color: #fff;
  padding: 20px;
}
.detail-commodity .dc-top{
  font-size: 0;
}

.detail-commodity .dc-t-left{
  display: inline-block;
  vertical-align: top;
  width: 40%;
  font-size: 14px;
}
.detail-commodity .dc-t-l-swiper{
  height: 100%;
}
.detail-commodity .dc-t-l-s-pic{
  width: 100%;
  height: 312px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}
.detail-commodity .dc-t-l-list{
  width: 100%;
  background-color: #f5f5f5;
  font-size: 0;
}
.detail-commodity .dc-t-l-list .swiper-pagination-bullet{
  width: 50px;
  height: 50px;
  border-radius: 0;
  opacity: 0.4;
  background: #eee url('../images/ico_loading.gif') no-repeat center center;
  background-size: 20px 20px;
  cursor: default;
}
.detail-commodity .dc-t-l-list .swiper-pagination-bullet:focus{
  outline: none;
}
.detail-commodity .dc-t-l-list .swiper-pagination-bullet-active{
  opacity: 1;
}



.detail-commodity .dc-t-right{
  display: inline-block;
  vertical-align: top;
  width: 60%;
  font-size: 14px;
  padding-left: 20px;
}
.detail-commodity .dc-t-r-title{
  font-size: 18px;
  margin-bottom: 20px;
}
.detail-commodity .dc-t-right .input-shell .is-label,
.detail-commodity .dc-t-right .input-shell .is-label-2{
  text-align: left;
  padding-left: 20px;
  padding-right: 0px;
  width: 25%;
}
.detail-commodity .dc-t-right .input-shell .is-right,
.detail-commodity .dc-t-right .input-shell .is-fn{
  width: 75%; 
}
.detail-commodity .dc-t-right .input-shell.price{
  padding: 5px 0;
}



.detail-commodity .dc-bottom{
  border-top: 1px solid #eee;
  font-size: 0;
}
.detail-commodity .dc-b-left{
  width: 79.5%;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  padding-right: 30px;
  padding-top: 30px;
  border-right: 1px solid #eee;
}
.detail-commodity .dc-b-l-content{
  margin-bottom: 30px;
}
.detail-commodity .dc-b-r-title{
  margin-bottom: 20px;
}
.detail-commodity .dc-b-right{
  width: 20.5%;
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  padding-top: 30px;
  padding-left: 30px;
}
.detail-commodity .dc-b-right .card-commodity{
  margin-bottom: 30px;
}



.details-bottom{
  background-color: #fff;
  padding: 20px;
}
.details-bottom .db-title{
  font-size: 16px;
  font-weight: bold;
}
.details-bottom img{
  max-width: 100%;
  height: auto;
}




    
    .login-box {
        max-width: 400px;
        border: 1px solid #eee;
        background-color:#fff;
        border-radius: 4px;
        margin: 80px auto;
        box-shadow: 0 4px 8px 0 rgba(0,0,0,0.05);
    }

    .login-box .l-tab {
        padding: 0 30px;
        border-bottom: 1px solid #eee;
        font-size: 0;
    }

        .login-box .l-tab .li {
            color: #999;
            font-weight: bold;
            font-size: 16px;
            display: inline-block;
            width: 50%;
            line-height: 62px;
            text-align: center;
        }

            .login-box .l-tab .li.on {
                color: #333;
            }

            .login-box .l-tab .li.on {
                position: relative;
            }

                .login-box .l-tab .li.on::after {
                    content: '';
                    display: block;
                    width: 100%;
                    height: 4px;
                    background-color: #27e;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    border-radius: 4px 4px 0 0;
                }

    .login-box .l-cont {
        padding: 30px;
    }

        .login-box .l-cont .input-shell {
            margin-bottom: 30px;
        }

    .login-box .input-shell input[type='text'],
    .login-box .input-shell input[type='password'] {
        width: 100%;
    }

    .login-box .l-c-submit {
        width: 100%;
    }

    .login-box .l-c-link {
        display: inline-block;
        margin-bottom: 30px;
        margin-right: 30px;
        outline:none;
        background-color:transparent;
        border:none;
        cursor:pointer;
    }

    .login-box .l-c-submit {
        margin-bottom: 10px;
    }

    .login-box .l-c-agr {
        margin-bottom: 30px;
    }

        .login-box .l-c-agr span,
        .login-box .l-c-agr a {
            vertical-align: middle;
        }
        .login-box .l-c-agr a {
          color: #27e;
        }
    
    .input-has-btn {
        position: relative;
    }
    .input-has-btn .ihb-btn{
        position: absolute;
        top: 0;
        right: 10px;
        line-height: 34px;
        cursor: pointer;
        color: #27e;
    }
    .input-has-btn .ihb-btn.login-disabled{
        cursor: default;
        color: #999;
    }
    .details-right{

    }
    .details-right .dr-title{
        font-size: 18px;
        margin-bottom: 20px;
    }
    .details-right .is-label-2{
        width: 30%;
        text-align: left;
    }
    .details-right .is-right{
        width: 70%;
    }
    
    .card-goods-box .card-goods{
        display: block;
        margin-bottom: 20px;
    }
.conttable {
    margin-bottom: 10px;
}
.conttable{width:100%;overflow:hidden;margin:0 auto;}
.conttable ul{ width:100%; overflow:hidden; margin:0 auto;}
.conttable li{ float:left;border:#D9D9D9 1px solid;width:49.5%;}
.mn2_tdw {float:left;line-height:30px;color:#000;text-align:left; width:200px;padding-left:14px;}
.mn2_tdb{float:left;line-height:30px; background:#F3F3F3;color:#000; width:180px; padding-left:14px; font-weight:bold;}





    .menu-and-banner{
      height: 550px;
      position: relative;
      margin-bottom: 20px;
      margin-top: 20px;
    }



    .home-menu{
      position: absolute;
      top: 0;
      left: 0;
      width: 240px;
      height: 100%;
      background-color: #27e;
      z-index: 8;
    }
    .home-menu .hm-li{
      color: #fff;
      padding: 24px;
      overflow:hidden;
      height:92px;
    }
    .home-menu .hm-li:hover{
      background-color: #fff;
      color: #333;
    }
    .home-menu .hm-li:hover .hm-l-type {
        color: #999;
        opacity:1;
    }
    .home-menu .hm-li.all-list{
      display: block;
      color: #fff;
      padding: 15px 20px;
    }
    .home-menu .hm-li.all-list .fn-more{
      color: #fff;
    }
    .home-menu .hm-l-title{
      font-size: 16px;
    }
    .home-menu .hm-l-type{
      color: #fff;
      opacity: 0.6;
      margin: 10px 6px 20px 0;
      display: inline-block;
      transition: initial;
    }
    .home-menu .hm-li .hm-l-type:hover{
      color:#333;
    }

    .home-menu .hm-li:hover .hm-l-ul{
      display: block;
    }
    .home-menu .hm-l-ul{
      display: none;
      position: absolute;
      top: 0;
      right: -960px;
      background-color: #fff;
      width: 960px;
      min-height: 550px;
      overflow: hidden;
      font-size:0;
      box-shadow:6px 6px 6px 0 rgba(0,0,0,0.05);
    }

    .home-menu .hm-l-u-box {
        display:inline-block;
        vertical-align:top;
        width:25%;
        padding:20px;
        font-size:14px;
    }
    .home-menu .hm-l-u-title{
        font-weight:bold;
        float: left;
        width: 100%;
        position: relative;
    }
    .home-menu .hm-l-u-title::before{
        content: '';
        display: inline-block;
        width: 3px;
        height: 10px;
        border-left: 3px solid #FFD18C;
        margin-right: 4px;
        
    }
    .home-menu .hm-l-u-li{
        margin: 10px 10px 0 0;
        position: relative;
        float: left;
    }
    .home-menu .hm-l-u-li:hover{
      background-color: rgba(255,255,255,0.1);
    }
    .home-menu .hm-l-u-l-type{
      color:#999;
    }
    .home-menu .hm-l-u-l-type:hover{
      color:#333;
    }
    .home-menu .hm-l-u-l-pic{
      width: 80px;
      height: 80px;
      position: absolute;
      right: 10px;
      bottom: 10px;
    }


    .home-top-center{
      width: 640px;
      height: 550px;
      margin-left: 260px;
      float: left;
    }



    .home-banner{
      height: 340px;
      position: relative;
      margin-bottom: 20px;
    }
    .home-banner .swiper-container{
      height: 100%;
    }
    .home-banner .hb-pic{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .home-banner .hb-list{
      width: 100%;
      height: 40px;
      position: absolute;
      bottom: 0px;
      z-index: 1;
      text-align: center;
    }
    .home-banner .hb-list .swiper-pagination-bullet{
      width: 40px;
      height: 4px;
      border-radius: 0;
      opacity: 0.6;
      cursor: default;
      margin: 0 5px;
    }
    .home-banner .hb-list .swiper-pagination-bullet:focus{
      outline: none;
    }
    .home-banner .hb-list .swiper-pagination-bullet-active{
      opacity: 1;
    }

    .home-top-right{
        float: right;
        width: 280px;
        height: 550px;
		background:#FFFFFF;
    }

    .quick-link{
        height: 210px;
        background-color: #fff;
        margin-bottom: 20px;
    }
    .quick-link .ql-top{
        overflow: hidden;
    }
    .quick-link .ql-top-li{
        height: 40px;
        line-height: 40px;
        background:rgba(238,238,238,1);
        width: 50%;
        float: left;
        text-align: center;
        cursor: default;
    }
    .quick-link .ql-top-li.on{
        background-color: #fff;
    }
    .quick-link .ql-box{
        padding: 20px;
        background-color: #fff;
    }
    .quick-link .ql-b-top{
        margin-bottom: 20px;
    }
    .quick-link .ql-b-bottom &gt; * {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .quick-link .ql-b-t-pic{
        width: 60px;
        height: 60px;
        border-radius: 60px;
        object-fit: cover;
        
    }
    .quick-link .ql-b-t-right{
        display: inline-block;
        vertical-align: top;
        padding-left: 10px;
        padding-top: 6px;
    }
    .quick-link .ql-b-t-r-name{
        font-size:16px;
        font-weight:400;
        margin-bottom: 10px;
    }
    .quick-link .ql-b-t-r-other{
        color: #999;
    }
    .quick-link .ql-b-txt{
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 16px;
    }

    
    .home-row-1{
        font-size: 0;
    }
    .home-row-1 &gt; *{
        display: inline-block;
        vertical-align: top;
        font-size: 14px;
    }
    .home-row-1 .all-card{
        margin-right: 20px;
    }
    
    .brand-promotion{
        margin-right: -20px;
        font-size: 0;
    }
    .brand-promotion .bp-li{
        display: inline-block;
        vertical-align: top;
        width: 100px;
        margin: 0 20px 15px 0;
        text-align: center;
    }
    .brand-promotion .bp-l-pic{
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 2px;
        border:1px solid #eee;
    }
    .brand-promotion .bp-l-txt{
        height:34px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .purchasing-dynamics{
        font-size: 0;
    }
    .purchasing-dynamics .hr{
        display: inline-block;
        vertical-align: top;
        height: 170px;
        border-right: 1px solid #eee;
        margin: 0 34px;
    }
    .purchasing-dynamics .pd-li{
        display: inline-block;
        vertical-align: top;
        width: 340px;
    }
    .purchasing-dynamics .pd-li-link{
        margin-bottom: 14px;
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .home-row-2{
        overflow: hidden;
        margin-top: 20px;
    }
    .home-row-2 .hr2-left{
        float: left;
    }
    .home-row-2 .hr2-right{
        float: right;
    }
    
    .home-card-goods{
        font-size: 0;
        margin: 0 -20px -20px 0;
    }
    .home-card-goods .card-goods{
        margin: 0 20px 20px 0;
        display: inline-block;
        vertical-align: top;
        width: 260px;
    }


    .home-qyjfc{
        margin: 0 -20px -20px 0;
        font-size: 0;
    }
    .home-qyjfc .hq-li{
        width: 130px;
        margin: 0 20px 20px 0;
        display: inline-block;
        vertical-align: top;
        text-align: center;
    }
    .home-qyjfc .hq-l-pic{
        width: 130px;
        height: 130px;
        object-fit: contain;
        margin-bottom: 2px;
        border: 1px solid #eee;
    }

    .home-news-1 .hn1-pic{
        width: 340px;
        height: 220px;
        object-fit: cover;
        margin-bottom: 10px;
    }
    .home-news-1 .hn1-title{
        font-size: 20px;
        font-weight: bold;
    }
    .home-qyjfc .hq-li p{
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        }

    .home-exhibition{
        margin: 0 -20px -20px 0;
        font-size: 0;
    }
    .home-exhibition .he-li{
        display: inline-block;
        vertical-align: top;
        width: 200px;
        margin: 0 20px 20px 0;
    }
    .home-exhibition .he-li-pic{
        width: 200px;
        height: 150px;
        object-fit: cover;
        margin-bottom: 6px;
        border: 1px solid #eee;
    }
    .home-exhibition .he-li-title{
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .home-exhibition .he-li-time{
        color: #999;
        font-size: 12px;
    }
    
    .friendship-links .fl-link{
        margin: 0 20px 12px 0;
        display: inline-block;
    }




.ad-20200709 {
    margin-right: -5px;
}

.ad-20200709 a {
    margin-right: 5px;
    margin-bottom: 5px;
    float: left;
}

.ad-20200709 a img {
    height: 60px;
    width: 210px;
    display: block;
}














</pre></body></html>