/* BASIC css start */
#product-list {
    width: 100%;
    font-size: 0;
    overflow: hidden;
}
#product-list .p-top {
    width:100%;
    box-sizing:border-box;
    padding:var(--p-1) var(--p-2);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#product-list .p-top .left-box {
    width:40%;
}
#product-list .p-top .left-box .nav {
    display: flex;
    align-items: center;
    width:100%;
}
#product-list .p-top .left-box .nav a {
    font-size: var(--f-3);
    padding: 0 0 var(--p-1);
    display: flex;
    align-items: center;
    line-height: 1;

}
#product-list .p-top .left-box .nav a:after {
    content: " ";
    width: 1px;
    height: 10px;
    display: inline-block;
    background: #000;
    transform: rotate(20deg) translate(0,1px);
    margin: 0 10px;

}
#product-list .p-top .left-box .nav a:last-child:after {
    display:none;
}

#product-list .p-top .left-box .m-cate {

}
#product-list .p-top .left-box .m-cate ul {

}
#product-list .p-top .left-box .m-cate ul li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 var(--p-1) 0 0;
}
#product-list .p-top .left-box .m-cate ul li:after {
    content:" ";
    
}
#product-list .p-top .left-box .m-cate ul li a {

}
#product-list .p-top .left-box .m-cate ul li a {
    font-size: var(--f-1) !IMPORTANT;
    line-height: 1;
    position: relative;
}
#product-list .p-top .left-box .m-cate ul li a:after {
    content:" ";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #000;
    transition: all var(--speed);
}
#product-list .p-top .left-box .m-cate ul li a:hover:after,
#product-list .p-top .left-box .m-cate ul li a.sel:after{
    width:100%;
}

#product-list .p-top .center-box {

}
#product-list .p-top .center-box .g-d {
    font-size: var(--f-1);
    margin: 0 5px;
    cursor: pointer;
}
#product-list .p-top .center-box .g-d.active {
    border-bottom:1px solid #000;
}
#product-list .p-top .center-box .g-d:nth-child(2) {

}
#product-list .p-top .right-box {
    width:40%;
    text-align: right;
    position: relative;
}
#product-list .p-top .right-box h2{
    cursor: pointer;
    font-size: var(--f-1);
    transition: all var(--speed);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
#product-list .p-top .right-box:hover h2 {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
#product-list .p-top .right-box span{

}
#product-list .p-top .right-box .sort-list {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    transition: all var(--speed);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
#product-list .p-top .right-box:hover .sort-list {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}
#product-list .p-top .right-box .sort-list a{
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 0 var(--p-1);
    font-size: var(--f-1);
        position: relative;
}
#product-list .p-top .right-box .sort-list a:after {
    content:" ";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #000;
    transition: all var(--speed);
}
#product-list .p-top .right-box .sort-list a:hover:after {
    width:100%;
}


#product-list #ls2 {
    position: relative;
    width: calc(100% + 3px);
}

#product-list ul .list-li {
    width:33.333%;
    display:inline-block;
    box-sizing: border-box;
    padding: 0 3px 0 0;
    vertical-align: top;
    
}
#product-list ul.g-three .list-li {
    width:33.333%;
}
#product-list ul.g-four .list-li {
    width:25%;
}
#product-list ul.g-six .list-li {
    width:16.666%;
}


#product-list ul .list-li .img-box {
    width:100%;
    position: relative;
}
#product-list ul .list-li .img-box * {
    font-size:0;
    line-height:0;
}
#product-list ul .list-li .img-box img {
    width:100%;
}
#product-list ul .list-li .img-box .sw {

}
#product-list ul .list-li .img-box .s12 {
    position: relative;
    z-index: 1;
}
#product-list ul .list-li .img-box #img-multi {
    width: 100%;
    overflow: hidden;
}
#product-list ul .list-li .img-box #img-multi li {
    width:100% !important;
}
#product-list ul .list-li .img-box #img-multi .s-next, 
#product-list ul .list-li .img-box #img-multi .s-prev {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    width: 30px;
    height: 30px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0;
}
#product-list ul .list-li .img-box:hover #img-multi .s-next, 
#product-list ul .list-li .img-box:hover #img-multi .s-prev {
    opacity: 1;
}
#product-list ul .list-li .img-box #img-multi .s-next {
    left:auto;
    right:0;
}
#product-list ul .list-li .img-box #img-multi .s-next:after, 
#product-list ul .list-li .img-box #img-multi .s-prev:after {
    content:" ";
    width: 10px;
    height: 10px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-0%,-50%) rotate(45deg);
}
#product-list ul .list-li .img-box #img-multi .s-prev:after {
    transform: translate(-0%,-50%) rotate(-135deg);
    right: 0;
    left: auto;

}
#product-list ul .list-li .img-box .cart-button {
    position: absolute;
    left: 50%;
    bottom: var(--p-2);
    transform: translate(-50%,0);
    transition:all var(--speed);
    opacity: 0;
    z-index:2;
}

#product-list ul .list-li .img-box:hover .cart-button {
    opacity: 1;
}
#product-list ul .list-li .img-box .cart-button a{
    background: #fff;
    padding: var(--p-0) var(--p-1);
    border-radius: 5px;
    position: relative;
    display: block;
    overflow: hidden;
    transition-delay:0.1s;
    transition:all var(--speed);
}
#product-list ul .list-li .img-box .cart-button:hover a {
    background:transparent;
}
#product-list ul .list-li .img-box .cart-button a span {
    position: relative;
    z-index:2;
    color:#000;
    font-size: var(--f-1);
    line-height:1;
    transition:all var(--speed);
}
#product-list ul .list-li .img-box .cart-button:hover a span {
    color:#fff;
}
#product-list ul .list-li .img-box .cart-button a:after {
    content:" ";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    transition:all var(--speed);
    z-index:1;
}
#product-list ul .list-li .img-box .cart-button:hover a:after {
    width:100%;
}
#product-list ul .list-li .img-box .cart-button.sold-out {
    pointer-events: none;
}
#product-list ul .list-li .img-box .cart-button.sold-out a {background:none;}
#product-list ul .list-li .img-box .cart-button.sold-out a:after {
    width:100%;
}
#product-list ul .list-li .img-box .cart-button.sold-out a span {
    text-transform: uppercase;
    color: #fff;
}
#product-list ul .list-li .text-box {
    padding: var(--p-0) var(--p-2) var(--p-2);
    font-size: var(--f-1);
    text-align: center;
}
#product-list ul .list-li .text-box .ep-price {

}
#product-list ul .list-li .text-box .ep-price span{
    display:block;
    margin:0 auto;

}
#product-list ul .list-li .text-box .ep-price .discount-no{

    text-decoration: line-through;

    opacity: 0.5;
}
#product-list ul .list-li .text-box .icons {

}
#product-list ul .list-li .text-box .icons img {
    margin: 0;
    width: auto;
    height: 16px;;
}

#product-list ul .list-li .text-box .icons .MK-product-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

}

#product-list .pagene {
    width: 100%;
    box-sizing: border-box;
    padding: var(--p-2);
    text-align: center;
}
#product-list .pagene a {
    font-size: var(--f-1);
    opacity: 0.6;
    padding: 0 5px;
}

#product-list .pagene a.now,
#product-list .pagene a:first-child,
#product-list .pagene a:last-child{
    opacity:1;
}


#detailpage {
    width: 100% !IMPORTANT;
    height: 100% !IMPORTANT;
    position: absolute !important;
    top: 0 !IMPORTANT;
    left: 0 !IMPORTANT;
    box-sizing: border-box;
    transform: none !IMPORTANT;
    margin: 0 !IMPORTANT;
    z-index: 9 !IMPORTANT;
    backdrop-filter: blur(4px) !IMPORTANT;
    background: transparent !IMPORTANT;
    padding: 0 !IMPORTANT;
    transition: opacity 0.3s !IMPORTANT;
    pointer-events: none;
    opacity: 0;
}

.open #detailpage{
    pointer-events:auto;
    opacity: 1;
}

#product-list-popup {

}
#product-list-popup {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: var(--p-1);
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
}
#product-list-popup .select-box-op {
    padding: var(--p-0) 0 0;
}
#product-list-popup .select-box-op select {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    height: 30px;
    background: var(--back1);
    color: #000;
    font-size: var(--f-1) !IMPORTANT;
    line-height: 1 !IMPORTANT;
    text-align: center;
    border: none !important;
}
#product-list-popup .MK-oneclick-only-color {
    width: calc(100% + 10px);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
#product-list-popup .MK-oneclick-only-color li{
    flex: 1;
    width: auto;
    height: 30px;
    margin: auto;
    float: none;
    box-sizing: border-box;
    border: 1px solid var(--back1);
    position: relative;
} 
#product-list-popup .MK-oneclick-only-color li.MK-oneclick-sel:after {
    content:" ";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 100%;
    backdrop-filter: invert(1);
}
#product-list-popup .MK-oneclick-only-color li a {
    padding: 0;
    width: 100%;
    height: 100%;
    border: none;
}
#product-list-popup .MK-oneclick-only-color li span{
    width: 100%;
    height: 100%;

} 

#product-list-popup .MK-oneclick-only-text {
    width: 100%;
    background: var(--back1);
}
#product-list-popup .MK-oneclick-only-text li{
    float: none;
    display: inline-block;
    vertical-align: top;
        margin: 0;
} 
#product-list-popup .MK-oneclick-only-text li a {
    padding: 0;
    border: none;
}
#product-list-popup .MK-oneclick-only-text li span{
    font-size: var(--f-1) !IMPORTANT;
    max-width: initial;
    height: auto;
    line-height: 30px !IMPORTANT;
    min-width: auto;
    width: 30px;
} 
#product-list-popup .MK-oneclick-only-text li.MK-oneclick-sel span {
text-decoration: underline;
}


#product-list-popup .select-box-op select option{
    font-size: var(--f-1) !IMPORTANT;
    line-height: 1 !IMPORTANT;
}
#product-list-popup .product-count {
    width: 100%;
    height: 30px;
    margin: var(--p-0) 0 0;
    background: var(--back1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#product-list-popup .product-count a {
    font-size: var(--f-1) !important;
    line-height: 30px !important;
    width: 30px;
    text-align: center;
}
#product-list-popup .product-count input {

    font-size: var(--f-1) !important;
    line-height: 30px !IMPORTANT;
    border: none !important;
    text-align: center !important;
    float: none !IMPORTANT;
    background: var(--back1);
    
}
#product-list-popup .or-button {
    margin: var(--p-0) 0 0;
    display: flex;
    justify-content: space-between;
}
#product-list-popup .or-button a {
    width: calc(50% - 5px);
    height: 30px;
    background: var(--back1);
    color: #000;
    display: block;
    text-align: center;
    position: relative;
    transition: all var(--speed);
}
#product-list-popup .or-button a:hover {
    color:#fff;
}
#product-list-popup .or-button a span {
    line-height: 30px !important;
    font-size: var(--f-1) !important;
    position: relative;
    z-index:2;
}
#product-list-popup .or-button a:after {
    content:" ";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #000;
    transition: all var(--speed);
    z-index: 1;
}
#product-list-popup .or-button a:hover:after {
    width:100%;
}
#MK_basketpage {
    display: none !IMPORTANT;
}


.discount-yex{color:#fc0000; }

/* BASIC css end */

