

main{
    position: relative;
    overflow: hidden;
}
.main-block{
    width: 100%;
    margin: 0 auto;
    max-width: 100%;
    min-height: calc(100vh - 50px);
    font-size: 0;
    margin-top: 76px;
    display: block;
   
}

.main-left{
    width: 300px;
    max-width: 100%;
    background-color: #000;
    display: block;
    position: fixed;
    left: 0;
    top: 69px;
    vertical-align: top;
    padding-bottom: 12px;
    height: calc(100vh - 69px);
}

.main-right{
    width: calc(100% - 300px);
    display: block;
    padding-bottom: 0;
    float: right;
    box-sizing: border-box;
    padding-top: 20px;
    /* padding-bottom: 20px; */
}
.main-logo-box{
    width: 30px;
    display: inline-block;
    max-width: 100%;
    vertical-align: sub;
}


/*==index==*/
.index-logo{
    width: 100%;
    display: block;
    text-align: center;
    padding: 30px 0;
    font-size: 18px;
    letter-spacing: 2px;
    color: #FFF;
}

/* .index-logo span{
    color: #ff47bc;
} */
.rwd-main-left{
    display: none;
}

.menu-list-title{
    font-size: 20px;
    color: #FFF;
    letter-spacing: 2px;
    border-left: 5px solid #ff47bc;
    padding: 10px 0;
    padding-left: 10px;
    box-sizing: border-box;
    width: 100%;
    background-color: rgba(255,255,255,0.2);
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    cursor: pointer;
    font-weight: bold;
    position: relative;
}
.menu-list-title span{
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    background-image: url('../img/next.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: rotate(0deg);
    transition: all .4s ease;
}
.menu-list-title.active span{
    transform: rotate(90deg);
    transition: all .4s ease-in;
}

.menu-list li{
    padding: 5px 0;
    padding-left: 15px;
    display: none;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.menu-list li a{
    width: 100%;
    display: block;
    color: #FFF;
    font-size: 16px;
}
.index-prodcuts-title{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: bold;
    text-align: justify;
    height: 75px;
    overflow: hidden;
}
.index-pay{
    width: 100%;
    display: block;
    padding: 20px 0;
}

.index-pay a{
    width: 100%;
    display: block;
    padding: 10px 0;
    text-align: center;
    color: #000;
    font-size: 16px;
    letter-spacing: 3px;
    background-color: red;
}



.index-banner-box{
    width: 100%;

    display: none;
    box-sizing: border-box;
}
.index-banner{
    width: 100%;
    height: 450px;
    display: block;
}
.index-banner a{
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.index-products-list-box{
    width: 98%;
 
    margin: 0 auto;
    display: -webkit-flex;
    display:         flex;
    -webkit-justify-content:space-between;
          justify-content:space-between;
    flex-wrap:wrap;

}
.index-products-list{
    width: 19%;
    max-width: 100%;
    display: inline-block;
    margin: 0 0.5%;
    margin-top: 25px;
    padding-bottom: 10px;
    vertical-align: top;
    border-bottom: 1px solid #d2cdcd;
}
.index-products-list-box .index-products-list:nth-child(1),
.index-products-list-box .index-products-list:nth-child(2),
.index-products-list-box .index-products-list:nth-child(3){
    width: 32.3333%;
    max-width: 100%;
    margin: 0 0.5%;
    margin-top: 25px;
    
}
.index-products-list-box .index-products-list:nth-child(1) .index-prodcuts-title,
.index-products-list-box .index-products-list:nth-child(2) .index-prodcuts-title,
.index-products-list-box .index-products-list:nth-child(3) .index-prodcuts-title,
.index-products-list-box .index-products-list:nth-child(1) .index-products-price,
.index-products-list-box .index-products-list:nth-child(2) .index-products-price,
.index-products-list-box .index-products-list:nth-child(3) .index-products-price{
    font-size: 20px;
}
.index-products-img,
.products-img{
    min-height: 200px;
    background-image: url('../img/logo.png');
    background-repeat: no-repeat;
    background-size: 200px;
    background-position: center;
}
.index-products-img-box{
    width: 100%;

    overflow: hidden;
}

.index-products-img{
    width: 100%;
    overflow: hidden;
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.index-products-mask{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    bottom: -100%;
    background-color: rgba(0,0,0,0.4);
}
.index-products-price{
    color: #000;
    font-size: 18px;
    text-align: center;
    letter-spacing: 2px;
    padding: 0;

}

.index-products-price span{
    color: red;
}

/*左右fixed*/

.shopcar-box{
    position: absolute;
    right: 0;
    font-size: 0;
    transform-origin: top;
    transform: scale(1,0);
    transition: all .3s linear;
}
.header-buycar.active .shopcar-box{
    transform: scale(1,1);
}
.limit-box{
    width: 210px;
    max-width: 100%;
    display: block;
    position: fixed;
    z-index: 9;
    right: -150px;
    top: 15%;
    font-size: 0;
    transition: all .3s linear;
}
.rwd-shopcar-fixed-icon-box,
.rwd-limit-icon-box
    {
        display: inline-block;
    }
.rwd-shopcar-fixed-icon-box{
    width: 60px;
    max-width: 100%;
    display: none;
    background-color: #000;
    position: relative;
    vertical-align: top;
}
.rwd-shopcar-fixed-icon{
    width: 50%;
    display: block;
    margin: 0 auto;
    padding: 10px 0;
}
.rwd-shopcar-fixed-icon-box span{
    position: absolute;
    color: #FFF;
    font-size: 12px;
    border-radius: 50%;
    bottom: 5px;
    right: 2px;
    width: 15px;
    line-height: 15px;
    text-align: center;
    display: block;
    background-color: #e61f7e;
}
.rwd-limit-icon-box{
    width: 60px;
    max-width: 100%;
    vertical-align: top;
}
.limit-img-box{
    display: inline-block;
    width: 150px;
    max-width: 100%;
}

.shopcar-fixed{
    width: 500px;
    max-width: 100%;
    display: none;
    text-align: center;
    background-color: #000;
    padding: 10px;
    box-sizing: border-box;
}
.header-shopcar-s-list-title{
    width: 100%;
    font-size: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid #FFF;
}
.header-shopcar-s-list-title .header-shopcar-s-list{
    display: inline-block;
    vertical-align: bottom;
    font-size: 14px;
    text-align: center; 
    font-weight: bold;
    color: #FFF;
}
.header-shopcar-s-list-name{
    width: 50%;
}
.header-shopcar-s-list-money,
.header-shopcar-s-list-many{
    width: 20%;
}
.header-shopcar-s-list-cancel{
    width: 10%;
}
.header-shopcar-s-list-box{
    width: 100%;
    font-size: 0;
    padding: 5px 0;
    border-bottom: 1px solid #EEE;
}
.header-shopcar-s-list-box .header-shopcar-s-list{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    text-align: center; 
    color: #FFF;
    
}
.header-shopcar-s-list-box .header-shopcar-s-list-name{
    text-align: left;
}
.header-shopcar-s-list-box .header-shopcar-s-list-cancel{
    color: #ff0d2f;
    cursor: pointer;
}





.shopcar-fixed.active{
    display: block;
}
.rwd-limit-icon-img{
    display: none;
}
.rwd-search{
    display: none;
}


.index-products-title,
.price-sorting{
    position: relative;
      width: 97%;
    display: block;
    margin: 0 auto;
}
.price-sorting{
    width: 100%;
}
.import{
    width: 100%;
    height: 100vh;
    position: fixed;
    display: table;
    z-index: 9999;
    top: 0;
    left: 0;
    

}

.import-box{
   
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 9;
}
.import-bg-box{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 1;
    background-color: #000;
}
.import-bg{
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.8;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('../img/18up-bg.jpg');
}
.import-info{
    width: 600px;
    height: 300px;
    display: block;
    margin: 0 auto;
    font-size: 0;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: rgba(255, 255, 255, 0.7)3px 2px 7px,rgba(255, 255, 255, 0.7)-2px -2px 0px,rgba(255, 255, 255, 0.7)2px -2px 2px,rgba(255, 255, 255, 0.7)-3px 3px 7px;
}

.import-img-box{
    display: inline-block;
    vertical-align: top;
    text-align: center;
    width: 220px;
    max-width: 100%;
    padding: 10px 0;
}
.import-info-box{
    width: calc(100% - 220px);
    padding: 0 20px;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    color: #FFF;
}
.import-info-title{
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    display: block;
    letter-spacing: 12px;
}
.import-info-title2{
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 30px;
}
.import-info-title2 span{
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px;
}

.import-info-in{
    width: 100%;
    display: block;
}
.import-info-in a{
    width: 100px;
    height: 100px;
    display: block;
    border: 1px solid #FFF;
    padding: 20px 0;
    box-sizing: border-box;
    transition: all .4s linear;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+42,ffffff+42,ffffff+49,ffffff+57,000000+80,000000+100&0+0,0.33+67,0.65+88 */
    background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.21) 42%, rgba(255,255,255,0.24) 49%, rgba(255,255,255,0.28) 57%, rgba(144,144,144,0.33) 67%, rgba(0,0,0,0.53) 80%, rgba(0,0,0,0.65) 88%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.21) 42%,rgba(255,255,255,0.24) 49%,rgba(255,255,255,0.28) 57%,rgba(144,144,144,0.33) 67%,rgba(0,0,0,0.53) 80%,rgba(0,0,0,0.65) 88%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,0.21) 42%,rgba(255,255,255,0.24) 49%,rgba(255,255,255,0.28) 57%,rgba(144,144,144,0.33) 67%,rgba(0,0,0,0.53) 80%,rgba(0,0,0,0.65) 88%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
    cursor: pointer;
}

.import-info-in a:hover{
     transition: all .4s linear;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ff0000+0,ff0000+30,ffffff+69,ffffff+79,ffffff+100&1+0,0.12+61,0+100 */
    background: -moz-linear-gradient(top, rgba(255,0,0,1) 0%, rgba(255,0,0,0.57) 30%, rgba(255,203,203,0.12) 61%, rgba(255,255,255,0.1) 69%, rgba(255,255,255,0.07) 79%, rgba(255,255,255,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(255,0,0,1) 0%,rgba(255,0,0,0.57) 30%,rgba(255,203,203,0.12) 61%,rgba(255,255,255,0.1) 69%,rgba(255,255,255,0.07) 79%,rgba(255,255,255,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(255,0,0,1) 0%,rgba(255,0,0,0.57) 30%,rgba(255,203,203,0.12) 61%,rgba(255,255,255,0.1) 69%,rgba(255,255,255,0.07) 79%,rgba(255,255,255,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#00ffffff',GradientType=0 ); /* IE6-9 */

}





.import-info-in a span{
    font-size: 14px;
    font-weight: bold;
    display: block;
    color: #FFF;
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 10px;
}
.import-info-in a span:nth-child(2){
    font-size: 16px;
}
.import-in{
    float: left;
    margin-left: 20px;
}
.import-out{
    float: right;
    margin-right: 20px;
}



/*過場動畫*/

.dt-loading-2 {
    width: 100%;
    height: 100vh;
    display: table;
    position: fixed;
    top: 0;
    z-index: 99999;
    transition: all .4s linear;
    background-color: #FFF;
}

.laying-2 {
   display: table-cell;
   vertical-align: middle;
}

.loading-logo-box{
    width: 100%;
    text-align: center;
    display: block;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}
.loading-log{
    width: 70px;
    max-width: 100%;
    display: inline-block;
    position: relative;
    animation:  swing 1.8s linear 0s 1 forwards;
}
.loading-logo-title{
    font-size: 24px;
    color: #000;
    display: inline-block;
    vertical-align: bottom;
    letter-spacing: 2px;
    position: relative;
}
.loading-logo-title span{
    color: #ff47bc;
    padding-left: 10px;
}
.loading-mask{
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    background: #FFF;
    right: 0;
    transform-origin: right;
    transform: scale(0, 1);
    animation:  line-out  2s linear 0s 1 forwards;

}
@keyframes swing {
  from {
    
      transform: rotateY(0deg)
  }

  to {
    
      transform: rotateY(360deg)
  }
}

@keyframes line-out {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}
.price-sorting{
    margin-top: 10px;
}
.products-sort{
    display: inline-block;
}
.products-sort span:nth-child(2){
    margin-left: 10px;
}
.products-classification-p{
    font-size: 20px;
    display: inline-block;
    vertical-align: middle;
    padding-right: 10px;
    font-weight: bold;
    color: #d60a0a;

}
.products-classification{
    width: 150px;
    height: 30px;
    line-height: 30px;
    background-color: #000;
    color: #FFF;
    font-size: 16px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
    position: relative;
    letter-spacing: 2px;
    vertical-align: middle;
}

.products-classification.up:after {
    content: "▲";
    font-size: 16px;
    color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    right: 5px;
}
.products-classification.down:after {
    content: "▼";
    font-size: 16px;
    color: rgb(255, 255, 255);
    position: absolute;
    bottom: 0px;
    right: 5px;
}
.products-classification.active {
    background-color: #ff47bc;
}



/* --------------fixed-news---------------- */
.fixed-news{
    padding: 20px 98px;
    border: 5px solid #ff47bc;
    width: 500px;
    max-width: 100%;
    position: fixed;
    z-index: 99;
    display: none;
    background-color: #000;
    box-sizing: border-box;
    left: calc(50% - 250px);
    top: calc(50% - 140px);
    cursor: pointer;
}
.fixed-news.active{
    display: block;
}
.fixed-title{
    width: 100%;
    display: block;
    font-size: 26px;
    color: #FFF;
    letter-spacing: 3px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
}
.fixed-news-info-p{
    font-size: 20px;
    color: #FFF;
    letter-spacing: 2px;
    text-align: center;
    display: block;
}
.fixed-news-p-b{
    font-size: 30px;
    color: #ff47bc;
    font-style: italic;
}
.fixed-news-off-box{
    width: 200px;
    max-width: 100%;
    text-align: center;
    display: block;
    margin: 0 auto;
    background-color: #FFF;
    font-size: 24px;
    color: #000;
    font-weight: bold;
    margin-top: 20px;
}
.color-red{
    color: red;
}
.fixed-news-out{
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    color: #000;
    text-align: center;
    line-height: 26px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: all .3s linear;
}





