@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@100;300;400;500;700;900&display=swap');

/* Varialbes */
:root {
	--font-default: 'Yantramanav', sans-serif;
	--fontawesome: "Font Awesome 5 Pro";
	--black: #000000;
	--dark: #047c51;
	--dark-secondary: #1e2837;
	--white: #ffffff; 
	--color-primary: #cbec01;
	--color-secondary:#56af43;
	--color-heading: #1d2746;
	--color-paragraph: #666666;
	--border-default: #e7e7e7;
	--box-shadow-primary: 0 0 25px rgb(0 0 0 / 8%);
	--box-shadow-secondary: 0 10px 30px 0 rgb(44 130 237 / 40%);
	--box-shadow-tertiary: 0px 2px 12px 0px #e7e7e7;
	--box-shadow-dark: 0px 0px 0px;
	--bg-gray: #eef0f6;
	--bg-gradient: linear-gradient(to right, #1239ac, #00f3dd, #1239ac);
}

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
caption, tfoot, thead, 
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;

border: 0;
font-size: 100%;
font-family: Arial,微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html{height:100%;}
body{line-height:1; height:100%;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after, q:before, q:after{content:''; content: none;}
table{border-collapse:collapse; border-spacing:0;}
sup{vertical-align:super;}

img{max-width:100%; max-height:100%;}

.btn a{color:#fff!important;}
.btn:hover a{color:#fff!important;}

input{outline:none!important;}
button:focus{outline:none!important;}

.default-btn {
    border: 1px solid #0099ff;
    color: #0099ff;
    padding: 5px 10px;
}

.full-btn{
    background:#0099ff;
    color:#fff;
    padding:5px 10px;
    transition:0.5s;
    }

.full-btn:hover{background:transparent; color:#0099ff;}

.color-W{color:#fff;}

/* button hover style */
.hover-sweep-right {
	display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	}

.hover-sweep-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0099ff;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	}

.hover-sweep-right:hover, .hover-sweep-right:focus, .hover-sweep-right:active {
	color: #fff;
	}

.hover-sweep-right:hover:before,
.hover-sweep-right:focus:before,
.hover-sweep-right:active:before{
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	}

.hover-shutter-vertical {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    background: transparent;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
	}

.hover-shutter-vertical:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0099ff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

.hover-shutter-vertical:hover,
.hover-shutter-vertical:focus,
.hover-shutter-vertical:active{
    color: #fff;
	}

.hover-shutter-vertical:hover:before,
.hover-shutter-vertical:focus:before,
.hover-shutter-vertical:active:before{
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
	}

.hover-reveal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
	}

.hover-reveal:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-color: #0099ff;
    border-style: solid;
    border-width: 0;
    -webkit-transition-property: border-width;
    transition-property: border-width;
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

.hover-reveal:hover:before,
.hover-reveal:focus:before,
.hover-reveal:active:before{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    border-width: 2px;
	}

.hover-underline-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
  }

.hover-underline-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: #fff;
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
	}

.hover-underline-right:hover:before,
.hover-underline-right:focus:before,
.hover-underline-right:active:before{
    right:0;
	}

/*選單展開按鈕_start*/
.navTrigger{
	display:none;
	cursor:pointer;
	width:30px; 
	height:25px;
	margin:auto;
	position:fixed;
	top:30px;
	right:20px;
	z-index:1100;
	}

.navTrigger>i{
    background-color:#fff;
    /*border-radius:2px;*/
    content:'';
    display:block;
    width:100%;
	height:2px;
	}

.navTrigger>i:nth-child(1){
    -webkit-animation:outT 0.8s backwards;
    animation:outT 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}
.navTrigger>i:nth-child(2){
    margin: 7px 0;
    -webkit-animation:outM 0.8s backwards;
    animation:outM 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}
.navTrigger>i:nth-child(3){
    -webkit-animation:outBtm 0.8s backwards;
    animation:outBtm 0.8s backwards;
    -webkit-animation-direction:reverse;
    animation-direction:reverse;
	}

.navTrigger.active>i:nth-child(1){
	-webkit-animation:inT 0.8s forwards;
	animation:inT 0.8s forwards;
    }
.navTrigger.active>i:nth-child(2){
	-webkit-animation:inM 0.8s forwards;
	animation:inM 0.8s forwards;
	}
.navTrigger.active>i:nth-child(3){
	-webkit-animation:inBtm 0.8s forwards;
	animation:inBtm 0.8s forwards;
	}

@-webkit-keyframes inM{
50%{-webkit-transform:rotate(0deg);}
100%{-webkit-transform:rotate(45deg);}
}
@keyframes inM{
50%{transform:rotate(0deg);}
100%{transform:rotate(45deg);}
}

@-webkit-keyframes outM{
50%{-webkit-transform:rotate(0deg);}
100%{-webkit-transform:rotate(45deg);}
}
@keyframes outM{
50%{transform:rotate(0deg);}
100%{transform:rotate(45deg);}
}

@-webkit-keyframes inT{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(9px) rotate(0deg);}
100%{-webkit-transform: translateY(9px) rotate(135deg);}
}
@keyframes inT{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(9px) rotate(0deg);}
100%{transform: translateY(9px) rotate(135deg);}
}

@-webkit-keyframes outT{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(9px) rotate(0deg);}
100%{-webkit-transform: translateY(9px) rotate(135deg);}
}
@keyframes outT{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(9px) rotate(0deg);}
100%{transform: translateY(9px) rotate(135deg);}
}

@-webkit-keyframes inBtm{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(-9px) rotate(0deg);}
100%{-webkit-transform: translateY(-9px) rotate(135deg);}
}
@keyframes inBtm{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(-9px) rotate(0deg);}
100%{transform: translateY(-9px) rotate(135deg);}
}

@-webkit-keyframes outBtm{
0%{-webkit-transform: translateY(0px) rotate(0deg);}
50%{-webkit-transform: translateY(-9px) rotate(0deg);}
100%{-webkit-transform: translateY(-9px) rotate(135deg);}
}
@keyframes outBtm{
0%{transform: translateY(0px) rotate(0deg);}
50%{transform: translateY(-9px) rotate(0deg);}
100%{transform: translateY(-9px) rotate(135deg);}
}

.overlay{
    position:fixed;
    z-index:1000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#1c1d21;
    opacity:0;
    visibility:hidden;
    transition:opacity 0.5s, visibility 0.5s;
	}

.nav-open .overlay{opacity:0.85; visibility:visible;}

/*選單展開按鈕_end*/

/*手機選單_start*/
#mobile{display:none;}

.mobile-menu-area{
	width:100%;
	height:100vh;
	padding:80px 20px 20px;
	background-color:#047c51;
	position:fixed;
	top:0;
	z-index:1050;
	opacity:0.95;
	}

.mobile-menu-area::after{
	content:"";
	width:100%;
	height:75%;
	position:absolute;
	left:0;
	bottom:0;
	background:linear-gradient(to bottom, #047c51 0%, #344d2a 100%);
	z-index:-1;
	}

.mobile-logo{width:250px; margin:0 10px;}

.navmenu{padding:0 20px; margin-bottom:0;}

.navmenu-item{
	padding:20px 0 10px;
    list-style:none;
    border-bottom:1px solid rgba(255,255,255,0.2);
	}

.navmenu-item:last-child{border-bottom:none;}

.mobile-search-box{display:none;}

.navmenu-item a{
	display:block;
	font-size:18px;
	color:#fff;
	position:relative;
	}

.navmenu-item a:hover{color:#ffff00;}

.navmenu-item.has-drop>a::before{
	content:"";
    display:inline-block;
    width:60px;
    height:100%;
    position:absolute;
    top:0;
    right:0;
    z-index:1;
	}

.navmenu-item.has-drop>a::after {
    content:"\f107";
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:20px;
    position:absolute;
    top:0;
    left:auto;
    right:24px;
    z-index:10;
    transition:all 0.5s ease;
	}

.navmenu-item.has-drop a.is-open::after{
	transform:rotate(180deg);
	}

.navmenu-bottom{width:90%; margin:20px auto;}

.navmenu-bottom ul{
	padding-left:0;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	}

.navmenu-bottom li{
	width:40%;
    height:50px;
    font-size:20px;
    margin:10px;
	}

.navmenu-bottom li a{
	width:100%;
	height:100%;
	font-size:14px;
	color:var(--dark);
    border-radius:5px;
    background-color:#fff;
	display:flex;
    justify-content:center;
    align-items:center;
    }

.navmenu-bottom li a i{margin-right:5px;}

.navmenu-bottom li:hover a.icon-fb{background-color:#3b5998;}
.navmenu-bottom li:hover a.icon-ig{background-color:#d82f79;}
.navmenu-bottom li:hover a.icon-line{background-color:#44a73b;}
.navmenu-bottom li:hover a.icon-mail{background-color:#4da8d5;}
.navmenu-bottom li:hover a.icon-tel{background-color:#fc7000;}
.navmenu-bottom li:hover a.icon-map{background-color:#a596f4;}

.mobile-submenu-list{display:none;}

.mobile-submenu-list:after {
    content: '';
    display: block;
    clear: both;
}

.mobile-submenu-inner{padding:0 7px;}

.mobile-drop-menu{padding-top:10px; padding-left:0;}

.mobile-drop-menu>li{
	display:inline-block;
	margin-top:7px;
	margin-right:12px;
	margin-bottom:7px;
	}

.mobile-drop-menu>li>a{
	font-size:16px;
	padding:7px 12px;
	border:1px solid #fff;
	border-radius:10px;
	}

.navmenu-item{
	opacity:0;
	animation-name:curtain;
	animation-duration:0.3s;
	animation-timing-function:ease-out;
	animation-fill-mode:forwards;
	}

.mobile-lan-box ul{padding-left:0;}
.mobile-lan-box p{color:#fff; margin-right:10px; display:inline-block;}
.mobile-lan-box p i{margin-right:5px;}
.mobile-lan-box ul{display:inline-block;}
.mobile-lan-box ul li{display:inline-block; margin-right:10px;}
.mobile-lan-box ul li a{
	padding:5px 12px;
	border:1px solid rgba(255,255,255,0.3);
	border-radius:5px;
	}

@keyframes curtain{
	0%{transform:translate(-20px, -20px);} 
	100%{transform:translate(0, 0); opacity:1;}
	}

.navmenu .navmenu-item:nth-child(2){animation-delay:0.2s;}
.navmenu .navmenu-item:nth-child(3){animation-delay:0.4s;}
.navmenu .navmenu-item:nth-child(4){animation-delay:0.6s;}
.navmenu .navmenu-item:nth-child(5){animation-delay:0.8s;}
.navmenu .navmenu-item:nth-child(6){animation-delay:1s;}
.navmenu .navmenu-item:nth-child(7){animation-delay:1.2s;}
.navmenu .navmenu-item:nth-child(8){animation-delay:1.4s;}
.navmenu .navmenu-item:nth-child(9){animation-delay:1.6s;}
.navmenu .navmenu-item:nth-child(10){animation-delay:1.8s;}

/*手機選單_end*/

/*頁首選單_start*/
.menu-container{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    background-image:linear-gradient(#000 20%, transparent 100%), 
		linear-gradient(to bottom, #000, transparent 70%);
	}

/*.menu-container2{
	background-image:linear-gradient(#fff 35%, transparent 100%), 
		linear-gradient(to bottom, #fff, transparent 85%);
	}*/

.menu-row{
	width:98%;
	max-width:1480px;
	margin:0 auto;
	padding:10px 0;
	display:flex;
	justify-content:space-between;
	align-items:center;
    position:relative;
	}

.main-logo{max-width:220px;}

.menu-block{display:flex; justify-content:flex-end; flex-wrap:wrap;}

.member-block{
	position:absolute;
	top:10px;
	right:20px;
	}

.member-block ul{padding-left:0; display:flex;}

.member-block ul li{margin-right:10px;}
.member-block ul li:last-child{margin-right:0;}

.member-block ul li a{
	font-size:14px;
	color:#fff;
	padding:3px 12px;
	display:flex;
	align-items:center;
	}

.member-block ul li i{font-size:20px; margin-right:5px;}

.member-box>ul>li>a>span{
    width:20px;
    height:20px;
    line-height:20px;
    font-size:12px;
    color:#ffffff;
    padding-top:1px;
    text-align:center;
    border-radius:10px;
    background-color:#d70000;
    position:absolute;
    top:0;
	right:0;
	}

.nav-navbar{
    width:100%;
    position:relative;
    padding-left:0;
    margin-bottom:0;
    display:flex;
    justify-content:flex-end;
	}

.nav-item{list-style:none;}

.nav-navbar>.nav-item>a{
	padding:0 20px 20px;
    color:#fff;
    font-size:16px;
    text-decoration:none;
    line-height:inherit;
    letter-spacing:0.1em;
    position:relative;
    cursor:pointer;
	}

.caret{
	display:inline-block;
    width:0;
    height:0;
    margin-left:2px;
    vertical-align:middle;
    content:"";
    }

.down-arrow{
    border-top:4px solid #fff;
    border-right:4px solid transparent;
    border-bottom:0 dotted;
    border-left:4px solid transparent;
	}

.nav-navbar>.nav-item .down-arrow{border-top:4px solid #fff;}

.nav-navbar>.nav-item>a::after{
    content:"";
    position:absolute;
    height:2px;
    width:70%;
    transform:scale(0,1);
    background:var(--color-primary);
    transition:all .2s ease-in-out;
    top:22px;
    border-radius:5px;
    left:14%;
	}

.nav-lan-box{
	margin-left:15px;
	display:flex;
	align-items:center;
	position:relative;
	}

.nav-lan-box .nav-lan-btn{color:#868686; cursor:pointer;}
.nav-lan-btn i{margin-right:5px;}

.nav-lan-list{
	padding-left:0;
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-35px;
    -webkit-transform-origin:top;
    -ms-transform-origin:top;
    transform-origin:top;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    -webkit-transition:all 0.4s ease;
    -o-transition:all 0.4s ease;
    transition:all 0.4s ease;
    pointer-events:none;
    -webkit-transform:rotateX(90deg);
    transform:rotateX(90deg);
    opacity:0;
	}

.nav-lan-open .nav-lan-list{
	pointer-events:auto;
    -webkit-transform:rotateX(0deg);
    transform:rotateX(0deg);
    opacity:1;
    }

.nav-lan-list li{background-color:var(--color-primary);}

.nav-lan-list li a{
	display:inline-block;
    width:100%;
    height:35px;
    line-height:35px;
    padding:0 25px;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
    text-align:center;
    position:relative;
    font-size:13px;
    font-weight:300;
    color:#fff;
	}

.nav-lan-list li:not(:first-child) a::before{
    content:"";
    position:absolute;
    top:0;
    left:10px;
    width:calc(100% - 20px);
    height:1px;
    background-color:rgba(255, 255, 255, 0.3);
	}

.nav-lan-list li:hover{background-color:var(--dark);}
.member-box ul li a:hover{color:var(--color-primary);}
.nav-lan-box .nav-lan-btn:hover{color:var(--color-primary);}
.nav-navbar>.nav-item:hover>a{color:var(--color-primary);}
.nav-navbar>.nav-item:hover>a .down-arrow{border-top: 4px solid var(--color-primary);}
.nav-navbar>.nav-item:hover>a::after{transform:scale(1,1);}

/*頁首選單_end*/

/*drop-menu_start*/
.has-drop{position:relative;}

/*.has-drop::before{
    content:"\f0d7";
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:14px;
    color:#fff;
    position:absolute;
    top:2px;
    right:7px;
    transition:all 0.5s ease;
	}*/

.drop-menu-box{
	display:none;
	background-color:#f1f2f4;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
	position:absolute;
	top:35px;
	left:15px;
	}

ul.drop-menu{padding-left:0;}

ul.drop-menu li a{
	display:block;
	font-size:16px;
	color:#000;
	word-break:keep-all;
	padding:15px 20px;
	border-bottom:1px solid rgba(204,204,204,0.35);
	}

.nav-navbar li.has-drop:hover .drop-menu-box{display:block;}
.nav-navbar li.has-drop:hover::before{color:var(--color-primary);}
.nav-navbar>.nav-item.has-drop .drop-menu a:hover{color:#686868;}
ul.drop-menu li a:hover{background-color:#dddddd;}
/*drop-menu_end*/

#loginPage .main-wrapper{
	position:relative;
    overflow:inherit;
    animation:fadeIn 0.5s ease-in-out 1;
    background-image:url(../images/main-bg-top-about.png);
    background-position:center top;
    background-repeat:no-repeat;
    background-size:100%;
	overflow:hidden;
	}

.form-section{min-height:700px;}

.form-section .login-area{
	width:95%;
	max-width:450px;
	margin:60px auto 80px;
	padding:20px;
	background-color:#fff;
	border-radius:20px;
	border:1px solid #dcdcdc;
	-webkit-box-shadow:1.5px 2.5px 10px rgb(0 0 0 / 10%);
    box-shadow:1.5px 2.5px 10px rgb(0 0 0 / 10%);
	}

.form-section .login_cover{
	margin-bottom:20px;
	}

.form-section .form-main-area{
	width:95%;
	max-width:1400px;
	margin:50px auto 80px;
	padding:20px;
	border-radius:20px;
	border:1px solid #dcdcdc;
	-webkit-box-shadow:1.5px 2.5px 10px rgb(0 0 0 / 10%);
    box-shadow:1.5px 2.5px 10px rgb(0 0 0 / 10%);
	}

.form-section .form-title{
	font-size:28px;
	font-weight:bold;
	text-align:center;
	margin-bottom:30px;
	position:relative;
	}

.form-add-btn{
	position:absolute;
	left:20px;
	bottom:-20px;
	}

.form-add-btn a{
	display:block;
	font-size:16px;
	color:#fff;
	width:100%;
	height:100%;
	}

.form-add-btn a:hover{color:#fff;}

.form-title-block{
	margin-bottom:20px;
	border-bottom:2px solid #ccc;
	}

.field-title{position:relative;}

.field-add-btn{
	position:absolute;
	top:6px;
	right:8px;
	}

.field-add-btn .btn{
	line-height:0.75;
	}

.item-row{
	margin-bottom:15px;
	border-bottom:1px dashed #dcdcdc;
	}

.form-control{font-size:14px!important;}

.form-check{margin-top:3px; margin-right:0.7rem!important;}

label>input.form-control{display:inline-block!important; width:50%;}

.item-title{min-width:100px; font-weight:bold!important;}

.item-title-xl{font-size:20px!important; font-weight:bold!important;}

.item-title-remark{background-color:#e97465!important;}

.title-logo-box p{font-size:24px; font-weight:bold;}

.add-field-title{position:relative;}

.add-field-title .form-add-btn{
	position:absolute;
	left:5px;
	bottom:5px;
	}

.add-field-title .form-add-btn .btn{line-height:0.75;}

.search-block{
	margin:0 auto 20px;
	padding:20px 5px 10px;
	border:1px dashed #aae6eb;
	}

.serach-btn a{
	display:block;
	color:#fff;
	width:100%;
	height:100%;
	}

.serach-btn a:hover{color:#fff;}

thead tr td{font-weight:bold;}

.text-locked{min-height:35px; background-color:#f3f3f3!important;}

.verify-box{margin-bottom:20px;}
.verify-box img{display:inline-block;}
.verify-box input#yzm{display:inline-block; width:150px;}

.option-content .form-check{display:inline-block;}

.option-content .form-check .form-check-input{margin-left:-1em;}

/*banner_首頁輪播圖_start*/
#banner{display:block;}
#bannerS{display:none;}

.banner-section{
	height:100%;
	overflow: hidden;
	}

.slideshow {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.slideshow .slider {
  width: 100vw;
  height: 100vw;
  z-index: 2;
}
.slideshow .slider * {
  outline: none;
}
.slideshow .slider .item {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  border: none;
}
.slideshow .slider .item .text {
  display: none;
}
.slideshow .slider .item img {
  min-width: 101%;
  max-width:unset;
  min-height: 101%;
  max-height:unset;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.slideshow .slick-dots {
  position: fixed;
  z-index: 100;
  width: 40px;
  height: auto;
  bottom: auto;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  left: auto;
  color: #fff;
  display: block;
}
.slideshow .slick-dots li {
  display: block;
  width: 100%;
  height: auto;
}
.slideshow .slick-dots li button {
  position: relative;
  width: 20px;
  height: 15px;
  text-align: center;
}
.slideshow .slick-dots li button:before {
  content: "";
  background: #fff;
  color: #fff;
  height: 2px;
  width: 20px;
  border-radius: 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  opacity: 0.6;
}
.slideshow .slick-dots li.slick-active button:before {
  width: 40px;
  opacity: 1;
}
.slideshow.slideshow-right {
  left: 0;
  z-index: 1;
  width: 50vw;
  pointer-events: none;
}
.slideshow.slideshow-right .slider {
  left: 0;
  position: absolute;
}

.item .slogan{
	width:400px;
	text-align:center;
	margin-left:-200px;
	position:absolute;
	left:50%;
	top:-500px;
	opacity:0;
	}

.item .slogan h2{
	color:#fff;
	text-shadow:2px 2px 3px #000;
	}

.item .slogan h2.slogan-tw{
	font-size:28px;
	font-weight:bold;
	}

.item .slogan h2.slogan-en{font-size:24px;}

.item .slider-notes{
	width:400px;
	padding:20px 25px;
	background-color:rgba(0,0,0,0.5);
	margin-left:-200px;
	position:absolute;
	left:50%;
	top:-300px;
	opacity:0;
	}

.item .slider-notes h2{
	font-size:28px;
	font-weight:lighter;
	letter-spacing:3px;
	color:#fff;
	text-align:center;
	margin-bottom:20px;
	}

.item .slider-notes h3{
	font-size:18px;
	color:#fff;
	letter-spacing:1px;
	line-height:1.5em;
	}

.item.slick-active .slogan{
	top:42%;
	opacity:1;
	}

.item.slick-active .slider-notes{
	top:57%;
	opacity:1;
	}

.slideshow-text {
  position: absolute;
  top:45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  font-size: 80px;
  width: 100vw;
  text-align: center;
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 100;
  text-shadow:2px 2px 5px #000;
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing:3px;
  line-height: 0.8;
}

.slideshow-text .item:nth-child(3){height:66px;}

@media (max-width: 767px){
	.slideshow-text{font-size:40px; letter-spacing:0;}
	.slideshow-text .item:nth-child(3){height:34px;}
	}

.the-most {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 50vw;
  max-width: 200px;
  padding: 10px;
}
.the-most img {
  max-width: 100%;
}

/*banner_首頁輪播圖_end*/

.img-cover{
	display:block;
    height:0;
    text-align:center;
    padding-bottom:100%;
    overflow:hidden;
    position:relative;
	}

.img-cover img{
    max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%!important;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transform:translate(-50% , 0) scale(1);
    transition:all 0.3s;
	}

.img-cover:hover img{
	transform:translate(-50% , 0) scale(1.1);
	}

/* bread_start */
.bread-block{width:90%; max-width:1000px; margin:0 auto;}

.bread-block ol{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    height:80px;
    margin-bottom:0;
    padding-left:0;
	}

.bread-block ol li a{position:relative; color:#563a22;}

.bread-block ol li i{margin-right:7px;}

.bread-block a span, .bread-block span{
    font-size:16px;
    font-weight:600;
    color:#563a22;
    transition:all 0.4s ease;
    text-transform:uppercase;
	}

.bread-block ol li a::after{
    content:"/";
    padding-right:7px;
    padding-left:5px;
    color:#8f775c;
	}

.bread-block ol li:hover i{color:#f26337;}
.bread-block a:hover span{color:#f26337;}

:root{scroll-padding-top:5rem;}

/* bread_end */

/*product-section*/
.index-product-content{position:relative;}

.swiper-container{width:100%; height:100%;}

.index-slide-container{padding:50px 0;}

.index-product-block .index-edit-title{margin-bottom:30px;}

.product-section .swiper-slide{
	text-align:center;
	font-size:18px;
	background:#fff;
	
	/* 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;
	}

.swiper-container-promote .recom-img{position:relative; overflow:hidden;}

.swiper-container-promote .recom-img .recom_desc{
    position:absolute;
    display:block;
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    box-sizing:border-box;
    padding:30px;
	}

.link-btn-block{margin:0 auto 60px; text-align:center;}

.link-btn-box{
	display:inline-block;
    padding:20px 12px 6px;
    margin-bottom:0;
    font-size:14px;
    font-weight:400;
    line-height:1.42857143;
    text-align:center;
    white-space:nowrap;
    vertical-align:middle;
    -ms-touch-action:manipulation;
    touch-action:manipulation;
    cursor:pointer;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    background-image:none;
    border:1px solid transparent;
    border-radius:4px
    transition:all 0.2s ease-in-out;
    -moz-transition:all 0.2s ease-in-out;
    -webkit-transition:all 0.2s ease-in-out;
    -o-transition:all 0.2s ease-in-out;
	}

.btn_cis .arrow{
	display:inline-block;
	position:absolute;
	top:50%;
	right:19px;
	transform:translate(0, -50%);
	}

.btn_cis .arrow:before{
	width:18px;
	height:1px;
	background:#333;
	display:block;
	content:" ";
	animation:elasticus 1.2s cubic-bezier(1, 0, 0, 1) infinite;
	}

.btn_cis .arrow:after{
	position:absolute;
	top:-4px;
	right:0;
	content:"";
	display:block;
	width:9px;
	height:7px;
	border-top:1px solid #333;
	behavior:url(-ms-transform.htc);
	transform:rotate(45deg);
	}

.btn_cis .arrow:hover:before{background:#ffffff;}

.btn_cis .arrow.goback{left:19px; right:unset;}
.btn_cis .arrow.goback:after{top:-9px; left:-3px; right:unset; transform:rotate(135deg);}
.btn_cis .arrow.goback:before{animation:none;}

.btn_cis{
	color: #eb2935;
	font-size: 15px;
	font-weight: 500;
	width:160px;
	padding: 14.5px 10px;
	display: inline-block;
	margin:0 auto;
	text-align: center;
	border: 1px solid #eb2935;
	background-color: transparent;
	position: relative;
	overflow: hidden;
	transition: all 0.7s ease;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	-ms-transition: all 0.7s ease;
	} 

.btn_cis .insider {
	background-color:#fff;
	width:100%;
	height:20px;
	position:absolute;
	left:-250px;
	transform:rotateZ(45deg);
	-webkit-transform:rotateZ(45deg);
	-moz-transform:rotateZ(45deg);
	-o-transform:rotateZ(45deg);
	-ms-transform:rotateZ(45deg);
	}

.btn_cis:hover{color:#fff; background-color:#0b4a72;}

.btn_cis:hover .insider{
	transition:all 0.7s ease;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	left:250px;
	}

.btn_cis:hover .arrow:before{
	background-color: #ffffff;
	}

.btn_cis:hover .arrow:after{
	border-color: #ffffff;
	}

.link-btn-box .btn_cis{color:#000; border:1px solid #000;}
.link-btn-box .btn_cis:hover{color:#fff; border:1px solid #0b4a72;}

.index-banner-btn .btn_cis{color:#fff; border:1px solid #fff;}
.index-banner-btn .btn_cis .arrow:before{background:#fff;}
.index-banner-btn .btn_cis .arrow:after{border-top:1px solid #fff;}

@keyframes elasticus{
	0%{transform:scaleX(0); transform-origin:left;}
	50%{transform:scaleX(1); transform-origin:left;}
	50.1%{transform:scaleX(1); transform-origin:right;}
	100%{transform:scaleX(0); transform-origin:right;}
	}

/*頁碼區_start*/
.page-tab{position:relative;}

.numpage-btn{width:100%; text-align:center; margin:0 auto 50px;}

.numpage-btn .pagination{margin:20px 0; display:inline-flex;}

.numpage-btn .pagination li{
	margin:5px 10px;
	list-style:none!important;
	}

.numpage-btn .pagination li.active{
    background-color:#171c61;
    color:#fff;
	}

.pagination>li>a, .pagination>li>span{
    position:relative;
    float:left;
    padding:6px 12px;
    margin-left:-1px;
    line-height:1.42857143;
    color:#787878;
    text-decoration:none;
    background-color:#fff;
    border:1px solid #ddd;
	}

.pagination>.active>a{
	color:#fff;
	background-color:unset!important;
    border-color:unset!important;
	}

.pagination>li>a:hover,
.pagination>li>a:active,
.pagination>li>a:focus{
	background-color:#171c61!important;
	color:#fff;
	}

.pagination>li>a:hover i,
.pagination>li>a:active i
.pagination>li>a:focus i{
	color:#fff!important;
	}
/*頁碼區_end*/

/* Fixed icon */
.sidebar-block{
	position:fixed;
	right:15px;
	bottom:120px;
	z-index:999;
	}

#homePage .sidebar-block{display:none;}

.sidebar-btn-box{
	position:relative;
	width:120px;
	overflow:hidden;
	}

.sidebar-btn{
	cursor:pointer;
	width:180px;
	}

.sidebar-btn-box i{
	color:#fff;
	font-size:20px;
	transform:rotate(180deg);
	padding:20px 20px 20px 10px;
	}

.sidebar-btn.show i{
	transform:rotate(0deg);
	padding:20px 10px 20px 20px;
	}

.sidebar-list{
	margin-top:20px;
	margin-bottom:0;
	padding-left:0;
    position:relative;
	}

.sidebar-list .sidebar-content{
	width:130px;
	height:200px;
	padding:15px;
	background-color:#fff;
	border-top-left-radius:10px;
	border-bottom-left-radius:10px;
	margin-bottom:10px;
	position:absolute;
	top:-70px;
	right:-150px;
	}

.sidebar-list .sidebar-content{transition-duration:0.5s;}

.sidebar-list.sidebar-list-open .sidebar-content{right:0;}

.sidebar-list li a{
	width:55px;
	height:55px;
	font-size:24px;
	color:#fff;
	background-color:var(--dark);
	border-radius:999em;
	box-shadow:0 0 13px rgb(0 0 0 / 30%);
	display:flex;
	justify-content:center;
    align-items:center;
	}

.sidebar-list li a:hover{background-color:var(--dark);}

.sidebar-list li.sidebar-fb a:hover{background-color:#1877f2;}

.gotop{
    position:fixed;
    bottom:35px;
    z-index:999;
	}

.gotop a{
    width:55px;
    height:55px;
    font-size:0;
	color:#fff;
    overflow:hidden;
    border-radius:50%;
    background-color:var(--dark);
    box-shadow:0 0 13px rgb(0 0 0 / 30%);
	position:relative;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    transition:all 0s ease 0s;
	}

.gotop a:active, .gotop a:hover {
	text-decoration:none;
	cursor:pointer;
    width:55px;
    height:55px;
	font-size:16px;
    color: #fff;
	transition: all 0.25s ease 0s;
	}

.gotop a::after{
	content:"";
	width:18px;
	height:12px;
	background:url("../images/top.png") no-repeat center;
	background-size:cover;
	position:absolute;
	top:50%;
	left:50%;
	margin:-6px 0 0 -9px;
	line-height:0;
	font-size:0;
	filter:alpha(opacity=100);
	Opacity:1.0;
	transition:all 0.5s ease 0s;
	}

.gotop a:hover{color:var(--color-primary);}

.gotop a:hover::after{
	filter:alpha(opacity=0);
	Opacity:0;
	transition:all 0.25s ease 0s;
	}

.fixed-icon{
    position:fixed;
    bottom:40px;
    right:40px;
    display:flex;
    flex-direction:column;
    align-items:center;
    z-index:999;
	}

.fixed-btn{
    position:relative;
    background-color:var(--color-primary);
    border-radius:50px;
    margin-bottom:6px;
    transition:all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.fixed-btn:hover{background-color:var(--dark);}

.fixed-btn a{
    color:#fff;
    display:flex;
    width:45px;
    height:45px;
    font-size:22px;
    align-items:center;
    justify-content:center;
	}

.fixed-btn a:hover{color:#fff;}

.fixed-btn .prompt-txt{
    position:absolute;
    width:120px;
    top:0;
    right:60px;
    font-size:16px;
    text-align:center;
    background-color:#ffffff;
    color:#ffffff;
    padding:6px 0;
    border-radius:5px;
    opacity:0;
    pointer-events:none;
    transition:all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

.fixed-btn .prompt-txt::before{
    position:absolute;
    content:"";
    height:8px;
    width:8px;
    background-color:#ffffff;
    right:-7px;
    top:42%;
    transform:translate(-50%) rotate(45deg);
    transition:all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}

.fixed-btn:hover .prompt-txt{
    top:5px;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
	}

.fixed-btn:hover .prompt-txt,
.fixed-btn:hover .prompt-txt::before{
	background-color:#047c51;
	color:#ffffff;
	}

/* Footer & Copyright */
.footer{background-color:#1c1c1c;}

.footer-block{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding:20px 0;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}

.foot-box{width:30%; text-align:left; position:relative;}

.foot-box-inner{margin:5px 15px 10px;}

.footer-logo{width:100%; max-width:250px;}

.footer-block h3{
	font-size:20px;
    color:#fff;
    margin-top:15px;
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(255,255,255,0.2);
	}

.footer-block p,
.footer-block a,
.footer-block ul li,
.footer-block ul li i{
	color:#fff;
	}

.footer-block a:hover{color:#ffff00;}

.infolist, .taglist{padding-left:0;}

.infolist li{
	padding:5px 5px 5px 30px;
	position:relative;
	}

.infolist li i{
	color:#5eb1fd;
	margin-right:7px;
	position:absolute;
	left:3px;
	}

.taglist li{
    display:inline-block;
    line-height:30px;
    margin-right:20px;
	}

.taglist li a{
	color:#fff;
	padding:5px 0 5px 15px;
    position:relative;
	}

.taglist li a::before{
	width:0;
    height:0;
    border-style:solid;
    border-width:4px 0 4px 8px;
    border-color:transparent transparent transparent #ffff00;
    content:"";
    position:absolute;
    left:0;
    top:9px;
    transform-style:preserve-3d;
    transition:all 0.5s ease;
	}

.taglist li a:hover{color:#ffff00;}
.taglist li a:hover::before{
	transform:rotateX(360deg);
	border-color:transparent transparent transparent #ffff00;
	}

.copyright{background-color:#e7eaeb;}

.protection{
	width:100%;
	max-width:200px;
	margin:20px auto;
	text-align:center;
	color:#fff;
    font-size:14px;
    box-sizing:border-box;
	}

.protection a{color:#686868;}
.protection a+a{margin-left:10px;}
.protection a:hover{color:#ccc;}

.ccin{
	width:100%;
    max-width:450px;
    margin:0 auto;
    padding-bottom:30px;
    text-align:center;
    font-size:14px;
    color:#868686;
    box-sizing:border-box;
    }

.ccin a{font-size:14px; color:#686868;}
.ccin a:hover{color:#ccc;}

.foot-decorate-1{
	width:250px;
	position:absolute;
	left:20px;
	bottom:0;
	}

/*fixed-menu_start*/
.fixed-menu-area{
	position:fixed;
	left:0;
	bottom:0;
	width:100%;
	z-index:10;
	display:none;
	}

.fixed-menu-block{background-color:#fff;}

.fixed-menu-row{
	display:flex;
	margin-right:auto;
    margin-left:auto;
    position:relative;
	}

.fixed-menu-box{width:20%; padding:10px 40px; text-align:center;}

.fixed-menu-box a{display:block;}

.fixed-menu-box:hover{background-color:#ededed;}

/*fixed-menu_end*/

/*inside page-setting_start*/
.page-banner-section{
    width:100%;
    height:300px;
    background-position:center;
    position:relative;
    text-align:center;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
	}

.page-banner-section .mainPageTitle_tw{
	font-size:26px;
	font-weight:bold;
	color:#fff;
	letter-spacing:5px;
	padding-top:70px;
	}

.page-banner-section .mainPageTitle_en{
	font-size:22px;
	letter-spacing:2px;
	color:#fff;
	}

.page-banner-section .subPageTitle{
    font-size:20px;
    letter-spacing:2px;
    color:#fff;
    position:relative;
	}

.page-banner-section .subPageTitle::before{
	content:"";
	display:block;
    width:250px;
    height:1px;
    background-color:rgba(255,255,255,0.5);
    margin:0 auto 10px;
	}

.main-container{
    width:95%;
    max-width:1100px;
    min-height:350px;
    margin:0 auto 80px;
	}

.main-container img{height:auto;}

.pageTitle-box{text-align:center; margin-bottom:30px;}

.pageTitle-box h3{
	font-size:28px;
	font-weight:bold;
	text-align:center;
	margin-bottom:10px;
	}

.pageTitle-box h4{
	font-size:22px;
	text-align:center;
	}

.main-container p{
	font-size:18px;
	line-height:1.7em;
	margin-bottom:15px;
	}

.main-container ul{
	list-style:inherit;
	margin-bottom:25px;
	}

.main-container ul li{font-size:18px; line-height:1.7em;}

.onePage-edit-block h3{
	font-size:28px;
	font-weight:bold;
	text-align:center;
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom:1px solid #ccc;
	}

.onePage-edit-block h4{
	font-size:20px;
	font-weight:bold;
	padding-bottom:5px;
	}

.page-navList-block{
	width:95%;
	max-width:750px;
	margin:20px auto 50px;
	padding:40px 20px 15px;
	text-align:center;
	background-image:url(../images/bg-g.png);
	position:relative;
	}

.navList-icon{
	width:50px;
	position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%) translateY(-50%);
	}

h4.navSlogan-tw{
	font-size:24px;
	font-weight:bold;
	color:#047c51;
	text-align:center;
	}

h4.navSlogan-en{
	font-size:20px;
	font-weight:bold;
	color:#047c51;
	text-align:center;
	}

ul.page-navList{
	margin-top:20px;
	padding-left:0;
	list-style:none;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	}

.page-navList li{
	width:25%;
	text-align:center;
	}

.page-navList li a{
	display:block;
	font-size:18px;
	color:#333;
	margin:3px;
	padding:10px 25px;
	background-color:#fff;
	}

.page-navList li:hover a{
	color:#fff;
	background-color:var(--dark);
	}

.product-table{
    width:100%;
    margin:10px auto 30px;
    border:1px solid #585858;
    text-align:center!important;
    font-size:20px;
    background-color:#fff;
	}

.product-table tr:nth-child(odd){
    background-color:rgba(243,152,0,0.15);
	}

.product-table td, .product-table th{
    padding:15px 7px;
    border:1px solid #585858;
    line-height:1.5em;
	}

.product-table p{margin-bottom:0;}

.cdep-proBox{margin-bottom:30px; text-align:center;}
.cdep-proBox a{display:block;}
.cdep-proBox h4{
	font-size:20px;
	color:#10772c;
	padding-top:10px;
	}

.cdep-proBox-content{margin-bottom:30px;}

.cdep-proBox-content h4{
	font-size:22px;
	font-weight:bold;
	color:#10772c;
	padding-bottom:5px;
	border-bottom:1px solid rgba(16,119,44,0.5);
	}

.cdep-proBox-content h5{font-size:20px; font-weight:bold;}

.th-head-ss th, .th-head-ss sup{color:#fff; font-weight:400;}

.th-head-ss{background-color:#686868!important;}

.td-bg-lignt-ss{
    background-color:rgba(214, 234, 253, 0.75);
	}

.no-content{background-color:#ccc;}

.table-responsive::-webkit-scrollbar{height:20px;}
.table-responsive::-webkit-scrollbar-track{background:#ededed;}
.table-responsive::-webkit-scrollbar-thumb{border-radius:999em; background:#ccc;}

.control-box{position:relative;}
.control-box .form-style-2{width:80%;}
.control-box .form-style-2-w{
    font-size:20px;
    font-weight:700;
    color:#000;
    position:absolute;
    top:3px;
    right:5px;
	}

.certificateBox{margin-bottom:30px;}

.certificateBox img{border:1px solid rgba(204,204,204,0.5);}

.youtube-video{width:100%; aspect-ratio:16/9;}

/*inside page-setting_end*/

/* inside page - about */
.about-section{
	background-size:cover;
    background-position:center bottom;
    background-repeat:no-repeat;
	}

.about-container{padding:100px 0 150px;}

.about-edit-box{
    margin:0 auto 80px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
	}

.about-edit-box:nth-child(odd){flex-direction:row-reverse;}

.about-edit-box-pic{flex-basis:500px;}
.about-edit-box-info{flex:1; padding:0 30px;}

.about-row{margin:50px auto;}

.color-W h4, .color-W p{color:#fff;}

.main-container ul.list-width-X,
.main-container ul.list-width-O{
	padding-left:0;
	list-style:none;
	}

.main-container ul.list-width-X i,
.main-container ul.list-width-O i{
	margin-right:3px;
	}

.main-container ul.list-width-X i{color:#ff0000;}
.main-container ul.list-width-O i{color:#008000;}

.about-edit-box>.box-inner{
	margin:10px;
	display:flex;
	align-items:center;
	}

.about-edit-box .about-infobox{
	width:60%;
	padding:15px;
	}

.about-edit-box .about-picbox{
	width:40%;
	padding:15px;
	}

.about-edit-box .about-picbox img{width:100%;}

.about-edit-box .about-infobox h3{
	font-size:32px;
	font-weight:bold;
	padding-bottom:10px;
	margin-bottom:15px;
	border-bottom:1px solid #686868;
	}

.about-edit-box ul{padding-left:25px;}
.about-edit-box ul li{list-style:disc;}

.colorbox-block{margin:30px auto; display:flex; flex-wrap:wrap;}

.colorbox-item{
	width:25%;
	margin-bottom:30px;
	padding:0 10px;
	text-align:center;
	}

.certificateBox .certificate-img{
	width:100%;
	border:1px solid rgba(204,204,204,0.35);
	margin-bottom:5px;
	background-color:rgba(0,0,0,0);
	position:relative;
	}

.certificate-img img{width:100%;}

.certificateBox .certificate-img::after{
	content:"\f002";
	color:#fff;
	font-size:36px;
	font-family:'Font Awesome 6 Free';
    font-weight:900;
	position:absolute;
	top:50%;
	left:50%;
	margin-top:-27px;
	margin-left:-18px;
	opacity:0;
	}

.certificate-img:hover{background-color:rgba(0,0,0,1);}
.certificate-img:hover img{opacity:0.5;}
.certificate-img:hover::after{opacity:1;}

/* inside page - application */
.apply-edit-block{
	display:flex;
	flex-wrap:wrap;
	margin-bottom:60px;
	}

.apply-edit-box{width:33.333%; margin-bottom:20px;}
.apply-edit-box>.box-inner{
	margin:10px;
	padding:10px;
	box-shadow:0px 3px 13px rgb(0 0 0 / 15%);
	}

.apply-edit-box:nth-child(3n+1){animation-duration:1s;}
.apply-edit-box:nth-child(3n-1){animation-duration:1.5s;}
.apply-edit-box:nth-child(3n){animation-duration:2s;}

.apply-cover{
    display:block;
    height:0;
    text-align:center;
    padding-bottom:65%;
    overflow:hidden;
    position:relative;
	}

.apply-cover img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transform:translate(-50% , 0) scale(1);
    transition:all 0.3s;
	}

h4.apply_title{
	display:inline;
    font-size:22px;
    font-weight:bold;
    color:var(--dark);
    line-height:2.5em;
    padding-bottom:5px;
    position:relative;
    background:linear-gradient(currentColor,currentColor) 0 100%/0 1px no-repeat;
    transition:background 0.4s;
    text-decoration:none;
	}

.apply-edit-box:hover>.box-inner{
	background:linear-gradient(#fff,#fff,#def8d1);
    background:-moz-linear-gradient(#fff,#fff,#def8d1);
    background:-o-linear-gradient(#fff,#fff,#def8d1);
    background:-webkit-linear-gradient(#fff,#fff,#def8d1);
	box-shadow:0px 3px 13px rgb(0 0 0 / 30%);
	}
.apply-edit-box:hover .apply-cover img{transform:translate(-50% , 0) scale(1.1);}
.apply-edit-box:hover .apply_title{background-size:100% 1px;}

.step-box{
	width:25%;
	margin-bottom:20px;
	display:flex;
	align-items:center;
	text-align:center;
	}

.step-box:nth-child(4n+1){animation-duration:1s;}
.step-box:nth-child(4n+2){animation-duration:1.25s;}
.step-box:nth-child(4n-1){animation-duration:1.5s;}
.step-box:nth-child(4n){animation-duration:1.75s;}

.step-info{width:80%;}
.step-arrow{width:20%;}

.step-info>.box-inner{
	margin:10px;
	padding:10px;
	background-color:#fff;
	box-shadow:0px 0px 10px rgb(0 0 0 / 10%);
	border:5px solid rgba(72,169,56,0);
	border-radius:10px;
	transition:all 0.3s;
	}

.step-info-title{
	margin-top:10px;
	padding-left:10px;
	text-align:left;
	}

.step-info-title p{font-weight:bold;}
.step-info-title p span{
	font-size:32px;
	font-family:'Sriracha', cursive;
	color:#e07a29;
	padding-left:5px;
	letter-spacing:1px;
	}

.step-info-icon{max-width:70px; margin:10px auto;}
.step-info-icon img{width:100%;}

.step-info-content h4{font-size:20px; font-weight:bold;}

.step-arrow p{
	font-size:32px;
	color:#ccc;
	transition:all 1.2s;
	}

.step-box:hover .step-info>.box-inner{
	background:linear-gradient(#fff,#fff,#fed280);
    background:-moz-linear-gradient(#fff,#fff,#fed280);
    background:-o-linear-gradient(#fff,#fff,#fed280);
    background:-webkit-linear-gradient(#fff,#fff,#fed280);
	border:5px solid rgba(72,169,56,0.75);
	box-shadow:0px 3px 13px rgb(0 0 0 / 30%);
	}

.step-box:hover .step-arrow p{color:#48a938;}

/* inside page - product */
.product-list-block{
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	}

.inner-nav{margin:30px auto 15px;}

.inner-nav ul{
	width:100%;
    display:inline-block;
    text-align:center;
    margin:0 auto;
    padding-left:0;
	}

.inner-nav li{
    display:inline-block;
    position:relative;
    text-align:center;
    margin:5px;
    border:1px solid rgba(23,28,97,0.7);
	}

.inner-nav li a{
    display:block;
    font-size:16px;
    color:#171c61;
    font-weight:bold;
    letter-spacing:1px;
    padding:10px 15px;
    background-color:#fff;
    position:relative;
	}

.inner-nav li a::after{
	content:"";
    position:absolute;
    height:2px;
    width:50%;
    transform:scale(0,1);
    background:#f39800;
    transition:all 0.2s ease-in-out;
    border-radius:5px;
    left:25%;
    bottom:10px;
	}

.inner-nav li a:hover{
	background-color:rgba(214,234,253,0.75);
	}

.inner-nav li:hover a::after{
	transform:scale(1,1);
	}

.inner-nav li.active a{
	color:#fff;
	background-color:#171c61;
	}

.product-content{display:flex; flex-wrap:wrap;}

.product-type-title-block{
	padding-top:5px;
	padding-bottom:10px;
	border-bottom:1px solid #dcdcdc;
	display:flex;
	flex-direction:row-reverse;
	justify-content:space-between;
	align-items:center;
	}

.product-type-infobox{margin-top:10px; padding:0 5px;}

.product-type-infobox h4{
	font-size:20px;
	color:#000;
	line-height:1.3em;
	}

.product-price{color:#868686;}

.product-menu-block ul.taglist li a:hover{color:#0072af;}

.product-type-box:hover>.box-inner{
	box-shadow:1px 3px 15px rgb(0 0 0 / 30%);
	background:linear-gradient(#fff,#fff,#cff0fc);
    background:-moz-linear-gradient(#fff,#fff,#cff0fc);
    background:-o-linear-gradient(#fff,#fff,#cff0fc);
    background:-webkit-linear-gradient(#fff,#fff,#cff0fc);
	}

.product-type-box:hover .product-type-cover{background-color:#000;}

.product-type-box:hover .product-type-cover img{
	opacity:0.6;
	transform:translate(-50% , 0) scale(1.1);
	}

.product-type-infobox a:hover h4{color:#0072af;}

.product-detail-block{width:80%;}

.pro-detail-cover{width:90%; max-width:600px; margin:0 auto 30px;}
.pro-detail-cover img{width:100%;}
.detail-infoBox .btn{display:flex; cursor:unset;}

.detail-infoBox .btn a{
    font-size:18px;
    text-align:center;
    background-color:#fff;
    border:1px solid #ccc;
    color:#000!important;
    padding:12px;
    margin-top:30px;
    margin-right:10px;
    margin-bottom:30px;
    width:200px;
	}

.product-slide-block-outside{
	position:relative;
	}

.product-slide-block{
	width:90%;
	margin:0 auto;
	padding-bottom:30px;
	overflow:hidden;
	}

.product-slide-box{
	margin:10px;
	border:1px solid rgba(204,204,204,0.35);
	}

.product-slide-box .img-cover{padding-bottom:75%;}

.proSlideBox-content{padding:5px 10px 15px;}

.product-slide-box h4{
	font-size:22px;
	font-weight:bold;
	color:var(--dark);
	margin-top:5px;
	margin-bottom:0;
	}

.tagBlock ul{
	text-align:center;
	margin-bottom:0;
	padding-left:0;
	}

.tagBlock ul li{
	display:inline-block;
	text-align:center;
	margin-bottom:5px;
	}

.tagBlock ul li a{
	display:block;
	color:#333;
	padding:3px 15px;
	border:1px solid #187f43;
	border-radius:7px;
	}

.slideBlock{
	position:relative;
	overflow:hidden;
	}

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

.swiper-slide>.img-cover{padding-bottom:70%;}

.sideAdBlock{
	width:250px;
	position:absolute;
	top:0;
	right:0;
	}

.searchBox{
    border:1px solid #ccc;
    border-radius:20px;
    display:flex;
    height:40px;
    margin:5px 0;
    padding:0;
	}

.searchBox .searchBtn{
    background-color:transparent;
    border:0;
    color:#888;
    padding:8px 10px;
	}

.searchBox input[type="text"]{border:0; background-color:unset;}

.searchBox .searchBtn{flex-basis:40px;}
.searchBox .searchBar{flex:1;}

ul.adDiscountList{
	padding-left:0;
	display:flex;
	justify-content:space-between;
	}

.adDiscountList .adDiscount_item{
	list-style:none;
	width:24.5%;
	}

.adDiscount_link{
    height:100%;
    display:block;
    position:relative;
	}

.adDiscount_bg{
    display:block;
    height:0;
    text-align:center;
    padding-bottom:45%;
	border-radius:8px;
    overflow:hidden;
    position:relative;
	}

.adDiscount_bg img{
    height:100%;
    max-width:100%;
    min-width:100%;
    object-fit:cover;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transform:translate(-50% , 0) scale(1);
    transition:all 0.3s;
	}

.adDiscount_edit{
    color:#fff;
    position:absolute;
    top:17px;
    left:20px;
	}

.adDiscount_title{
	font-size:20px;
	font-weight:700;
	text-shadow:1px 1px 3px #000;
	}

.adDiscount_subTitle{
	font-size:16px;
	font-weight:500;
	text-shadow:1px 1px 2px #000;
	}

.adDiscountBtn{
	width:80px;
	font-size:12px;
	color:#fff;
	text-align:center;
	margin-top:5px;
	padding:0 10px;
	border:1px solid var(--dark);
	border-radius:999em;
	background-color:var(--dark);
	}

.proType-container{max-width:1280px; position:relative;}
.cate-container{max-width:1280px;}
.recom-container{max-width:1280px;}

.proTypeBox>.box-inner{border:1px solid #ededed;}

.proBoxLink{display:flex;}

.proTypeBox-cover, .proTypeBox-content{width:50%;}

.proTypeBox-content{
	padding:10px;
	display:flex;
    flex-direction:column;
    justify-content:space-between;
	}

.proTypeBox-content h4{
	font-size:20px;
	font-weight:bold;
	color:var(--dark);
	margin-bottom:0;
	padding-top:15px;
	}

.proTypeBox-narrative p{
    display:-webkit-box;
    width:100%;
    height:4.5em;
    line-height:1.5em;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:14px;
    color:#333;
    margin:0;
	}

.blockTitle{
	font-size:24px;
	font-weight:bold;
	margin-top:10px;
	margin-bottom:0;
	padding-bottom:10px;
	}

.proListBox>.box-inner{border:1px solid #ededed;}

.proTypeCate-title{
	margin-bottom:7px;
	padding:7px 10px;
	border:1px solid var(--dark);
	border-radius:5px;
	background-color:var(--dark);
	position:relative;
	cursor:pointer;
	}

.proTypeCate-title h5{
	font-size:18px;
	color:#fff;
	margin-bottom:0;
	padding-top:3px;
	}

.proTypeCate-arrow{
	color:#fff;
	position:absolute;
	top:10px;
	right:10px;
	transition:all 0.35s ease-in-out;
	}

.proTypeCate-list{
	display:none;
	padding:10px 10px 0;
	border:1px solid #89c53e;
	border-radius:7px;
	transition:all 0.35s ease-in-out;
	}

.proTypeCate-list li{
	list-style:none;
	margin-bottom:5px;
	padding-left:25px;
	padding-bottom:5px;
	border-bottom:1px solid rgba(204,204,204,0.5);
	position:relative;
	}

.proTypeCate-list li a{color:#333; font-weight:600;}

.proTypeCate-list li a span{
	font-size:14px;
	font-weight:500;
	padding-left:5px;
	letter-spacing:1px;
	}

.proTypeCate-list li::before{
	content:"\f101";
	font-family:'Font Awesome 6 Free';
    font-weight:900;
    font-size:16px;
    color:#89c53e;
	position:absolute;
	top:0;
	left:3px;
	}

.proTypeCate-list li:last-child{border-bottom:none;}

.proTypeCate-box{margin-bottom:10px;}

.cate-listOpen .proTypeCate-arrow{transform:rotate(180deg); top:9px;}
.cate-listOpen .proTypeCate-list{display:block}

.proTypeCate-box:hover .proTypeCate-title{
	border:1px solid var(--color-secondary);
	background-color:var(--color-secondary);
	}
.proTypeCate-list li:hover a{color:var(--dark);}

.proListBox-cover .img-cover{padding-bottom:75%;}

.proListBox-content{padding:10px 10px 15px;}

.proListBox-content h5{
	font-size:18px;
	font-weight:bold;
	color:#333;
	margin-bottom:0;
	}

.proListBox-content h5>span{
	font-size:14px;
	font-weight:500;
	margin-left:3px;
	}

.proListBox:hover .proListBox-content h5{
	color:var(--dark);
	}

.moreBtn{
    width:115px;
    font-size:14px;
    text-align:center;
    color:#fff;
    border:1px solid var(--dark);
    border-radius:7px;
    background-color:var(--dark);
    margin:0 0 0 auto;
    padding:5px 10px;
	}

.moreBtn i{margin-left:10px;}

.priceBox{justify-content:space-between;}

.product-price-amount{
	font-size:20px;
	color:var(--dark);
	}

.addToCartBtn{text-align:center;}

.addToCartBtn a{
	padding:5px 7px;
	border:1px solid var(--dark);
	border-radius:7px;
    background-color:var(--dark);
	}

.addToCartBtn button{
    padding:5px 7px;
	border:1px solid var(--dark);
	border-radius:7px;
    background-color:var(--dark);
	}

.addToCartBtn span{
	color:#fff;
	font-size:14px;
	}

.addToCartBtn span i{margin-left:5px;}

.proTypeBox:hover>.box-inner{
	box-shadow:0px 3px 13px rgb(0 0 0 / 30%);
	}
.proTypeBox:hover .proTypeBox-content h4{color:var(--color-secondary);}
.proTypeBox:hover .moreBtn{
	border: 1px solid var(--color-secondary);
	background-color: var(--color-secondary);
	}

.swiper-slide:hover .product-slide-box{
    box-shadow:0px 3px 13px rgb(0 0 0 / 30%);
	}
.swiper-slide:hover a h4{color:var(--color-secondary);}
.swiper-slide:hover .product-price-amount{
	color:var(--color-secondary);
	}
.swiper-slide:hover .addToCartBtn button{
	border:1px solid var(--color-secondary);
	background-color:var(--color-secondary);
	}

.shareBlock{
	padding-top:20px;
	border-top:1px solid rgba(204,204,204,0.35);
	}

.shareBox{display:flex; align-items:center;}

.share-option{font-size:18px;}

ul.shareList{margin-bottom:0; padding-left:0;}
ul.shareList li{display:inline-block; margin-right:10px;}
ul.shareList li:last-child{margin-right:0;}
ul.shareList li a{
	display:-webkit-flex;
    display:flex;
    -webkit-justify-content:center;
    justify-content:center;
    -webkit-align-items:center;
    align-items:center;
    width:45px;
    height:45px;
    font-size:22px;
    color:#fff;
    border-radius:50%;
    background-color:var(--dark);
    transition:width 0.15s ease-in-out;
	}

.item-fb:hover{background-color:#1877f2;}
.item-line:hover{background-color:#00c300;}
.item-ig:hover{background-color:#e1306c;}
.item-twitter:hover{background-color:#1da1f2;}
.item-yt:hover{background-color:#ff0000;}

/* inside page - store */
.store-container{max-width:1480px;}

.storeBox{margin-bottom:50px;}

.storeBox .img-cover{
	padding-bottom:75%;
	border:1px solid rgba(204,204,204,0.5);
	}

.storeBox h4{
	font-size:24px;
	font-weight:bold;
	color:#10772c;
	text-align:center;
	padding-top:10px;
	margin-bottom:5px;
	}

.storeBox p{
	display:-webkit-box;
    width:100%;
    height:3.2em;
    line-height:1.6em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:16px;
    color:#333;
    margin:0;
	}

.detail-showBox{flex-basis:540px}

.big-pic-box{
	width:100%;
    height:400px;
    text-align:center;
    vertical-align:middle;
    margin-bottom:10px;
	border:1px solid rgba(204,204,204,0.3);
	}

.detail-showBox img{
	max-width:100%;
    object-fit:contain;
    height:100%;
    }

.detail-infoBox{flex:1; padding-top:10px;}

.detail-title-box{
	text-align:center;
	border-bottom:1px solid #ccc;
	margin-bottom:15px;
	}

.small-pic-button-box{
	width:100%;
	margin:0 auto;
	}

.small-pic-button-box .thumb-pic-box{
	width:86px;
	height:86px;
	margin-bottom:3px;
	display:inline-block;
	text-align:center;
	vertical-align:middle;
	border:1px solid rgba(204,204,204,0.3);
	}

.small-pic-button-box .thumb-pic-box img{
	max-width:100%;
	height:100%;
	object-fit:contain;
	}

.detail-infoBox h3{
	font-size:28px;
	font-weight:bold;
	padding-bottom:5px;
	margin-bottom:10px;
	border-bottom:1px solid rgba(204,204,204,0.35);
	}

.detail-option{
	font-size:18px;
	margin-bottom:10px;
	}

.rebateBox{
	display:inline-block;
	padding:10px 15px;
	font-size:18px;
	font-weight:bold;
	background-color:#fca310;
	}

.rebateBox i{margin-right:7px;}

.rebateBox span{font-size:14px; padding-left:3px;}

.qty-option{display:flex;}

.qty-title{
    display:flex;
    justify-content:center;
    align-items:center;
	}

.qty-title h4{font-size:18px; margin-bottom:0;}

.qty-box{
    width:150px;
    display:flex;
    justify-content:center;
    align-items:center;
	}

.qty-box form{
    display:flex;
    justify-content:center;
    align-items:center;
	}

.qty{
	width:40%;
    height:32px;
    font-size:18px;
    text-align:center;
    border:1px solid #aaa;
	}

.qtyminus, .qtyplus{
    background-color:#fff;
    border:1px solid #aaa;
    width:30%;
    height:32px;
    font-size:24px;
    font-weight:400;
    cursor:pointer;
}

.qtyminus{line-height:20px;}
.qtyplus{line-height:20px;}

.qtyminus:hover, .qtyplus:hover {
    background-color: #eee;
}

.point-option{display:flex;}

.point-title{
    display:flex;
    justify-content:center;
    align-items:center;
	}

.point-list{
	display:flex;
	align-items:center;
	margin-bottom:0;
	padding-left:0;
	}

.point-list li{list-style:none; margin-right:5px;}
.point-list li:child{margin-right:0;}

.star{
    width:18px;
    height:18px;
    background-image:url(../images/star_icon.svg);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
	}

.star_half{
    width:18px;
    height:18px;
    background-image:url(../images/star_icon_half.svg);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
	}

.star_empty{
    width:18px;
    height:18px;
    background-image:url(../images/star_icon_e.svg);
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
	}

.detail-content{
	padding:30px 15px 50px;
	border-top:1px solid rgba(204,204,204,0.5);
	border-bottom:1px solid rgba(204,204,204,0.5);
	}

.detail-content h4{font-size:24px;}

/* inside page - checkout */
.checkout-item{
	margin-bottom:40px;
	border:1px solid #ccc;
	background-color:#fff;
	}

.checkout-item p{margin-bottom:0;}

.checkout-item-header{
    padding:20px;
    border-bottom:1px solid #ccc;
    background-color:#dcdcdc;
    position:relative;
	}

.checkout-item-header.total-amount{
	border-bottom:1px solid #a0645f;
	background-color:#a0645f;
	}

.checkout-item-header h2{
	font-size:20px;
	font-weight:600;
	line-height:1.5em;
	margin-bottom:0;
	}

.checkout-item-header.total-amount h2{color:#fff;}

.checkout-item-header .remark{
	position:absolute;
	right:0;
	bottom:15px;
	}

.checkout-item-header .remark span{
	font-size:14px;
	color:#ff0000;
	}

.checkout-item label{font-size:16px;}

.checkout-item label span{
	font-size:16px;
	color:#ff0000;
	padding-left:3px;
	}

.main-container ul.checkout-list{margin-bottom:0; padding-left:0;}
.checkout-list li{
    display:block;
    cursor:pointer;
    border-bottom:1px solid #ccc;
	}

.checkout-list li:last-child{border-bottom:none;}

.checkout-list li input[type=radio]{display:none;}

.checkout-list li label{
    display:block;
    padding:20px 20px 20px 40px;
    cursor:pointer;
    position:relative;
	}

.checkout-list li input[type=radio]:checked+label{
	background:linear-gradient(to right,#def8d1,#fff);
    background:-moz-linear-gradient(to right,#def8d1,#fff);
    background:-o-linear-gradient(to right,#def8d1,#fff);
    background:-webkit-linear-gradient(to right,#def8d1,#fff);
	}

.checkout-list li label::before,
.checkout-list li label::after,
.radio-box li label::before,
.radio-box li label::after{
	content:"";
    position:absolute;
    top:50%;
    left:15px;
    -webkit-transform:translate(0,-50%) scale(1);
    transform:translate(0,-50%) scale(1);
    display:inline-block;
    width:16px;
    height:16px;
    box-sizing:border-box;
    transition:0.15s ease-in-out;
    transition-property:background-color,border-color,-webkit-transform;
    transition-property:background-color,border-color,transform;
    transition-property:background-color,border-color,transform,-webkit-transform;
	}

.checkout-list li input[type=radio]+label::before,
.checkout-list li input[type=radio]+label::after,
.radio-box li input[type=radio]+label::before,
.radio-box li input[type=radio]+label::after{
    border-radius:50%;
    border:1px solid #c3c3c3;
    background-color:#fff;
    }

.checkout-list li input[type=radio]:checked+label::before,
.checkout-list li input[type=radio]:checked+label::after,
.radio-box li input[type=radio]:checked+label::before,
.radio-box li input[type=radio]:checked+label::after{
	border-color:#ff6464;
	}

.checkout-list li input[type=radio]:checked+label::after,
.radio-box li input[type=radio]:checked+label::after{
	-webkit-transform:translate(0,-50%) scale(.5);
    transform:translate(0,-50%) scale(.5);
    background-color:#ff6464;
	}

.checkout-total{padding:20px; text-align:right;}

.checkout-total p{
	letter-spacing:2px;
    line-height:30px;
    font-size:20px;
    font-weight:800;
    color:#ff0000;
	}
.checkout-total span{font-size:28px;}

.checkout-wrapper select {
    padding: 10px;
    margin: 10px 0;
    font-size: 16px;
    width: 20%;
    border: 1px solid #aaa;
}
.checkout-item .form-row {
    display:flex;
    padding:10px 10px 10px 0;
}

.checkout-item .form-row .col-l{
    flex-basis:150px;
    display:flex;
    justify-content:right;
    padding-top:15px;
    padding-right:20px;
	}

.checkout-item .form-row .col-r{flex:1;}

.input{
	width:100%;
	box-sizing:border-box;
	outline:none;
	line-height:1.5em;
	padding:3px 10px;
	border-radius:4px;
	border:0;
	background-color:transparent;
	color:#000;
	font-family:inherit;
	}

.checkout-item .input{
	border:1px solid #aaa;
	padding:10px;
	}

.checkout-item .is-danger{
	display:block;
	font-size:16px;
	color:#ff0000;
	padding-top:10px;
	padding-left:10px;
	}

.ecoupon-list li{padding:20px;}

.sum-item{display:flex; position:relative;}
.sum-item .item-detail{padding:10px;}

.sum-item.has-remark{padding-top:35px;}

.item-remark{position:absolute; top:10px; left:15px;}

.item-remark h5{
	font-size:14px;
    color:#ff6464;
    padding:4px 6px;
    border:1px solid #ff6464;
    border-radius:3px;
    }

.checkout-item-order{font-size:16px; font-weight:bold;}
.checkout-item-order span{font-size:22px; color:#ff0000; padding-left:5px;}

.checkout-item-content .note{align-items:flex-start;}
.checkout-item-content .note .col-l label{padding-top:5px;}

::placeholder{color:#d7d7d7;}

.checkout-item-content .address{align-items:flex-start;}
.checkout-item-content .address .col-l label{padding-top:5px;}

.checkout-item-order{font-size:16px; font-weight:bold; line-height:1.8em;}
.checkout-item-order span{font-size:22px; color:#ff0000; padding-left:5px;}

.checkout-order-btn{
	position:absolute;
	top:50px;
	right:30px;
	cursor:pointer;
	}

.checkout-order-btn .fa-down-left-and-up-right-to-center{display:none;}

.checkout-order-open .fa-up-right-and-down-left-from-center{display:none;}
.checkout-order-open .fa-down-left-and-up-right-to-center{display:block;}

.checkout-item-content{display:none;}

.checkout-item-detail{display:none;}

.checkout-block .cart-list-box>.box-inner{
	margin:0;
	box-shadow:unset;
	display:flex;
	}

.checkout-block .cart-list-header>.box-inner{padding:8px 20px; background-color:#eee;}

.cart-list-th-L{width:52%; display:flex; align-items:center;}

.cart-list-th-S{width:12%; text-align:center;}
.cart-list-th-S p{font-size:16px; margin-bottom:0;}

.checkout-block .cart-list-box p{font-size:16px; margin-bottom:0;}

.checkout-block .cart-list-cover{
	flex-basis:80px;
	height:80px;
	}

.checkout-block .cart-list-name{flex:1; padding:0 15px;}
.checkout-block .cart-list-name span{font-size:14px; color:#aaa;}

.login-agree .col{display:flex; margin-bottom:20px;}

.check-btn {
    display:block;
    font-size: 18px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    padding: 12px;
    margin-top: 30px;
    margin-right: 10px;
    margin-bottom: 30px;
    width: 200px;
}

.check-btn:hover{background-color:#333; color:#fff;}

.confirm-item-content{display:flex; flex-wrap:wrap;}

.confirm-item-block{width:50%; padding:20px 20px 0;}
.confirm-item-block.confirm-remark{width:100%; padding:0 20px 20px;}

.confirm-item-box{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	}

.confirm-item-block .confirm-item-box .col-l{
	flex-basis:115px;
	padding:10px 5px 10px 0;
	text-align:right;
	}
.confirm-item-block .confirm-item-box .col-r{flex:1; padding:10px 0 10px 5px;}

.confirm-item-box.confirm-statement{padding:0 30px 20px;}

.confirm-statement h3{font-size:20px; font-weight:bold;}

.confirm-statement ul{padding:20px;}

.confirm-statement ul li{
	font-size:16px;
	padding:5px 0;
	line-height:1.5em;
	list-style:decimal;
	}

.confirm-statement ul li a{display:inline-block; color:#9b9b9b;}


.item-pic img{padding:10px;}

.sum-item img{width:100px;}

.sum-item .item-detail{padding:10px;}

.sum-item .item-detail .tit{
    display:-webkit-box;
    width:100%;
    height:1.6em;
    font-size:18px;
    font-weight:600;
    line-height:1.6em;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	}

.memberBadge{width:100px; text-align:center;}
.memberBadge img{width:100%;}
.sum-item .td-r .memberBadge span{color:#000;}

.item-detail .options{
    font-size:14px;
    padding-top:10px;
	}

.sum-item .item-detail .options{padding-top:0;}

.sum-item .item-detail .options.rebate-qty span{margin-right:10px;}
.sum-item .item-detail .options.rebate-qty span:last-child{margin-right:0;}

.sum-item .item-detail .check-qty{display:inline-block; margin-right:15px;}

.sum-item .item-detail .check-price{display:inline-block;}
.sum-item .item-detail .check-price span{font-weight:bold;}

.cart-list-th-S .cart-th-header-mobile{
	display:none;
	color:#aaa;
	}

#success_message{display:none;}

.form-content{display:flex;}
.form-part{width:50%;}

.form-table-phone{display:flex;}
.form-table-subbox{width:50%;}

.form-th{padding:12px 20px 5px;}
.form-tb{padding:0 20px;}

.form-tb input{width:100%; outline:none;}

.form-th-name{position:relative;}
.form-th-name .radio-box{
	position:absolute;
	top:5px;
	right:15px;
	width:160px;
	}

.form-tb .input{
    width:100%;
    box-sizing:border-box;
    outline:none;
    line-height:1.5em;
    padding:3px 8px;
    border-radius:5px;
    border:1px solid #aaa;
    background-color:transparent;
    color:#000;
    }

.form-name{display:flex;}

.form-address{display:flex; flex-wrap:wrap;}
.form-address .address-box{width:50%; padding:10px 0;}
.form-address .address-box:nth-child(1){padding:0 5px 0 0;}
.form-address .address-box:nth-child(2){padding:0 0 0 5px;}
.form-address .address-box:last-child{width:100%; padding:10px 0 0;}

.form-address select.form-control{
    display:block;
    width:100%;
    line-height:28px;
    padding:5px 10px;
    border:1px solid #aaa;
    background:#fff;
    border-radius:6px;
    box-sizing:border-box;
    margin-bottom:6px;
    -webkit-appearance:auto;
    -moz-appearance:auto;
    appearance:auto;
	}

.radio-box ul{margin-bottom:0; padding-left:0;}
.radio-box ul li{display:inline-block;}
.radio-box ul li input[type=radio]{display:none;}
.radio-box ul li label{padding:8px 5px 8px 40px; cursor:pointer; position:relative;}

.checkout-item-content .vat{align-items:flex-start;}
.checkout-item-content .vat .col-l label{padding-top:5px;}

.radio-box#vat-box{width:100%; height:100px;}

.vat-content{display:none; padding:0 20px;}

.vat-open .vat-content{display:block;}

.vat-block{
	display:flex;
	flex-wrap:wrap;
	border-top:1px solid #dbdbdb;
	}

.vat-box{display:flex; align-items:center;}

.vat-box label{
	flex-basis:120px;
	text-align:right;
	padding:20px 5px 20px 20px!important;
	}

.vat-box input{
	flex:1;
	padding:5px 10px;
    border-radius:5px;
    border:1px solid #aaaaaa;
    margin:15px 10px 12px;
	}

.checkout-confirm-btn{
	width:100%;
	max-width:200px;
	margin:15px 0 25px;
	padding:8px 15px;
	border:1px solid #ccc;
	border-radius:999em;
	}

.checkout-confirm-btn i{margin-left:5px;}

.form-tb textarea.input{min-height:150px;}

.confirm-btn-box{margin:12px auto 0; text-align:center;}

/* inside page - order */
.order-block{position:relative;}

.order-block .announcement{
	position:absolute;
	top:0;
	left:-270px;
	}

.order-block .announcement>.box-inner{
	width:250px;
	text-align:center;
	padding:15px;
	border:1px solid #ccc;
	border-radius:10px;
	background-color:#fff;
	}

.order-block .announcement h4{
	font-size:20px;
	font-weight:bold;
	color:#686868;
	margin-bottom:0;
	}

.order-block .announcement p{margin-bottom:8px;}

.order-block .announcement .remit-remark{
	font-size:14px;
	text-align:left;
	}

.order-list-box{margin:10px auto 20px;}
.order-list-box>.box-inner{
	border:1px solid #aaa;
	background-color:#fff;
	position:relative;
	}

.order-list-box .order-number-box{
	padding:10px 15px;
	background-color:#000;
	}

.order-list-box .order-number-box p{color:#fff; margin-bottom:0;}

.order-list-box .order-refix{
	display:flex;
	position:relative;
	background-color:#ccc;
	}

.order-list-box .order-remit{margin:10px;}

.order-list-box .order-delete{
	position:absolute;
	top:10px;
	right:10px;
	}

.order-list-box .order-btn{
	position:absolute;
	top:10px;
	right:20px;
	color:#fff;
	cursor:pointer;
	}

.order-list-box .order-btn i{margin-left:5px;}

.order-list-box .order-list-content{display:none;}

.order-detail-open .order-list-content{display:block;}
.order-detail-open .order-btn i{transform:rotate(180deg);}

.order-list-content p{margin-bottom:0;}

/* inside page - store */
.store-list-block{display:flex; flex-wrap:wrap;}

.store-list-box{
	width:33.333%;
	margin-bottom:30px;
	}
.store-list-box>.box-inner{
	min-height:220px;
	margin:10px;
	padding:15px 20px;
	border:1px solid rgba(104,104,104,0.2);
	border-radius:10px;
	}

.store-list-box h3{font-size:24px; font-weight:bold;}

.store-location p{margin:0 auto 5px;}

.store-time p{margin:15px auto 0;}

.store-location a{
	font-size:14px;
	color:#fff;
	padding:5px 10px;
    border:1px solid #7e7e7e;
    background-color:#7e7e7e;
    border-radius:999em;
	}

.store-location a i{margin-left:5px;}

.store-list-box:hover>.box-inner{
	box-shadow:1px 3px 15px rgb(0 0 0 / 20%);
	background:linear-gradient(#fff,#fff,#cff0fc);
    background:-moz-linear-gradient(#fff,#fff,#cff0fc);
    background:-o-linear-gradient(#fff,#fff,#cff0fc);
    background:-webkit-linear-gradient(#fff,#fff,#cff0fc);
	}

.store-location a:hover{
	color:#fff;
	border:1px solid #0072af;
	background-color:#0072af;
	}

.orderItemCover{
	width:100%;
	margin:0 auto 15px;
	}

.form-box-content .form-check{display:inline-block;}

.more-block{
    margin:50px auto 80px;
    display:flex;
    justify-content:center;
	}

.more-block>.more-btn{margin-top:0;}

.more-btn a{
    color:#fff;
    text-align:center;
    padding:10px 25px;
    border:1px solid var(--dark);
    background-color:var(--dark);
    border-radius:999em;
	}

.more-btn a i{margin-left:5px;}

.more-btn:hover a{
	color:#fff;
	border:1px solid var(--color-secondary);
    background-color:var(--color-secondary);
    }

/*inside - alliance*/
.allianceBlock{
	padding:50px 60px;
	border-radius:10px;
	background-image:url(../images/alliance_bg.jpg);
	background-size:cover;
	background-position:center;
	}

.allianceBlock .pageTitle-box h3{color:#fff;}
.allianceBlock .pageTitle-box h4{color:#fff;}

.allianceBlock-content{
	padding:20px;
	border-radius:10px;
	background-color:rgba(255,255,255,0.8);
	}

.allianceBlock-content h4{font-size:22px; font-weight:bold;}

.termsBlock{
	padding:50px 60px;
	border-radius:10px;
	border:1px solid var(--dark);
	}

/* inside - news */
.news-list-block{
	max-width:1280px;
	margin:0 auto 20px;
	display:flex;
	flex-wrap:wrap;
	}

.news-list-box{width:33.333%;}

.news-list-box>.box-inner{
	margin:10px;
	background-color:#fff;
	box-shadow:0px 0px 10px rgb(0 0 0 / 20%);
	}

.news-list-box>.box-inner>a{
	display:block;
	padding:10px;
	}

.news-list-cover{
	display:block;
    height:0;
    text-align:center;
    padding-bottom:75%;
    overflow:hidden;
    position:relative;
	}

.news-list-cover img{
	max-width:100%;
    min-width:100%;
    object-fit:cover;
    height:100%;
    -moz-object-fit:cover;
    -ms-object-fit:cover;
    -o-object-fit:cover;
    -webkit-object-fit:cover;
    position:absolute;
    transform: translate(-50% , 0) scale(1);
    transition:all 0.3s;
	}

.news-list-content{margin-top:5px; padding:0 5px; color:#000;}

.news-list-content .news-date span{
	color:#868686;
	font-style:italic;
	}

.news-list-content h3{
	display:-webkit-box;
    width:100%;
    height:2.8em;
    line-height:1.2em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:22px;
	font-weight:600;
    margin:0;
	}

.news-narrative p{
    display:-webkit-box;
    width:100%;
    height:3.6em;
    line-height:1.8em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    font-size:16px;
    margin:0;
	}

.news-list-btn{
	width:135px;
	text-align:center;
	color:#e07a29;
	border:1px solid #e07a29;
	border-radius:999em;
	background-color:unset;
	margin:10px 0 10px auto;
	padding:5px 15px;
	}

.news-list-btn i{margin-left:5px;}

.news-list-box:nth-child(1){width:100%;}

.news-list-box:nth-child(1)>.box-inner a{display:flex;}
.news-list-box:nth-child(1) .news-list-cover-box{flex-basis:450px;}
.news-list-box:nth-child(1) .news-list-content{flex:1; padding:0 20px;}
.news-list-box:nth-child(1) .news-list-cover{padding-bottom:60%;}
.news-list-box:nth-child(1) .news-list-content{
	display:flex;
	flex-direction:column;
    justify-content:space-between;
	}

.news-list-box:hover>.box-inner{
	box-shadow:0px 3px 13px rgb(0 0 0 / 30%);
	}

.news-list-box:hover .news-list-cover img{
	transform:translate(-50% , 0) scale(1.1);
	}

.news-list-box:hover .news-list-content h3{color:var(--color-primary);}

.news-list-box:hover .news-list-btn{
	color:#fff;
	background-color:var(--dark-secondary);
	border:1px solid var(--dark-secondary);
	}

.news-detail-titlebox{
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:1px solid rgba(204,204,204,0.45);
	}

.news-detail-titlebox .news-detail-date{
	font-size:16px;
	color:#868686;
	font-style:italic;
	margin-bottom:5px;
	}

.news-detail-titlebox .news-title h3{
	font-size:30px;
	margin-bottom:0;
	}

.back-btn-block{
	width:95%;
    margin:0 auto 50px;
    display:flex;
    justify-content:flex-end;
	}

.back-btn-box a{
	font-size:16px;
    color:#48a938;
    padding:12px 25px;
    border:1px solid var(--color-primary);
    border-radius:999em;
	}

.back-btn-box i{margin-right:5px; color:var(--color-primary);}

.back-btn-box:hover a{
	color:#fff;
	border:1px solid var(--dark);
	background-color:var(--dark);
	}

.back-btn-box a:hover i{color:#fff;}

/* inside - contact */
.contactInfoBox{position:relative;}

.remark{padding:0 10px;}
.remark span{color:#ea0000; margin-right:5px;}

.contactFormBox{margin-bottom:30px;}

.contactFormBox-inner{
	margin:10px;
	display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
	}

.textareaBox .contactFormBox-inner{align-items:flex-start;}

.contactFormBox label{
    font-size:18px;
    font-weight:bold;
	}

.textareaBox label{padding-top:5px;}

.contactFormBox label span{
    color:#ea0000;
    font-weight:500;
    margin-left:5px;
	}

.contactFormBox .formBox-content{width:75%;}

.textareaBox textarea.form-control{min-height:170px;}

.verifyBox{padding:10px;}

.verifyBox label, .verifyBox img{display:inline-block;}

.verifyBox img{width:110px;}

input#contact-yzm{
    width:150px;
    height:38px;
    display:inline-block;
    margin:0 0 0 10px;
    vertical-align:top;
	}

.ruleCheckbox{font-size:16px; color:#000; padding-left:10px;}
.ruleCheckbox a{color:#686868; padding-left:3px;}

.ruleCheckbox input{margin-right:5px;}

.ruleCheckbox a:hover{color:var(--dark);}

.send-btn-block{display:block; width:100%; text-align:center;}

.send-btn-block button{
    width:200px;
    margin:20px auto 0;
    padding:15px 15px;
    color:#3f5262;
    font-size:16px;
    font-weight:bold;
    background-color:unset;
    border:1px solid #3f5262;
    border-radius:30px;
    cursor:pointer;
	}

.send-btn-block button:hover{
	color:#fff;
	background-color:var(--dark-secondary);
	border:1px solid var(--dark-secondary);
	}

.contact-info-block{
	/*width:100%;
	max-width:800px;
	margin:0 auto 80px;*/
	position:relative;
	}

.contact-info-box{
	position:absolute;
	top:20px;
	right:15%;
	}

.contact-info-block p, .contact-info-block ul li{
	font-size:16px;
	margin-bottom:0;
	line-height:1.8em;
	}

.contact-info-box>.box-inner{
	margin:10px;
	padding:15px;
	border-radius:15px;
	background-color:#fff;
	box-shadow:1px 2px 6px #393939;
	}

.map-box iframe{width:100%; height:450px;}

h3.company-tw{font-size:26px; font-weight:bold;}

h3.company-en{font-size:20px;}

.main-container ul.contact-list{
	padding-left:10px;
	list-style:none;
	}

ul.contact-list li{
	font-size:18px;
	margin:3px 0 10px;
	}

ul.contact-list li a{color:#868686;}

ul.contact-list li i{margin-right:5px;}

.linkIconBlock{display:flex;}

.linkIconBox{margin-right:20px;}

.linkIconBox:last-child{margin-right:0;}

/*result*/
.result-block{
    width:95%;
    max-width:1080px;
    margin:0 auto;
	}

.result-exhibit-block{margin:30px auto 50px;}

.result-list{
	margin:20px;
	padding-left:0;
	}

.result-exhibit-box{
	list-style:none;
	border-bottom:1px dashed rgba(220,220,220,0.5);
	position:relative;
	}

.result-exhibit-box>a{
	display:flex;
	align-items:center;
	}

.result-cover{
    flex:0 0;
    flex-basis:300px;
    padding:15px;
	}


.result-narrative{flex-grow:1; padding:15px;}

.result_arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    width:72px;
    height:72px;
    border-radius:50%;
    position:absolute;
    right:20px;
	}

.result_arrow i{
    color:#86949a;
    font-size:20px;
	}

.result_arrow::before{
    content:"";
    display:block;
    width:100%;
    height:100%;
    background:#0b4a72;
    border-radius:50%;
    position:absolute;
    top:0;
    left:0;
    z-index:-1;
    transform:scale(0);
    transition:transform 0.2s ease-out;
	}

.result_arrow::after{
    content:"";
    background:currentColor;
	}

.result-exhibit-box>a:hover .result_arrow:before {
    transition-timing-function:cubic-bezier(.175,.885,.32,1.275);
    transform:scale(1);
	}

.result-exhibit-box>a:hover .result_arrow i{color:#fff;}

.result-narrative h4{
	width:85%;
	font-weight:600;
	color:#295087;
	}

.result-narrative h5{
	width:85%;
	font-size:14px;
	font-style:italic;
	color:#9b9b9b;
	}

.result-narrative p{
	display:-webkit-box;
    width:85%;
    height:3.6em;
    line-height:1.8em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#000;
    margin:0;
	}

/* Collapsibles Accordion */
.filter{padding:20px; display:none;}

.filter .accordion {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    background-color: #eee;
    color: #333;
    cursor: pointer;
    padding: 10px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 16px;
    transition: 0.4s;
  }
  
  .expand, .filter .accordion:hover {
    background-color: #ddd;
  }
  
  .filter .accordion:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .expand:after {
    content: "\2212";
  }
  
  .filter .panel {
    border-bottom: 1px solid #eee;
    margin-top: 10px;
    padding: 20px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

/* Login Section */
.login-tab .tab{display:flex;}

.login-tab .tablinks{
    width:50%;
    color:#000;
    background-color:#ccc;
    border-top:1px solid #ccc;
    border-right:1px solid #ccc;
    border-left:1px solid #ccc;
    border-bottom:none;
    padding:15px 25px;
    font-size:16px;
    text-align:center;
    border-top-right-radius:10px;
	border-top-left-radius:10px;
    cursor:pointer;
	}

.login-tab .active{
	background-color:#fff;
    border-top:1px solid #ccc;
    border-right:1px solid #ccc;
    border-left:1px solid #ccc;
	}

.member-loginBlock{
	padding:20px;
	background-color:#fff;
    border-top:none;
    border-right:1px solid #ccc;
    border-left:1px solid #ccc;
    border-bottom:1px solid #ccc;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	}

.member-loginBox{
	margin:10px 20px 0;
	padding-bottom:10px;
	border-bottom:1px dashed #cccccc;
	}

.loginBox-inner{
	display:flex;
	flex-wrap:wrap;
    justify-content:space-between;
	}

.member-loginBox label{
    font-size:16px;
    font-weight:bold;
    padding-top:5px;
	}

.loginBox-inner>label{
	font-size:18px;
	padding-top:7px;
	}

.member-loginBox .form-box-content{width:75%;}

.birthdayBoxContent{display:flex;}

.birthdayBoxContent select{margin-right:3px;}
.birthdayBoxContent select:last-child{margin-right:0;}

.has-unit-content{position:relative;}

.has-unit-content .form-control{width:calc(100% - 50px);}

.unit-form{position:absolute; top:10px; right:15px;}

.form-box-content textarea{min-height:200px;}

.login-btn{
    width:120px;
    font-size:16px;
    color:#333;
    margin:15px 5px 25px;
    padding:8px 15px;
    border:1px solid #ccc;
    border-radius:999em;
    display:inline-block;
    cursor:pointer;
	}

.login-btn:hover{
	color:#fff;
	background-color:var(--dark);
	}

.header-title h2 {
    font-size: 28px;
    font-weight: 200;
    padding: 20px 10px;
}

.member-content{padding:15px;}

.member-box{padding-bottom:30px;}

.member-level{
	display:flex;
    padding-bottom:30px;
	}

.member-txt{padding:15px 30px;}

.member-txt h3{font-size:24px;}

.member-nav{
    padding-top:30px;
    border-top:1px solid #ccc;
	}

.member-nav .row{justify-content:center;}

.member-col{text-align:center; padding:15px 10px;}

.member-col a{color:#333; font-size:18px;}

.member-btnBlock{
	margin-top:30px;
	display:flex;
	justify-content:center;
	}

.memberBtnBox{margin-right:10px;}
.memberBtnBox:last-child{margin-right:0;}

.memberBtnBox a{
	display:block;
	font-size:16px;
	color:#000;
	line-height:1.5em;
	text-align:center;
	padding:12px 25px;
	border:1px solid #ccc;
	border-radius:5px;
	background-color:rgba(204,204,204,0.75);
	transition:0.3s ease;
	}

.memberBtnBox:hover a{
	color:#fff;
	background-color:var(--dark);
	}

.sum-item{
    display:flex;
    position:relative;
	}

.checkout-item-content .sum-item{border-top:1px solid #ededed;}
.checkout-item-content .sum-item:nth-child(1){border-top:none;}

.sum-item table{width:100%; border:0;}

.sum-item tr{
    display:flex;
    border-right:1px solid #ddd;
    border-left:1px solid #ddd;
    border-bottom:1px solid #ddd;
	}

.sum-item tr:nth-child(1){border-top:1px solid #ddd;}

.sum-item td{padding:15px;}

.sum-item .td-l{
    flex-basis:130px;
    border-right:1px solid #ddd;
	}

.sum-item .td-r{
	flex:1;
    padding-left:40px;
	}

.sum-item .td-r span{font-size:14px; color:#868686; margin-left:5px;}

.member-info .sum-item .td-r input{padding:0;}

.member-info td.editBox{position:relative;}

.member-info td.editBox::after{
	content:"\f044";
	font-family:'Font Awesome 6 Free';
	font-weight:900;
	color:#ccc;
	position:absolute;
	top:26px;
	right:25px;
	z-index:2;
	}

.member-info td.passwordBox::after{content:"";}

.member-info td.editBox input{
	padding:7px!important;
	border:1px solid #ededed;
	position:relative;
	z-index:1;
	}

.member-content .end-btn{
    display:flex;
    padding:20px 0;
	}

.member-content .end-btn a{margin-right:10px;}

.revise-info, .revise-pw {
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    padding: 10px;
    width: 120px;
}

.forgot-btn{background-color:#ededed;}

.modal-body .forget-group{
	display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    margin-bottom:20px
	}

.forget-group input{
    width:100%;
    padding:12px 17px;
	}

.sendBtnBox{text-align:center;}

.passwordBox .form-box-content{position:relative;}

.passwordBox img{
	width:25px;
	height:auto;
	position:absolute;
	top:7px;
	right:10px;
	z-index:2;
	}

.member-info td.passwordBox img{top:24px; right:23px;}

/* inside page - shoppingcart */
.cartListBox{
	width:100%;
    margin:20px auto 0;
	padding:20px;
    border:1px solid #ccc;
    position:relative;
	}

.cartListBox a{color:#333;}

.cartListBox-header, .cartListBox-specs{
    width:100%;
    display:flex;
	}

.cartListBox-header>.cartList-cover{
    flex:0 0;
    flex-basis:100px;
	}

.cartListBox-header>.cartList-detail{
    flex-grow:1;
    width:auto;
	}

.cartList-cover img{padding:10px;}

.cartList-tit{font-size:18px; font-weight:600; line-height:1.3em;}

.cartList-model{
	font-size:14px;
    font-weight:200;
    color:#aaa;
    line-height:1.5em;
	}

.cartList-detail .options{
    font-size:14px;
    font-weight:600;
    line-height:1.5em;
	}

.cartList-detail .options span{margin-right:15px}

.cartList-detail .options span:last-child{margin-right:0;}

.cartList-detail .rebateUse{
	margin-top:10px;
	display:flex;
	align-items:center;
	}

.cartList-detail .rebateUse span{font-size:16px;}

.cartList-detail .rebateUse select{
	width:65px;
	margin-left:10px;
	padding:3px 10px;
	}

.cartListBox-specs{
	margin-top:15px;
	justify-content:space-between;
	}

.cart-quantity{
    width:120px;
    font-size:20px;
    font-weight:500;
    display:flex;
    justify-content:center;
	}

.cart-quantity form{
    display:flex;
    justify-content:center;
    align-items:center;
	}

.cart-price{width:120px; text-align:right;}

.cart-price .price{
    letter-spacing:2px;
    line-height:30px;
    font-size:18px;
    font-weight:800;
    color:#ff6464;
	}

.delete-btn{
    position:absolute;
    top:10px;
    right:20px;
	}

.delete-btn a{
    color:#ccc;
    width:30px;
    height:30px;
    text-align:center;
    line-height:32px;
	}

.delete-btn:hover a{color:#ff6464;}

.cart-total{
    width:100%;
    border:1px solid #f1f1f1;
    background-color:#f1f1f1;
    flex-wrap:wrap;
	}

.sum-item .conclusion-block{width:100%;}

.conclusion-block{
    display:flex;
    justify-content:flex-end;
	}

.conclusion-box{width:50%; padding:10px 5px;}

.conclusion-row{
    display:flex;
    padding:5px;
    font-size:16px;
    font-weight:lighter;
	}

.conclusion-block .conclusion-li_left{
	flex:2;
    text-align:left;
	}

.conclusion-block .conclusion-li_right{
    flex:1;
    text-align:right;
    letter-spacing:1px;
	}

.conclusion-total{
    letter-spacing:2px;
    line-height:30px;
    font-size:20px;
    font-weight:800;
    color:#ff0000;
    padding-top:7px;
	}

.emptyBox{
	width:95%;
	max-width:800px;
	min-height:350px;
	border-radius:10px;
	position:relative;
	display:flex;
    justify-content:center;
    align-items:center;
	}

.emptyBox::after{
	content:"";
	width:300px;
	height:300px;
	background-image:url(../images/shoppingcart_empty.png);
	position:absolute;
	right:0;
	bottom:0;
	z-index:1;
	}

.emptyBox h3{
	font-size:24px;
	font-weight:bold;
	color:#aaa;
	position:relative;
	z-index:3;
	}

.has-top-border{
    border-top:1px solid #ccc;
    padding-bottom:0;
	}

.rebate-border{
	color:#868686;
	margin-top:5px;
	border:1px solid #ccc;
	}

.question-tag{
    position:relative;
    cursor:pointer;
    }

.question-tag i{
    color:#9b9b9b;
    margin-left:5px;
    }

.question-note{
    display:none;
    position:absolute;
    top:20px;
    right:0;
	}

.question-note p{
    width:270px;
    font-size:10px;
    text-align:left;
    line-height:1.5em;
    padding:5px 10px;
    color:#fff;
    background-color:#666;
    border-radius:3px;
	}

.question-tag:hover .question-note{display:block;}

.shoppingcart-btn{
    width:100%;
    padding-top:20px;
    padding-bottom:40px;
    margin:0 auto;
    text-align:center;
    display:flex;
    justify-content:center;
	}

.main-container ul.shoppingcart-btn{
	list-style:none;
	margin-top:30px;
	padding-left:0;
	}

.shoppingcart-btn li{margin-right:15px;}
.shoppingcart-btn li:last-child{margin-right:0;}

.shoppingcart-btn li a{
	font-size:16px;
    font-weight:200;
	color:#000;
    padding:10px 20px;
    letter-spacing:2px;
	}

.shoppingcart-btn li:hover a{color:#fff;}

.shoppingcart-item{
    width:95%;
    margin:20px auto;
    border:1px solid #ccc;
    position:relative;
	}

.order-tab .shoppingcart-item.completed{display:flex;}
.order-tab .shoppingcart-item.cancel{display:flex;}

.order-tab .shoppingcart-item>.item-pic{flex:0 0; flex-basis:100px;}
.order-tab .shoppingcart-item>.item-detail{flex:1;}

.announcement .box-inner{
	width:280px;
	margin:10px 20px 0;
    padding:15px;
    border:1px solid #ccc;
    border-radius:10px;
    background-color:#fff;
	}

.announcement h4{
    font-size:20px;
    font-weight:bold;
    color:#686868;
    margin-bottom:0;
    line-height:1.5em;
	}

.announcement p{
	font-size:16px;
	line-height:1.5em;
	margin-bottom:0;
	}

.c-d{
	margin:55px auto;
	padding-left:0;
    text-align:center;
    font-size:20px;
    font-weight:500;
}
.c-d li{
	background-color:#fff;
    border:1px solid #ccc;
    color:#000;
    padding:5px 10px;
    font-size:16px;
    font-weight:200;
    letter-spacing:2px;
    margin-top:10px;
	list-style:none;
	width:100px;
	}

.c-d li:hover{border:1px solid #aaa; padding:10px;}

.c-d li a:hover{color:#000;}

.edit-btn .del-btn{border:1px solid #ff6464; color:#ff6464;}

.edit-btn .del-btn:hover{border:1px solid #ff0000;}

.edit-btn .del-btn a:hover{color:#ff0000;}

.shoppingcart-btn {
	width: 100%;
	padding-top:20px;
    padding-bottom:40px;
    margin: 0 auto;
	text-align: center;
	}

.shoppingcart-btn li{
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 200;
    margin-left: 10px;
    letter-spacing: 2px;
	}

.shoppingcart-btn li:hover{
	border:1px solid #aaa;
	background-color:#aaa;
	}

.shoppingcart-btn li a{color:#000;}

.order-btn{position:absolute; top:15px; right:10px;}

.order-btn a{color:#fff; padding:10px;}

.order-btn a i{margin-left:5px;}

.order-detail-box{
	display:none;
	width:100%;
	border-top:1px solid #dcdcdc;
	}

.order-detail-open .order-detail-box{display:block;}

.order-detail-box>.box-inner{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	border:1px solid #ccc;
	margin:10px 10px 5px;
	padding:10px 0;
	}

.order-detail-box>.box-inner.has-promotion{margin-top:0; border-top:none;}

.order-detail-box .box-inner>.item-pic{flex:0 0; flex-basis:130px;}
.order-detail-box .box-inner>.item-detail{flex-grow:1; width:auto;}

.item-name-box>.item-pic{flex:0 0; flex-basis:100px;}
.item-name-box>.item-detail{flex-grow:1; width:auto;}

.order-detail-info{line-height:25px; flex:1;}

.item-detail{line-height:25px;}

.order-num{
	color:#fff;
	padding:10px 15px;
	background-color:#000;
	}

.item-detail .order-refix{
	padding:10px;
    display:flex;
    justify-content:space-between;
    position:relative;
    background-color:#ccc;
	}

.item-detail .order-remit{display:flex; flex-wrap:wrap;}

.order-remit .remit-btn, .order-delete .order-delete-btn{width:90px; text-align:center;}
.order-remit .report-box{
	display:none;
	width:100%;
	margin-top:10px;
	}

.order-remit-open .report-box{display:block;}
.order-remit-open .report-box form{display:flex;}

.order-remit-open .report-box input[type="submit"]{
	width:150px;
	color:#fff;
	margin-left:10px;
	background-color:#767676;
	}
.order-remit-open .report-box input[type="submit"]:hover{
	color:#000;
	background-color:#a4a4a4;
	}

.item-detail .order-infowrapper{
	padding:15px;
	display:flex;
	flex-wrap:wrap;
	background-color:#ededed;
	}

.item-detail .order-infoitem{
	width:50%;
	padding:5px 0;
	}

.order-detail-box .recipient-info .recipient-box{display:flex;}

.order-detail-box .recipient-info .recipient-box .recipient-L{
	flex-basis:130px;
	font-size:16px;
	padding:15px;
	text-align:right;
	background-color:#f7f7f7;
	}

.order-detail-box .recipient-info .recipient-box .recipient-R{
	flex:1;
	font-size:16px;
	padding:15px;
	border-bottom:1px solid #f1f2f4;
	}

.cart-list-box>.box-inner{
    padding:20px;
    background-color:#fff;
    border:1px solid #ededed;
    display:flex;
    align-items:center;
    position:relative;
	}

.order-detail-box .cart-list-header>.box-inner{
    padding:8px 20px;
    background-color:#eee;
	}

.order-detail-box .order-list-item{padding:10px;}

.order-detail-box .order-list-item>.box-inner{
	margin:10px;
	padding:0 0 20px;
	display:flex;
	align-items:center;
	border-bottom:1px solid #ededed;
	}

.order-detail-box .cart-list-cover{
	flex-basis:80px;
	height:80px;
	}

.order-detail-box .cart-list-name{flex:1; padding:0 15px;}
.order-detail-box .cart-list-name p.cartItem{font-size:16px; color:#000; margin-bottom:7px;}
.order-detail-box .cart-list-name p.cartItem span{font-size:14px; color:#aaa;}

.order-detail-box .cart-list-content h3{font-size:16px;}
.order-detail-box .cart-list-content p{font-size:14px; margin-bottom:0;}

.order-detail-box .conclusion-row{align-items:flex-end;}

.order-detail-box .order-total{
	display:flex;
    justify-content:flex-end;
	}

.order-detail-box .order-total .order-total-box{
	width:30%;
    padding:10px 15px;
	}

.order-detail-box .conclusion-li_left{flex:1; text-align:left; padding-bottom:3px;}
.order-detail-box .conclusion-li_right{flex:1; text-align:right;}

.order-detail-box .conclusion-li_right{font-size:18px;}

.order-detail-info .tit{
	display:-webkit-box;
    width:100%;
    height:2.4em;
	font-size:16px;
	font-weight:bold;
    line-height:1.2em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	}

.order-detail-info .options{
    font-size:14px;
    padding-top:0px;
	}

.order-detail-info .options.check-qty{display:inline-block; margin-right:15px;}

.order-detail-info .options.check-price{display:inline-block;}
.order-detail-info .options.check-price span{font-weight:bold;}

.item-detail .discount{
    font-size:19px;
    font-weight:400;
    letter-spacing:2px;
    line-height:30px;
    color:#ff6464;
	}

.promotion-tag{
	width:100%;
	padding:10px 30px;
	background-color:#f8e8e3;
	margin-top:-10px;
	}

.promotion-tag.color-blue{background-color:#bfc8ea;}

.promotion-tag h3{
	font-size:18px;
	font-weight:bold;
	margin-bottom:0;
	}

.form-detail{
	width:100%;
	border:1px solid #e1e1e1;
	margin:10px;
	padding-left:0;
	}

.form-detail li{display:flex; border-bottom:1px solid #e1e1e1;}

.form-detail li:last-child{border-bottom:none;}

.form-detail .form-title{width:30%; padding:10px;}
.form-detail .form-desc{width:70%; padding:10px; border-left:1px solid #e1e1e1;}

/* inside page - order */
.order-tab .tab{border-bottom:1px solid #aaa;}

.order-tab .tablinks{
    background-color:#fff;
    border:0;
    padding:10px 20px;
    font-size:16px;
    margin:0 20px;
}
.order-tab .active{
    color:#29abe2;
    border-bottom:3px solid #29abe2;
	}

/* inside page - notice */
.notice-edit-block{margin:0 auto 50px;}

.notice-edit-box{
	margin:0 auto 25px;
	padding:20px 20px 0;
	border-bottom:1px solid #aaa;
	}

.notice-edit-box:last-child{border-bottom:unset;}

.notice-title{
	position:relative;
	}

.notice-title h3{
	font-size:26px;
	font-weight:600;
    letter-spacing:2px;
	margin-bottom:0;
	padding-top:50px;
	padding-left:30px;
	z-index:5;
	}

.notice-title h4{
	font-size:72px;
	font-weight:bold;
	color:#eee;
	margin-bottom:0;
	position:absolute;
	top:0;
	left:0;
	z-index:-1;
	}

.notice-content{padding:20px;}

.notice-content h5{
    font-size:22px;
    font-weight:bold;
    letter-spacing:2px;
    padding:10px 0;
    line-height:1.5em;
	}

.notice-content p{font-size:18px; line-height:1.5em;}

.notice-content ul{padding-left:20px;}

.notice-content ul li{
	font-size:18px;
    line-height:2em;
    list-style:disc;
	}

.for_mobile{display:none;}

.process-block{display:flex;}

.process-box{
	width:25%;
	text-align:center;
	margin:15px auto 0;
	padding:0 25px 15px;
	position:relative;
	}

.process-box .pcover i{
	font-size:48px;
    background-color:#eee;
    color:#666;
    padding:20px;
    margin-bottom:15px;
    border-radius:50px;
    width:90px;
    height:90px;
	}

.process-box .pnumber{
	font-size:20px;
    font-weight:bold;
    text-align:center;
    color:#666;
    }

.process-box p{text-align:left; margin:5px 10px 0;}

.process-box .step-arrow{
	font-size:20px;
	color:#aaa;
	position:absolute;
	top:40%;
	left:0;
	}

.process-box:nth-child(1) .step-arrow{display:none;}

.dividing-line{
    width:90%;
    max-width:350px;
    font-size:18px;
    color:#b5b5b5;
    letter-spacing:0.1em;
    margin:10px auto 20px;
    text-align:center;
    position:relative;
    display:flex;
    align-items:center;
	}

.dividing-line::before, .dividing-line::after{
    content:"";
    height:1px;
    flex-grow:1;
    background-color:#b5b5b5;
	}

.dividing-line::before{margin-right:15px;}
.dividing-line::after{margin-left:15px;}

.other-btn{display:flex; justify-content:center;}

.btn-other{margin:0 5px; border:0; background-color:unset;}

.btn-other a{
	color:#333;
	font-size:16px;
	padding:10px 15px;
    background-color:#fff;
    border:1px solid #aaa;
    border-radius:5px;
	}

.btn-other a i{margin-right:5px;}

.btn-facebook a{
	color:#fff;
	background-color:#036ce5;
	border:1px solid #036ce5;
	}

.btn-other a:hover{background-color:#ddd; border:1px solid #ddd;}
.btn-facebook a:hover{
	color:#fff;
	background-color:#335495;
	border:1px solid #335495;
	}

/* Responsive */
@media only screen and (max-width:1600px){
    .lump{display:none;}
    .about-txt{padding:100px 20px;}
    .planitem-block{margin:auto; padding:0;}
    .planitem-tit{bottom:28%;}
    .result-tit{width:30%; right:0;}
    .moving-picbox1{right:0;}
    .moving-picbox2{left:3%;}
    .moving-pic1{max-width:500px;}
	}

@media only screen and (max-width:1480px){
	.order-block .announcement{position:absolute; top:-180px; left:0;}
	.order-block .announcement>.box-inner{width:auto; text-align:left;}
	}

@media only screen and (max-width:1400px){
    .about-block{width:100%;}
    .about-txt{padding:50px 20px;}
    .work-block{width:100%;}
    .plan-block{width:100%;}
    .result-block{width:100%; height:100%;}
    .header-banner{width:100%;}
    .main-block{width:100%;}
    .planitem-block{width:100%;}
    .result-box{left:65%;}
    .result-txt{padding:100px 0;}
    .footer-block{width:90%;}
    .planinfo-lump{height:25%;}
    .planitem-tit{position:relative; text-align:center; padding-top:100px;}
    .planitem-tit h2{color:#0099ff; width:100%;}
    .planitem-tit h3{color:#000; width:100%;}
    .plan-item{padding-top:40px;}
    .planup-lump{bottom:50%;}
    .moving-picbox2{top:20%;}
    .moving-pic2{width:380px;}
    .news-section::after{right:15%; margin-right:unset;}
    .banner-slide-pic{flex-basis:500px;}
    .index-banner-block{padding:250px 0;}
	}

@media only screen and (max-width:1360px){
    .page-header-banner{max-width:1000px;}
    .slide-txt{bottom:180px; left:150px;}
    .about-txt{padding:20px;}
    .work-project{padding:0 40px;}
    .work-custom{right:27%;}
    .work-software{right:43%;}
    .contact-info-box{right:10%;}
	}

@media only screen and (max-width:1280px){
    .work-depiction{left:0;}
    .work-custom{right:0;}
    .work-shopping{left:0; margin-top:20px!important;}
    .work-software{right:0; margin-top:20px!important;}
    .work-module{left:0; margin-top:20px!important;}
    .work-entit{right:0; margin-top:20px!important;}
    .work-img{width:100%!important; height:100%!important;}
    .work-img img{width:100%; margin:0;}
    .work-info{padding:0;}
    .work-info h3{margin:0;}
    .moving-picbox1{top:30%;}
    .moving-pic1{width:400px;}
    .product-slider-banner-bolck{margin-left:-490px;}
    .product-slider-banner{max-width:980px;}
    .product-exhibit-box{width:33.333%;}
    .about-spirit-pic1{left:0;}
    .news-list-box{width:33.333%;}
    .prodeta-showbox{flex-basis:400px;}
    .small-pic-box{max-width:400px;}
    .contact-info-box{right:5%;}
	}

@media only screen and (max-width:1200px){
    body{font-size:14px!important;}
    .page-banner-bg{height:550px;}
    .menu-container .row{width:100%;}
    .slide-txt h2{font-size:42px;}
    .slide-txt h3{font-size:24px;}
    .slide-txt h4{font-size:18px;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:32px;}
    .about-txt h3{margin-top:10px;}
    .about-txt h4{font-size:18px;}
    .result-txt h2{margin:0;}
    .result-txt h4{display:none;}
    .footer .row, .copyright .row{width:100%;}
    .planinfo-lump{height:20%;}
    .planitem-tit{padding-top:70px;}
    .planup-lump{bottom:54%;}
    .result-lump{display:none;}
    .news-section::after{right:17%;}
    .product-section .pro-project-container{width:90%; max-width:600px; margin:-80px auto 0; padding:0;}
    .pro-project-box{margin-bottom:50px;}
    .food-spirit-block{max-width:800px; height:auto; background-image:unset;}
    .food-item-box-1, .food-item-box-2, .food-item-box-3, .food-item-box-4{position:inherit;}
    .food-item-box-4{margin-left:unset;}
    .home-title-box{position:inherit; top:unset; left:unset; margin-left:unset;}
    .home-title-box{max-width:none; text-align:left; padding:0 20px;}
    .home-title-box h2, .home-title-box h3, .home-title-box img{display:inline-block;}
	.home-section .block-title.color-W{color:#000;}
    .home-section .handwriting{color:#fff;}
    .life-spirit{width:85%; max-width:450px; margin:0 auto 60px;}
    .proTypeCate-title h5{font-size:16px; padding-top:0; padding-right:20px;}
    .adDiscountList{flex-wrap:wrap;}
    .adDiscountList .adDiscount_item{width:49.5%; margin-bottom:10px;}
	}

@media only screen and (max-width:1080px){
    .navTrigger{display:block;}
    .menu-row{margin:0 auto; justify-content:flex-start;}
    .main-logo{max-width:180px;}
    .nav-navbar{display:none;}
    .member-block{display:none;}
	.page-header-section{height:280px;}
    .logo-img a{display:block; padding:5px 0;}
    .menu-block{margin-right:70px;}
    .search-block{margin-top:0;}
    .page-header-banner{max-width:800px;}
    .page-header-banner .banner-title{font-size:56px;}
    .open-nav{display:block;}
    .about-txt{padding:100px 30px;}
    .second-title, .second-paragraph{display:none;}
    .work-info h3{font-size:42px;}
    .plan-img h3{font-size:36px; top:-32px;}
    .result-txt{padding:60px 0;}
    .header-banner .en-tit h3{font-size:66px;}
    .header-banner .tit{bottom:120px;}
    .planinfo-lump{height:18%;}
    .plan-item{padding-bottom:40px;}
    .planup-lump{bottom:56%;}
    .plan-item .txt{padding:10px 60px;}
    .result-content{padding-bottom:40px;}
    .result-item{padding:10px 0 !important;}
    .result-item .icon i{width:80px; height:80px;}
    .result-item .txt h3{font-size:20px;}
    .result-tit{width:40%; bottom:5%;}
    .product-slider-banner-bolck{margin-left:-300px;}
    .product-slider-banner{max-width:600px;}
    .index-banner-block{padding:100px 0;}
    .banner-section .swiper-slide{flex-wrap:wrap;}
    .banner-slide-pic{flex-basis:100%; max-width:600px;}
    .banner-slide-info{flex:inherit; width:100%;}
    .product-menu-block{width:30%;}
    .product-type-block{width:70%;}
    .product-type-box{width:50%;}
    .product_detail .product-menu-block{display:none;}
    .product_detail .product-detail-block{width:100%;}
    .prodeta-main-block{flex-wrap:wrap;}
    .prodeta-showbox{flex-basis:100%;}
    .product_detail .prodeta-content{margin-top:20px; padding:0;}
    .without-page-header{padding-top:70px;}
    .contact-info-box{position:inherit; top:unset; right:unset;}
    .contact-info-box{width:90%; max-width:400px; margin:0 auto 50px;}
    .foot-decorate-1{width:150px; left:-20px;}
    .foot-box-logo{width:100%;}
    .foot-box-contact{width:50%;}
    .foot-box-sitemap{width:50%;}
    .detail-showBox{flex-basis:450px;}
	}

@media only screen and (max-width:991px){
	.title-logo-box{display:none;}
	.title-contact-box{display:none;}
	.sideMenu-list{display:none;}
	.sideMenu-list-m{display:block;}
	.phone-tariff{display:none;}
	.phone-tariff-m{display:block;}
	.demo-table{padding:15px; margin-top:15px;}
	.demo-table .table_thead{background-color:unset;}
	.demo-table .table_tr{display:block;}
	.demo-table .table_tbody .table_tr{margin:5px;}
	.demo-table .table_tbody a:nth-child(n) .table_tr{background:#fff; border:1px solid #ededed;}
	.demo-table .table_tbody a:nth-child(n) .table_tr{padding:10px; position:relative;}
	.demo-table .table_thead .table_td{display:none;}
	.demo-table .table_thead .table_td:nth-child(1) div:nth-child(2){display:none;}
	.demo-table .table_tbody .table_td{display:block; position:relative}
	.demo-table .table_tbody .table_td{padding-left:105px; padding-right:15px;}
	.demo-table .table_tbody .table_td:nth-child(1){padding-left:105px; padding-right:15px; width:unset;}
	.demo-table .table_tbody .table_td:nth-child(4){padding-left:5px; padding-right:15px; border-bottom:0;}
	.demo-table .table_tbody .table_td::before{content:attr(data-title);}
	.demo-table .table_tbody .table_td::before{font-size:16px; font-weight:700; color:#f96e02;}
	.demo-table .table_tbody .table_td::before{position:absolute; top:17px; left:12px;}
	.demo-table .table_tbody .table_td .more{margin-left:unset; margin-right:auto;}
	.contactInfoBox{margin-bottom:50px;}
	.confirm-item-block{width:100%;}
	.confirm-item-block:nth-child(2){padding:0 20px;}
	.contactFormBlock{width:100%; max-width:800px; margin:0 auto;}
	}

@media only screen and (max-width:960px){
    .main-title-block{top:8%; width:80%; margin-left:-400px;}
    .main-title-block{padding:60px 30px 180px; align-items: flex-start;}
    .main-text-box{text-align:left;}
	.index-banner-btn{margin:0;}
    .slide-txt{bottom:130px;}
    .slide-txt h2{font-size:36px;}
    .slide-txt h3{font-size:20px;}
    .slide-txt h4{font-size:16px;}
    .swiper-more{font-size:36px; bottom:40px;}
    .about-txt{padding:30px;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:28px;}
    .about-txt h3{font-size:18px;}
    .about-txt h4{font-size:16px;}
    .result-txt{padding:30px 0;}
    .result-txt h3{font-size:18px;}
    .header-banner{margin-top:70px;}
    .header-banner .en-tit h3{font-size:60px;}
    .header-banner .tit{bottom:80px;}
    .header-banner .tit h3{font-size:30px;}
    .filter{padding:20px 0;}
    .accordion{position:relative;}
    .package-details{min-height:280px;}
    .grid-body{min-height:150px;}
    .price-symbol{font-size:16px;}
    .price-number{font-size:30px;}
    .faq-box{display:block; padding:0 0 50px 0;}
    .faq-tit{width:100%; padding-bottom:20px; text-align:center;}
    .faq-list{width:100%; padding:0 15px;}
    .plan-content h3{font-size:20px;}
    .plan-content .txt{padding:0 20px;}
    .planinfo-lump{top:25%;}
    .planup-lump{bottom:60%;}
    .result-item{padding:5px 0 !important;}
    .result-item .icon i{font-size:30px; width:50px; height:50px;}
    .result-item .txt h3{font-size:18px;}
    .result-item .txt p{line-height:1.2em;}
    .result-tit{padding:20px; bottom:10%;}
    .product-exhibit-box{width:50%;}
    .contact-form-area{flex-wrap:wrap; justify-content: center; flex-direction:initial;}
    .contact-form-part{width:80%;}
    .contact-map-part{width:80%;}
    .plan-mainarea{flex-wrap:wrap; flex-direction:column-reverse;}
    .plan-mainblock-pic{width:95%; max-width:800px; margin:0 auto;}
    .plan-mainblock-text{width:95%; max-width:800px; margin:0 auto;}
    .plan-mainarea2{flex-wrap:wrap;}
    .plan-illustrate{width:95%; max-width:800px; margin:0 auto;}
    .plan-spirit{max-width:500px; height:600px;}
    .result-cover{flex-basis:250px;}
    .contact-section::after{right:25%;}
    .index-news-title{text-align:center;}
    .index-news-list{width:100%; max-width:600px; margin:30px auto 0; flex-wrap:wrap;}
    .index-news-box{width:50%; padding-top:0;}
    .index-news-box:nth-child(odd){padding-top:inherit;}
    .index-news-line{display:none;}
    .index-news-box:nth-child(odd) .index-news-circle{top:inherit;}
    .index-news-circle{top:30px!important; left:30px;}
    .index-news-box:nth-child(odd) .index-news-date{top:inherit;}
	.index-news-date{top:30px!important; left:60px; z-index:15;}
    .news-section::after{position:unset;}
    .news-narrative h4{width:90%;}
    .contact-block{max-width:650px;}
    .contact-form-part{width:100%;}
    .page-product-block{max-width:700px;}
    .page-product-box{width:50%;}
    .contact-edit-block{width:95%; max-width:500px; flex-wrap:wrap;}
	.customer-service-block, .map-block{width:100%;}
	.store-list-block{max-width:600px; margin:0 auto;}
	.store-list-box{width:50%;}
	.case-showbox{flex-basis:420px;}
	.small-pic-button-box .thumb-pic-box{width:66px; height:66px;}
	.cart-list-cover{flex-basis:150px; height:150px;}
	.index-product-block{padding:70px 0 0;}
	.index-product-block::before{writing-mode:inherit; top:0; left:-10px;}
	.index-about-block::before{writing-mode:inherit; top:0; right:-10px;}
	.index-contact-block::before{writing-mode:inherit; top:0; left:-10px;}
	.product-item-box{width:50%;}
	.product-item-box:nth-child(3n+1){animation-duration:inherit;}
	.product-item-box:nth-child(3n-1){animation-duration:inherit;}
	.product-item-box:nth-child(3n){animation-duration:inherit;}
	.product-item-box:nth-child(odd){animation-duration:1s;}
	.product-item-box:nth-child(even){animation-duration:1.5s;}
	.apply-edit-box{width:50%;}
	.apply-edit-box:nth-child(3n+1){animation-duration:inherit;}
	.apply-edit-box:nth-child(3n-1){animation-duration:inherit;}
	.apply-edit-box:nth-child(3n){animation-duration:inherit;}
	.apply-edit-box:nth-child(odd){animation-duration:1s;}
	.apply-edit-box:nth-child(even){animation-duration:1.5s;}
	.step-box{width:33.333%;}
	.step-box:nth-child(4n+1){animation-duration:inherit;}
	.step-box:nth-child(4n+2){animation-duration:inherit;}
	.step-box:nth-child(4n-1){animation-duration:inherit;}
	.step-box:nth-child(4n){animation-duration:inherit;}
	.step-box:nth-child(3n+1){animation-duration:1s;}
	.step-box:nth-child(3n-1){animation-duration:1.5s;}
	.step-box:nth-child(3n){animation-duration:2s;}
	.detail-show-part-L>.img-cover{padding-bottom:153.5%;}
	.detail-show-box{width:50%;}
	.detail-show-block>.detail-show-box:nth-child(3){display:none;}
	.page-detail-box>.box-inner{padding:20px;}
	.page-detail-box h3{font-size:22px; max-width:unset;}
	.page-detail-box p, .page-detail-box li{font-size:14px;}
	.agreed, .browse{text-align:left; position:inherit; top:unset; right:unset;}
	.brief{display:none;}
	.detail-showBox{margin:0 auto;}
	}

@media only screen and (max-width:840px){
	.form-block{top:10%;}
	.product-section .pro-project-container{margin:60px auto 0;}
	.page-header-banner{max-width:500px;}
	.main-title-block{margin-left:-350px;}
	.index-main-area{min-height:1200px;}
	.index-about-block{flex-wrap:wrap;}
	.index-about-box{width:70%; max-width:inherit;}
	.index-about-editbox{width:100%; max-width:600px; margin:0 auto;}
	.index-contact-box{width:100%; max-width:inherit;}
	.page-header-area{padding-top:80px;}
	.page-header-banner>.box-inner{flex-wrap:wrap;}
	.banner-picbox{margin-top:0; margin-bottom:20px;}
	.banner-titlebox{text-align:center; margin-bottom:30px;}
	.index-contact-form-block{width:100%;}
	.footer-block{max-width:600px; justify-content:center;}
	.foot-box-logo{width:100%;}
	.foot-box-link{width:100%;}
	.foot-iconlink-list{text-align:center; margin:20px auto 0;}
	.index-project-area{max-width:600px;}
	.index-project-block{flex-wrap:wrap;}
	.index-project-box{width:50%;}
	.index-product-block .swiper-button-next{top:65%;}
	.index-product-block .swiper-button-prev{top:65%;}
	.index-product-block .swiper-button-next{right:-30px}
	.index-product-block .swiper-button-prev{left:-30px}
	.index-hot-box>.box-inner{min-height:700px; flex-direction:column;}
	.index-hot-infobox{width:90%; max-width:300px; margin-bottom:50px;}
	.recom_desc_text h4{margin:20% auto 5px;}
	.news-list-block{max-width:600px;}
	.news-list-box{width:50%;}
	.product-type-area{flex-wrap:wrap;}
	.product-menu-block{display:none;}
	.product-type-block{width:100%; margin-top:20px;}
	.mobile-product-menu-dropbox{display:block; margin-left:10px;}
	.sort-block{display:none;}
	.case-list-content{padding:0 0 0 15px;}
    .product_detail .mobile-product-menu-dropbox{display:none;}
    .recom-block{flex-wrap:wrap;}
    .recom-block .recom-box{width:50%;}
    .order-list-content .order-total .order-total-box{width:50%;}
    .product-edit-area{flex-wrap:wrap; padding-top:30px;}
    .process-block{flex-wrap:wrap;}
    .process-box{width:50%;}
    .shoppingcart-step li{display:block; padding:15px 0;}
    .shoppingcart-step li+li:before{width:12px; height:24px; background-size:contain;}
    .shoppingcart-step li+li:before{top:0; left:50%; margin:-12px 0 0 -6px;}
    .shoppingcart-step li+li:before{transform:rotate(90deg);}
    .inner-nav li{width:25%;}
    .step-box{width:50%;}
	.step-box:nth-child(3n+1){animation-duration:inherit;}
	.step-box:nth-child(3n-1){animation-duration:inherit;}
	.step-box:nth-child(3n){animation-duration:inherit;}
	.step-box:nth-child(odd){animation-duration:1s;}
	.step-box:nth-child(even){animation-duration:1.5s;}
	.foot-decorate-1{display:none;}
	.priceBox{justify-content:flex-end;}
	.product-price-amount{width:100%; margin-bottom:10px;}
	.member-nav .row{justify-content:flex-start;}
	.cart-list-box>.box-inner{flex-wrap:wrap;}
	.order-detail-box .cart-list-header{display:none;}
    .cart-list-th-L{width:100%;}
    .cart-list-th-S{width:100%; text-align:left; padding-left:95px;}
	.cart-list-th-S p{display:inline-block;}
	.cart-list-th-S .cart-th-header-mobile{display:inline-block;}
	.member-loginBox .form-box-content{width:100%; margin-top:10px;}
	}

@media only screen and (max-width:768px){
	#banner{display:none;}
	#bannerS{display:block;}
	.form-block>.box-inner{
		background-color:rgba(255,255,255,0.55);
		box-shadow:0 5px 10px 0 rgba(0, 0, 0, 0.1);
		border-radius:10px;
		border:1px solid rgba(255, 255, 255, 0.125);
		}
	.form-box h3, .form-box p{color:#000;}
	.banner-L{display:none;}
	.banner-S{display:block;}
	.form-block{width:100%; max-width:400px; margin-left:-200px; top:20%;}
    .main-title-block{margin-left:-300px;}
    .moving-picbox1{top:25%;}
    .moving-pic1{width:350px;}
    .moving-pic2{width:200px;}
    .slide-txt{bottom:90px;}
    .swiper-more{display:none;}
    .about-box{width:50%!important;}
    .about-txt h2, .work-info h2, .plan-info h2, .result-txt h2{font-size:24px;}
    .first-paragraph{display:none;}
    .work-box{padding:60px 0;}
    .work-project{padding:0 20px;}
    .plan-img{margin-top:40px !important;}
    .result-box{left:60%; width:40% !important;}
    .result-txt{padding:50px 0;}
    .result-txt p{display:none;}
    .fixed-icon{right:20px;}
    .footer-block .footer-info{padding:10px 40px;}
    .footer-info h3{font-size:20px;}
    .header-banner .en-tit{top:30px;}
    .header-banner .en-tit h3{font-size:42px;}
    .header-banner .tit{bottom:55px;}
    .header-banner .tit h3{font-size:24px;}
    .aboutweb-lump{width:75%; height:100%;}
    .software h2{font-size:48px;}
    .plan-frame h2{font-size:48px;}
    .plan-frame h3{font-size:24px;}
    .host-frame h2{font-size:48px;}
    .host-frame h3{font-size:24px;}
    .plan-frame .package{padding:10px;}
    .package-title{font-size:16px;}
    .package-details{min-height:300px;}
    .package-price{display:block;}
    .package-price span{display:block; text-align:center;}
    .price-symbol{font-size:14px;}
    .price-number{font-size:24px;}
    .grid-top{font-size:20px;}
    .planinfo-lump{top:15%; height:28%;}
    .planitem-tit{padding-top:40px;}
    .planup-lump{bottom:58%;}
    .plan-item .txt{padding:10px 30px;}
    .plan-item .icon i{font-size:42px; width:100px; height:100px;}
    .plan-item .tit h4{font-size:20px;}
    .result-content{padding-top:0;}
    .result-content .txt{width:100%; padding:10px 0;}
    .result-content .img{width:100%; padding:10px;}
    .result-item .icon i{font-size:50px; width:80px; height:80px;}
    .result-item .txt h3{font-size:20px;}
    .result-item .txt p{line-height:1.5em;}
    .result-item{padding:10px 0!important;}
    .result-tit{width:50%; bottom:0;}
    .result-data .counter{padding:30px 0;}
    .foot-link-block{justify-content:center; padding:0;}
    .foot-link-box{margin:0 15px;}
    .contact-title h3{font-size:50px; top:-35px;}
    .contact-form-part{width:100%;}
    .row-reverse{flex-direction:inherit;}
    .contact-info-box{flex-basis:100%;}
    .process-step-block{width:90%; max-width:500px; flex-direction:column;}
    .process-step-box{flex-direction:initial; justify-content:space-between;}
    .process-step-box{width:100%; height:145px; padding:30px 0 30px 70px;}
    .step-line{height:100%; width:3px; top:-70px; left:19px;}
    .process-step-circle{left:0;}
    .process-step-icon{width:30%; padding-top:0;}
    .process-step-summary{width:40%;}
    .process-step-summary p{margin-bottom:0;}
    .process-step-box:hover .process-step-circle{height:50px; width:50px;}
    .process-step-box:hover .process-step-circle{top:unset; left:-15px;}
    .process-step-num{top:60px; left:12px;}
    .process-step-summary p{margin-bottom:0; padding:0 10px;}
    .process-step-box:hover::before{top:35px; left:35px;}
    .web-category{max-width:480px!important; margin:0 auto;}
    .aboutweb-lump{display:none;}
    .exhibit-summary{max-width:600px;}
    .result-exhibit-box>a{flex-wrap:wrap;}
    .btn_cis{width:160px;}
    .count-box{width:50%!important;}
    .result-exhibit-box{margin-bottom:25px; padding-bottom:15px;}
    .result-detail-content{width:90%; margin:0 auto;}
    .link-btn-box{margin-left:20px;}
    .result-detail-content p{font-size:16px; line-height:1.8em;}
    .contact-section::after{position:unset;}
    .contact-title{text-align:center;}
    .news-list-cover-box{flex-basis:300px;}
    .news-list-cover{padding-bottom:80%;}
    .about-edit-block{flex-wrap:wrap;}
    .about-edit-cover{flex-basis:100%; max-width:400px; margin:0 auto;}
    .about-edit-content{flex:inherit; width:90%; margin:0 auto;}
    .product-section .index-edit-area{width:80%;}
    .product-slide{flex-wrap:wrap; padding:15px 10px;}
    .product-slide .list-more-btn{padding:15px 0 10px;}
    .case-main-block{flex-wrap:wrap;}
    .case-showbox{flex-basis:100%;}
    .case-detail-content{margin-top:20px;}
    .case-list-box{width:90%; max-width:450px; margin:0 auto 50px;}
    .case-list-box>.box-inner{flex-wrap:wrap;}
    .case-cover-box, .case-list-content{width:100%;}
    .case-list-content{margin:20px auto; padding:0;}
    .about-edit-box>.box-inner{flex-wrap:wrap;}
    .about-edit-box .about-infobox, .about-edit-box .about-picbox{width:100%;}
    .timeline-section{background-image:none; background-color:#eee;}
    .for_mobile{display:block;}
    .member-block{flex-wrap:wrap;}
    .member-menu-block, .member-content-block{width:100%;}
    .member-menu-block ul.taglist li{display:inline-block; margin:10px 15px;}
    .conclusion-box{width:100%;}
    .cart-block .checkout-list li{display:block;}
    .cart-block .checkout-list li label{display:block; width:100%;}
    .cart-block .checkout-list li .txt{display:block;}
    .cart-block .cart-list-box>.box-inner{flex-wrap:wrap;}
    .cart-block .cart-list-header{display:none;}
    .cart-block .cart-list-th-L{width:100%;}
    .cart-block .cart-list-th-S{width:100%; text-align:left; margin:5px 0; padding-left:95px;}
    .cart-block .cart-list-name{padding:0 30px 0 15px;}
    .cart-block .delete-box{display:none;}
    .cart-block .delete-btn-mobile{display:block;}
    .cart-block .item-specs{display:inline-block;}
    .checkout-block .cart-list-box>.box-inner{flex-wrap:wrap;}
    .checkout-block .cart-list-header{display:none;}
    .order-list-content .cart-list-box>.box-inner{flex-wrap:wrap;}
    .order-list-content .cart-list-header{display:none;}
	.order-block .announcement{position:inherit; top:unset; left:unset;}
	.form-content{flex-wrap:wrap;}
	.form-part{width:100%;}
	.radio-box#vat-box{height:auto;}
	.form-tb textarea.input{min-height:90px;}
	.index-about-content{flex-wrap:wrap;}
	.index-about-cover-box{flex-basis:100%;}
	.index-about-cover{padding-bottom:50%;}
	.index-about-narrative{margin:20px auto 30px;}
	.colorbox-item{width:33.333%;}
	.even-block .side-title{display:none;}
	.product-section .container.life-content .row{justify-content:center;}
	.food-spirit-block .row{justify-content:center;}
	.link-tab{margin:0 auto 50px; padding:15px 0 15px;}
	.decorate-block{display:none;}
	.food-item-box{margin:0 auto 50px;}
	.food-item-box .link-tab{padding:15px 0 15px;}
	.room-des{padding-top:15px;}
	.list-show-container{flex-wrap:wrap;}
	.list-show-part-L, .list-show-part-R{width:100%;}
	.list-show-part-L>a>.img-cover{padding-bottom:50%;}
	.list-show-part-R>.list-show-box .img-cover{padding-bottom:50%;}
	.detail-show-part-L>.img-cover{padding-bottom:154.5%;}
	.for_PC{display:none;}
	.fixed-menu-area{display:block;}
    .foot-box-contact{width:100%;}
    .foot-box-sitemap{width:100%;}
    .footer-logo{max-width:180px;}
    .detail-showBox{flex-basis:100%;}
    .page-banner-section .mainPageTitle_tw{font-size:22px; letter-spacing:2px;}
	.page-navList li{width:50%;}
    .tagBlock{display:none;}
    .proTypeCate-list li{border-bottom:none;}
    .proTypeCate-list li{display:inline-block; margin-right:10px;}
    .proType-container{padding-top:60px;}
	.about-edit-box-info{flex:100%; padding:0 10px;}
    .about-edit-box-pic{flex-basis:90%; max-width:400px; margin:20px auto 0;}
	}

@media only screen and (max-width:640px){
	.page-header-block .page-title{font-size:36px;}
	.page-header-block .title-line::before{width:150%;}
	.page-header-block .title-line::after{width:170%;}
    .main-title-block{margin-left:-250px;}
    .main-title{width:100%;}
    .main-text-box h2{font-size:40px;}
    .product-slider-banner-bolck{margin-left:-200px;}
    .product-slider-banner{max-width:400px;}
    .swiper-slide p{bottom:5%;}
    .page-tab .tablinks{padding:10px 5px; margin-right:0;}
    .footer-txtbox-content{width:100%; margin:5px 0;}
    .contactFormBox .formBox-content{width:100%; margin-top:7px;}
    .index-news-box{width:100%;}
    .index-news-box a{display:flex; align-items:center;}
    .index-news-cover{flex-basis:160px; padding-bottom:120px;}
    .index-news-content{flex:1;}
    .index-news-circle{display:none;}
    .index-news-date{left:unset; top:20px!important; right:20px;}
    .index-news-date p{color:#868686;}
    .footer-txtbox{padding:10px;}
    .news-list-box{width:100%;}
    .news-list-cover{padding-bottom:50%;}
    .news-list-box:nth-child(1)>.box-inner a{display:block;}
    .news-list-box:nth-child(1) .news-list-cover{padding-bottom:50%;}
    .news-list-box:nth-child(1) .news-list-content{padding:0 5px;}
    .contact-form-box{width:100%;}
    .page-header-banner{max-width:350px;}
    .banner-titlebox{padding:0;}
    .page-header-banner .banner-subtitle{font-size:24px;}
    .menu-block{display:none;}
	.recom_desc_text h4{margin:10% auto 5px;}
	.recom_desc_text .recom-btn{width:120px;}
	.store-list-block{max-width:400px;}
	.store-list-box{width:100%;}
	.bread-block ol{height:60px; margin:10px auto 0;}
	.recom-block .recom-box>.box-inner{padding:10px;}
	.process-box{width:100%; max-width:300px; margin:10px auto; padding:50px 25px 15px;}
	.process-box .step-arrow{top:0; left:46%; transform:rotate(90deg);}
	.order-list-content .recipient-box .recipient-L{flex-basis:150px; padding:15px 10px;}
	.member-content .form-row{flex-wrap:wrap;}
	.member-content .form-row .col-l{flex-basis:100%;}
	.member-content .form-row .col-r{margin-top:10px;}
	.form-row{flex-wrap:wrap;}
	.checkout-item-content .form-row .col-l{flex-basis:100%;}
	.checkout-item-content .form-row .col-r{margin-top:7px;}
	.final .col-l{display:none;}
	.indexProject{flex-wrap:wrap;}
	.indexProject-box{width:50%;}
	.indexProject-box:last-child{width:100%;}
	.indexProject-box:last-child .index-project-cover{padding-bottom:60%;}
	.project-btn{padding:15px 25px; margin-left:-51px;}
	.inner-nav li{width:33.333%;}
	.inner-nav li a{font-size:14px; letter-spacing:inherit;}
	.product-item-box{width:100%;}
	.product-item-box:nth-child(even){animation-duration:1s;}
    .without-page-header{padding-top:60px;}
    .fixed-menu-box{padding:10px 20px;}
    .member-loginBox .form-box-content{width:100%; margin-top:10px;}
    .adDiscountList .adDiscount_item{width:100%;}
    .adDiscount_edit{top:50%; margin-top:-45px;}
    .member-col{text-align:left;}
    .btn_br{display:block;}
	}

@media only screen and (max-width: 575px){
	.page-header-banner{top:60px;}
	.main-title-block{margin-left:-200px;}
    .menu-container .logo{width:100%;}
    .menu-container .logo .logo-img{max-width:220px;}
    .menu-container .main-menu{width:50%;}
    .open-nav{right:40px;}
    .slide-txt{bottom:50px; left:80px;}
    .slide-txt h2{font-size:24px; line-height:1em;}
    .slide-txt h3{font-size:16px;}
    .slide-txt h4{font-size:14px; line-height:1em;}
    .work-project{padding:0 10px;}
    .work-info h3{font-size:36px;}
    .plan-frame .package{padding:6px;}
    .plan-block .row{padding:30px 20px;}
    .header-banner .en-tit{top:20px;}
    .header-banner .en-tit h3{font-size:36px;}
    .header-banner .tit{bottom:40px;}
    .header-banner .tit h3{font-size:20px;}
    .planinfo-lump{top:-25px; width:50%; height:15%;}
    .plan-content{margin-bottom:40px;}
    .plan-content .txt{padding:20px;}
    .planup-lump, .plandown-lump{display:none;}
    .plan-item{padding-top:20px; padding-bottom:20px;}
    .plan-item .txt{padding:10px 80px;}
    .planitem-tit h2{font-size:40px;}
    .result-item .icon{justify-content:left;}
    .result-item .icon i{width:100px; height:100px;}
    .result-item .txt h3{font-size:24px;}
    .result-tit{padding:30px; width:70%;}
    .about-spirit-pic2{top:100px; width:250px;}
    .about-spirit-pic4{bottom:0;}
    .page-product-box{width:100%; max-width:350px; margin:0 auto 30px;}
    .index-news-box a{flex-wrap:wrap;}
    .index-news-cover{flex-basis:100%; padding-bottom:200px;}
    .index-news-content{flex:inherit; width:100%;}
    .index-news-date p{color:#fff;}
    .page-link-block{flex-wrap:wrap;}
    .linkbox-cover{flex-basis:100%; max-width:400px; margin:0 auto 20px;}
    .linkbox-content{padding:0 30px;}
    .index-hot-picbox{width:60%;}
    .index-hot-infobox{width:60%;}
	.index-project-area{max-width:450px;}
	.index-project-box{width:80%; margin:0 auto 20px;}
    .product-list-box{width:100%;}
	.product-slide{left:0; background-color:rgba(0,0,0,0.5);}
	.product-slide .list-more-btn a{padding:5px 10px;}
	.product-overlay-content{display:none;}
	.product-type-infobox h4{font-size:16px;}
	.sum-item tr{flex-wrap:wrap;}
	.sum-item .td-l{flex-basis:100%; border-right:unset;}
	.sum-item .td-l{background-color:#ededed;}
	.sum-item .td-r{flex:100%; padding-left:15px;}
	.member-info td.editBox input{padding:10px 13px!important;}
	}

@media only screen and (max-width:500px){
	.order-list-content .order-total .order-total-box{width:100%;}
	.cart-list-cover{flex-basis:80px; height:80px;}
	.cart-list-box>.box-inner{padding:5px 10px 15px;}
	.cart-list-content{padding:0 10px;}
	.cart-list-content h3{line-height:1.5em;}
	.cart-list-box .delete-btn{top:0; right:10px;}
	.notice-content{padding:20px 0;}
	.apply-edit-box{width:100%;}
    .fixed-menu-box{padding:10px;}
    .cancel-btn{top:20px; right:110px;}
    .order-tab .shoppingcart-item.completed{padding-top:20px;}
    .member-level{flex-wrap:wrap;}
    .member-txt{padding:15px;}
    .sum-item td{padding:15px 10px;}
    .sum-item .td-r{padding-left:25px;}
    .member-info td.editBox{padding-left:15px;}
    .member-btnBlock{flex-wrap:wrap;}
    .memberBtnBox{width:100%; margin-right:0; margin-bottom:25px;}
	}

@media only screen and (max-width:480px){
    .page-header-area{min-height:200px; margin-bottom:0; padding-top:60px;}
    .page-header-banner{position:inherit; top:unset; left:unset; bottom:unset;}
    .page-header-banner{max-width:inherit; height:inherit; margin-left:inherit; padding:10px;}
    .page-header-banner .banner-title{font-size:40px;}
    .page-header-banner .banner-subtitle{font-size:30px;}
    .exhibit-title h2{font-size:28px; letter-spacing:1px;}
    .exhibit-title h3{font-size:46px; top:-35px;}
    .main-content{margin-top:0;}
    .main-title-block{margin-left:-165px; padding:60px 30px 150px;}
    .main-text-box h2{font-size:32px;}
    .result-txt{padding:10px 0;}
    .tablinks{padding:5px;}
    .package-dashes{padding:10px;}
    .package-dashes span{font-size:12px;}
    .contact-title h2{font-size:26px; letter-spacing:1px;}
    .contact-title h3{font-size:42px; top:-30px; left:-10px;}
    .process-step-num{top:63px;}
    .web-category .txt h2{font-size:46px;}
    .footer-txtblock{flex-wrap:wrap;}
    .footer-txtbox{padding:10px 0;}
    .plan-list-box{flex-wrap:wrap;}
    .plan-mainblock-pic>.box-inner{min-height:350px;}
    .plan-step-block{flex-wrap:wrap;}
    .plan-step-box{width:80%;}
    .plan-spirit{height:500px;}
    .result-txt h2{font-size:20px;}
    .result-txt h3{font-size:14px;}
    .result_arrow{width:50px; height:50px; top:50%;}
    .taglist li a::before{top:9px;}
    .recom_desc_text{display:none;}
    .product-type-box{width:100%;}
    .review-user{flex-basis:70px;}
    .review-content{padding:10px;}
    .page-header-block .page-title{padding-left:20px;}
    .news-list-box{width:100%; margin:0 auto 30px;}
    .page-edit-block{margin:15px auto 0;}
    .shoppingcart-btn-block{margin-top:50px;}
    .page-edit-title{margin:10px auto; padding:10px 0;}
    .big-pic-box, .small-pic-box{max-width:280px;}
    .login-tab .tabcontent{padding:0 10px 30px;}
    .member-content .form-row{padding:15px;}
    .news-detail-titlebox .news-title h3{font-size:24px;}
    .cart-list-content .item-specs{flex-wrap:wrap;}
    .cart-list-content .price{margin-top:15px;}
    .form-row{flex-wrap:wrap;}
    .checkout-item-content .form-row .col-l{flex-basis:100%;}
    .checkout-item-content .form-row .col-r{margin-top:10px;}
    .form-name{flex-wrap:wrap;}
    .form-row .col-r input.input-name, .radio-box{width:100%;}
    .radio-box{margin-top:7px;}
    .order-list-content .recipient-box .recipient-L{flex-basis:120px;}
    .order-list-content .cart-list-cover{flex-basis:80px;}
    .mobile-logo{width:200px;}
    .index-about-box{width:100%;}
    .step-box{width:100%; flex-direction:column;}
    .step-arrow p{transform:rotate(90deg);}
    .step-box:last-child .step-arrow p{transform:none;}
	.colorbox-item{width:50%;}
	.add-field-title{padding-bottom:30px;}
	.foot-iconlink-list li{margin:0 25px 15px;}
	.main-container ul.checkout-list{margin-top:0;}
	.page-navList li{width:100%;}
	.checkout-item .form-row{padding:10px;}
	.checkout-item .form-row .col-l{justify-content:left;}
	.checkout-item .form-row .col-l{padding-right:0; padding-left:15px;}
	.checkout-item .form-row .col-r{flex:100%; margin-top:15px;}
	.sum-item .item-detail .options.rebate-qty span{display:block;}
	}

@media only screen and (max-width:400px){
	.moving-pic1{width:200px;}
	.main-title-block{margin-left:-150px;}
	.main-title p{font-size:16px;}
	.main-text-box h2{font-size:32px;}
    .header-banner .en-tit{top:10px;}
    .header-banner .en-tit h3{font-size:26px;}
    .header-banner .tit{bottom:20px;}
    .header-banner .tit h3{font-size:16px;}
    .software h2{font-size:40px;}
    .process-step-num{top:60px;}
    .product-exhibit-box{width:100%;}
    .numpage-btn .pagination li{margin:5px;}
    .pagination>li>a, .pagination>li>span{padding:6px 8px;}
    .result-cover{flex-basis:200px;}
    .recom-block{max-width:250px; margin:0 auto;}
    .recom-block .recom-box{width:100%;}
	}

