@import "https://fonts.googleapis.com/css?family=Noto+Sans+TC:300,400,700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap";


.fade-in {
  opacity: 0;
  transition: opacity 2s ease-in; /* 渐变时间和效果 */
}
 
/* 当图片加载完毕时改变opacity */
.fade-in.loaded {
  opacity: 1;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    color: #000;
    font-family: SF Pro TC,SF Pro Text,PingFang TC,Roboto,Noto Sans TC,sans-serif;
}

*{
    box-sizing: border-box;
    text-rendering: optimizeLegibility!important;
    -webkit-font-smoothing: antialiased!important;
    -webkit-tap-highlight-color: transparent;
}


button {
    border: none;
    background-color: #fff;
    color: #000;
}

div::-webkit-scrollbar{
	display: none;
}

a:hover{
	text-decoration: none;
}


.container-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.subscriptionListGridContainer {
    grid-template-columns: .7fr 1.4fr .9fr .8fr 1.2fr;
    grid-gap: 0 0;
}



.container-checkbox, .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid #e0dbdb;
}
.container-checkbox {
    display: block;
    position: relative;
    margin-bottom: 18px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container-checkbox input:checked~.checkmark {
    background-color: #000;
    border: 1px solid transparent;

}

.container-checkbox input:checked~.checkmark:after {
    display: block;
}

.container-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
   	transform: rotate(45deg);
}

.container-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.header{
	height: 85px!important;
	border-bottom: 1px solid #efefef;
	position: fixed;
	width: 100%;
	top: 0px;
	background-color: #fff;
	z-index: 2;
}

.header-container{
	width: 95%;
	margin:auto;
	height: 82px!important;
}

.header-left,.header-right{
	height: 84px!important;
	line-height: 85px;

}
.header-right{

	text-align: right;
}

.header-left-nav,.header-right-nav{
	color:#000;
	display: inline-block;
	height: 100%;
	font-weight: bold;
	margin-left: 24px;
}

.header-left-nav:hover{
	color:#000;
	border-bottom: 2px solid #000;
}

.header-left-nav-active{
    color:#000;
    border-bottom: 2px solid #000;
}


.header-cartBox {
    position: fixed;
    right: 48px;
    top: 65px;
    width: 270px;
    padding: 25px;
    border-radius: 10px;
    border-left: 1px solid #efefef;
    border-top: 1px solid #efefef;
    z-index: 7;
    background-color: #fff;
    -webkit-box-shadow: 3px 3px 8px rgba(0,0,0,.1);
    box-shadow: 3px 3px 8px rgba(0,0,0,.1);
    display: none;

}

.header-cart-null{
	text-align: center;
	font-weight: bold;
	padding: 50px 0px;
	font-size: 15px;
}


.header-cart-list{
	display: flex;
	width: 100%;
}

.header-cart-list-img{
	width: 70px;
}

.header-cart-list-img img{
	width: 100%;
	
}

.header-cart-list-msg{
	width: calc(100% - 70px);
    min-height: 95px;
 	font-size: 13px;
    line-height: 1.5rem;
    padding-left: 15px;
    padding-right: 15px: 
   
}

.header-cart-list-msg p{
	
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -o-text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    
}


.m-header-container{
	width: 90%;
	margin: auto;
	height: 65px!important;
	line-height: 65px;
	text-align: center;

}

.layui-col-xs4:first-child{
	text-align: left;
}

.layui-col-xs4:last-child{
	text-align: right;
}

.m-header{
	position: fixed;
	top: 0px;
	width: 100%;
	display: none;
	z-index: 3;
	background-color: #fff;

}

.header-search{
	width: 95%;
	position: fixed;
	left: 2.5%;
	top: 20px;
	display: none;
	z-index: 2;
}

.header-search input{
	width:300px;
	background-color: #f6f5f5;
	border:none;
	border-radius: 20px;
	float: right;
	padding:13px 20px;

}

.searchBarClearIcon, .searchBarIcon{
    position: absolute;
    width: 30px;
    height: 30px;
    top: 5px;
}

.searchBarClearIcon{
	right: 45px;
}

.searchBarIcon{
    right: 5px;
    background-color: #000;
    border-radius: 50%;
}

.header-search a{
	display: flex;
	justify-content: center;
	align-items: center;
}

.cartButton{
	display: block;
	height: 45px;
	line-height: 45px;
	text-align: center;
	color:#fff;
	background-color: #000;
	border-radius: 15px;
	margin: 30px 0 10px 0;
}

.cartButton:hover{
	color:#fff;
	background-color: #333333;
}

.cart-msg-info{
	font-size: 12px;
}

.footer{
	flex-direction: column;
	margin-top: 50px;
	padding-top: 15px;
	border-top: 1px solid #efefef;
}

.footer-container{
	width: 90%;
	height: auto;
	display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.footer-line{
	width: 90%;
	border-top: 1px solid #efefef;
	padding:15px 0 40px 0;
	color: #9b9b9b;
	margin: auto;
}


.footer ul li{
	width: 100%;
    font-size: 13px;
    line-height: 1.5;
    margin: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
 	white-space: normal;
	
}

.bolderText{
	font-weight: 700!important;
}

.socialColumn{
	float: right;
}
.socialColumn li {
    flex-direction: row;
    width: 100%;
    font-size: 13px;
    padding: 12px 0 0;
}

.socialColumn img{
	height: 22px;
}

.socialColumn li a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    margin-left: 20px;
}

.footer-line-right{
	text-align: right;
	color:#000;
	font-weight: bold;
}

.footer-nav:last-child(){
	display: none;
}

.m-footer{
	display: none;
}

.m-footer-main{
	border-top: 1px solid #efefef;
}

.m-footer-container{
	width: 90%;
	margin: auto;
}

.m-nav-box{
	width: 100%;
	display: flex;
	padding: 20px 0;
	
}

.m-nav-title{
	font-weight: bold;

}
.m-nav-icon{
	position: absolute;
	right: 5%;
}
.m-nav-icon img{
	width: 12px;
	justify-content: center;
}

.m-nav-list{
	width: 100%;
	
}
.m-nav-list a{
	display: block;
	height: 45px;
	line-height: 45px;
	padding-left: 10px;
	border-top: 1px solid #efefef;
}

.nav-hide{
	display: none;
}

.m-nav-icons a{
	display: inline-block;
	height: 28px;
	width:28px;
	margin-right: 15px;
}

.m-nav-icons img{
	height: 100%;
}

.m-nav-beian{
	margin-top: 20px;
	line-height: 20px;
	color:#9b9b9b;
}


.header-m-navs {
    position: fixed;
    top: 65px;
    left: 0;
    max-width: 450px;
    width: 100vw;
    background-color: #fff;
    height: calc(100% - 65px);
    z-index: 4;
   	flex-direction: column;
    border-top: none;
}


.header-nav-search{
	width: 100%;
	width: 90%;
	margin: auto;
}

.header-nav-search input{
	width: 100%;
	border: none;
	background-color: #f6f5f5;
	text-indent: 1rem;
	padding:12px 0px;
	border-radius: 20px;
}


.m-searchBarIcon{
	display: flex;
	justify-content: center;
	align-items: center;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 5px;
    right: 25px;
	background-color: #000;
    border-radius: 50%;
}

.header-nav-title{
	width: 90%;
	margin: auto;
	margin-top: 20px;
}

.layui-tab-title{
	border:none;
}


.layui-tab-title li{
	min-width: 50px;
	font-weight: bold;
	padding:0px;

}

.m-category-list{
	font-weight: bold;
	width: 100%;
	max-width: 400px;
}

.layui-tab-brief>.layui-tab-title .layui-this{
	color:#000;
}

.layui-tab-brief>.layui-tab-more li.layui-this:after, .layui-tab-brief>.layui-tab-title .layui-this:after {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #000;
}

.m-category-list div{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.m-category-list a{
	display: block;
	width: 100%;
	font-size: 13px;
	padding:10px 0px;
}

.m-list-icons{
	width: 12px;
    height: 7px;
    rotate: -90deg;
}

.hidden{
	display: none;
}

.layui-unselect,.layui-tab-bar{
	display: none;
}

.content{
	margin-top: 85px;
}

.swiper-pagination-bullet-active{
	background:#fff;
}

.product-box{
	height: auto;
	width: 100%;
	margin:auto;
	max-width: 1026px;
	margin-top:15px;
}


.product-box h3{
	width: 100%;
    font-size: 22px;
    line-height: 32px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.product-box p{
	margin-top: 10px;
}

.product-box b{
	display: block;
	margin-top: 5px;
	
}

.product-box span{
	color:#d0021b;
}


.product-box img{
	width: 100%;
	border-radius: 5px;
}

.more-products{
	display: inline-block;
	color: #000;
	padding:10px 20px;
	border:1px solid #000;
	border-radius: 10px;
	font-weight: bold;
	font-size: 15px;
	margin-top: 20px;
}

.more-products:hover{
	color:#000;
	text-decoration: underline;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    background-image: url(https://cdn.quickper.com/static/img/icons/swipeNextArrow.png)!important;
    right: 5px!important;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    background-image: url(https://cdn.quickper.com/static/img/icons/swipePrevArrow.png)!important;
    left: 5px!important;
}

.swiper-button-next, .swiper-button-prev {
    width: 40px!important;
    height: 40px!important;
    background-size: 40px 40px!important;
    top: 45%!important;
}

.swiper-button-next:after{display:none; }.swiper-button-prev:after{display:none; }

.mid-banner{
	margin-top: 30px;
}
.mid-banner img{
	width: 100%;
	max-height: 520px;
}

.swiper-products{
	max-width: 240px;
}

.swiper-products a:hover{
	color:#000;
}

#m-banner{
	display: none;
}

#m-banner img{
	width: 100%;
	height: auto;
}

.join-us{
	text-align: center;
	padding:20px 0;
	background-color: #f6f5f5;
	font-weight: bold;
	text-decoration: underline;
	font-size: 14px;
	display: none;
}

.mtop-navs{
	display: none;
	margin-top: 65px;
}

.m__home__categories {
    padding: 0px 18px 13px 8px;
    scrollbar-width: none;
    min-width: 100%;
    background-color: #fff;
    width: auto;
    display: none;
    overflow-x: auto;
    overflow-y: hidden;
}

.m__home__categories li {
    width: 80px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.m__home__categories li a {

    display: flex;
  
    justify-content: center;
    
    align-items: center;
    font-size: 13px;
    color: #000;
    margin-right: 20px;
    width: 100%;
    border-radius: 50%;
    flex-direction: column;
    text-decoration: none;
    padding: 0 4px;
}


.m__home__categories li a .circleBackCategory {
	display: inline-block;
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: url("/Public/theme/default/images/gradientCircle2.png");
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 8px;
}


.m__home__categories li a .circleCategory {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #e6e6e6;
    border: 3px solid #fff;
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(#fff,#000);
}

.m__home__categories li a .circleCategory img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.m__home__categories li a .home__categoryName {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    height: 15px;
}

.imageLazyloadBox, .imageLazyloadBox-white {
    width: 100%;
    -webkit-animation: Gradient 1.25s ease infinite;
    animation: Gradient 1.25s ease infinite;
    overflow: hidden;
}

}
.imageLazyloadBox {
    background: linear-gradient(-45deg,#f0f0f0,#f5f5f5,#e8e8e8,#f5f5f5);
    background-size: 400% 400%;
}

.toolbar{
	position: fixed;
	top: 85px;
	right: 0;
	width: 100%;
	height: 60px;
	z-index: 1;
	transition: .3s ease;
	display: flex;
  	justify-content: flex-end;
  	align-items: center;
  	background-color: #fff

}
.toolbarBox{
	width: 95%;
	height: 100%;
	margin:auto;
	overflow-x: auto;
	overflow-y: visible;
	flex-wrap: nowrap;
	flex-direction: row;
	display: flex;
    justify-content: flex-end;
	align-items: center;
}

.toobarBtnGroup{
	display: flex;
 	justify-content: flex-end;
  	align-items: center;

	
}

.toobarBtn{
	padding: 9px 14px;
    font-size: 13px;
    line-height: 1;
    color: #9b9b9b;
    border: 1px solid #9b9b9b;
    border-radius: 40px;
    cursor: hover;
    margin-right: 10px;
    background-color: #fff;
}

.toolbarBtnActive{
	color: #000;
    border: 2px solid #000;
}

.functionBarButtonIcon {
    width: 10px;
    margin-left: 5px;
    margin-bottom: 1px;
}

.cate-left-nav{
	width: 200px;
    position: sticky;
    top: 145px;
    margin-bottom: 50px;
    padding-right: 25px;
    transition: .3s ease;
    opacity:1;
}

.cateTitle{
	font-size: 15px;
	font-weight: bold;
	margin-bottom: 15px;
}

.cate-left-nav li {
    width: 100%;
    display: block;
    padding: 10px 0;
}

.sideBar__tree,.row_tree {
 	display: flex;
   	align-items: center;
   	justify-content: space-between;
}

.cate-left-nav a:hover{
	color:#000;
}

.subMenuIcon{
	width: 12px;
}

.bolderText{
	font-weight: 700!important;
}

.sideBar__tree {
    text-decoration: none;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    pointer-events: auto!important;
}
.tree-2 {
	margin-top: 10px;
}
.tree-2 li{
	text-indent: 1rem;

}

#seeAll:hover{
	color:rgb(0,0,0,0.65);
}

.products-list{
	width:calc(100% - 200px);
	margin: 0 0 30px;
	padding-top: 145px;

}

.product-ul{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 40px 20px;
	list-style: none;
}

.products-list li a, .products-list li a img{
	width: 100%;
	display: inline-block;
	text-decoration: none;
	border-radius: 5px;
}

.products-list li a{
	height: 100%;
	display: inline-block;
}

.products-list li a:hover{
	color:#000;
}

.product-ul div{
	margin-top: 10px;
}

.catebox{
	width: 95%;
	margin:auto;
	display: flex;
	align-items: flex-start;
	min-height: 1000px;
}

.products-null{
	text-align: center;
	margin-top: 100px;
	color: #9b9b9b;
	font-size: 13px;
	letter-spacing:1.5px;
}
.margin_small{
	height: 1px;
	width: 100%;
	margin: 5px 0;
}

.products-list span{
	font-weight: normal;
}
.products-list b{
	margin-left: 5px;
	color:#d0021b;

}

.front-product-sort-box{
    position: absolute;
    top: 55px;
    width: 120px;
    background-color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: .6em;
    -webkit-box-shadow: 3px 3px 8px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 8px rgb(0 0 0 / 10%);
    z-index: 2;
}

.functionBarButtonCircleStyle-delete-button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #e6e6e6;
    margin-left: 5px;
    border:none;
}


.functionBarButtonCircleStyle-delete-button img{
    width: 10px
}

.front-product-sort-button{
	display: flex;
	justify-content: space-between;
    align-items: center;
    font-size: 13px;
    line-height: 1.5;
    margin: 5px 0;
    color: #000;
}

.labelBoxTitle{
	font-size: 24px;
	font-weight: bold;
	margin-top: 10px;
}

.labelBoxList{
	margin-top: 30px;
}

.labelBoxListBtnActive{
	border:2px solid #000;
	color:#000;
}

.front-product-price-box{
    position: absolute;
    top: 55px;
    right: 20px;
    width: 300px;
    background-color: #fff;
    text-align: left;
    padding: 10px;
    border-radius: .6em;
    -webkit-box-shadow: 3px 3px 8px rgb(0 0 0 / 10%);
    box-shadow: 3px 3px 8px rgb(0 0 0 / 10%);
    z-index: 2;
}

.price-range-wrapper{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 20px 1fr;
    grid-gap: 5px 5px;
}

.price-input-box{
    border: 2px solid #efefef;
    border-radius: .6em;
    height: 65px;
    position: relative;
}

.price-range-label{
    position: absolute;
    color: #9b9b9b;
    top: 10px;
    left: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.price-range-field-wrapper{
    position: absolute;
    width: calc(100% - 20px);
    top: 30px;
    left: 10px;
    display: grid;
    grid-template-columns: 10px 1fr;
    grid-gap: 5px 5px;
    font-size: 13px;
    line-height: 1.5;
}

.alignLeftCenter{
	display: flex;
 	justify-content: flex-start;
  	align-items: center;
    flex-direction: row;
}


.price-range-field{
    width: 100%;
    border: none;
    background-color: #fff;
}

.grayText {
    color: #9b9b9b!important;
}

.price-range-search-button{
    cursor: pointer;
    display: inline-block;
    width: auto;
    padding: 10px 20px;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 13px;
    border-radius: .8em;
    text-align: center;
    text-decoration: none;
    margin: 0;
}

.login{
	padding: 30px 0 100px;
    max-width: 420px;
    width: 90%;
    min-height: 100vh;
    margin: auto;
   
}

.login h3{
	font-size: 24px;
	font-weight: 700;
	margin-top: 30px;
}

.login h4{
	font-size: 18px;
	font-weight: 700;
	margin-top: 15px;
}

.loginforface{
    display: block;
	position: relative;
	background-color: #fff;
	border:2px solid #e0dbdb;
	color:#000;
	width: 100%;
	padding: 15px 0;
	border-radius: 10px;
	text-decoration: none;
	letter-spacing:.5px;
	font-weight: 700;
	text-align: center;
	font-size: 15px;
	margin-top: 35px;
}

.loginforface:hover{
    color:#000;
    cursor: pointer;
}
.buttonLeftIcon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 23px;
}

.login p{
	text-align: center;
	margin:20px 0;
	font-size: 13px;
	border-top: 1px solid #efefef;
	padding:10px 0;
}

.loginForm{
	margin-top: 30px;
}
.loginForm input{
	font-family: inherit;
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    outline: 0;
    font-size: 15px;
    color: #000;
    padding: 7px 0;
    background: 0 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    line-height: inherit;
    overflow: visible;
}

.loginForm input:focus + .form_label{
	top:0;
	font-size: 12px;
	color: #000;
    font-weight:bold;
    cursor: text;
    transition: .2s;
}


input::-webkit-input-placeholder{
    opacity: 0;
}

.form__field:placeholder-shown ~ .form__label {
    font-size: 15px;
    font-weight: 400;
    color: #ababab;
    cursor: text;
    top: 20px;
}

.form__field:focus  + .form__label{
    position: absolute;
    top: 0;
    display: block;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 12px;
    color: #000;
    font-weight: 700;
}

.form__label {
    position: absolute;
    top: 0px;
    display: block;
    -webkit-transition: .2s;
    transition: .2s;
    font-size: 12px;
    color: #000;
    font-weight: 700;
}

.loginForm input:focus{
	border-bottom:2px solid #000;
}


.form_group {
    position: relative;
    padding: 15px 0 0;
    width: 100%;
    vertical-align: baseline;
    margin-top: 22px;
}



.highlightRedText {
    font-size: 11px;
    font-weight: 400;
    margin-top: 10px;
    color: #d0021b!important;
}

.defaultBtn{
	display: inline-block;
    width: 100%;
    padding: 15px 0;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.defaultBtn:hover{
	background-color: #333;
}
.loginForm_footer{
	margin-top: 25px;
}

.loginForm_footer a{
	display: block;
	color:#000;
	font-weight: bold;
	text-decoration: underline;
	padding:8px 0;
	font-size: 13px;
}

.blockLine {
    width: 100%;
    clear: both;
    border-bottom: 1px solid #efefef;
}

.loginForm_footer a:hover{
	text-decoration: none;
}

.form_group_title{
	font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-top:12px;
}

.selector-first-small {
    width: 40%;
}

.selectCustomStyle {
    width: 100%;
    height: 38px;
    padding: 7px 0;
    font-size: 15px;
    line-height: 1.5;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url(https://cdn.quickper.com/static/img/icons/downArrow_black.png) no-repeat 100%;
    background-size: 10px;
    overflow: hidden;
    color: #000;
}

.selector-second-medium {
    width: calc(60% - 20px);
    margin-left: 20px;

}

.selectorOneThirdBox{
	width: 28.57143%;
}

.alignBetween__box{
	display: flex;
   	justify-content: space-between;
   	align-items: center;
}

.joinUs__banner{
    height: 600px;
    background-color: #c1cad5;
  	display: flex;
  	flex-direction: column;
    justify-content: center;
   	align-items: center;
}

.joinUs__title--large{
    font-size: 60px;
    font-weight: 600;
    line-height: 84px;
    margin-bottom: 24px;
  	display: flex;
}

.joinUs__banner__subtitle{
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 24px;
}

.joinUs__banner__buttons{
 	display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.joinUs__banner__buttons button{

    min-width: 138px;
}


.functionBarButtonCircleStyle--large {
    padding: 14px 26px;
    font-size: 14px;
}

.functionBarButtonCircleStyle--large, .functionBarButtonCircleStyle--medium {
    border: 2px solid #000;
    border-radius: 30px;
    font-weight: 600;
    line-height: 19.6px;
    background-color: transparent;
}

.functionBarButtonCircleStyledark {
    background-color: #000;
    color: #fff;
}

.joinUs__banner__content p{
	font-size: 14px;
}

.joinUs__description{
  	display: flex;
  	flex-direction: column;
  	align-items: center;
    padding: 100px 0;
}

.joinUs__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 60px;
}

.joinUs__description__list{
    display: grid;
    gap: 50px;
    max-width: 1230px;
    grid-template-columns: repeat(4,minmax(0,1fr));
}

.joinUs__description__item{
  	display: flex;
   	flex-direction: column;
}

.joinUs__description__item__icon{
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-color: #fafafa;
  	display: flex;
    justify-content: center;
  	align-items: center;
    align-self: center;
    margin-bottom: 24px;
}

.joinUs__description__item__title{
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 16px;
    white-space: pre-line;
}

.joinUs__description__item__content{
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #717171;
    white-space: pre-line;
}
.planContent{
	width: 100%;
	max-width: 1400px;
	margin:auto;

}


.planBox{
	height: 100%;
    border: 2px solid #e0dbdb;
    border-radius: 26px;
    padding: 30px;
    background: #fff;
    position: relative;
 	display: flex;
  	flex-direction: column;
    justify-content: space-between;
}

.joinUs__plan__title{
	text-align: center;
}

.content__title{
    margin-bottom: 20px;
  	flex-wrap: wrap;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
   	display: flex;
  	justify-content: space-between;
    align-items: center;

}


.content__title h3{
	font-size: 16px;
}

.content__subtitle__cycle{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #717171;
    margin-bottom: 10px;
}

.content__subtitle{
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 10px;
}

.content__subtitle__price{
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
}

.content__detail{
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 24px;
    color: #717171;
}

.content__blockLine {
    margin-bottom: 24px;
}

.blockLine{
    width: 100%;
    clear: both;
    border-bottom: 1px solid #efefef;
}

.content__policy{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
   	flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.content__policy, .content__policy__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.content__policy__icon{
    width: 20px;
    height: 20px;
    margin-right: 16px;
}

.tags{
    display: flex;
    gap: 10px;
}

.item__tags{
    position: absolute;
    right: 30px;
    top: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

}

.tag{
	display: block;
    background-color: #000;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
}


.joinUs__plan__remark{
	margin-top: 25px;
	font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #717171;
    width: 100%;
}

.joinUs__plan{
    padding: 100px 0;
 
    display: flex;
   
    flex-direction: column;
  
    align-items: center;
    background-color: #fafafa;
}

.planItem{
	max-width: 360px;
	height: 100%;
    border-radius: 26px;
    padding: 30px 15px;
    position: relative;
  	display: flex;
    flex-direction: column;
  	justify-content: space-between;

}

.joinUs__qa{
    padding: 100px 0;
    display: flex;
 	flex-direction: column;
 	align-items: center;
 	justify-content: center;
}

.joinUs__title{
    font-size: 40px;
    font-weight: 600;
    line-height: 56px;
    margin-bottom: 60px;
}

.joinUs__qa__list{
    max-width: 1020px;
    width: 100%;
    margin-bottom: 24px;
}

.JoinUs_card{
	border: 2px solid #000;
    padding: 30px;
    border-radius: 16px;
    -webkit-transition: border .3s;
    transition: border .3s;
    margin-top: 20px;
}



.joinUs_card_title{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
}

.joinUscontent{
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
  	margin-top: 20px;
}

.joinUs__qa__content{
	margin-top: 25px;
	font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #717171;
    max-width: 1020px;
    width: 100%;
}

.joinUs__qa__content__link{
	text-decoration: underline;
	color:#333;
}

.joinUs__block{
   	display: flex;
  	flex-direction: column;
    align-items: center;
    padding: 158px 0;
}


.joinUs__block__title{
    margin-bottom: 24px;
    white-space: pre-line;
    font-size: 60px;
    font-weight: 600;
    line-height: 84px;
    text-align: center;
}

.joinUs__block__content{
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #717171;
    margin-top:25px;
}

.joinUs__block__content__link{
	color:#333;
	text-decoration: underline;
}


.productDetail__infoBox {
    width: 100%;
    position: relative;
}

.product__alignBox {
    max-width: 1400px;
    width: 95%;
    margin: auto;
    justify-content: flex-start!important;
    align-items: flex-start!important;
    padding: 20px 0 30px;
}


.productDetail__imageBox {
    width: 45%;
}

.productDetail__imageBox .productImageWrapper {
    width: 100%;
    margin-bottom: 15px;
    cursor: default;
}

.m__productDetail__image__invalid__overlay, .product__UnavailableText, .productDetail__imageBox .productImageWrapper {
    display: flex;
   	justify-content: center;
   	align-items: center;
}

.imageLazyloadBox, .imageLazyloadBox-white {
    width: 100%;
    -webkit-animation: Gradient 1.25s ease infinite;
    animation: Gradient 1.25s ease infinite;
    overflow: hidden;
}

.imageLazyloadBox {
    background: linear-gradient(-45deg,#f0f0f0,#f5f5f5,#e8e8e8,#f5f5f5);
    background-size: 400% 400%;
}

.productDetail__imageBox .productImageWrapper img {
    width: 100%;
    height: 100%;
}

.RADIUS2 ,.global-image-border {
    border-radius: .3em;
}

.productDetail__detailBox {
    width: 55%;
   	position: sticky;
    right: 0;
    top: 85px;
    transition: .3s ease;
}

.productDetail__detail {

    width: 460px;
    margin: 0 auto;
    text-align: left;
    max-height: calc(100vh - 110px);
  	overflow-x: hidden;
    overflow-y: auto;

}
.platform-fee-product-list-image__medium{
    width: 90px;
   	object-fit: cover;
}

.defaultPlatformFeeImage{
	max-width: 90px;
}

.productDetail__detailBox,.productDetail__detailBox__leftCol {
  	display: flex;
    justify-content: center;
   
}

.productDetail__detailBox, .productDetail__detailBox__leftCol, .productDetail__informationBox {
    align-items: flex-start;
}

.product__alignBox, .product__alignBox__threeCol, .productDetail__informationBox a, .productDetail__paymentPlanButton__mainInfo, .productFinalItem__button__content {
   
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alignLeftCenter {
  	flex-direction: row;
}

.frontPageTitle {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
}

.product_info_price, .product_info_link, .product_info_no{
	margin-top: 15px;
	letter-spacing:.5px;
}

.product_info_price{
	font-size:15px; 
	font-weight: 700;
	color:#d0021b;
}
.product_info_price del{
	color:#000;
}

.product_info_link{
	font-size: 13px;
	color:#000;
}

.product_info_link a:first-child, .product_info_no{
	color:#9b9b9b;

}

.productDetail__content {
    max-width: 100%;
    width: auto;
    word-wrap: break-word;
    width: 100%;
   
    white-space: pre-wrap;
    line-height: 1.5;
    font-size: 13px;
    text-align: left;
    color: #000;
    word-break: break-all;
    padding-top: 20px;

}

.productDetail__content__lineFive {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.detail-description-see-more-button{
    width: 100%;
    background-color: #fff;
    color: #000;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
    display: inline-block;
    margin-top: 15px;
}

.detail-description-see-more-button:hover{
	text-decoration: underline;
	color: #535353;
}

.product-promotion-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px 10px;
}


.product-promotion-item {
    width: 100%;
    display: grid;
    grid-template-columns: 20px 1fr;
    grid-gap: 10px 10px;
}

.alignLeftTop {
	
    flex-direction: row;
 	display: flex;
   	justify-content: flex-start;
   	align-items: flex-start;
}


.product-promotion-condition-block {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}

.product-promotion-title, .product-promotion-title:active, .product-promotion-title:hover {
    color: #000;
    text-decoration: none;
}

.product-promotion-title {
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.product-promotion-title, .promotion-extra-list-spec-box, .sub-pop-up-content-footer-box {
   
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.product-promotion-icon, .product-promotion-icon img {
    width: 100%;
}

.groupTitle__topSpace {
    margin-top: 15px;
}

.remarkText, .remarkText__sm {
    color: #9b9b9b;
    line-height: 1.5;
    text-align: left;
    letter-spacing: .5px;
}

.remarkText {
    font-size: 13px;
}

.productDetail__information {
    width: 100%;
}

.productDetail__informationBox {
    flex-direction: column;
    width: 100%;
    margin: 0 0 15px;
    font-size: 13px;
}

.product-detail-sub-spec-list, .productDetail__informationBox, .productDetail__paymentPlanButton {
   	display: flex;
   	justify-content: flex-start;
}

.productDetail__informationBox a {
    width: 100%;
    height: 30px;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    font-weight: 700;
}

.productDetail__informationBox a .infoToggleIcon {
    width: 11px;
}

.relativeP {
    position: relative;
}

.fullBox, .fullWidth, .parentContainer {
    width: 100%;
}

.fullBox {
    padding: 5px 0;
}

.hideButton {
    display: none!important;
}

.productDetail__informationContent {
    white-space: pre-wrap;
    font-size: 13px;
    line-height: 1.8;
    margin-top: 10px;
}

.informationBox-link span{
	font-weight: normal;
	letter-spacing:0.5px;
}
.informationBox-link span:hover{
	text-decoration: underline;
}

.groupTitle__topSpace {
    margin-top: 15px;
}

.mobileWidth {
    width: 100%;
    margin: auto;
}

.website-info-block{
    padding: 24px;
    border-radius: 20px;
    background: #f8f8f8;
}

.store-lead{
    width: 790px;
    margin-bottom: 16px;
    padding: 24px;
    border-radius: 20px;
    background-color: #fff;
}

.store-lead__title{
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 20px;
}

.store-lead__content{
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 19.6px;
}

.store-lead__button{
    display: inline-block;
    line-height: 19.6px;
}
.store-remark{
    font-size: 14px;
    line-height: 1.5;
    color: #9b9b9b;
}

.store-products{
	height: auto;
    width: 100%;
    margin: auto;
    max-width: 1400px;
    margin-top: 15px;

}

.swiper-store-products{
	max-width: 335px;
}

.pop-up-small-button {
    background-color: #000;
    padding: 11px 21px;
    color: #fff;
    font-size: 14px;
    letter-spacing: 4px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    border-radius: .6em;
    border:none;
    font-weight: normal;
}

.pop-up-content-box {
    width: 100%;
    margin: auto;
    overflow-y: scroll;
    height: calc(100% - 95px);
    margin-top: 85px;
}

.pop-up-content {
    max-width: 1100px;
    width: 90%;
    margin: auto;
}

.product-detail-desk-pop-up-wrapper{
    padding-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}

.product-detail-desk-pop-up-col{
    padding-bottom: 30px;
}

.alignFlexWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.staticForm__label {
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.productDetail__paymentPlanButtonBox {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px 10px;
    margin-top: 10px;
}

.productDetail__paymentPlanButton__active {
    border: 2px solid #000!important;
}

.productDetail__paymentPlanButton {
    flex-direction: column;
    border: 2px solid #e0dbdb;
    color: #000;
    padding: 20px 15px;
    border-radius: 10px;
    text-decoration: none;
}

.productDetail__paymentPlanButton {
    align-items: center;
}

.productDetail__paymentPlanButton__mainInfo {
    width: 100%;
    flex-direction: row;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
}

.productDetail__paymentPlanButton__subInfo {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
}

.subscription-freeShippingText {
    position: absolute;
    right: -46px;
    top: -13px;
    font-size: 11px;
    color: #7ed321;
}

.highlightRedText, .redText {
    color: #d0021b!important;
}

.product-detail-sub-spec-list-item {
    color: #000;
    padding: 10px;
    border: 2px solid #e0dbdb;
    border-radius: .6em;
    font-weight: 700;
    font-size: 13px;
    margin-top: 15px;
    line-height: 1.5;
   	transition: .3s ease;
}

.product-detail-sub-spec-list-item__active{
	border:2px solid #000;
	background-color: #fff;
}

.staticForm__label {
    font-size: 15px;
    line-height: 22px;
    font-weight: 700;
}

.quantity-circle-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e0dbdb;
    font-size: 11px;
    -webkit-transition: .3s ease;
    transition: .3s ease;
}

.product-detail-quantity-label {
	border:none;
	background-color: transparent;
    font-size: 14px;
    font-weight: 700;
    min-width: 50px;
    color: #000;
    text-align: center;
    padding-bottom: 5px;
    margin: 0 10px;
    border-bottom: 1px solid #e0dbdb;

}

.defaultButton__unactive {
    background-color: #d8d8d8;
    cursor: default;
}

.defaultButton__unactive:hover{
	background-color: #d8d8d8;
}

.products-slide{
	width: 100vw;
}

.products-slide{
	width: 100%;
	height: auto;
	margin-top: 65px!important;
}

.products-slide img {
    width: 100%;
   
}

.addcart-header{
	height: 85px!important;
	position: fixed;
	width: 100%;
	top: 0px;
	background-color: #fff;
	z-index: 2;
}


.cart__align {
    width: 100%;
    margin: 50px auto 0;
}

.pageTitle__box {
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
}

.frontPageTitle {
    color: #000;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
}

.centerChildBox {

    display: flex;
  	justify-content: center;
  	align-items: center;
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding-bottom: 50px;
}


.alignFooter {
    max-width: 900px;
    margin: auto;
}


.align__container {
    width: 95%;
    margin: auto;
    height: 100%;
    position: relative;
    padding-top: 100px;
}

.align__container{
	display: flex;
   	justify-content: flex-start;
   	align-items: flex-start;
}

.cart-list-grid-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 40px 1fr 1.5fr 1fr 1.3fr 1fr 50px;
    grid-gap: 20px 20px;
    margin-top: 10px;
}

.cart-list-grid-title {
    font-size: 13px;
    line-height: 1.5;
    color: #9b9b9b;
}

.cart-remark-block {
    width: 100%;
    margin: 20px auto;
}

.remarkTextBox {
    color: #000;
    background-color: #f6f5f5;
    line-height: 1.5;
    font-size: 13px;
    padding: 15px;
    border-radius: .6em;
}

.alignCenter{

 	display: flex;
    justify-content: center;
    align-items: center;
}

.cart-list-grid-item {
    font-size: 13px;
    line-height: 1.5;
    color: #000;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}


.ellipsis, .ellipsis__lineTwo {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.ellipsis__lineTwo:hover{
	color:#000;
}

.cart-list-grid-quantity-button-box {
    position: relative;
    width: 100%;
}

.cart-list-grid-quantity-button-left {
    text-align: left;
    font-size: 16px;
}

.cart-list-grid-quantity-button {
    width: 30px;
}

.cart-list-grid-quantity-display {
    display: inline-block;
    width: 30px;
    color: #000;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #efefef;
}

.cart-list-grid-quantity-button-right {
    text-align: right;
    font-size: 16px;
}

.cart-list-grid-delete-button {
    width: 100%;
}

.cart-list-grid-delete-button, .mobileCart__plusIcon {
   
    display: flex;
   	justify-content: flex-end;
    align-items: center;
}

.cart-list-grid-delete-button img {
    width: 15px;
}

.cart-list-grid-title__rightAlign {
    text-align: right;
}

.tableAmount__container {
    width: 100%;
    font-size: 13px;
	display: flex;
    justify-content: flex-end;
    align-items: center;
}

.tableAmount__previewBox {
    max-width: 280px;
    width: 100%;
}

.cartPromotionList {
    padding: 25px 0;
    border-bottom: 1px solid #efefef;
}

.tableAmount__previewList {
	padding: 25px 0;
    border-bottom: 1px solid #e6e6e6;
    color: #000;
	display: flex;
   	justify-content: space-between;
   	align-items: center;
}

.tableAmount__previewList__noBorder {
    border-bottom: none;
}




.defaultButton {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    border: none;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    font-size: 15px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
}

.form__group__topSpace {
    margin-top: 22px;
}


.linkStyleButton{
	text-decoration: underline;
	letter-spacing: 1px;

}


.defaultButton:hover{
	color:#fff;
	background-color: rgb(0,0,0,0.85);
}


.mobileCartWrapper {
    display: none;
    width: 90%;
    margin: auto;
}

.mobileCart__gridList {
    display: none;
    width: 100%;
    margin: auto;
}

.mobileCart__infoWrapper {
    display: grid;
    grid-template-columns: 1fr 44px;
    grid-gap: 0 0;
}

.mobileCart__info {
    width: 100%;
    font-size: 13px;
    line-height: 1.8;
}

.mobileCart__deleteBtn {
    display: block;
    width: 44px;
    float: right;
}

.mobileCart__buttonGridWrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 20px;
    font-size: 13px;
    line-height: 1.8;
    margin: 15px 0;
}

.mobileCart__deleteBtn {
    display: block;
    width: 44px;
    float: right;
}

.mobileCart__deleteBtn img {
    float: right;
    width: 20px;
    margin-top: 4px;
}

.mobileCart__quantityButtonGrid {
    width: 100%;
    display: grid;
    grid-template-columns: .5fr 1.5fr .5fr;
    grid-gap: 10px 10px;
}
.mobileCart__minusIcon img {
    width: 10px;
}

.mobileCart__minusIcon {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
   	align-items: center;
}

.mobileCart__plusIcon img {
    width: 11px;
}

.foldedMenuButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    border: 1px solid #efefef;
    border-radius: 20px;
    height: auto!important;
    padding: 5px 10px 5px 15px;
}

.adminMenuIcon {
    width: 13px;
    margin-right: 10px;
}

.adminMenuUserIcon {
    width: 26px;
    border-radius: 50%;
}


.foldedMenuPopUpFilter {
    position: absolute;
    top: 66px;
    right: 0;
    width: 230px;
    background-color: #fff;
    border-radius: 13px;
    -webkit-box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
    padding-bottom: 10px;
    z-index: 3;
}

.foldedMenuPopUpItem__userInfo {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border-bottom: 1px solid #efefef;
    text-align: left;
    line-height: 1.5rem;
}


.foldedMenuPopUpItem__userInfo__name {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

.foldedMenuPopUpItem__userInfo__email {
    display: block;
    width: 100%;
    color: #9b9b9b;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    word-wrap: break-word;
}

.foldedMenuPopUpFilter a{
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1.5;
}

.foldedMenuPopUpFilter a:hover{
    color:#000;
    background-color: #efefef;
}

.foldedMenuButton:hover{
    box-shadow: 0px 0px 10px #efefef;
}



.m-user-info-name, .m-user-info-email{
    display: block;
}

.m-user-info-email{
    color: #9b9b9b;
    font-weight: normal;
    margin: 10px 0px;
}

.sideBar__listContainer {
    width: 200px;
    position: sticky;
    top: 120px;
    height: calc(100vh - 85px);
    margin-bottom: 50px;
    padding-right: 25px;
    
}


.sideBar__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 15px;
    color: #000;

}

.sideBar__listContainer ul {
    width: 100%;
    padding-bottom: 50px;
    pointer-events: none;
}

.sideBar__listContainer ul li {
    width: 100%;
    display: block;
    padding: 10px 0;
}

.sideBar__listContainer ul li a, .sideBar__listContainer ul li button {
    width: 100%;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    transition: .3s ease;
    pointer-events: all;
    font-weight: bold;

}

.front__defaultHeight {
    min-height: calc(100vh - 170px);
}

.frontWrapper .align__container {
    padding-top: 45px!important;
}

.sideBar_active{
    text-decoration: underline;
}

.sideBar_active:hover{
    text-decoration: underline;
    color:rgb(0,0,0,0.85);
}

.content__container__front {
    width: 100%;
    min-height: calc(100vh - 85px);
    height: 100%;
    margin: 0 auto;
    padding-top: 125px;
    max-width: 1200px;
}



.orderListGridContainer {
    grid-template-columns: 1.2fr .8fr .7fr 72px 1.25fr;
    grid-gap: 10px 10px;
}

.orderListGridContainer, .subscriptionListGridContainer {
    width: 100%;
    display: grid;
    border-bottom: 1px solid #efefef;
}

.orderListGridItem {
    width: 100%;
    font-size: 13px;
    line-height: 20px;
    padding: 15px 0;
    color: #000;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.orderListGridItem img{
   max-height: 90px;
}
.orderListGridContainer__noBorder {
    border-bottom: 1px solid transparent;
}

.orderListGridItem a:hover{
    color:#000;
}

.mobileList {
    width: 100%;
   	display: none;
    margin-left: 0;
    margin-right: 0;
    margin: auto;
}

.margin__small {
    width: 100%;
    margin: 5px 0;
    height: 1px;
}

.mobileList ul {
    width: 100%;
    margin-bottom: 18px;
}

.mobileList ul .mobileList__profileOrderList {
    width: 90%;
    margin: auto;
    padding: 20px 0;
    border-top: 1px solid #efefef;
    flex-direction: column;
}

.mobileList ul , .mobileList__profileOrderBox {
    width: 100%;
  	flex-direction: row;
 }

 .mobileList__centerBox__full {
    width: calc(100% - 78px);
}

.mobileList__centerBox, .mobileList__centerBox__full {
    position: relative;
    height: 117px;
    font-size: 13px;
    line-height: 1.5;
    padding-left: 18px;
}

.mobileList__profileOrderList, .mobileList__profileOrderBox{

 	display: flex;
   	justify-content: center;
    align-items: center;

}

.mobileList__info {
    width: 100%;
    margin-bottom: 10px;
}

.mobileList__quantityBox {
    width: 100%;
  	flex-direction: row;
}

.mobileList__profileOrderBox img{
	max-height: 90px;
}

.detailBack{
	margin-right: 20px;
}

.mobileWidth {
    width: 100%;
    margin: auto;
}

.order-progress-block {
    margin-bottom: 20px;
}

.pageHeader__lv5 {
    font-size: 22px!important;
}

.pageHeader__lv4, .pageHeader__lv5 {
    color: #000;
    font-weight: 700;
    line-height: 1.5;
}

.mobileShow {
    display: none;
}

.order-progress-wrapper {
    max-width: 500px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    margin-top: 10px;
}

.order-progress-bar, .order-progress-item {
    display: block;
    width: 100%;
}


.order-progress-bar {
    height: 5px;
    background-color: #d3d3d3;
    border-radius: 10px;
}

.order-progress-bar__active {
    background-color: #177ce9;
}


.order-progress-label {
    display: block;
    color: #9b9b9b;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 5px;
}

.checkoutFormContainer {
    width: 45%;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
}

.section__content__orderDetail {
    width: 100%;
    padding-bottom: 30px;
}

.section__contentBox {
    width: 100%;
    margin: 8px 0;
}

.section__contentLabel, .section__contentLabel__paddingLarge {
    display: inline-block;
    font-size: 13px;
    color: #000;
    font-weight: 700;
    letter-spacing: .5px;
}

.section__contentLabel {
    padding: 0 0 10px;
}

.listInfoText {
    width: auto;
    font-size: 13px;
    line-height: 23px;
    margin: 5px 0;
}

.checkout__selector, .previewCartItem, .previewQuantityBox {
   justify-content: space-between;
}

.checkout__selector, .previewCartItem, .previewQuantityBox, .registrationCart-productSelectBlock-poptip .ivu-poptip-rel {
    display: flex;
    align-items: center;
}

.checkoutBillContainer__orderDetail {
    position: static;
    max-width: 450px;
}

.checkoutBillContainer {
    width: 55%;
}

.checkoutBillContainer, .checkoutWrapper, .express-checkout-info-edit-button, .express-checkout-info-edit-button a, .orderDetailWrapper {
   
    display: flex;
   	justify-content: flex-end;
    align-items: flex-start;
}

.alignRightTop__column {
   flex-direction: column;
}

.alignRightTop, .alignRightTop__column {
    display: flex;
    justify-content: flex-end;
}

.billPreviewBox {
    width: 85%;
    border: 1px solid #efefef;
    border-radius: 10px;
    padding: 24px;
    overflow-x: hidden;
}

.previewCartImageBox {
    width: 90px;
}

.previewCenterBox {
    width: calc(100% - 100px);
    height: 100%;
    padding-left: 10px;
    position: relative;
    color: #000;
}

.previewCartItem {
    height: 135px;
    align-items: stretch;
    font-size: 13px;
    line-height: 18px;
}


.previewQuantityBox {
    width: calc(100% - 15px);
    position: absolute;
    bottom: 0;
    font-weight: 700;
   	flex-wrap: wrap;
    line-height: 20px;
    justify-content: space-between;
}

.alignBetween__box {
    width: 100%;
}

.previewPriceListItem__first {
    padding: 0 0 20px;
}

.previewPriceListItem {
    width: 100%;
    padding: 20px 0;
    font-size: 13px;
    line-height: 18px;
    border-bottom: 1px solid #efefef;
    color: #000;
}

.orderDetailWrapper {
  	display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    min-height: 80vh;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
}

.billPreviewSwiper{
	width: 100%;
	display: none;
}

.cartListSwiperTitle {
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cartListCollapse_row {
    padding: 0 20px;
}

.cartListCollapse_col {
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
}

.cartListCollapse_card {
    width: 100%;
}

.cartListCollapse_card .previewCartItem {
    height: 100px;
}


.content__subtitle__specialPrice{
    font-size: 20px;
    font-weight: 500;
    line-height: 42px;
    margin-left: 10px;
}

.price-highlight-underColor__default{
    color: #d0021b;
}

#header-cart-icon{
	position: relative;
	display: inline-block;
}


.header-cartDot{
	display: flex;
    align-items: center;
    position: absolute;
    top: 25px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d0021b;
    border: 1px solid #fff;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    justify-content: center;

}

.mobileList__info__box{
    display: flex;
    align-items: center;

}

.mobileList__info__number{
    width: 25px;
    height: 22px;
    text-align: center;
    background-color: #f6f5f5;
    border-radius: 5px;
    margin-right: 10px;
    color: #4a4a4a;
    display: flex;
    align-items: center;
}

.section__content__orderDetail__noBottomSpace {
    padding: 0;
}

.linkStyleButton {
    background-color: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
}

.linkStyleButton__noUnderLine {
    text-decoration: none;
    color: #9b9b9b !important;
}

.remarkBox__large {
    width: 100%;
    padding: 5px 0;
}

.blackText {
    color: #000 !important;
}

.form__group {
    position: relative;
    padding: 15px 0 0;
    width: 100%;
}

.form__field {
    font-family: inherit;
    width: 100%;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    outline: 0;
    font-size: 15px;
    color: #000;
    padding: 7px 0;
    background: 0 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    height: 40px;
}

.form__group__title {
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.selectCustomDisplay {
    width: 100%;
    height: 40px;
    padding: 0 35px 0 0;
    font-size: 15px;
    color: #9b9b9b;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.radioSelectBox__textFieldMargin {
    margin-top: 12px;
}

.radioSelectBox {
    font-size: 13px;
    line-height: 1.5;
}

.customRadioWrapper {
    width: auto;
    cursor: pointer;
}

.customRadioBox {
    position: relative;
    width: 16px !important;
    min-width: 16px !important;
    height: 16px !important;
}

.customRadioTitle__mediumFont {
    font-size: 15px;
}

.customRadioTitle {
    display: inline-block;
    margin: 0 20px 0 10px;
    font-size: 14px;
    line-height: 23px;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

.customRadioInput, .customRadioLabel {
    width: 100%;
    height: 100%;
}

.customRadioInput {
    position: absolute;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.customRadioInput+.customRadioLabel:before {
    content: "";
    border: 2px solid #e0dbdb;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.customRadioInput:checked+.customRadioLabel:before {
    border: 2px solid #000;
}

.customRadioInput:checked+.customRadioLabel:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    display: block;
    background: #000;
    border-radius: 50%;
    top: 4px;
    left: 4px;
}

.mobileContentPadding {
    padding-top: 30px;
}

.buttonBox {
    width: 180px;
    display: inline-block;
}


.frontList__content__container {
    width: calc(100% - 200px);
    margin: 0 0 30px;
    padding-top: 135px;
}

.main-article-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    margin-bottom: 35px;
    text-decoration: none;
    min-width: 0;
    color: #000;
}

.main-article-item {
    width: 100%;
    min-width: 0;
}

.main-article-label-wrapper {
    padding-left: 20px;
}

.articleLabel, .articleTime {
    width: 100%;
    text-align: left;
    line-height: 1.5;
}

.articleTime {
    margin-top: 8px;
    font-size: 12px;
}

.articleLabel {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.main-article-wrapper:hover{
    color: #000
}


.align__container__blogDetail {
    width: 100%;
    margin: auto;
    height: 100%;
    padding-top: 85px;
    position: relative;
}

.blogHeadContentBox__bottomSpace {
    margin-bottom: 30px !important;
}

.blogHeadContentBox {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

.blogHeaderContainer {
    max-width: 1000px;
    width: 90%;
    margin: auto;
}

.blogHeaderBanner {
    max-width: 1000px;
    width: 100%;
}

.blogHeadText {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
}

.blogHeadText, .blogLabel {
    width: 100%;
    text-align: left;
    line-height: 1.5;
}

.blogTextContentBox {
    max-width: 1000px;
    width: 90%;
    margin: auto;
}

.blogParagraph {
    max-width: 800px;
    margin: 27px auto;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 1px;
}


.blogContentText {
    max-width: 100%;
    width: auto;
    margin: auto;
    word-wrap: break-word;
    font-size: 16px;
    line-height: 1.5;
}

.sideBar__container {
    width: 130px;
    position: fixed;
    height: calc(100vh - 110px);
    top: 110px;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sideBar__title {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 15px;
    color: #000;
}

.sideBar__container ul {
    width: 100%;
    padding-bottom: 50px;
    pointer-events: none;
}

.sideBar__container ul li {
    width: 100%;
    display: block;
    padding: 10px 0;
}


.sideBar__container ul li a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-size: 13px;
    line-height: 1.5;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    pointer-events: all;
}

.content__container {
    max-width: calc(100% - 130px - 5vw);
    width: calc(100% - 130px - 5vw);
    margin: 0 0 0 auto;
    overflow-x: hidden;
}

.centerChildBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    margin: auto;
    padding-bottom: 50px;
}

.pageTitle__scroll__wrapper {
    width: 100%;
    margin-bottom: 20px;
}



.pageTitle__scrollContent {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    width: auto;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.pageTitleBox {
    width: auto;
    color: #000;
}

.pageTitle__scrollContent__buttonWrapper {
   
    flex-direction: row;
    flex: 0 0 auto;
    width: auto;
    margin-right: 15px;
}

.pageHeader {
    color: #000;
    font-size: 25px!important;
    font-weight: 700;
    line-height: 1.5;
}

.toggleFunctionBarWrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
}

.circleIconButton__rightSpace {
    margin-right: 5px;
}

.circleIconButton__noBgColor {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    margin: 0;
    background-color: transparent;
}

.contact{
    margin-top: 100px;
    letter-spacing: 1.5px;
    
}

.contact-box{
    max-width: 900px;
    margin:auto;
    
}
.contact-box-title{
    padding: 20px 0;
    border-bottom: 1px solid #efefef;
    font-size: 15px;
}

.contactFormItem{
    margin-top: 40px;
}

.contactFormTitle{
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
}

.contactFormTitle span{
    color:#d0021b!important
}

.contactFormInput{
    margin-top: 15px;
}

.contactFormInput input{
    width: 100%;
    padding:15px;
    border:1px solid #efefef;
    border-radius: 10px;
    height: 50px;
    font-size: 14px;
    color:#000;
}

.contactFormInput select{
    width: 100%;
    height: 50px;
    display: block;
    border:1px solid #efefef;
    border-radius: 5px;
    padding: 15px;
    font-size: 14px;
    color: #000
}

.contactFormInput input::-webkit-input-placeholder{
    opacity: 1;
}

.contactFormInput input:focus{
    border:1px solid #000;
}

.contactFormInput select:focus{
    border:1px solid #000;
}


.sexCheck{
    display: block;
}


.sendContactForm{
    margin:40px 0 20px 0;
}

.subOrder{
    width: 100%;
    height: 500px;
    padding-top: 85px;
}

.subOrderBox{
    width: 100%;
    max-width: 900px;
    height: 200px;
    margin:auto;
}

.subOrderProductInfo{
    width: 100%;
}

.productInfoChild{
    font-size: 13px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px 40px;
    list-style: none;
    padding:15px 0;
    align-items: center;
    border-bottom: 1px solid #efefef;
}

.productInfoChild img{
    width: 100px;
    height: auto;
    border-radius: 5px;

}

.orderAmountBox{
    width: 100%;
    text-align: right;
    font-size: 18px;
    margin-top: 20px;
    font-weight: bold;
}

.address-null{
    width: 100%;
    padding: 20px 0 0 0;
    font-size: 15px;
}

.address-list{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px 20px;
    margin-top: 20px;
}

.address-list-child{
    width: 50%;
    align-items: center;
    display: flex;
    width: 100%;
    padding: 10px 15px;
    border:1px solid #efefef;
    margin:10px 0;
    border-radius: 8px;
    font-size: 15px;
    margin-right: 20px;
    cursor: pointer;
}

.address-list-child span{
    height: 35px;
    line-height: 35px;
    display: inline-block;
}

.address-list-child span:last-child{
    margin-left: 10px;
}

.address-list-child-check{
    border:2px solid #000;
}

.toPayBtn{
    width: 100%;
    background-color: #000;
    padding: 11px 21px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    border-radius: .6em;
    border: none;
    font-weight: normal;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 50px 0;
}

.useOtherAddress{
    display: block;
    font-size: 15px;
    text-decoration: underline;
    font-weight: bold;
    margin:10px 0;
}

.addressformbox{
    display: none;
}


.delAddress{
    display: block;
    width: 45px;
    padding: 5px;
    background: #000;
    color:#fff;
    border-radius: 5px;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.delAddress:hover{
    color:rgb(255,255,255,0.9);
}

.address-list-child-left{
    width: 80%;
}

.address-list-child-right{
   
    text-align: right;
}


.ps_type{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
    padding: 20px 0 0 0;
}

.ps_title{
    font-weight: bold;
    margin-top: 22px;
}

.payTypeBox{
    display: flex;
    margin-top: 15px;
}

.mProductInfoChild{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #efefef;
    padding:20px 0;
}

.mProductLeft{
    width: 35%;
}

.mProductLeft img{
    width: 100px;
    height: auto;
    border-radius: 5px;
}

.mProductRight{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;

}

.mProductRight div:first-child{
    line-height: 25px;
    font-weight: 700;
}

.MobilesubOrderProductInfo{
    display: none;
}


.payMainBox{
    width: 100%;
    display: flex;
    margin-top: 10px;
    flex-direction: column;
}

.payMainChild{
    display: flex;
    border-bottom: 1px solid #efefef;
    border-radius: 5px;
}

.payMainChild div{
    width: 50%;
    padding:15px 0;
    font-size: 18px;
    text-indent: 10px;

}

.childTitle{
    font-weight: 700;
}

.payMainChild:hover{
    background-color: rgb(226,237,239,0.5);
}

.addressCheckBox{
    display: flex;
    
}


.category-addcart{
    padding:8px 15px;
    background: #000;
    color:#fff;
    border-radius: 5px;
    margin-top: 10px;
}