@import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css);

* {
    font-family: "Microsoft JhengHei", 微軟正黑體, Arial, sans-serif;
    webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
}

/*
html,
body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

*::selection {
    background: #00A8B1;
    color: #fff;
}

*::-moz-selection {
    background: #00A8B1;
    color: #fff;
}
 */
a:hover {
    text-decoration: none;
}

input {
    outline: none;
    border: 0;
}

button {
    outline: none;
    border: 0;
}
.pagination .page_prev{
    margin: 0 10px;
}
.pagination .page_next{
    margin: 0 10px;
}
.pagination .page_prev .page-link{
    border: 1px solid #D71E1B;
    border-radius: 5px;
    color: #D71E1B;
    cursor: pointer;
}
.pagination .page_next .page-link{
    border: 1px solid #D71E1B;
    border-radius: 5px;
    color: #D71E1B;
    cursor: pointer;
}

.pagination .page_prev .page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #EC8584;
    border-color: 0;
    border-radius: 5px;
}
.pagination .page_next .page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #EC8584;
    border-color: 0;
    border-radius: 5px;
}


.red_color {
    color: #D71E1B;
}

.title {
    position: relative;
    z-index: 1;
}

.title h2 small {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #D71E1B;
    display: block;
    line-height: 1.5;
}

.title h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}

.loading {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    animation-name: loadingbg;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: linear;
    top: 0;
    left: 0;
}

@keyframes loadingbg {
    0% {
        background: #EC8584;
    }

    25% {
        background: #EE6967;
    }

    50% {
        background: #EC5755;
    }

    75% {
        background: #E24744;
    }

    100% {
        background: #D71E1B;
    }
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin-reverse 0.6s linear infinite;
    animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #fff;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: #222;
    z-index: 10;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}

/* Loaded styles */
.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

#loading-text {
    color: #fff;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    left: 50%;
    position: absolute;
    font-size: 16px;
    font-family: 'Noto Sans TC';
}



.swiper_tab_all {
    width: 100%;
    padding: 15px 0;
}

.swiper_tab_all .swiper-slide {
    color: #333333;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 10px 10px;
}



.swiper_tab_all .selected {
    color: #fff;
    background-color: #D71E1B;
}



/*  */
/* kv */
.kv_row {
    width: 100%;
    position: relative;
    z-index: 0;
}

.kv_swiper_item {
    width: 100%;
}

.kv_swiper_item img {
    width: 100%;
}

.kv_swiper .kv_swiper-button-next,
.swiper-container-rtl .kv_swiper-button-prev {
    background-image: url(../img/h_next.svg);
    right: 0px;
    left: auto;
}

.kv_swiper .kv_swiper-button-prev,
.swiper-container-rtl .kv_swiper-button-next {
    background-image: url(../img/h_back.svg);
    left: 0px;
    right: auto
}

.kv_swiper .kv_swiper-button-next,
.kv_swiper .kv_swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 55px;
    height: 55px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 55px 55px;
    -webkit-background-size: 55px 55px;
    background-size: 55px 55px;
    background-position: center;
    background-repeat: no-repeat;
}

/* end kv */
/* nav */
.nav-search-input {
    position: relative;
}

.nav-search-input input {
    width: 100%;
    background-color: #D71E1B;
    border: 0;
    height: 50px;
    padding: 0 50px 0 10px;
    color: #fff;
    -webkit-transition: all 1s;
    transition: all 1;
}

.nav-search-input input::placeholder {
    color: #fff;

}

.nav-search-input input:focus::placeholder {
    color: #fff;
    -webkit-transition: all 1s;
    transition: all 1;
}

.nav-right {}

.input_times {
    display: none;
}

.search_btn {
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    text-align: center;
    font-size: 19px;
    padding: 15px 0 0 0;
    color: #fff;
}

.nav-search-input .search_btn:hover {
    color: #fff;
}

.nav-search-input input:focus+.search_btn {
    color: #fff;
}

.login_btn {
    color: #333333;
}

.login_btn img {
    margin: 0 5px 0 0;
}

.shopping_top_row {
    display: inline-block;
    width: 185px;
    padding: 10px;
    background-color: #F6F6F6;
    margin: 0 15px 0 0;
    border-radius: 50px;
    color: #333333;
}

.shopping_top_icon {

    margin: 0 5px;
    font-size: 17px;
}

.shopping_top_text {
    display: inline-block;
    font-size: 15px;
    vertical-align: middle;
}

.shopping_top_icon {
    display: inline-block;
    vertical-align: middle;
}

.shopping_top_quantity {
    display: inline-block;
    vertical-align: middle;

}

.login {
    padding: 25px 0 0
}

.shopping_top {
    padding: 20px 0 0;
}

.shopping_top_quantity {
    border-radius: 100%;
    background-color: #D71E1B;
    width: 20px;
    height: 20px;
    font-size: 11px;
    color: #fff;
    text-align: center;
}

/* end nav */
/* index_brand */
.index_brand {
    padding: 30px 0;
}

.index_brand_row {
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    display: block;

}

.index_brand_img {
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.index_brand_img img {
    width: 100%;

}

.index_brand_img:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.index_brand_text {
    position: absolute;
    /* width: 100%; */
    text-align: center;
    color: #fff;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    left: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    z-index: 1;
    cursor: pointer;
    font-size: 18px;


}

.index_brand_row:hover .index_brand_text {
    font-size: 21px;
    color: #fff;
    transform: translateY(-50%)translateX(-50%);
    top: 45%;
    left: 50%;
    font-weight: bold;


}

.index_brand_more {
    color: #fff;
    display: block;
}

.index_brand_row:hover .index_brand_img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

.index_brand_row:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.3s;
}

.index_brand_row:hover:after {
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 10px;
}

.index_brand_more {
    transform: translateY(0%)translateX(-50%);
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    top: 100%;
    /* bottom: 0; */
    left: 50%;
    position: absolute;
    padding: 5px;
    font-size: 11px;
    border: 1px solid #fff;
    z-index: 1;
}

.index_brand_row:hover .index_brand_more {
    /* background: rgba(0, 0, 0, 0.4); */
    top: 55%;
    /* transition: all 500ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275); */
    /* opacity: 1; */
}

.index_brand_more:hover {
    border-radius: 5px;
    background-color: #fff;
    color: #D71E1B;
    font-weight: bold;
}

.index_brand_md {
    margin: 30px -15px;
}

.index_product_new_bg {
    padding: 50px 0;
}

/*  */
/* index_product */

.swiper_tab {
    width: 100%;
    padding: 10px 0;
}

.swiper_tab_new {
    width: 100%;
    padding: 10px 0;
}

.swiper_tab .swiper-slide {
    color: #333333;
    /* border-top: 1px solid #00A041;
    border-bottom: 3px solid #00A041;
    border-left: 1px solid #00A041;
    border-right: 3px solid #00A041; */
    border-radius: 5px;
    text-align: center;
    font-size: 16px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 10px 10px;
}

.swiper_tab_new .swiper-slide {
    color: #333333;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    width: auto;
    height: auto;
    padding: 10px 10px;
}

/* .swiper_tab .swiper-wrapper{
    justify-content:center;
} */

.swiper_row {
    width: 100%;
}
.swiper_row .swiper-slide-active{
    background-color: #fff;
}
.swiper_row .swiper-slide-prev > .row{
   opacity: 0;
   background-color: #fff;
}
.swiper_row .swiper-no-swiping > .row{
    /* padding-top: 5px;
    padding-bottom: 5px; */
    padding: 10px;
    background-color: #fff;

 }
.index_swiper-button-next, .swiper-container-rtl .index_swiper-button-prev {
    background-image: url(../img/big_next.svg);
    right: -55px;
    left: auto;
}
.index_swiper-button-next,.index_swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}
.index_swiper-button-next.swiper-button-disabled,.index_swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
.index_swiper-button-prev,.swiper-container-rtl .index_swiper-button-next {
    background-image: url(../img/big_back.svg);
    left: -55px;
    right: auto
}
.swiper_row_new {
    width: 100%;
}
.swiper_row_new .swiper-slide-active{
    background-color: #fff;
}
/* .swiper_row_new .swiper-slide-prev .row{
    opacity: 0;
 } */
 .swiper_row_new .swiper-slide-prev >.row{
    opacity: 0;
    background-color: #fff;
 }
 .swiper_row_new .swiper-no-swiping >.row{

    padding: 10px;
    background-color: #fff;
  }
 .new_swiper-button-next, .swiper-container-rtl .new_swiper-button-prev {
    background-image: url(../img/big_next.svg);
    right: -55px;
    left: auto;
}
.new_swiper-button-next,.new_swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat
}
.new_swiper-button-next.swiper-button-disabled,.new_swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}
.new_swiper-button-prev,.swiper-container-rtl .new_swiper-button-next {
    background-image: url(../img/big_back.svg);
    left: -55px;
    right: auto
}
.swiper_row .swiper-slide {

    /* text-align: center; */
    box-sizing: border-box !important;
    /* overflow-x: hidden !important; */
    min-height: 660px;
}

.swiper_row_new .swiper-slide {

    /* text-align: center; */
    box-sizing: border-box !important;
    /* overflow-x: hidden !important; */
    min-height: 660px;
}

.swiper_tab .selected {
    color: #fff;
    background-color: #D71E1B;
}

.swiper_tab_new .selected {
    color: #fff;
    background-color: #D71E1B;
}

.index_product_bg {
    position: relative;
    background-color: #fff;
    padding: 50px 0;

}

.index_product_bg::before {
    position: absolute;
    content: " ";
    left: 0;
    top: 0;
    height: 15%;
    width: 100%;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#eeeeee+0,000000+100&0.65+0,0+100 */
    background: -moz-linear-gradient(top, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6eeeeee', endColorstr='#00000000', GradientType=0);
    /* IE6-9 */


}

.index_product_item {
    background-color: #fff;
    -moz-box-shadow: 1px 0px 6px #d2d2d2;
    -webkit-box-shadow: 1px 0px 6px #d2d2d2;
    box-shadow: 1px 0px 6px #d2d2d2;
    overflow: hidden;
    border-radius: 10px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 30px;
}

.index_product_item:hover {
    -moz-box-shadow: 1px 0px 6px #9e9e9e;
    -webkit-box-shadow: 1px 0px 6px #9e9e9e;
    box-shadow: 1px 0px 6px #9e9e9e;
}

.index_product_title {

    padding: 5px 10px;
    border-bottom: 1px #EEEEEE dashed;
    border-bottom-style: dashed;
}

.index_product_big .index_product_title {
    padding: 30px 20px;
    border-bottom: 1px #EEEEEE dashed;
    border-bottom-style: dashed;
}

.index_product_title h5 {
    color: #828282;
    font-size: 13px;
    text-align: left;
    font-weight: bold;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

.index_product_big .index_product_title h5 {
    color: #828282;
    font-size: 21px;
    text-align: left;
    font-weight: bold;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

.index_product_title h4 {
    font-family: 'Noto Sans TC';
    color: #333333;
    font-size: 16px;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /*行數*/
  -webkit-box-orient: vertical;
  white-space: normal;
  height: 48px;

}

.index_product_big .index_product_title h4 {
    font-family: 'Noto Sans TC';
    color: #333333;
    font-size: 21px;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2; /*行數*/
  -webkit-box-orient: vertical;
  white-space: normal;
  height: 62px;
}

.index_product_big .index_product_bar {
    font-family: 'Noto Sans TC';
    padding: 15px;
}

.index_product_bar {
    font-family: 'Noto Sans TC';
    padding: 5px 10px;
}

.index_product_big .index_product_shopp {
    font-size: 21px;

}

.index_product_shopp {
    display: inline-block;
    text-align: left;
    color: #333333;

}

.index_product_big .index_product_price {
    font-size: 21px;
}

.index_product_price {
    display: inline-block;
    color: #D71E1B;
    text-align: right;
    font-weight: bold;
    font-size: 13px;
}

.index_product_img {
    overflow: hidden;
    width: 100%;
    display: block;
}

.index_product_img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
    background-color: #C8C8C8;

}

/* @keyframes backgroundColorPalette {
    0% {
        background: #ee6055;
    }

    25% {
        background: #60d394;
    }

    50% {
        background: #aaf683;
    }

    75% {
        background: #ffd97d;
    }

    100% {
        background: #ff9b85;
    }
} */

.index_product_item:hover .index_product_img img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* ebd index_product  */
/* big-picture */
.big-picture {
    /* background-image: url(../img/banner.png);
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important; */
    margin: 25px 0;
}

.big-picture-content {
    text-align: center;
    display: block;
    /* padding: 340px 0; */
    position: relative;
    /* z-index: 999; */
}

.big-picture-content img {
    width: 100%;
}

/* end */
/* index_product_hot */
.index_product_hot {
    position: relative;
}

.index_product_hot .swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.index_product_hot .swiper-slide {}

.index_product_hot_bg {
    background-image: url(../img/index_product_hot_bg.png);
    padding: 50px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.index_product_hot {}

.index_product_hot_img {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.index_product_hot_img img {
    width: 100%;
    background-color: #C8C8C8;
}



.index_product_hot_title {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 5px 0;

}

.index_product_hot_price {
    color: #D71E1B;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.index_product_hot_shopping {
    /* display:none; */
    opacity: 0;
    color: #fff;
    background-color: #D71E1B;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.index_product_hot_row:hover .index_product_hot_shopping {
    /* display:inline-block; */
    opacity: 1;
}

.index_product_hot .swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
}

.index_product_hot .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url(../img/hot_next.svg);
    right: -55px;
    left: auto
}

.index_product_hot .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url(../img/hot_back.svg);
    left: -55px;
    right: auto;
}

.index_product_hot_bg .title h2 {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    color: #fff;
}

.index_product_hot_bg .title h2 small {
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    display: block;
    line-height: 1.5;
}

/* index_product_hot */
/* end index_news */
.index_news_item {
    padding: 10px;
    display: block;
}

.index_news_item:hover {
    text-decoration: none;
}

.index_news_item_img {
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.index_news_item_title {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 10px 0;
}

.index_news_item_content {
    color: #434343;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 45px;
    overflow: hidden;
    text-align: justify;
}

.index_news_item_more {
    text-align: right;

}

.index_news_item_more a {

    font-size: 15px;
    color: #D71E1B;
    font-weight: bold;
    padding: 5px 0;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

.index_news_item:hover .index_news_item_img {

    -moz-box-shadow: 1px 0px 10px #5f5f5f;
    -webkit-box-shadow: 1px 0px 10px #5f5f5f;
    box-shadow: 1px 0px 10px #5f5f5f;

}

.index_news_item:hover .index_news_item_more a {

    background-color: #D71E1B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;



}

.index_news .owl-prev {
    position: absolute;
    top: 33%;
    left: -75px;
    border: 0;
    outline: none;

}

.index_news .owl-next {
    position: absolute;
    top: 33%;
    right: -75px;
    border: 0;
    outline: none;

}

.index_news-carousel {
    padding: 15px 0 0;
}

.index_news_bg {
    position: relative;
    padding: 50px 0;
}

.index_news_bg::before {
    position: absolute;
    content: " ";
    background-color: #EEEEEE;
    left: 0;
    top: 0;
    height: 50%;
    width: 100%;
}

.index_news_bg .title {
    z-index: 1;
    position: relative;
}

/* popular */
.popular_item {
    padding: 10px;
    display: block;
    text-decoration: none;

}

.popular_item_img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    -moz-box-shadow: 1px 0px 6px #d2d2d2;
    -webkit-box-shadow: 1px 0px 6px #d2d2d2;
    box-shadow: 1px 0px 6px #d2d2d2;

}

.popular_ranking {
    /* font-family: 'Noto Sans TC'; */
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+99&0+0,0.65+99 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 99%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 99%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 99%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0);
    /* IE6-9 */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
}

.popular_ranking span {
    font-size: 50px;
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 0 10px;
    font-weight: bold;
    font-family: 'Noto Sans TC';
}

.popular_title {
    font-size: 14px;
    color: #333333;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 5px 0;
}

.popular_price {
    color: #D71E1B;
    font-size: 14px;
}

.popular-carousel .owl-prev {
    position: absolute;
    top: 33%;
    left: -75px;
    border: 0;
    outline: none;

}

.popular-carousel .owl-next {
    position: absolute;
    top: 33%;
    right: -75px;
    border: 0;
    outline: none;

}

.popular_bg {
    padding: 50px 0;
    position: relative;
}

.popular_bg::before {
    position: absolute;
    content: " ";
    background-color: #EEEEEE;
    left: 0;
    bottom: 0;
    height: 43%;
    width: 100%;
}

/*  */
/* index-agent */
.agent_bg {
    padding: 50px 0;
}

.agent {
    padding: 25px 0;
}

.agent_logo {
    padding: 10px;
    border: 1px solid #EEEEEE;
    border-radius: 5px;
}

.agent .owl-prev {
    position: absolute;
    top: 45%;
    left: -75px;
    border: 0;
    outline: none;
    -moz-box-shadow: 0px 0px 10px #d8d8d8;
    -webkit-box-shadow: 0px 0px 10px #d8d8d8;
    box-shadow: 0px 0px 10px #d8d8d8;
    border-radius: 100%;
}

.agent .owl-next {
    position: absolute;
    top: 45%;
    right: -75px;
    border: 0;
    outline: none;
    -moz-box-shadow: 0px 0px 10px #d8d8d8;
    -webkit-box-shadow: 0px 0px 10px #d8d8d8;
    box-shadow: 0px 0px 10px #d8d8d8;
    border-radius: 100%;
}

.index_lazy {
    background-color: #C8C8C8;
}



/* .lazy_loaded {
    background: #dff0d8;
    color: #3c763d;
} */
/* end index-agent */



/* footer */
footer {
    background-color: #000000;
}

.footer_top {
    padding: 15px 0;
    border-bottom: 1px solid #6d6d6d;
}

.footer_about {
    color: #fff;
}

.footer_about h3 {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    margin: 0;
    padding: 0;
}

.footer_about p {
    margin: 0;
    padding: 0;
}

.web_map {}

.web_map h3 {
    font-size: 18px;
    color: #fff;
    padding: 0;
    margin: 0;

}

.web_map ul li a {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;

}
.footer_contact{
    /* margin:15px 0; */
}
.footer_contact h3 {
    font-size: 18px;
    color: #fff;
    padding: 0;
    margin:0;
}

.footer_address {
    width: 100%;
    font-size: 15px;
    text-indent: -7px;
    padding: 0px 0px 0 17px;
    line-height: 1.6;
    color: #fff;
}

.footer_tel {
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}

.footer_tel i {
    margin: 0 5px 0 0;
}

.footer_community {
    padding: 20px 0 0;
}

.footer_community a {
    padding: 0 10px 0 0;
}

.footer_bottom {
    text-align: center;
    padding: 5px 0;
    color: #fff;
    font-size: 14px;
}
.footer_mail{
    width: 100%;
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
}
.footer_mail a{

    color: #fff;
}
.footer_mail i {
   margin-right: 5px;
}
/* end footer */

/*  */
.nav-right_m {
    display: none;
}

#fixedTop {
    padding: 10px 15px;
    right: 10px;
    bottom: 10px;
    color: #ffffff;
    text-align: center;
    display: none;
    position: fixed;
    z-index: 999;
    /* border: 1px solid #f0f9ea; */
    background: #D71E1B;
}

.nav-search_m {
    display: none;
}

/* 手機 */

/*  */
.red_title {
    margin: 5px 0 0 0;
    background-image: url(../img/red_title_bg.png);
    padding: 30px 0 20px;
}

.red_title_pd {
    padding: 50px 0;
}

.red_title h2 {
    color: #fff;
    border-left: #fff 5px solid;
    margin: 0;
    padding: 0;
    font-size: 30px;
    padding: 0 0 0 10px;
    line-height: 1;
}

.breadcrumb_row {}

.breadcrumb_row .breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 0;
    margin-bottom: 0;
    list-style: none;
    background-color: transparent;
    border-radius: 0.25rem;
}

.breadcrumb_row .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #6c757d;
    content: ">";
}

.breadcrumb_row a {
    color: #D71E1B;
    text-decoration: none;
    background-color: transparent;
    font-weight: bold;
}

.breadcrumb_row .breadcrumb_nav {
    min-height: 0px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #828282;
    background-color: #fff;
    border: 0;
    font-size: 16px;
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #D71E1B;
    border-color: 0;
    border-radius: 5px;
}

.page-item i {
    color: #D71E1B;
}

.page-link:hover {
    z-index: 2;
    color: #fff;
    text-decoration: none;
    background-color: #EC8584;
    border-color: 0;
    border-radius: 5px;
}

/*  */
/*  */
.promotion {
    position: relative;
    padding: 20px 0 0;
}

.promotion_row {
    padding: 25px 0;

}

.promotion_item {}

.promotion_item_img {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.promotion_item_img img {
    width: 100%;
}

.promotion_item_title {
    padding: 10px 0;
}

.promotion_item_title h3 {
    font-size: 20px;
    color: #333333;
    padding: 5px 0;
    margin: 0;
    font-weight: bold;
    line-height: 1;
}

.promotion_item_title h4 {
    font-size: 14px;
    color: #333333;
    padding: 5px 0;
    margin: 0;
    line-height: 1;
}

.promotion_item {
    display: block;
    width: 100%;
    margin: 0 0 15px;
}

/*  */
.promotion_content_top {
    margin: 5px 0 0 0;
    position: relative;
    padding: 50px 0 30px;
}

.promotion_content_top::before {
    content: " ";
    position: absolute;
    background-image: url(../img/promotion_content_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

.promotion_content_img {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.promotion_content_img img {
    width: 100%;
}

.promotion_content {
    padding: 20px 0;
    position: relative;
}

/*  */
.gray_bg {
    position: relative;
}

.gray_bg::before {
    position: absolute;
    content: " ";
    left: 0;
    top: 0;
    height: 15%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(to bottom, rgba(238, 238, 238, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a6eeeeee', endColorstr='#00000000', GradientType=0);
}

/* product */
.product_item {
    background-color: #fff;
    -moz-box-shadow: 1px 0px 6px #d2d2d2;
    -webkit-box-shadow: 1px 0px 6px #d2d2d2;
    box-shadow: 1px 0px 6px #d2d2d2;
    overflow: hidden;
    border-radius: 10px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    margin-bottom: 30px;
}

.product_item:hover {
    -moz-box-shadow: 1px 0px 6px #9e9e9e;
    -webkit-box-shadow: 1px 0px 6px #9e9e9e;
    box-shadow: 1px 0px 6px #9e9e9e;
}

.product_title {

    padding: 5px 10px;
    border-bottom: 1px #EEEEEE dashed;
    border-bottom-style: dashed;
}


.product_title h5 {
    color: #828282;
    font-size: 13px;
    text-align: left;
    font-weight: bold;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}



.product_title h4 {
    font-family: 'Noto Sans TC';
    color: #333333;
    font-size: 16px;
    text-align: left;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}



.product_bar {
    font-family: 'Noto Sans TC';
    padding: 5px 10px;
}


.product_shopp {
    display: inline-block;
    text-align: left;
    color: #333333;

}


.product_price {
    display: inline-block;
    color: #D71E1B;
    text-align: right;
    font-weight: bold;

}

.product_img {
    overflow: hidden;
    width: 100%;
    display: block;
}

.product_img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    width: 100%;
    background-color: #C8C8C8;

}

.product_item:hover .product_img img {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
}

/* product end  */

/* market */
.market {
    padding: 15px 0;
}

.market_item {
    border: 1px solid #EEEEEE;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    margin: 0 0 15px;
}

.market_item img {
    width: 100%;
}

/* market end */
/*  */

.brand_row_top {
    margin: 5px 0 0 0;
    position: relative;
    padding: 50px 0 30px;
}

.brand_row_bottom {
    padding: 50px 0;
    position: relative;
}

.brand_row_top::before {
    content: " ";
    position: absolute;
    background-image: url(../img/promotion_content_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    z-index: 0;
    left: 0;
    top: 0;
}

.brand_row_top .breadcrumb_row a {
    color: #fff;
    text-decoration: none;
    background-color: transparent;
    font-weight: bold;
}

.breadcrumb_row select {
    margin: 0 0 15px;
}

.brand_row_top .breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #fff;
    content: ">";
}

.brand_row_top .breadcrumb-item.active {
    color: #fff;
}

.brand_row_top_img {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.brand_row_top_img img {
    width: 100%;
}

.brand_row_middle {
    display: flex;
    width: 100%;
    padding: 30px 0;
}

.brand_row_middle_logo {
    flex: 0 0;
    flex-basis: 100px;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    overflow: hidden;
}

.brand_row_middle_logo img {

    width: 100%;
}

.brand_row_middle_text {
    flex-grow: 2;
    padding-left: 15px;
}

.brand_row_middle_text h2 {
    font-size: 23px;
    font-weight: bold;
    color: #D71E1B;
    margin: 0;
    padding: 0 0 15px;
    line-height: 1.5;
}

.brand_row_middle_btn {
    font-size: 0;
    padding: 0;
    margin: 0;
}

.brand_row_middle_btn li {
    width: 200px;
    display: inline-block;
    margin: 0 10px 0 0;
vertical-align: middle;
}

.brand_row_middle_btn li a {
    color: #D71E1B;
    font-size: 20px;
    display: block;
    width: 100%;
    border: #D71E1B 1px solid;
    text-align: center;
    padding: 10px;
    border-radius: 5px;

}

.brand_row_middle_btn li .active {
    color: #fff;
    font-size: 20px;
    display: block;
    width: 100%;
    border: #D71E1B 1px solid;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background-color: #D71E1B;

}
.brand_row_middle_select select{
    display: block;
    width: 100%;
    height:42px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #D71E1B;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #D71E1B;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.brand_edit {}

.brand_edit img {

    max-width: 100%;

}

.brand_edit img img {
    width: 100%;

}

.brand_sort {


}

.brand_sort_list {
    border: 1px solid #C8C8C8;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.brand_sort_list li {
    /* border-bottom: 1px solid #EEEEEE; */

}

.brand_sort_nav {
    padding: 10px;
    color: #333333;
    font-size: 20px;
    cursor: pointer;
    border-bottom: 1px solid #EEEEEE;
    position: relative;

}

.brand_sort_container {
    padding: 15px;
    display: none;

}

.brand_sort_container a {
    display: block;
    color: #828282;
    line-height: 1.5;
    padding: 5px 0;
}

.brand_sort_container .active {
    color: #D71E1B;
}

.brand_sort_nav i {
    color: #D71E1B;
    position: absolute;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    right: 0;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.brand_sort_nav .brand_sort_i {
    -moz-transform: translateY(-50%)translateX(-50%)rotate(180deg);
    -webkit-transform: translateY(-50%)translateX(-50%)rotate(180deg);
    -o-transform: translateY(-50%)translateX(-50%)rotate(180deg);
    -ms-transform: translateY(-50%)translateX(-50%)rotate(180deg);
    transform: translateY(-50%)translateX(-50%)rotate(180deg);

    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

/*  */
/*  */
.fashion_column {
    position: relative;
    padding: 20px 0;

}

.fashion_item {
    width: 100%;
    display: block;
    background-color: #fff;
    -moz-box-shadow: 1px 0px 6px #9e9e9e;
    -webkit-box-shadow: 1px 0px 6px #9e9e9e;
    box-shadow: 1px 0px 6px #9e9e9e;
    overflow: hidden;
    border-radius: 10px;

}

.fashion_item:hover {
    text-decoration: none;
}

.fashion_item_img {
    position: relative;
    width: 100%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.fashion_item_img img {
    width: 100%;

}

.fashion_item_title {
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    padding: 10px 0;
}

.fashion_item_content {
    color: #434343;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    height: 45px;
    overflow: hidden;
    text-align: justify;
}

.fashion_item_more {
    text-align: right;

}

.fashion_item_more a {

    font-size: 15px;
    color: #D71E1B;
    font-weight: bold;
    padding: 5px 0;
    display: inline-block;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

.fashion_item:hover .fashion_item_img {

    -moz-box-shadow: 1px 0px 10px #5f5f5f;
    -webkit-box-shadow: 1px 0px 10px #5f5f5f;
    box-shadow: 1px 0px 10px #5f5f5f;

}

.fashion_item:hover .fashion_item_more a {

    background-color: #D71E1B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;



}

.fashion_item_bar {
    padding: 0 10px 10px;

}

.fashion_item_date {
    position: absolute;
    background-color: #D71E1B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    bottom: 5px;
    left: 5px;
    font-size: 14px;
}

.fashion_row {
    position: relative;
}

.grid {
    padding: 20px 0;
}

.grid:after {
    content: '';
    display: block;
    clear: both;
}

/* ---- grid-item ---- */


.grid-item {
    width: 33.3%;
}

.grid-item {
    margin-bottom: 20px;
    padding: 0 10px;
    float: left;

}

.fashion_more {
    text-align: center;

}

.fashion_more a {
    text-align: center;
    background-color: #D71E1B;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    font-size: 19px;
}

.fashion_article_top {
    padding: 15px 0;

}

.fashion_article_top h2 {
    font-size: 30px;
    margin: 0;
    padding: 0 10px;
    color: #D71E1B;
    border-left: #D71E1B 5px solid;
    line-height: 1;

}

.fashion_article_date {

    background-color: #D71E1B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: inline-block;
}

.fashion_edit {
    padding: 15px 0;
    min-height: 500px;
}

.fashion_edit img {
    max-width: 100%;
}

.fashion_related h3 {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
}

.fashion_related ul {
    margin: 0;
    padding: 0;
}

.fashion_related ul li {
    border-top: #EEEEEE 1px solid;
}

.fashion_related ul li:last-child {
    border-bottom: #EEEEEE 1px solid;
}

.fashion_related ul li a {
    color: #828282;
    font-size: 16px;
    padding: 10px 0;
    display: block;
    line-height: 1.5;
}

.fashion_tag h3 {
    color: #333333;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    padding: 10px 0;
}

.fashion_tag ul {
    padding: 0;
    margin: 0;
    font-size: 0;
}

.fashion_tag ul li {
    display: inline-block;
    margin: 0 10px 10px 0;

}

.fashion_tag ul li a {
    border: #EEEEEE 1px solid;
    font-size: 16px;
    padding: 5px 10px;
    color: #828282;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.fashion_tag ul li a:hover {
    border: #D71E1B 1px solid;
    background-color: #D71E1B;
    font-size: 16px;
    padding: 5px 10px;
    color: #fff;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

/*  */
.other_row {
    padding: 20px 0;
    position: relative;
}

.other_list {
    margin: 0;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.other_list li {
    margin: 0 0 15px;
    border: 1px solid #C8C8C8;
    background-color: #fff;
    padding: 15px;
}

.other_list_btn {
    position: relative;
    cursor: pointer;
}

.other_list_btn h2 {
    color: #333333;
    font-size: 18px;
    margin: 0;
    line-height: 1;
    font-weight: bold;
}

.other_list_btn .other_list_btn_color {
    color: #D71E1B;
}

.other_list_container {
    display: none;
    padding: 15px 20px;
}

.other_list_icon {
    position: absolute;
    width: 18px;
    height: 18px;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    right: -10px;
    cursor: pointer;
}

.icon1 {
    width: 18px;
    height: 2px;
    background-color: #D71E1B;
    position: absolute;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    left: 50%;
}

.icon2 {
    width: 18px;
    height: 2px;
    background-color: #D71E1B;
    position: absolute;
    transform: translateY(-50%)translateX(-50%);
    top: 50%;
    left: 0%;
}

.icon2 {
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

/*  */
/*  */
.register_row {
    padding: 25px 0;
    background-color: #F6F6F6;
    min-height: 450px;
}

.register_big_title {
    color: #D71E1B;
    font-size: 30px;
    font-weight: bold;
}

.register_container {
    border: 1px solid #C8C8C8;
    background-color: #fff;
    padding: 30px;
}

.register_input .form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #F6F6F6;
    background-clip: padding-box;
    border: 0;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0 0 10px;
}
.register_input .form-control:disabled{
    cursor: not-allowed;
    opacity: .5;
}
.register_send {
    text-align: center;
    background-color: #D71E1B;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    display: inline-block;
    font-size: 17px;
}
.register_tab{
    font-size: 0;
    padding: 0;
    margin: 15px 0;
    width: 100%;
}
.register_tab li{
    display: inline-block;
    margin: 0 5px 0 0 ;

}
.register_tab li a{
    text-align: center;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 5px;
    /* border: 1px solid #D71E1B; */
    display: block;
    color:#333333;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.register_tab li .register_tab_active{
    text-align: center;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #D71E1B;
    display: block;
    color:#fff;
}
.register_tab li a:hover{
    text-align: center;
    font-size: 15px;
    padding: 8px 10px;
    border-radius: 5px;
    background-color: #D71E1B;
    display: block;
    color:#fff;
}
.order_table{
    width: 100%;
    border: 1px solid #dee2e6;
    background-color: #fff;
    margin: 0 0 25px;
}
.order_table_m{
    display:none;
}
.order_table th{
    padding: 10px;
    border: 1px solid #dee2e6;
    color: #333333;
    font-weight: bold;
}
.order_table td{
    padding: 10px;
    border: 1px solid #dee2e6;
    color: #333333;
}
.order_see{
    color: #D71E1B;
}
.verify_btn{
    width: 100%;
    display: block;
    color: #D71E1B;
    /* background-color: #D71E1B; */
    text-align: center;
    font-size: 15px;
    padding: 8px 0px;
    border-radius: 5px;
    border: 1px solid #D71E1B;
}
.order_row{
    margin: 0 0 25px;
}
.order_list{
    font-size: 19px;
    line-height: 1.5;
}
.verify_pd{
    padding: 90px 0 0;
}
/*  */
/*  */
.login_left {
    background-image: url(../img/login_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    padding: 20px;
    height: 100%;
    min-height: 800px;
    background-size: cover;
}

.login_right {
    height: 100%;
    padding: 220px 0 0;
}

.login_left_container {
    width: 50%;
    text-align: right;
    padding: 250px 40px 0;
}

.login_left_logo {
    padding: 15px 0;
}

.login_left_logo img {
    max-width: 100%;
}

.login_left_text {
    color: #fff;
    line-height: 1.5;
}

.login_box {
    background-color: #fff;
    border: 1px solid #C8C8C8;
    padding: 30px;
    margin: 0 auto;
    width: 460px;
}

.login_box h2 {
    font-size: 30px;
    text-align: center;

}

.login_send {
    text-align: center;
    background-color: #D71E1B;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    display: block;
    font-size: 17px;
    width: 100%;
}

.login_footer {
    text-align: center;
    padding: 15px 0;
}

.login_footer a {
    display: inline-block;
    font-size: 14px;
    color: #333333;

}

/*  */
.shopping_cart_top {
    background-color: #fff;
    padding: 50px 0;
}

.step {
    font-size: 0;
    margin: 0 auto;
    padding: 0;
    width: 600px;
    text-align: center;
    position: relative;
}

.step::before {
    content: " ";
    width: 60%;
    height: 5px;
    background-color: #EEEEEE;
    position: absolute;
    transform: translateY(-50%)translateX(-50%);
    top: 30%;
    left: 50%;
}

.step li {
    display: inline-block;
    width: 33.33%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step .active .step_no {
    background-color: #D71E1B;
    font-size: 21px;
    color: #fff;
    display: inline-block;
    border-radius: 100%;
    padding: 15px 19px;
}

.step_no {
    background-color: #EEEEEE;
    font-size: 21px;
    color: #828282;
    display: inline-block;
    border-radius: 100%;
    padding: 15px 19px;
}

.step_text {
    color: #000;
    font-size: 16px;
    padding: 10px 0;
}

.step .active .step_text {
    color: #D71E1B;
    font-size: 16px;
    padding: 10px 0;
}

.shopping_bottom {
    background-color: #F6F6F6;
    padding: 30px 0;
}

.shopping_title {
    color: #D71E1B;
    font-size: 30px;
    font-weight: bold;
    margin: 0;
    padding: 15px 0;
}

.shopping_order {
    background-color: #fff;
    border: 1px solid #C8C8C8;
}

.shopping_order table {
    margin: 0;
}

.table-bordered th,
.table-bordered td {
    border: 0;
}

.shopping_order .table th {
    font-size: 16px;
    color: #000;
    text-align: center;
    border: 0;

}

.shopping_order td {
    vertical-align: middle;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.shopping_order td h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    line-height: 1.5;
}

.shopping_cart_bottom {
    padding: 50px 0;
    background-color: #F6F6F6;

}

.shopping_order_img {
    width: 100px;
}

.shopping_order_img img {
    width: 100%;
}

.shopping_cart_price {
    color: #D71E1B;
}

.shopping_cart_del {
    cursor: pointer;
    color: #C8C8C8;
}

.shopping_cart_del:hover {
    color: #D71E1B;
}

.amount_input {
    border: 1px solid #C8C8C8;
    overflow: hidden;
    border-radius: 3px;
    width: 200px;
    position: relative;
    margin: 0 auto;
}

.amount_input input {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 30px;
    padding: 0 50px;

}

.amount_input_minus {
    position: absolute;
    width: 45px;
    text-align: center;
    top: 0;
    left: 0;
    border-right: 1px solid #C8C8C8;
    line-height: 30px;
    height: 30px;
    color: #333333;
}

.amount_input_plus {
    position: absolute;
    width: 45px;
    text-align: center;
    top: 0;
    right: 0;
    border-left: 1px solid #C8C8C8;
    line-height: 30px;
    height: 30px;
    color: #333333;
}

.shopping_cart_discount {
    padding: 15px;
}

.shopping_cart_discount_text {
    padding: 10px 0;
    display: block;
}

.shopping_cart_tag_red {
    color: #D71E1B;
    font-size: 12px;
    border: #D71E1B 1px solid;
    padding: 5px;
    border-radius: 3px;
}

.shopping_cart_tag {
    color: #333333;
    font-size: 12px;
    border: #333333 1px solid;
    padding: 5px;
    border-radius: 3px;
}

.shopping_cart_after {
    padding: 30px 0;

}

.promo_code {
    border: 1px #C8C8C8 solid;
    background-color: #fff;
    padding: 30px;
}

.promo_code input {
    border: 0;
    background-color: #F6F6F6;
}

.promo_code h3 {
    font-size: 16px;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 10px;
}

.consumption {
    border: 1px #C8C8C8 solid;
    background-color: #fff;
}

.consumption_list {
    margin: 0;
}

.consumption_list li {
    padding: 15px 25px;
    border-top: 1px solid #EEEEEE;
}

.consumption_list_title {
    font-size: 14px;

}

.consumption_list_amount {
    font-size: 14px;
}

.consumption_list_sum {
    font-size: 25px;
    color: #D71E1B;
    font-family: 'Noto Sans TC';

}

.consumption_btn {
    text-align: center;
    display: block;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    color: #fff;
    background-color: #D71E1B;
    border-radius: 5px;
    font-size: 20px;
}

.consumption_btn_min {
    margin: 10px auto;
    text-align: right;
    width: 90%;
    font-size: 16px;
    color: #828282;
}

.shopping_order_form {
    padding: 30px;
}

.shopping_order_form_radio {
    padding: 30px 30px 0;
    border-bottom: 1px solid #EEEEEE;
}

.shopping_detail {
    border: 1px #C8C8C8 solid;
    background-color: #fff;
}

.shopping_detail_list {
    padding: 10px 15px;
    border-bottom: 1px solid #EEEEEE;
}

.shopping_detail_list .col-form-label {
    color: #000000;
}

.shopping_detail_list_red {
    color: #D71E1B;
}

.shopping_detail_text {
    padding: 25px 0;
    font-size: 20px;
    color: #333;
    text-align: center;
    line-height: 1.5;
}

.shopping_detail_text a {
    color: #D71E1B;
}

.shopping_detail_text a:hover {
    text-decoration: underline;
}

.btn_red {
    color: #fff;
    font-size: 20px;
    background-color: #D71E1B;
    padding: 10px 0;
    width: 240px;
    display: block;
    margin: 0 auto;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

/*  */
.slider {
    padding: 0 30px;
}

.flexslider_back {
    width: 100%;
}

.flexslider_back img {
    width: 100%;
}

.flexslider_next {
    width: 100%;
}

.flexslider_next img {
    width: 100%;
}

.commodity_top {
    padding: 0 0 30px;
    position: relative;
}

.commodity_text {
    display: flex;
    width: 100%;
    padding: 5px 0;
}

.commodity_text_left {
    flex: 0 0;
    flex-basis: 75px;
}

.commodity_text_right {
    flex-grow: 2;
}

.big_red {
    font-size: 20px;
    font-weight: bold;
    color: #D71E1B;
}

.commodity_text_right .amount_input {
    border: 1px solid #C8C8C8;
    overflow: hidden;
    border-radius: 3px;
    width: 180px;
    position: relative;
    margin: initial;
}

.commodity_discount {
    border-left: 3px solid #D71E1B;
    padding: 0 0 0 10px;
    margin: 50px 0 0;

}

.commodity_discount h3,
.commodity_discount h4 {
    margin: 0;
}

.commodity_discount h3 {
    font-size: 16px;
    color: #D71E1B;
    font-weight: normal;
    line-height: 1.5;
}

.commodity_discount h4 {
    font-size: 16px;
    color: #333;
    font-weight: normal;
    line-height: 1.5;
}

.commodity_cart {
    font-size: 20px;
    background-color: #D71E1B;
    color: #fff;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 25px 0 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.commodity_cart_repair{
    font-size: 20px;
    background-color: #d7d7d7;
    color: #7a7a7a;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    cursor: no-drop;
    display: block;
    width: 100%;
    margin: 25px 0 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.commodity_cart:hover {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-color: #bb0300;

}

.commodity_cart i {
    margin: 0 5px;
}

.commodity_shopping {
    font-size: 20px;
    border: 1px solid #D71E1B;
    background-color: #fff;
    color: #D71E1B;
    padding: 10px 0;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    display: block;
    width: 100%;
    margin: 25px 0 0;
}

.commodity_shopping i {
    margin: 0 5px;
}

.commodity_shopping:hover {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    background-color: #bb0300;
    color: #fff;

}

.commodity_tab {
    border-bottom: 1px solid #dee2e6;
}

.commodity_tab .nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    background-color: #F6F6F6;
    color: #000000;
}

.commodity_edit {
    padding: 25px 0;
}

.commodity_edit img {
    max-width: 100%;
}

/*  */
.about_min {
    position: relative;
    margin: 0 0 100px;
}

.about_row {
    padding: 55px 0;
    position: relative;
}

.about_row_left {
    width: 50%;
}

.about_row_right {
    width: 50%;
}

.about_row_list {
    margin: 0;
    list-style: none;
    padding: 0 0 0 20px;

}

.about_row_list li::before {
    content: "\2022";
    color: #D71E1B;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.about_row_list li {
    color: #000;
    font-size: 16px;
    line-height: 1.5;
    padding: 0 0 5px;
    position: relative;
    z-index: 1;
}

.about_title {
    font-size: 30px;
    color: #333333;
    line-height: 1.5;
    margin: 0 0 20px;
}

.about_title small {
    display: block;
    font-size: 18px;
    color: #D71E1B;

}

.about_row_bg1 {
    position: relative;
}

.about_row_bg1::before {
    content: " ";
    position: absolute;
    left: -20px;
    top: -15px;
    height: 106%;
    width: 150%;
    background-color: #F6F6F6;
}

.about_row_img1 {
    position: absolute;
    right: 0;
    top: 50px;

}

.about_row_img1 img {
    max-width: 100%;

}

.about_row_bg2 {
    position: relative;
}

.about_row_bg2::before {
    content: " ";
    position: absolute;
    right: -20px;
    top: -15px;
    height: 113%;
    width: 150%;
    background-color: #F6F6F6;
}

.about_row_img2 {
    position: absolute;
    left: 0;
    top: 50px;
}

.about_row_img2 img {
    max-width: 100%;
}

.about_row_text {}

.about_row_text h3 {
    font-size: 18px;
    color: #D71E1B;
    margin: 0;
}

.about_row_text p {
    font-size: 14px;
    color: #000000;
}

/*  */
.table_mo {
    display: none;
}

.table_dk {
    display: block;
}
/*  */
.shopping_join {
    width: 350px;
    position: absolute;
    right:-15px;
    padding: 15px;
    border: 1px solid #dcdcdc;
    background-color: #fff;
    display: none;
    z-index: 9;
    top: -44px;
}

.shopping_product_img {
    width: 80px;
    float: left;
    border: 1px solid #dcdcdc;
    margin: 0px 10px 0 0;

}

.shopping_product_img img {
    width: 100%;
}

.shopping_product_title {
    color: #3a3a3a;
    font-size: 16px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;


}

.shopping_product_info {
    padding: 10px 10px 0 0;
}

.shopping_join_btn {
    text-align: center;
    display: block;
    color: #fff;
    background-color: #c83737;
    padding: 5px 0;
    width: 100px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin: 0 0 0 15px;
    float: right;

}
/*  */
.social {
    position: fixed;
    bottom: 9%;
    right: 12px;
    z-index: 999;
}
.social .social_icon{
    margin: 0 0 10px;

}
.checkout{
    width: 40px;
    margin:0 0 10px;
}
.checkout a{
    display: block;
    background-color: #bb0300;
    color: #fff;
    border-radius: 5px;
    font-size: 17px;
    text-align: center;
    padding: 5px 10px;
    line-height: 1.3;

}
.web_map_img{
    width: 100%;
}
.web_map_img img{
    width: 100%;
}
.fw {
    max-width: 110px;
}
.rendering .btn-danger {
    color: #bb0300;
    background-color: #fff;
    border-color: #bb0300;
    outline: none;

}

.dropdown-menu {
    width: 76px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: initial;
    padding: 0.1rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #bb0300;
    background-color: #fff;
    border-color: #bb0300;
}
.btn-danger:focus, .btn-danger.focus {
    box-shadow: inherit;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: inherit;
}
.rendering .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #6e6e6e;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
@media (max-width: 1800px) {
    .about_row_img1 {
        position: absolute;
        right: 0;
        top: 50px;
        width: 800px;

    }

    .about_row_img2 {
        position: absolute;
        left: 0;
        top: 50px;
        width: 800px;
    }

    .about_min {
        position: relative;
        margin: 0 0 0px;
    }
}

@media (max-width: 1600px) {
    .about_row_img1 {
        position: absolute;
        right: 0;
        top: 70px;
        width: 650px;
    }

    .about_row_img2 {
        position: absolute;
        left: 0;
        top: 70px;
        width: 650px;
    }

    .about_min {
        position: relative;
        margin: 0 0 0px;
    }
}

@media (max-width: 1400px) {
    .about_row_img1 {
        position: absolute;
        right: 0;
        top: 70px;
        width: 550px;
    }

    .about_row_img2 {
        position: absolute;
        left: 0;
        top: 70px;
        width: 550px;
    }
}

@media (max-width: 1200px) {
    .login_left_container {
        width: 100%;
        text-align: right;
        padding: 250px 40px 0;
    }

    nav .menu li a {
        display: block;
        padding: 0px 15px;
        text-decoration: none;
        color: #3a3a3a;
        border-left: solid 1px #dfdfdf;
        font-size: 14px;
    }
}

/*  */
@media (max-width: 920px) {
    .about_row {
        padding: 0;
        position: relative;
    }
    .about_row_right {
        width: 100%;
    }
    .about_row_left {
        width: 100%;
    }

    .about_row_img1 {
        position: relative;
        right: 0;
        top: inherit;
        width: 100%;
        padding: 15px 0;
    }
    .about_row_img2 {
        position: relative;
        left: 0;
        top: inherit;
        width: 100%;
        padding: 15px 0;
    }
    .login_box {
        background-color: #fff;
        border: 1px solid #C8C8C8;
        padding: 15px;
        margin: 0 auto;
        width: 100%;
    }

    .login_right {
        height: 100%;
        padding: 25px 35px;
    }

    .login_left_container {
        width: 100%;
        text-align: left;
        padding: 15px;
    }

    .login_left {
        background-image: url(../img/login_bg.png);
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        padding: 20px;
        height: 100%;
        min-height: inherit;
        background-size: cover;
    }

    .nav-header ul.attributes {
        display: none;

    }

    .login {
        padding: 25px 0 0;
        display: none;
    }

    .shopping_top {
        padding: 20px 0 0;
        display: none;
    }

    nav .brand {
        display: block;
        position: relative;
        width: 100px;
        padding: 20px 0;
    }

    nav .nav-header .brand {
        margin: 0 0px 0px 50px;
        float: left;
        position: relative;
        top: inherit;
        padding: 10px 0;
    }

    nav .nav-header .toggle-bar {
        left: 15px;
        color: #D71E1B;
    }

    nav .menu li a {
        display: block;
        padding: 10px;
        text-decoration: none;
        color: #3a3a3a;
        border-left: 0;
        font-size: 14px;
        margin:  0;
    }

    nav {
        /* border-bottom: solid 1px #dfdfdf; */
        /* min-height: 60px; */
        min-height: initial;
    }

    nav .nav-header {
        min-height: initial;
        border-bottom: solid 1px #dfdfdf;
    }

    .nav-right_m ul {
        font-size: 0;
        margin: 0;
        padding: 0;
    }

    .nav-right_m ul li {
        display: inline-block;
        padding: 5px 2px 0;

    }

    .nav-right_m ul li a {
        display: inline-block;
        font-size: 21px;
        color: #D71E1B;
        padding: 10px 10px;
        position: relative;
    }
    .shopping_nb{
        font-size: 0.5em;
        color: #fff;
        background-color: #D71E1B;
        text-align: center;
        overflow: hidden;
        border-radius: 100%;
        position: absolute;
        right: 0px;
        top: 0px;
        padding: 5px 4px;
        line-height: 1;
        width: 22px;
        height: 22px;
    }
    .nav-right_m ul li a .fa-shopping-cart{
        color: #333333;
    }
    .brand_row_top::before {
        content: " ";
        position: absolute;
        background-image: url(../img/promotion_content_bg.png);
        background-position: center -150px;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: 0;
        left: 0;
        top: 0;
    }
}

.index_brand_mo {
    display: none;
}

@media (max-width: 768px) {
    .swiper_row .swiper-slide {

        /* text-align: center; */
        box-sizing: border-box !important;
        /* overflow-x: hidden !important; */
        min-height: inherit;
    }

    .swiper_row_new .swiper-slide {

        /* text-align: center; */
        box-sizing: border-box !important;
        /* overflow-x: hidden !important; */
        min-height: inherit;
    }
    .swiper_row .swiper-no-swiping > .row {
        padding: 10px 0;
        background-color: #fff;
    }
    .swiper_row_new .swiper-no-swiping >.row {
        padding: 10px 0;
        background-color: #fff;
    }
    .new_swiper-button-next, .swiper-container-rtl .new_swiper-button-prev {
        background-image: url(../img/w_next.png);
        right: -15px;
        left: auto;
        width: 40px;
        height: 50px;
            background-color: rgb(187 3 0 / 53%);
    }
    .new_swiper-button-prev, .swiper-container-rtl .new_swiper-button-next {
        background-image: url(../img/w_back.png);
        left:-15px;
        right: auto;
        width: 40px;
        height: 50px;
            background-color: rgb(187 3 0 / 53%);
    }
    .index_swiper-button-next, .swiper-container-rtl .index_swiper-button-prev {
        background-image: url(../img/w_next.png);
        right: -15px;
        left: auto;
        width: 40px;
        height: 50px;
            background-color: rgb(187 3 0 / 53%);
    }
    .index_swiper-button-prev, .swiper-container-rtl .index_swiper-button-next {
        background-image: url(../img/w_back.png);
        left: -15px;
        right: auto;
        width: 40px;
        height: 50px;
        background-color: rgb(187 3 0 / 53%);
    }
    .shopping_join {
        width: 100%;
        position: fixed;
        right:0;
        padding: 15px;
        border: 1px solid #dcdcdc;
        background-color: #fff;
        display: none;
        z-index: 99;
        top: 0;
    }
    .order_table{
        display:none;
    }
    .order_table_m{
        width: 100%;
        border: 1px solid #dee2e6;
        background-color: #fff;
        margin: 0 0 25px;
        display: table;

    }
    .order_table_m th{
        padding: 10px;
        border: 1px solid #dee2e6;
        color: #333333;
        font-weight: bold;
    }
    .order_table_m td{
        padding: 10px;
        border: 1px solid #dee2e6;
        color: #333333;
    }
    .register_container {
        border: 1px solid #C8C8C8;
        background-color: #fff;
        padding: 15px;
    }

    .register_input .form-control {
        display: block;
        width: 100%;
        height: calc(2.25rem + 2px);
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #495057;
        background-color: #F6F6F6;
        background-clip: padding-box;
        border: 0;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        margin: 0 0 10px;
    }

    .shopping_order_form_radio {
        padding: 15px 15px 0;
        border-bottom: 1px solid #EEEEEE;
    }

    .shopping_order_form {
        padding: 15px;
    }

    .table_mo {
        display: block;
    }

    .table_mo table {
        margin: 0 0 15px;
        border-top: 1px solid #EEEEEE;
    }

    .shopping_order td h3 {
        font-size: 16px;
        color: #333;
        margin: 0;
        line-height: 1.5;
        font-weight: bold;
    }

    .shopping_order.table td {

        border-top: 0;
    }

    .shopping_order td {
        vertical-align: middle;
        text-align: left;
        border-top: 0;
    }

    .shopping_order .table th {
        font-size: 16px;
        color: #000;
        text-align: center;
        border: 0;
        border-bottom: 1px solid #dee2e6;
        vertical-align: middle;
    }

    .consumption_list_sum {
        font-size: 18px;
        color: #D71E1B;
        font-family: 'Noto Sans TC';
    }

    .promo_code {
        border: 1px #C8C8C8 solid;
        background-color: #fff;
        padding: 15px;
    }

    .shopping_cart_tag {
        color: #333333;
        font-size: 12px;
        border: #333333 1px solid;
        padding: 5px;
        border-radius: 3px;
        display: block;
        margin: 5px 0;
    }

    .shopping_cart_tag_red {
        color: #D71E1B;
        font-size: 12px;
        border: #D71E1B 1px solid;
        padding: 5px;
        border-radius: 3px;
        display: block;
        margin: 5px 0;
    }

    .shopping_cart_bottom {
        padding: 25px 0;
        background-color: #F6F6F6;
    }

    .shopping_cart_top {
        background-color: #fff;
        padding: 25px 0;
    }

    .step .active .step_text {
        color: #D71E1B;
        font-size: 14px;
        padding: 10px 0;
    }

    .step_text {
        color: #000;
        font-size: 14px;
        padding: 10px 0;
    }

    .step {
        font-size: 0;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        text-align: center;
        position: relative;
    }

    .table_dk {
        display: none;
    }

    .nav-search_m {
        display: none;
        position: absolute;
        width: 100%;
        z-index: 99;
        top: 0px;
        left: 0;
    }

    .nav-right_m {
        display: block;
    }

    .index_brand_mo {
        display: block;
    }

    .index_brand_dk {
        display: none;
    }

    .index_brand {
        padding: 15px;
        overflow-y: hidden;
        width: auto;
    }

    .brand_width {
        max-width: 290px;
        float: left;
        margin-left: 15px;
    }

    .index_product_min {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .index_product_min .index_product_item {
        flex: 0 0 49%;
    }

    .index_product .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        background-image: url(../img/big_next.svg);
        right: 35%;
        left: auto;
        bottom: -35px;
        top: initial;
    }

    .index_product .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        background-image: url(../img/big_back.svg);
        left: 35%;
        right: auto;
        bottom: -35px;
        top: initial;
    }

    .index_product_new_bg {
        padding: 25px 0 20px;
    }

    .popular_bg {
        padding: 25px 0;
        position: relative;
    }

    .index_news .owl-prev {
        position: absolute;
        top: 30%;
        left: 10px;
        border: 0;
        outline: none;
    }

    .index_news .owl-next {
        position: absolute;
        top: 30%;
        right: 10px;
        border: 0;
        outline: none;
    }

    .index_news .owl-nav button.owl-prev,
    .index_news .owl-nav button.owl-next,
    .index_news button.owl-dot {
        background: none;
        color: inherit;
        border: none;
        padding: 5px 10px !important;
        font: inherit;
        background-color: rgb(58 58 58 / 15%);

    }

    .footer_community {
        padding: 20px 0 0;
        text-align: center;
    }

    .footer_about p {
        margin: 0;
        padding: 0;
        text-align: justify;
    }

    .web_map {
        text-align: center;
        padding: 10px 0 0;
    }

    .popular-carousel .owl-prev {
        position: absolute;
        top: 33%;
        left: 10px;
        border: 0;
        outline: none;
    }

    .popular-carousel .owl-next {
        position: absolute;
        top: 33%;
        right: 10px;
        border: 0;
        outline: none;
    }

    .popular-carousel .owl-nav button.owl-prev,
    .popular-carousel .owl-nav button.owl-next,
    .owl-carousel button.owl-dot {
        background: none;
        color: inherit;
        border: none;
        padding: 5px 10px !important;
        font: inherit;
        background-color: rgb(58 58 58 / 30%);

    }

    .agent_bg {
        padding: 25px 15px;
    }

    .agent .owl-prev {
        position: absolute;
        top: 35%;
        left: 0px;
        border: 0;
        outline: none;
        -moz-box-shadow: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        border-radius: inherit;
    }

    .agent .owl-next {
        position: absolute;
        top: 35%;
        right: 0px;
        border: 0;
        outline: none;
        -moz-box-shadow: inherit;
        -webkit-box-shadow: inherit;
        box-shadow: inherit;
        border-radius: inherit;
    }

    .agent .owl-nav button.owl-prev,
    .agent .owl-nav button.owl-next,
    .owl-carousel button.owl-dot {
        background: none;
        color: inherit;
        border: none;
        padding: 5px 10px !important;
        font: inherit;
        background-color: rgb(58 58 58 / 30%);

    }

    .index_product_hot .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        background-image: url(../img/hot_next.svg);
        right: 0;
        left: auto;
    }

    .index_product_hot .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        background-image: url(../img/hot_back.svg);
        left: 0;
        right: auto;
    }

    .index_product_hot .swiper-button-next,
    .index_product_hot .swiper-button-prev {
        position: absolute;
        top: 50%;
        width: 27px;
        height: 44px;
        margin-top: -22px;
        z-index: 10;
        cursor: pointer;
        -moz-background-size: 27px 44px;
        -webkit-background-size: 27px 44px;
        background-size: 17px 44px;
        background-position: center;
        background-repeat: no-repeat;
        background-color: rgb(58 58 58 / 25%);

        padding: 5px;
    }

    .search_row {
        display: flex;
    }

    .input_times {
        padding: 10px 0;
        background-color: #ffffff;
        text-align: center;
        color: #D71E1B;
        font-size: 21px;
        display: block;
        flex: 0 0;
        flex-basis: 45px;
    }

    .nav-search-input {
        position: relative;
        flex-grow: 1;
    }


    .index_brand_row:after {
        left: 10px;
        right: 10px;
        top: 10px;
        bottom: 10px;
        background: rgba(0, 0, 0, 0.25);
        border-radius: 10px;
    }

    .index_brand_more {
        transform: translateY(0%)translateX(-50%);
        -webkit-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
        top: 55%;
        /* bottom: 0; */
        left: 50%;
        position: absolute;
        padding: 5px;
        font-size: 11px;
        border: 1px solid #fff;
        z-index: 1;
    }

    .index_brand_row:hover .index_brand_more {
        /* background: rgba(0, 0, 0, 0.4); */
        top: 55%;
        /* transition: all 500ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275); */
        /* opacity: 1; */
    }

    .index_brand_row .index_brand_text {
        font-size: 21px;
        color: #fff;
        transform: translateY(-50%)translateX(-50%);
        top: 45%;
        left: 50%;
        font-weight: bold;


    }

    .index_product_bg {
        position: relative;
        background-color: #fff;
        padding: 25px 0 0px;
    }
    .brand_row_middle_btn .brand_row_middle_select{
    width: 100%;
    margin: 20px auto 0;
    }
    .flex-direction-nav a {
        text-decoration: none;
        display: block;
        width: 20px;
        /* height: 40px; */
        margin: -20 px 0 0;
        position: absolute;
        top: 45%;
        z-index: 10;
        overflow: hidden;
        /* opacity: 0; */
        cursor: pointer;
        color: rgba(0, 0, 0, 0.8);
    }
    .slider {
        padding: 0 0px;
    }
    .flexslider {
        margin: 0 0 20px;
        background: #fff;
        border: 4px solid #fff;
        position: relative;
        zoom: 1;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
        -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
        -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
        box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
      }
      .commodity_discount {
        border-left: 3px solid #D71E1B;
        padding: 0 0 0 10px;
        margin: 25px 0 0;
    }
}

@media (max-width: 640px) {
    .index_product_big_mo{
        display: none;
    }
    .grid-item {
        width: 50%;
    }

    .brand_row_top::before {
        content: " ";
        position: absolute;
        background-image: url(../img/promotion_content_bg.png);
        background-position: center -225px;
        background-repeat: no-repeat;
        width: 100%;
        height: 100%;
        z-index: 0;
        left: 0;
        top: 0;
    }

    .brand_row_middle {
        display: block;
        width: 100%;
        padding: 30px 0;
    }

    .brand_row_middle_logo {
        flex: initial;
        flex-basis: initial;
        border: 1px solid #EEEEEE;
        border-radius: 10px;
        overflow: hidden;
        width: 150px;
        margin: 0 auto;
    }

    .brand_row_middle_text {
        flex-grow: initial;
        padding-left: 0;
        padding: 15px 0;
        width: 100%;
    }

    .brand_row_middle_btn {
        font-size: 0;
        padding: 0;
        margin: 0;
        font-size: 0;
    }

    .brand_row_middle_btn li {
        width: 49%;
        display: inline-block;
        margin: 0 0.5%;
    }
}

@media (max-width: 480px) {
    .grid-item {
        width: 100%;
    }
}