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

/*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:Noto Sans TC, 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%; background-color:unset;}
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;}

a{transition:all 0.5s ease 0s;}
a{color:#000000; font-size:16px; text-decoration:none;}
p{font-size:17px; color:#000000; line-height:1.8em;}
p a{color:#1c4c77; line-height:1.5em; text-decoration:none;}
p a:hover{color:#5eb1fd;}

.flex-setting{display:flex; flex-wrap:wrap;}
.flex-direction{-ms-flex-direction:row-reverse; flex-direction:row-reverse;}
.ju-flex-end{justify-content:flex-end;}

/*start*/
#wrapper{min-height:100%; position:relative; overflow:hidden;}

.top-menu-bar{
	background:linear-gradient(to right,#d3eaec,#fff,#fff,#fff,#d3eaec);
    background:-moz-linear-gradient(to right,#d3eaec,#fff,#fff,#fff,#d3eaec);
    background:-o-linear-gradient(to right,#d3eaec,#fff,#fff,#fff,#d3eaec);
    background:-webkit-linear-gradient(to right,#d3eaec,#fff,#fff,#fff,#d3eaec);
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:8888;
    box-shadow:0px 0px 16px rgba(0, 0, 0, 0.2);
    transition:all 0.25s ease 0s;
	}

.top-menu-row{
    width:98%;
    max-width:1360px;
    margin:5px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
	}

.top-menu-logo{padding:5px 10px;}

.top-menu-logo a{display:flex; align-items:center;}

.top-menu-logo img{width:100%; max-width:300px;}

.top-menu-logo .logo-text{
	font-size:28px;
	font-weight:bold;
	word-break:keep-all;
	}

.top-menu-logo .logo-text-en{font-size:22px;}

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

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

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

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

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

.nav-navbar>.nav-item>a::before, .nav-navbar>.nav-item>a::after{
	content:'';
	position:absolute;
	width:0%;
	height:2px;
	bottom:22px;
	background:#fff;
	}

.nav-navbar>.nav-item>a::before{left:0;}

.nav-navbar>.nav-item>a::after{
	right:0;
	background:#01a5f8;
	transition:width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

.nav-navbar>.nav-item:hover>a::before{
	background:#01a5f8;
	width:100%;
	transition:width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

.nav-navbar>.nav-item:hover>a::after{
	background:transparent;
	width:100%;
	transition:0s;
	}

/*.nav-navbar>.nav-item>a::after{
    content:"";
    position:absolute;
    height:2px;
    width:70%;
    transform:scale(0,1);
    background-color:#01a5f8;
    transition:all 0.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:#000; cursor:pointer; font-size:16px;}
.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:#01a5f8;}

.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:#0c7ea6;}
.member-box ul li a:hover{color:#0c7ea6;}
.nav-lan-box .nav-lan-btn:hover{color:#0c7ea6;}
.nav-navbar>.nav-item:hover>a{color:#01a5f8;}
.nav-navbar>.nav-item:hover>a .down-arrow{border-top: 4px solid #01a5f8;}
/*.nav-navbar>.nav-item:hover>a::after{transform:scale(1,1);}*/

.top-menu-block{
	margin:auto;
    max-width:1480px;
    height:90px;
    padding:0 20px;
    position:relative;
    transition:all 0.25s ease 0s;
	}

.top-menu{
	position:absolute;
    right:0;
    bottom:0;
    letter-spacing:1px;
	}

.top-menu ul, .top-menu li{
	list-style:none;
	margin:0;
	padding:0;
	position:relative;
	}

.top-menu-ul{
	display:flex;
	flex-wrap:wrap;
	justify-content:flex-end;
	align-items:center;
	transition:all 0.25s ease 0s;
	}

.top-menu-ul>li{
	position:relative;
	padding:0 20px;
	margin:0 0 0 4px;
	align-items:center;
	transition:all 0.25s ease 0s!important;
	}

.top-menu-ul>li>a{
	padding:0px 0px 31px 0;
	display:inline-block;
	position:relative;
	color:#000;
	text-decoration:none;
	}

.top-menu-ul>li i.caret{
	margin-left:5px;
	transition:all 0.8s ease;
	}

.top-menu-ul>li>a:hover{
	color:#800000;
	text-decoration:none;
	}

.top-menu-ul>li:hover i.down-arrow{border-top:4px solid #800000;}

.top-menu-ul>li>a:before, .top-menu-ul>li>a:after{
	content:'';
	position:absolute;
	width:0%;
	height:2px;
	bottom:16px;
	background:#fff;
	}

.top-menu-ul>li>a:before {left:0;}

.top-menu-ul>li>a:after {
	right:0;
	background:#800000;
	transition:width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

.top-menu-ul>li>a:hover:before{
	background:#800000;
	width:100%;
	transition:width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
	}

.top-menu-ul>li>a:hover:after{
	background:transparent;
	width:100%;
	transition:0s;
	}

img{max-width:100%; height:auto!important;}

nav{position:relative;}

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

.navTrigger>i{
    background-color:#1c4c77;
    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);}
}
/*選單展開按鈕_end*/

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

.drop-menu-box{
	display:none;
	background-color:#f1f2f4;
	border-radius:5px;
	box-shadow:0px 0px 16px rgb(0 0 0 / 20%);
	position:absolute;
	left:0;
	}

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

ul.drop-menu li a{
	display:block;
	padding:15px 20px;
	line-height:1.3em;
	border-bottom:1px solid rgba(204,204,204,0.35);
	word-break:keep-all;
	}

ul.drop-menu-en li a{width:250px;}

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

/*mega-menu_start*/
.mega-menu{
	/*width:600px;*/
	position:absolute;
	left:-999999px;
	right:auto;
	z-index:10;
	-webkit-transform:translateX(-50%);
    -ms-transform:translateX(-50%);
    transform:translateX(-50%);
    background:#fff;
    -webkit-box-shadow:1px 1px 15px rgb(0 0 0 / 15%);
    box-shadow:1px 1px 15px rgb(0 0 0 / 15%);
    opacity:0;
	}

.mega-menu:after{
	visibility:hidden;
    display:block;
    content:"";
    clear:both;
    height:0;
	}

.nav-navbar>li.has-drop:hover .mega-menu{
	opacity:1;
	position:fixed;
	}

.nav-navbar>li.has-drop:hover .mega-menu#megamenu01{left:61%;}
.nav-navbar>li.has-drop:hover .mega-menu#megamenu02{left:72%;}

.en-menu .top-menu-ul>li.has-drop:hover .mega-menu#megamenu01{left:57%;}

.mega-menu-inner{padding:10px 10px 20px; display:flex;}

.mega-menu-sub-box{width:280px;}

.mega-menu-inner h3{
	font-size:18px;
	font-weight:bolder;
	margin-bottom:3px;
	padding:10px 0 10px 10px;
	transition:all 0.5s ease;
	}

.mega-menu-inner h3 a{display:block; color:#000;}

.mega-menu-inner h3:hover a, .mega-menu-inner h3:focus a{color:#01a5f8;}

.mega-menu-submenu li{
	padding:12px 0;
	margin:0 10px;
	border-bottom:1px #f1f2f4 solid;
	}

.mega-menu-submenu li a{
	display:block;
	position:relative;
	padding-left:15px;
	}

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

.mega-menu-submenu>li>a{color:#686868;}
.mega-menu-submenu>li:hover>a{color:#800000;}

.mega-menu-submenu li:hover a::before{
	transform:rotateX(360deg);
	border-color:transparent transparent transparent #800000;
	}

/*mega-menu_end*/

.drop-down-menu {display:block;}

.drop-down-menu>ul>li{
	border:1px #5d3e28 solid;
	padding:0 5px;
}
.drop-down-menu a{
	font-size:12px;
    color:#000;
    line-height:1.5em;
}
.drop-down-menu li{
    display:inline-block;
    position:relative;
}
.drop-down-menu>ul>li>ul>li{
	width:100%;
    background:#696969;
    padding:5px 10px;
    box-sizing:border-box;
}
.drop-down-menu>ul>li>ul>li:hover{background:#296bb9;}

.drop-down-menu>ul>li>ul>li a{color:#ffffff;}

.drop-down-menu>ul{
	position:absolute;
    z-index:99;
    right:5px;
    top:25px;
    padding-left:0;
}
.drop-down-menu>ul>li>ul{
	position:absolute;
    z-index:99;
    right:0;
    top:19px;
    padding-left:0;
}
.drop-down-menu ul li ul{display:none;}

.drop-down-menu ul li:hover>ul{display:block;}

.logo{
    position:absolute;
    top:40%;
    left:0px;
    /*width:80px;*/
    margin-top:-32.5px;
    line-height:0;
    font-size:0;
    z-index:9977;
    transition:all 0.25s ease 0s;
	}

.logo img{width:100%;}

#logo{
	float:left;
	max-width:200px;
	height:60px;
	padding-top:5px;
	/*margin:0 auto;
	text-align:center;*/
	}

#logo img{width:auto; height:100%; /*padding-top:5px;*/}

.member{
	background-color:#5d3e28;
	height:30px;
	display:block;
	color:#ffffff;
	padding:0 5%;
	}

.member ul{padding:0px; margin:0px; padding-right:200px;}
.member li{
    float:right;
    /*line-height:30px;*/
    background-position:right;
    background-repeat:no-repeat;
    padding:7px 10px;
	}

.member a{color:#ffffff; font-size:14px;}

.member a:visited{color:#ffffff;}

.member ul li:hover {
    background-color: #333333;
    text-decoration: none;
    background-image: none;
    }

.language-box{
	position:absolute;
	top:10px;
	right:45px;
	}

.language-box ul{
	padding-left:0;
	color:#000;
	font-size:12px;
	}

.language-box ul a li{
	display:inline;
	color:#000;
	font-size:14px;
	padding:0 7px;
	transition:all 0.25s ease 0s!important;
	}

.language-box ul a:hover li{color:#f06662;}

#banner-L{padding-top:80px;}

#banner-S{display:none;}

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

/*小螢幕尺寸選單_start*/
#mobile{display:none; text-align:center;}

#mobile a{
	font-size:18px;
	font-weight:bold;
	color:#ffffff;
	letter-spacing:2px;
	display:block;
	padding:20px 0;
	}

.mobile-menu, .mobile-submenu, .mobile-thirdmenu{
	width:100%;	
	padding-left:0;
	}

.mobile-lan{padding-left:0; font-size:14px;}
.mobile-lan li{display:inline; font-size:16px; padding:0 7px;}

.mobile-lan li>a{display:inline-block!important;}

.mobile-menu-item, .mobile-submenu-item, .mobile-thirdmenu-item{
    width:100%;
    color:#ffffff;
    font-size:16px;
    letter-spacing:2px;
    background:#0e3052;
	border-bottom:1px solid #8a8887;
	}

.mobile-submenu{display:none;}
.second-menu-open .mobile-submenu{display:block;}

.mobile-thirdmenu{display:none;}
.third-menu-open .mobile-thirdmenu{display:block;}

.second-layer-color{background:#1969a1;}
.third-layer-color{background:#1c4c77;}

.mobile-menu-item:hover{background:#1c4c77;}
.second-layer-color:hover{background:#102235;}
.third-layer-color:hover{background:#102235;}
/*小螢幕尺寸選單_end*/

li{list-style:none;}

.header-menu-bottom{
	border-bottom:3px solid #c7aa86;
	background-image:url(/images/retina_wood.png);
	height:50px;
	}

.top-menu-bottom{text-align:center; padding-left:0; display:none;}

.top-menu-bottom li{margin:30px 40px; display:inline-block;}

.top-menu-bottom li a{font-size:18px; font-weight:bold;}

.aa_item{
	position:absolute;
	left:0px; 
	cursor:pointer;
}

/*熱門產品_start*/
.index-hot-block{
	width:100%;
	max-width:1480px;
	margin:0 auto 80px;
	padding:10px 0 50px;
	overflow:hidden;
	position:relative;
	}

.index-product-slide-box h4{
	font-size:22px;
	font-weight:500;
	text-align:center;
	margin-top:15px;
	}

/*熱門產品_end*/

.group4{width:98%;}

#contentBg{height:auto; width:100%;}

#content{margin:0 auto; overflow:hidden;}

#navlist{
	background-color:#ccc;
	line-height:3.5em;
	min-height:2em;
	position:inherit;
    width:100%;
    padding:0;
    border-bottom:3px solid #c7aa86;
    background-image:url(/images/retina_wood.png);
}

#navlist a{transition:all 0.2s ease;}

#navlist a:hover{ color:#7d7d7d;}

#navlist_mobile{
	display:none;
	background-color:#c7aa86;
}
#navlist_mobile >ul{
	box-sizing: border-box;
	padding-left:30px;
}
#navlist_mobile >ul li{
	background:url(images/icon_mobile.png) no-repeat left;
	border-bottom:1px #210000 dashed;
	height:55px;
	box-sizing:border-box;
	padding:20px 0 0 30px;
}
#navlist_mobile >ul li a{color:#5d3e28;}

#contentBox{
	position:relative;
	overflow:inherit;
	animation:fadeIn 0.5s ease-in-out 1;
}

#contentBox_index{
	position:relative;
	overflow:inherit;
	animation:fadeIn 0.5s ease-in-out 1;
	padding-top:30px;
}

@keyframes fadeIn{
	0%{opacity:0;}
	100%{opacity:1;}
}
#navlist ul{text-align:center;}

#navlist > ul > li{
  	background:url(images/icon.png) no-repeat left;
 	padding:0 0 0 20px;
 	display:inline-block;
 	position:relative;
}
#navlist>ul>li >ul{
    background:#cccccc;
    position:absolute;
    z-index:99;
    left:0;
    top:55px;
    min-width:100%;
    padding:0 5px;
    line-height:40px;
}
#navlist>ul>li > ul li{border-bottom:1px #fff solid;}

#navlist>ul>li > ul a:hover{color:#ffffff;}

.slider-block{position:relative; height:100vh;}

.main-spirit-block{
	width:100%;
	height:100vh;
	position:relative;
	}

.main-spirit-block-active .main-spirit-img{
	transition-property:all;
    transition-duration:0.6s;
    transition-timing-function:ease;
    transition-delay:2s;
    opacity:1;
    top:-2vw;
	}

.main-spirit-img{
	width:35%;
	max-width:660px;
	opacity:0;
	position:absolute;
    top:-2vw;
    bottom:0;
    right:14.87vw;
    margin:auto;
    z-index:20;
    animation-name:flatObject;
    animation-duration:6s;
    animation-timing-function:ease-in-out;
    animation-iteration-count:infinite;
	}

.main-spirit-text-box{
	width:40%;
	height:30%;
	position:absolute;
	left:17%;
	top:40%;
	}

.main-spirit-text-box h3{
	font-size:32px;
	font-weight:bold;
	font-style:italic;
	line-height:1.6em;
	text-shadow:#ffffff 0.1em 0.1em 0.2em
	}

.main-spirit-text-box h3 span{font-size:48px;}

.main-spirit-text-box h4{
	font-size:24px;
	color:#006400;
	font-weight:bold;
	font-style:italic;
	line-height:1.6em;
	padding-left:60px;
	}

.main-spirit-text-box p{
	width:80%;
	padding-left:50px;
	color:#696969;
	}

.main-spirit-text-box::after{
	content:"";
    display:block;
    width:80%;
    height:75%;
    position:absolute;
    top:45px;
    left:25px;
    border-radius:15px;
    box-shadow:0px 0px 16px rgba(0, 0, 0, 0.2);
    z-index:-1;
    background:#ffffff;
    background:-moz-linear-gradient(-45deg, #fff 0%, #e0f3ff 50%, #fff 80%);
    background:-webkit-linear-gradient(-45deg, #fff 0%, #e0f3ff 50%, #fff 80%);
    background:linear-gradient(135deg, #fff 0%, #e0f3ff 50%, #fff 80%);
    filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=1 );
	}

@keyframes flatObject{
	0%{transform:translateY(-1.25vw)}
	38%{transform:translateY(1vw)}
	100%{transform:translateY(-1.25vw)}
	}

@keyframes flatObjectIe{
	0%{transform:translateY(-30px)}
	40%{transform:translateY(20px)}
	100%{transform:translateY(-30px)}
	}

.slider-block .scroll{
	width:10%;
    position:absolute;
    left:50%;
    transform:translate(-50%, 0);
    bottom:0;
    z-index:4;
    height:7em;
	padding-top:1.3em;
	letter-spacing:0.2em;
}

.slider-block .scroll a{display:block}

.slider-block .scroll span{
    position:absolute;
    font-size:1rem;
    font-weight:bold;
    width:100%;
    text-align:center;
    top:0;
}

.slider-block .line {
    width:100%;
    height:6em;
    display:block;
    position:absolute;
    overflow:hidden;
}

.slider-block .line:before{
    content:'';
    height:100%;
    border-left:solid 1px #000;
    position:absolute;
    left:50%;
    transform:translate(-50%, 0);
    animation:wrap_on 1s ease-in-out 1.5s forwards;
}

.slider-block .line:after{
    content:'';
    height:100%;
    border-left:solid 1px #fff;
    position:absolute;
    left:50%;
    z-index:1;
    transform:translate(-50%, 0);
    animation:scroll_border 2.5s ease-in-out 2.5s infinite;
}

@keyframes wrap_on{
	0%{height:0%;}
	100%{height:100%;}
	}
  
@keyframes scroll_border{
	0%, 100%, 52%{top:0; opacity:1;}
	25%{top:100%; opacity:1;}
	26%{top:100%; opacity:0;}
	27%{top:-100%; opacity:0;}
	}

.index-block{
	width:100%;
	max-width:960px;
	margin:90px auto 120px;
	text-align:center;
}

.index-service-title{
	text-align:center;
	color:#000;
	padding-top:2%;
}

.index-block h2{
	margin:0 auto;
	font-weight:bold;
	font-size:22px;
	letter-spacing:1px;
	width:12%;
	display:inline-block;
	color:#231815;
}

.index-block hr{
	width:5%;
	display:inline-block;
	vertical-align: middle;
	border-top:1px solid #231815;
}

.index-service-box{
	display:inline-block;
	margin:7px;
	width:28%;
    height:270px;
    vertical-align:bottom;
    padding-top:40px;
    line-height:25px;
    font-weight:bold;
	font-size:20px;
	border-radius:10px;
	background-color:#ffffff;
	box-shadow:1px 1px 5px rgba(0,0,0,0.15);
}

.index-service-box:hover{box-shadow:2px 2px 10px rgba(0,0,0,0.3);}

.index-service-box.bgcolorA{background-color: #edf3fd;}
.index-service-box.bgcolorB{background-color: #eae9e9;}

.service-box-btn{
	width:100px;
    padding:5px 8px;
    margin:5px auto 0;
    border:1px solid #dcdcdc;
    border-radius:5px;
    text-align:center;
    transition:all 0.8s;
    background-color:#fff;
    font-weight:inherit;
    font-size:16px;
}

.service-box-link:hover{font-weight:bold; color:#fff;}
.service-box-link:hover .service-box-btn{background-color:#4868b2;}

/*相關資訊_start*/
.info-box{position:relative; width:100%; min-height:400px;}

.info-box h2{
	font-family:'Roboto', sans-serif;
    display:unset;
    font-size:42px;
    position:absolute;
    left:270px;
    top:10px;
	width:initial;
	color:#1d2088;
}

.info-box h3{
	text-align:left;
    padding-left:25px;
    padding-top:15px;
    font-weight:bold;
    font-size:26px;
}

.info-text-box{
	width:70%;
	min-height:220px;
	border:1px solid #dcdcdc;
	border-radius:7px;
	box-shadow:1px 1px 5px rgba(0,0,0,0.15);
	z-index:2;
	position:absolute;
	top:80px;
	background-color:#ffffff;
	}
.info-text-box:hover{box-shadow:2px 2px 10px rgba(0,0,0,0.3);}

.info-text-box.textboxL{left:0;}
.info-text-box.textboxR{right:0;}

.info-text-box h1{margin:0; padding:25px 25px 10px; text-align:left; font-weight:bold;}
.info-text-box hr{width:95%; margin:0 auto; border:1px solid #ededed;}
.info-text-box p{
	display:-webkit-box;
    width:100%;
    height:5em;
    margin:0;
    color:#696969;
    font-size:14px;
    line-height:1.5em;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	padding:10px 25px 0;
	}

.info-pic-box{width:40%;}
.info-pic-box.picboxR{float:right;}
.info-pic-box.picboxL{float:left;}
.info-pic-box img{width:100%;}

.info-btn{
	position:absolute;
	right:30px;
	bottom:30px;
	width:100px;
	padding:8px 10px;
	border:1px solid #dcdcdc;
	border-radius:5px;
	text-align:center;
	transition:all 0.8s;
	background-color:#edf3fd;
	}

.info-btn-link:hover{font-weight:bold; color:#fff;}
.info-btn-link:hover .info-btn{background-color:#4868b2;}

/*相關資訊_end*/

/*首頁大標題_start*/
.has-animation{position:relative; text-align:center;}

.has-animation.animate-in:before, .has-animation.animate-in:after{
    content:'';
    position:absolute;
    top:0;
    right:0;
    height:100%;
    z-index:10;
}

.bigger{
	margin:0;
	font-size:48px;
	font-weight:800;
	padding:20px;
	text-transform:uppercase;
	color:#202020;
	display:inline-block;
	position:relative;
	}

.has-animation.animate-in:before{
    background-color:#0fe4d2;
}

.has-animation.animation-ltr.animate-in:before{
    animation:revealLTR 1.8s ease;
}

.has-animation p, .has-animation img{opacity:0;}

.has-animation.animate-in p, .has-animation.animate-in img {
	animation:textHidden 0.1s 1.1s forwards;}

.has-animation.animate-in:after {
    background-color:#122a88;
    animation-delay:0.5s;
}

.has-animation.animation-ltr.animate-in:after {
    animation:revealLTR 1s .6s ease;
}

@keyframes revealRTL {
  0%{width:0; right:0;}
  65%{width:100%; right:0;}
  100%{width:0; right:100%;}
}

@keyframes revealLTR{
  0%{width:0; left:0;}
  65%{width:100%; left:0;}
  100%{width:0; left:100%;}
}

@keyframes textHidden{
  0%{opacity:0;}
  100%{opacity:1;}
}


/*首頁大標題_end*/

.block-title{
	max-width:600px;
	margin:70px auto 10px;
	text-align:center;
	}
	
.block-title h3{
	font-size:38px;
	font-weight:bold;
	color:#1c4c77;
	padding-bottom:10px;
	border-bottom:1px solid #cdcdcd;
	}

/*首頁最新消息區_start*/
.index-news-block{
	width:100%;
	max-width:1480px;
	margin:20px auto 80px;
	display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-column-gap:30px;
    grid-row-gap:30px;
	}

.box-inner{
	/*padding:10px;*/
	height:100%;
	max-height:345px;
	position:relative;
	overflow:hidden;
	background:#ccc;
	}

.news-box-cover img{
	z-index:-1;
	transition:all 0.3s ease-out 0s;
    -moz-transition:all 0.3s ease-out 0s;
    -webkit-transition:all 0.3s ease-out 0s;
    -o-transition:all 0.3s ease-out 0s;
    -ms-transition:all 0.3s ease-out 0s;
	}

.news-box-cover:hover img{
	transform: scale(1.2) rotateZ(-5deg);
    -moz-transform: scale(1.2) rotateZ(-5deg);
    -webkit-transform: scale(1.2) rotateZ(-5deg);
    -o-transform: scale(1.2) rotateZ(-5deg);
    -ms-transform: scale(1.2) rotateZ(-5deg);
	}

.news-infobox{
	position:relative;
	height:220px;
	transform: translateY(-15%);
    -moz-transform: translateY(-15%);
    -webkit-transform: translateY(-15%);
    -o-transform: translateY(-15%);
    -ms-transform: translateY(-15%);
	background:#ccc;
	transition:all 0.3s ease-out 0s;
    -moz-transition:all 0.3s ease-out 0s;
    -webkit-transition:all 0.3s ease-out 0s;
    -o-transition:all 0.3s ease-out 0s;
    -ms-transition:all 0.3s ease-out 0s;
	}

.box-inner:hover .news-infobox{
	transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	}

.index-news-box{
	/*border-radius:5px;*/
	background-color:rgba(255, 255, 255, 0.9);
	box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
    transition:box-shadow 0.3s;
	}

.index-news-box:hover{
	box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	}

.index-news-box h4{
	width:85%;
	font-size:20px;
	font-weight:bold;
	margin:0 auto;
	padding-top:15px;
	padding-bottom:15px;
	border-bottom:1px solid #f1f2f4;
	display:-webkit-box;
    height:2.5em;
    line-height:1.7em;
    -webkit-line-clamp:1;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	}

.news-date{
	width:80%;
	margin:0 auto;
	padding-top:10px;
	font-size:16px;
	font-style:italic;
	font-weight:lighter;
	color:#686868;
	}

.index-news-box p{
	display:-webkit-box;
    width:80%;
    height:3.3em;
    line-height:1.7em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    color:#54595f;
    font-size:16px;
    font-weight:400;
    padding:5px 0 0;
    margin:0 auto 15px;
	}

.button-more{
	font-size:14px;
    font-weight:500;
    padding:15px 20px;
    background-color:#a22739;
    max-width:120px;
    margin:30px auto 10px;
    text-align:center;
    -webkit-transition:background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    transition:background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    -o-transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
	}

.button-more:hover{background-color:#6e1500;}

.button-more span{color:#ffffff;}

.product-button-more{
    font-size:14px;
    font-weight:500;
    padding:15px 20px;
    background-color:#1c4c77;
    max-width:120px;
    margin:20px auto 10px;
    text-align:center;
    -webkit-transition:background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    transition:background .3s,border .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
    -o-transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;
    transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-border-radius .3s,-webkit-box-shadow .3s;
}

.product-button-more:hover{background-color:#102235;}

.product-button-more span{color:#ffffff;}

/*首頁產品區_end*/

/*內頁編輯區_start*/
.main-area{
	width:100%;
	height:100%;
	background-color:rgba(189, 204, 218, 0.35);
	position:relative;
	}

.without-page-header{padding-top:120px;}

.bg-corner{position:fixed; z-index:-1;}

.top_left{
	top:-2px;
	left:0;
	width:800px;
	height:645px;
	background:url(../images/bg-corner-top_left.png) no-repeat;
	}

.bottom_right{
	right:0;
	bottom:-2px;
	width:840px;
	height:576px;
	background:url(../images/bg-corner-bottom_right.png) no-repeat;
	}

.content-area{
	width:100%;
	min-height:600px;
	max-width:1480px;
	margin:0 auto;
	padding-top:20px;
	padding-bottom:120px;
	}

.has-page-title-area{padding-top:30px;}

.bread-block{
	width:90%;
	max-width:1000px;
	margin:0 auto;
	padding:20px 0;
	}

.bread-block ol{
    /*height:80px;*/
    line-height:1.5em;
    padding-left:0;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
	}

.bread-block ol li a{position:relative;}

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

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

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

.content-inner{padding:10px; text-align:center;}

.page-title{
	width:100%;
	max-width:800px;
	margin:0 auto 50px;
	position:relative;
	}

.page-title h3{
	font-size:32px;
	font-weight:700;
	text-align:center;
	padding-bottom:10px;
	border-bottom:1px solid #dcdcdc;
	}

.page-title h4{padding-bottom:10px;}

.edit-block{
	max-width:1000px;
	margin:30px auto 0;
	position:relative;
	text-align:left;
	}

.privacy-block h5 {
    font-size:22px;
    font-weight:bold;
    color:#1c4c77;
    line-height:1.5em;
    padding-bottom:10px;
	}

.privacy-block ul{
    list-style:none;
    padding-left:0;
	}

.privacy-block ul li{
    font-size:17px;
    line-height:1.8em;
    position:relative;
    padding-left:20px;
	}

.privacy-block ul li::before{
    content:'';
    position:absolute;
    top:11px;
    left:5px;
    height:5px;
    width:5px;
    border-radius:50%;
    background:#1c4c77;
	}

.edit-infobox{
	width:100%;
	max-width:800px;
	margin:0 auto;
	text-align:left;
	position:relative;
	}

.edit-infobox h4{
	font-weight:bold;
	font-size:20px;
	border-bottom:1px solid #cccccc;
	padding-bottom:5px;
	}

.product-table{
	border:1px solid #000;
	width:100%;
	background-color:#fff;
	}

.product-table td{font-size:14px;}

.about-sprit-pic{
	width:40%;
	display:inline-block;
	vertical-align:top;
	}

.about-sprit-pic img{width:100%;}

.about-text-box{
	width:40%;
	display:inline-block;
	vertical-align:top;
	padding:10px 30px 0;
	text-align:left;
	}

.about-text-box p span{font-size:24px; font-weight:bold;}

/*page-btn_start*/
.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:#1c4c77;
    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:#1c4c77!important;
	color:#fff;
	}

.pagination>li>a:hover i,
.pagination>li>a:active i
.pagination>li>a:focus i{
	color:#fff!important;
	}
/*page-btn_end*/

/*404_start*/
.error404{text-align:center;}

.error404 img{margin-bottom:60px;}

.error404 h1{font-size:50px; font-weight:bold; text-transform:uppercase;}
/*404_end*/

/*內頁編輯區_end*/

#keyBg{
	background-color:#7d7d7d;
	height:auto;
	width:100%;
}
.key{
	width:100%;
	color:#000000;
	font-size:16px;
	text-align:center;
	margin:0 auto;
	line-height:50px;
	letter-spacing:2px;
}
.key a{
	color:#000000;
	font-size:.9em;
	text-align:center;
	margin:0 auto;
	text-decoration: none;
}
.key a:hover{color:#bababa;}

.Lang {
    position:absolute;
    right:24px;
    top:10px;
	font-size:12px;
    color:#c1c1c1;

}
.Lang a{font-size:14px; color:#ccc;}

/*下方選單_start*/
.menu-bottom-block{
	width:100%;
	display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
	}

.menu-bottom-box{width:16.666%; position:relative;}

.menu-bottom-box a{
	display:block;
	position:relative;
	z-index:2;
	}

.menu-bottom-box-inner{
	display:flex;
    justify-content:center;
    align-items:center;
    padding:15px 20px;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
	}

.menu-bottom-box:nth-child(odd){background-color:#486371;}
.menu-bottom-box:nth-child(even){background-color:#468da3;}

.menu-bottom-box::before{
	content:"";
	width:0;
	height:0;
	position:absolute;
	top:50%;
	left:50%;
	border-radius:0;
	background-color:#1c4c77;
	z-index:1;
	transition:0.5s;
	}

.menu-bottom-box:hover::before{
	width:100%;
	height:100%;
	top:0;
	left:0;
	}

/*.menu-bottom-box:hover{background-color:#1c4c77!important;}*/

.menu-bottom-box img{width:100%; max-width:40px; display:inline-block;}

.menu-bottom-info{margin-left:15px; display:inline-block;}

.menu-bottom-info h4{
	font-size:20px;
	color:#ffffff;
    text-transform:uppercase;
    }

.menu-bottom-link{
	color:#ffffff;
    font-size:14px;
    font-weight:700;
    max-width:135px;
    text-align:center;
    text-transform:uppercase;
    padding:7px 10px;
    border:2px solid #fff;
    }

/*下方選單_end*/

footer{
    /*background-color:#2e3133;*/
    background-image:url(./images/foot-background.jpg);
    background-size:cover;
    background-position:right;
    background-repeat:no-repeat;
	padding:30px 0;
	position:relative;
	overflow:hidden;
	}

footer a{
	color:#fff;
	transition:all 0.4s ease;
	line-height:1.3em;
	}

footer a:hover{color:#58fedb;}

.foot-block{
	width:100%;
	max-width:1200px;
	margin:0 auto 30px;
	position:relative;
    z-index:5;
    justify-content:space-between;
    flex-wrap:wrap;
	}

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

.foot-box-linklogo{width:100%; text-align:center;}

.foot-box-logo{width:40%;}

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

#footlogo{width:100%; max-width:360px;}
#footlogo img{width:100%;}

.foot-box 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);
	}

.foot-box p, .foot-box a, .foot-box li{
	font-size:16px;
	color:#fff;
	}

.foot-des{max-width:600px; padding:5px 10px 5px 5px;}

.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 #5eb1fd;
    content:"";
    position:absolute;
    left:0;
    top:9px;
    transform-style:preserve-3d;
    transition:all 0.5s ease;
	}

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

.linkicon-list{padding-left:0;}

.linkicon-list li{
	display:inline-block;
	margin:10px 15px 0 0;
	}

/*.linkicon-list li a{
	width:45px;
    height:45px;
    font-size:22px;
	color:#fff;
    border-radius:999em;
    background-color:#7e7e7e;
    display:-webkit-flex;
    display:flex;
    -webkit-justify-content:center;
    justify-content:center;
    -webkit-align-items:center;
    align-items:center;
    transition:all 0.15s ease-in-out;
	}

.linkicon-list li:hover a{color:#1c4c77; background-color:#58fedb;}*/

.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;}

.ccin{
	width:100%;
    max-width:400px;
    margin:0 auto;
    text-align:center;
    color:#686868;
    font-size:14px;
    box-sizing:border-box;
	}

.ccin a{color:#9b9b9b; font-size:14px;}
.ccin li{font-size:12px;}
.ccin img{vertical-align:middle; padding:0;}

.goTop{
	position:fixed;
	bottom:12%;
	right:-90px;
	width:54px;
	height:54px;
	z-index:9955;
}

.goTop a:link, .goTop a:visited {
	text-decoration:none;
	position: relative;
	display:flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	line-height:0;
	font-size:0;
	font-weight: 500;
	font-family: 'Microsoft YaHei', sans-serif;
    color: #fff;
    width: 54px;
    height: 54px;
    overflow: hidden;
    border-radius: 50%;
	background-color:#468da3;
	box-shadow: 0 0 13px rgba(0, 0, 0, 0.3);
	transition: all 0s ease 0s;
}
.goTop a:active, .goTop a:hover {
	text-decoration:none;
	cursor:pointer;
    width: 54px;
    height: 54px;
	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::after{
	filter:alpha(opacity=0);
	Opacity:0;
	transition:all 0.25s ease 0s;
}

@keyframes topmoveTop{
	from{transform:translateY(20px);}
	55%{transform:translateY(0px);}
	60%{transform:translateY(10px);}
	70%{transform:translateY(0px);}
	to{transform:translateY(20px);}
	}

@-webkit-keyframes topmoveTop{
	from{transform:translateY(20px);}
	55%{transform:translateY(0px);}
	60%{transform:translateY(10px);}
	70%{transform:translateY(0px);}
	to{transform:translateY(20px);}
	}

.topmoveTop{
	-webkit-animation:topmoveTop 3000ms infinite;
	animation:topmoveTop 3000ms infinite;
	}

/*index*/
.index-about-block{
	width:100%;
	max-width:1200px;
	margin:0 auto 30px;
	overflow:auto;
	}

.index-about-picbox{float:left; width:65%; padding-top:30px;}
.index-about-picbox img{width:100%;}

.index-about-textbox{float:right; width:33%; padding-top:40px;}
.index-about-textbox p{line-height:1.8em;}

.about-sizeS{display:none;}

.table{padding:0 0 30px 30px;}

.newtable1{height:100%; line-height:33px;}

.newtable2{background-color:#f5f5f5; height:100%; line-height:33px;}

.date{
	color:#313131;
	font-size:18px;
	padding:0 0 0 60px;
	float:left;
  	width:150px;
  	vertical-align:top;
}
.news{
	color:#323232;
	font-size:18px;
	display:inline-block;
 	width:700px;
}

.news a{color:#323232; font-size:18px;}

.news a:hover{color:#003b83;}

.news2{color:#323232; font-size:1em; padding-left:230px;}

.page{margin:80px auto 20px; text-align:center;}

.page a{
	color:#000000;
	font-size:16px;
	text-decoration:none;
	padding:8px 13px;
}
.page span{padding:8px 13px; color:#e84c4a;}

.page a:hover{
	background-color:#5a1d1c;
	color:#ffffff;
	font-size:16px;
	text-decoration:none;
}
.spanpage a{background-color:#3891e6; color:#ffffff;}

/*編輯區塊_start*/
.edit-area{
	width:100%;
	max-width:1000px;
	margin:30px auto 80px;
	position:relative;
	}

.spirit-ttitle-bottom{
	width:100%;
	max-width:800px;
	margin:50px auto 0;
	padding:40px 0;
	text-align:center;
	background-color:rgba(200,200,200,0.35);
	}

.spirit-ttitle-bottom h3{
	font-size:28px;
	font-weight:bold;
	color:#808080;
	line-height:1.6em;
	}

.back{color:#852a29; float:right; margin:50px 0;}

/*編輯區塊_end*/

/*關於我們_about_start*/
.about-edit-block{
	width:100%;
	max-width:1000px;
	margin:5px auto 15px;
	display:flex;
	}

.about-edit-box-pic{flex-basis:250px;}
.about-edit-box-info{flex:1;}

.about-edit-box-pic{
	padding:20px 10px;
	background-color:#d2d8e3;
	text-align:center;
	display:flex;
	flex-direction:column;
    justify-content:center;
    align-items:center;
	}

.about-edit-box-pic img{max-width:140px; margin:0 auto;}

.about-edit-box-pic h3{
	font-size:22px;
	font-weight:bold;
	color:#1c4c77;
	padding-top:10px;
	}

.about-edit-box-info{
	padding:30px 0;
	background-color:rgba(255, 255, 255, 0.6);
	display:flex;
    flex-direction:column;
    justify-content:center;
	}

.about-edit-box-info p{width:90%; margin:0 auto; text-align:left;}

/*關於我們_about_end*/

/*技術介紹區*/
#tech-area{
	padding:60px 0;
	background-position:center center;
    background-size:cover;
	}

#tech-area .block-title{margin:10px auto;}

#tech-area .block-title h3{color:#fff;}

.index-product-block{
	width:100%;
	max-width:1480px;
	margin:20px auto 80px;
	display:flex;
	flex-wrap:wrap;
	}

.index-tech-box{width:25%;}

.index-tech-box>.tech_inner{
	margin:15px;
	text-align:center;
	background:rgba(255, 255, 255, 0.65);
	}

.index-tech-box>.tech_inner>a{display:block;}

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

.index-tech-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;
	}

.index-tech-cover::after{
	position:absolute;
    left:0;
    bottom:0;
    content:"";
    height:100%;
    width:100%;
    background:linear-gradient(#486371,#486371,#468da3);
    background:-moz-linear-gradient(#486371,#486371,#468da3);
    background:-o-linear-gradient(#486371,#486371,#468da3);
    background:-webkit-linear-gradient(#486371,#486371,#468da3);
    transition:all 0.35s ease-in-out;
    opacity:0;
    transform:perspective(400px) rotateY(90deg) scaleX(0.5);
	}

.rollover{
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
	position:absolute;
    left:0;
    top:0;
    z-index:1;
    transition:all 0.35s ease-in-out;
    transition-delay:0.15s;
    opacity:0;
	}

.rollover .more-btn{
	font-size:16px;
	color:#fff;
	letter-spacing:1px;
	padding:10px 25px;
	border:1px solid #fff;
	border-radius:999em;
	background-color:rgb(28,76,119,0.5);
	}

.index-tech-box-title h3{
	font-size:16px;
	font-weight:bold;
	padding:15px 0;
	transition:all 0.35s ease-in-out;
	}

.index-tech-box:hover>.tech_inner{
	background:linear-gradient(to right,#102235,#1969a1,#102235);
    background:-moz-linear-gradient(to right,#102235,#1969a1,#102235);
    background:-o-linear-gradient(to right,#102235,#1969a1,#102235);
    background:-webkit-linear-gradient(to right,#102235,#1969a1,#102235);
	}

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

.index-tech-box:hover .index-tech-cover::after{
    height:100%;
    opacity:0.9;
    -webkit-transform:perspective(400px) rotateY(0deg) scaleX(1.0);
    -ms-transform:perspective(400px) rotateY(0deg) scaleX(1.0);
    transform:perspective(400px) rotateY(0deg) scaleX(1.0);
	}

.index-tech-box:hover .index-tech-cover .rollover{opacity:1;}
.index-tech-box:hover .index-tech-box-title h3{color:#fff;}

.index_product_list{
	width:90%;
	list-style:none;
	padding:25px 0 20px;
	margin:0 auto;
	border-bottom:1px dashed #e0e1e3;
	}

.product_date, .news_textbox{display:inline-block; vertical-align:top;}

.product_date{width:10%;}
.product_date p{color:#999; font-weight:400;}

.product_textbox{width:85%; min-height:125px; position:relative;}

.product_textbox h3{font-size:22px; color:#428bca; margin-bottom:10px;}
.product_textbox h3:hover{color:#0060a9;}

.product_brief{
	display:-webkit-box;
    height:3.3em;
    line-height:1.7em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
    }

.action-button{position:absolute; right:0; bottom:0;}

.action-button span{color:#0060a9;}
.action-button:hover span{
	border-bottom:1px solid #0060a9;
    transition:border-bottom 0.2s ease-in;
	}

/*產品應用_start*/
.pack-edit-block{
	width:100%;
	max-width:1000px;
	margin:10px auto 40px;
	padding:40px 50px 50px;
	background-color:rgba(216,216,216,0.5);
	}

.nav-pills li a{
	font-size:18px;
	font-weight:700;
	color:#7a0f1b;
	padding:10px 45px;
	}

.nav-pills>li.active>a, .nav-pills>li.active>a:focus, .nav-pills>li.active>a:hover {
    color:#7a0f1b;
    background-color:#fff;
    border-top-left-radius:7px;
	border-top-right-radius:7px;
	border-bottom-left-radius:unset;
	border-bottom-right-radius:unset;
	}

.pack-edit-box .tab-content{
	background-color:#fff;
	padding:50px 30px;
	border-bottom-left-radius:7px;
	border-bottom-right-radius:7px;
	}

.tab-pane{position:relative;}

.tab-pane-inner{margin:0 auto;}

.tab-pane-box{
	justify-content:center;
	align-items:center;
	padding:40px 0;
	border-top:1px solid rgba(216,216,216,0.5);
	position:relative;
	}

.tab-pane-box:first-child{border-top:unset;}

.tab-box-pic{width:30%; text-align:center;}
.tab-box-pic img{width:100%; max-width:200px;}

.tab-box-info{width:70%; text-align:left; padding:20px;}

.tab-box-info h4{
	color:#7a0f1b;
	font-size:20px;
	font-weight:700;
	margin-bottom:15px;
	}

.pack-button{text-align:center;}
.pack-button a{
	color:#7a0f1b;
	padding:15px 20px;
    border:1px solid #7a0f1b;
    position:relative;
    z-index:1;
	}

.pack-button a::after{
	position:absolute;
	content:"";
	width:0;
	height:100%;
	top:0;
	right:0;
	background:#7a0f1b;
	transition:all 0.3s ease;
	z-index:-1;
	}

.pack-button a:hover{color:#fff;}
.pack-button a:hover::after{left:0; width:100%;}

.pack-type-menu{
	width:100%;
	max-width:800px;
	margin:10px auto 40px;
	padding:10px;
	display:flex;
	flex-wrap:wrap;
	}

.pack-box{
	width:25%;
	padding:10px;
    text-align:center;
	}

.pack-box img{
	width:100%;
	max-width:180px;
    -moz-box-shadow:0 0 4px rgba(0,0,0,.2);
    -webkit-box-shadow:0 0 4px rgb(0 0 0 / 20%);
    box-shadow:0 0 4px rgb(0 0 0 / 20%);
	}

/*產品應用_end*/

/*product*/
.banner-page{
	width:100%;
	height:150px;
	margin-top:80px;
	background-position:center;
	position:relative;
	}

.banner-page h3{
	font-size:36px;
	line-height:45px;
	padding-top:50px;
	font-weight:bold;
	text-align:center;
	color:#000;
	}

.product-area{
	width:100%;
	min-height:600px;
	max-width:1480px;
	margin:0 auto 80px;
	padding-top:30px;
	}

.product-block{max-width:1280px;}

.product-block-setting{max-width:1100px; margin:0 auto;}

.product-menu{
    width:100%;
    margin:20px auto 40px;
    padding:10px;
}

.product-menu li{
	display:inline-block;
	width:150px;
	height:150px;
	padding:10px;
	margin:0 5px 10px;
	background-color:#ccc;
	border-radius:15px;
    position:relative;
	text-align:center;
	background-color:rgba(204, 204, 204, 0.85);
	background-blend-mode:multiply;
	background-position:center center;
	background-size:100% 100%;
	-moz-background-size:100% 100%;
	}

.product-menu li:hover{background-color:#f1f2f4;}

.product-menu li:hover p{color:#000;}

.product-menu li.select{
	background-color:rgba(156, 31, 46, 0.85);
	}

.product-menu li.select p{color:#fff;}

.product-menu li p{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	font-weight:bold;
	font-size:16px;
	}

.product-gallery-block{
	display:flex;
	flex-wrap:wrap;
	}

.product-sidebar{width:20%; position:relative;}
.product-gallery-subblock{width:80%; position:relative;}

.sidebar-inner{
    margin:10px;
    text-align:left;
    background-color:#fff;
    border:1px solid transparent;
    border-radius:4px;
    -webkit-box-shadow:0 1px 1px rgb(0 0 0 / 5%);
    box-shadow:0 1px 1px rgb(0 0 0 / 5%);
    position:relative;
	}

.sidebar-inner h4{padding-top:15px; padding-left:15px;}

.sidebar-menu{padding-left:0;}

.sidebar-menu li{
	line-height:30px;
	padding:5px 0;
	position:relative;
	}

.sidebar-menu li a{
	display:block;
	padding-left:30px;
	position:relative;
	color:#686868;
	}

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

.sidebar-menu li a:hover::before {
    transform:rotateX(360deg);
    border-color:transparent transparent transparent #5eb1fd;
}

.product-sidebar li i{
	position:absolute;
	top:6px;
	left:12px;
	}

.product-sidebar a{text-decoration:none; transition:all 0.2s ease 0s;}

.product-sidebar a:hover{color:#5eb1fd;}
.product-list-menu a:hover{color:#5eb1fd;}

.product-sidebar>ul>li>a{
	-webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    }

.product-sidebar button{
	border:unset;
	background-color:unset;
	-webkit-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
	}

.product-sidebar button i{
	-webkit-transition:all 0.3s;
    -o-transition:all 0.3s;
    transition:all 0.3s;
    }

.toggle.collapsed{
	-webkit-transform:rotate(-180deg);
    -ms-transform:rotate(-180deg);
    transform:rotate(-180deg);
	}

.product-sidebar>ul>li>ul{
	padding-left:12px;
	margin-left:7px;
	border-left:1px #ccc solid;
	}

.third-menu{
	padding-left:10px;
	margin-left:7px;
	border-left:1px #ccc solid;
	}

.product-sidebar h4{
	font-size:18px;
	font-weight:600;
	padding-bottom:10px;
	border-bottom:1px #f1f2f4 solid;
	}

.product-box{
	width:33.333%;
	margin:0 0 60px;
	position:relative;
	}

.product-box-inner{
	margin:10px;
    background-color:#fff;
    box-shadow:0px 0px 0px 0px rgba(0, 0, 0, 0);
    transition:box-shadow 0.3s;
	}

.product-box-inner>a{
	display:flex;
	justify-content:center;
    position:relative;
	}

.product-box img{width:100%;}

.portfolio-item{position:absolute; top:91%; max-width:275px;}

.portfolio-item h3{
	font-size:16px;
    line-height:25px;
    text-align:justify;
    padding:15px 20px;
    background-color:rgba(82,126,159,0.4);
    transition:all 0.5s ease 0s;
	}

.product-box:hover .product-box-inner{
	box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.3);
	}
.product-box:hover .portfolio-item h3{color:#fff; background-color:rgba(28,76,119,0.9);}

.brief-box{padding:30px 20px; text-align:left;}

.product-text-box{width:60%; padding:20px;}

.product-text-box h3{
	font-size:22px;
	font-weight:600;
	color:#7d0000;
	padding-bottom:10px;
	}

.product-text-box>h3>a{
	font-size:22px;
	font-weight:600;
	color:#7d0000;
	padding:10px 15px;
	border:1px #7a0f1b solid;
	}

.product-text-box>h3:hover>a{background-color:#fff;}

.product-pic-box{width:40%;}

.one-block{width:100%;}

.quick-link{
	padding:7px 12px;
	margin:10px;
	border:1px #686868 solid;
	border-radius:5px;
	display:inline-block;
	}

.p_page{
	text-align:center;
	margin:10px auto;
	width: 200px;
}
.p_page a{
	color:#595757;
	font-size:18px;
	text-decoration:none;
}
.pro_text{
	color:#852a29;
	font-size:21px;
	font-weight:bold;
	    display: inline-block;
}
.pro_text2{
	color:#852a29;
	font-size:16px;
	display:inline-block;
}
.pro_p{font-size:16px;}

.picture_big{margin:0 auto; display:block;}

.price{line-height:30px; padding-top:5px;}

.promotion{
	font-weight:bold;
	font-size:24px;
	color:#3a5da0;
	}

.mobile-show-block{display:none;}
.mobile-show-block ul{padding-left:0;}
.mobile-show-box{width:95%; margin:0 auto 10px;}
.mobile-show-box img{width:100%; margin:0;}

.button{
	width:130px;
	height:36px;
	background-color:#00bfff;
	border-radius:5px;
	border:#86b7d5 1px solid;
	box-shadow:1px 1px 5px rgba(0,0,0,.4);
	color:#ffffff;
	font-size:16px;
	text-align:right;
	padding:0 15px 3px 0px;
	box-sizing:border-box;
	float:left;
	margin:10px 5px;
	font-family:Arial,微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
	}

.product-main-pic{width:100%; max-width:550px; margin:0 auto;}
.product-main-pic img{width:100%;}

.product-list-menu{
	position:fixed;
	left:5%;
	z-index:20;
	background-color:#fff;
	box-shadow:0px 0px 16px rgb(0 0 0 / 30%);
	}

.product-list-inner{
	max-width:220px;
	max-height:400px;
	margin:20px 15px 20px 20px;
	overflow-x:hidden;
	overflow-y:auto;
	}

.product-list-menu h4{
	font-size:20px;
	font-weight:bold;
	color:#000;
	text-align:center;
	}

.product-list-menu h5{
	font-size:16px;
	font-weight:600;
	color:#1c4c77;
	padding:15px 0 10px;
	}

.product-list-menu a:hover h5{color:#5eb1fd;}

.anchor-menu{
	position:fixed;
	top:30%;
	right:15%;
	z-index:20;
	}

.anchor-menu ul{
	padding:10px 15px;
	background-color:#1c4c77;
	border-radius:10px;
	box-shadow:0px 0px 16px rgb(0 0 0 / 30%);
	}

.anchor-menu li{
	line-height:45px;
	border-bottom:1px #e1e1e4 dashed;
	}

.anchor-menu li:last-child{border-bottom:unset;}

.anchor-menu li a{
	color:#fff;
	display:block;
	font-weight:500;
	}

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

.detail-edit-block{padding:50px 0;}
.bg-grey{background-color:rgba(216,216,216,0.6);}

.detail-edit-box{
	width:100%;
	max-width:860px;
	margin:0 auto;
	position:relative;
	}

.detail-edit-coverbox{max-width:1000px;}

.detail-edit-coverbox .detail-edit-box-inner{
	margin-left:calc(10%);
	margin-right:calc(-5%);
	align-items:center;
	}

.detail-title{width:35%; justify-content:center;}
.detail-main-pic{width:65%; justify-content:center;}

.title-inner{width:100%;}
.main-pic-inner{width:100%; position:relative;}

.main-pic-inner img{width:100%;}

.title-inner h3{
	font-size:26px;
	font-weight:700;
	border-bottom:6px solid #1c4c77;
	padding-bottom:10px;
	margin-bottom:10px;
	}

.title-inner h4{
	font-size:24px;
	font-weight:700;
	line-height:1.3em;
	letter-spacing:2px;
	}

.title-inner p{font-size:18px;}

.box-title{
    border-bottom:1px solid #dcdcdc;
    padding-bottom:10px;
    margin-bottom:10px;
	}

.box-title h5{
    font-size:22px;
    font-weight:700;
    padding-top:7px;
	}

.dividing-line{margin-top:10px; margin-bottom:10px;}

.hr-inner{
	width:100%;
    position:absolute;
    height:1px;
    left:0;
    top:50%;
    width:100%;
    margin-top:-1px;
    border-top-width:1px;
    border-top-style:solid;
    }

.dividing-line .dividing-line-inner{
	display:inline-block;
	width:150px;
	height:1px;
	border-color:#ccc;
	border-top-width:2px;
	margin-top:-1px;
    vertical-align:middle;
    position:relative;
	}

.detail-edit-box table,
.news-detail-infobox table{
	margin:10px auto 30px;
	text-align:center;
    border:1px solid #585858;
    background-color:#fff;
	}

.detail-edit-box table th,
.detail-edit-box table td,
.news-detail-infobox table th,
.news-detail-infobox table td{
	padding:15px 7px;
    border:1px solid #585858;
	}

.detail-edit-box table tr:nth-child(odd),
.news-detail-infobox table tr:nth-child(odd){
    background-color:rgba(211,234,236,0.3);
}

.detail-exhibit-block{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	}

.exhibit-box{width:49%;}

.exhibit-box-inner{
	margin:10px auto;
	padding:20px;
	border:1px solid rgba(204,204,204,0.5);
	border-radius:10px;
	box-shadow:0px 0px 10px 0px rgb(0 0 0 / 10%);
	}

.exhibit-title{
	margin-bottom:10px;
	display:flex;
	align-items:center;
	}

.exhibit-title h4{
	font-size:22px;
	font-weight:bold;
	padding-right:10px;
	flex-basis:100px;
	}

.exhibit-title .title-line{
	flex:1;
	height:1px;
	background-color:rgba(204,204,204,0.5);
	}

.exhibit-picbox{display:flex;}

.exhibit-cover-box{
	width:50%;
	position:relative;
	}

.exhibit-pic{
	display:block;
    height:0;
    text-align:center;
    padding-bottom:80%;
    overflow:hidden;
    position:relative;
	}

.exhibit-pic 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.5s;
	}

.exhibit-marked{
	font-size:22px;
	color:#fff;
	letter-spacing:1px;
	text-shadow:#000 0.1em 0.1em 0.2em;
	position:absolute;
	top:45%;
	left:50%;
	margin-left:-34px;
    transition:all 0.5s;
	}

.detail-edit-content{
	padding:30px 40px 50px;
	border-radius:5px;
	background-color:#fff;
	box-shadow:0px 0px 10px 0px rgb(0 0 0 / 25%);
	}

.detail-edit-content h4{
	font-size:20px;
	font-weight:600;
	margin-bottom:10px;
	}

.detail-edit-content ul{padding-left:25px;}

.detail-edit-content ul li{
	font-size:18px;
	line-height:1.5em;
	list-style:disc;
	}

.exhibit-box:hover .exhibit-box-inner{
	box-shadow:0px 0px 10px 0px rgb(0 0 0 / 25%);
	}
.exhibit-pic:hover img{transform:translate(-50% , 0) scale(1.1);}
.exhibit-cover-box:hover .exhibit-marked{opacity:0;}

/*技術介紹_start*/
.product-gallery-block{position:relative;}

.tech-block{max-width:1100px; margin:0 auto 50px;}

.tech-list-box{
	width:50%;
	margin:0 0 30px;
    position:relative;
    overflow:hidden;
	}

.tech-box-inner{
	margin:10px;
	box-shadow:0px 0px 10px rgb(0 0 0 / 10%);
	position:relative;
	}

.tech-box-inner>a{display:block}

.tech-box-cover{
	position:relative;
    overflow:hidden;
    width:100%;
    height:0;
    padding-bottom:60%;
    text-align:center;
	}

.tech-box-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;
	}

.thumb-rollover{
    opacity:0;
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:-webkit-gradient(linear,left bottom,left top,from(#d3d3d3),to(rgba(58,58,58,0.9)));
    background-image:linear-gradient(to top,#d3d3d3 0,rgba(58,58,58,0.9) 100%);
    -webkit-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
    -webkit-transform:translateY(100%);
    transform:translateY(100%);
	}

.thumb-rollover .thumb-rollover-content{
    width:100%;
    height:100%;
    text-align:center;
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    -ms-flex-pack:distribute;
    justify-content:center;
    flex-direction:column;
	}

.thumb-rollover-icon{
    width:150px;
    /*height:50px;
    border-radius:999em;
    background-color:rgba(255,255,255,0.8);*/
    display:flex;
    justify-content:center;
    align-items:center;
	}

.thumb-rollover-icon>img{width:100%;}
.thumb-rollover-icon i{font-size:18px;}

.thumb-rollover-content h4{
    font-size:16px;
    color:#1c4c77;
    margin-top:15px;
    margin-bottom:0;
    padding:10px 25px;
    background-color:rgba(255,255,255,0.75);
    border:1px solid #1c4c77;
	}

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

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

.tech-list-box:hover .thumb-rollover{
	opacity:1;
    -webkit-transform:translateY(0);
    transform:translateY(0);
	}

.tech-list-box:hover .portfolio-item h3{color:#1c4c77;}

.tech-block>ul{padding-left:0;}
.tech-block>ul>li{margin-bottom:50px;}

.tech-detail-inner{
	margin:15px;
	display:flex;
	align-items:flex-start;
	}

.tech-block>ul>li:nth-child(odd) .tech-detail-inner{
	flex-direction:row-reverse;
	}

.tech-detail-cover-box{
	flex-basis:350px;
	padding:0 20px;
	}

.tech-detail-content-box{
	flex:1;
	padding:20px 25px;
	background-color:#fff;
	border-radius:10px;
	}

.tech-detail-cover{
	/*display:block;
    height:0;
    text-align:center;
    padding-bottom:75%;
    overflow:hidden;
    background-color:rgba(0,0,0,0);
    position:relative;*/
    }

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

.tech-detail-title{
	margin-bottom:10px;
	padding-bottom:10px;
	border-bottom:1px solid rgba(240,204,204,0.5);
	}

.tech-detail-title h3{font-size:22px; font-weight:600;}

.tech-detail-content ul{padding-left:25px;}
.tech-detail-content ul li{
	font-size:17px;
	line-height:1.8em;
	list-style:disc;
	}

/*技術介紹_end*/

/*最新消息_start*/
.news-list{padding-left:0;}

.news-list li{
	width:100%;
	border-bottom:1px solid rgba(220,220,220,0.5);
	position:relative;
	}

.news-list-link{
	display:block;
	padding:30px 0;
	text-decoration:none;
    position:relative;
	}

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

.news-list-link .news-list_arrow i{color:#86949a; font-size:20px;}

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

.news-list_arrow_block::after{
	content:"";
	background:currentColor;
	}

.news-list-link:hover .news-list_arrow:before {
    transition-timing-function:cubic-bezier(.175,.885,.32,1.275);
    transform:scale(1);
	}

.news-list-link:hover .news-list_arrow i{color:#fff;}

.news-list_header{display:flex; align-items:center;}

.news-list_tag{
	font-size:16px;
	font-weight:600;
	border-radius:100px;
	padding:3px 25px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    vertical-align:middle;
    background:#468da3;
    font-family:'Raleway', sans-serif;
	}

.news-list_date{
	font-size:18px;
	font-weight:500;
	color:#686868;
	margin-left:15px;
	}

.news-list_title-box{margin-top:10px; text-align:left;}

p.news-list_title{
	display:inline;
	font-size:20px;
	font-weight:600;
	color:#000;
	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;
	}

.news-list-link:hover .news-list_title{background-size:100% 1px;}

.page-newsbox{
	width:100%;
	max-width:900px;
	margin:10px auto 50px;
	background-color:#fff;
	-webkit-box-shadow:0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    box-shadow:0 1px 3px -2px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
	}

.page-newsbox a{display:block;}

.page-newsbox-cover-picbox{width:40%; height:200px; overflow:hidden;}
.page-newsbox-cover-picbox img{width:100%;}

.page-newsbox-infobox{width:60%; align-items:center;}

.inner{padding:0 30px;}

.page-newsbox-infobox h3, .page-newsbox-infobox p{text-align:left;}

.page-newsbox-infobox h3{
	font-size:24px;
	font-weight:bold;
	padding-bottom:15px;
	}

.page-newsbox-infobox p{
	display:-webkit-box;
    width:100%;
    height:3em;
    line-height:1.5em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	}

.news-detail-cover{width:100%; max-width:600px; margin:0 auto;}
.news-detail-cover img{width:100%;}

.news-detail-infobox{width:100%; text-align:left; padding:30px 0;}
.news-detail-infobox h3{font-size:26px; font-weight:600;}
.news-detail-infobox hr{
	margin-bottom:15px;
    margin-top:15px;
    border-top:1px solid #dcdcdc;
    border-bottom:0;
    border-left:none;
    border-right:0;
    }

.back-box{
    width:100%;
    max-width:800px;
    margin:20px auto 50px;
    display:flex;
    justify-content:flex-end;
	}

.back-btn a{
    font-size:16px;
    color:#fff;
    padding:12px 25px;
    border-radius:5px;
    background-color:#1c4c77;
	}

.back-btn i{margin-right:5px; color:#fff;}

.back-btn:hover a{background-color:#102235;}

/*最新消息_end*/

/*contact*/
.contact-block{max-width:1280px;}

.map-box{width:50%; padding-top:30px;}

.map-box p{text-align:left; padding-left:15px;}

.map-box p span{font-size:24px; font-weight:bold;}

.map-box i{margin-right:7px;}

.contact-person-box{margin:20px 0 0;}

.contact-person-box h4{
	font-size:20px;
	font-weight:bold;
	margin-bottom:5px;
	}

.contact-person-box ul{
	padding-left:0;
	display:flex;
	flex-wrap:wrap;
	}

.contact-person-box ul li{width:23%; padding:10px;}

.map-box iframe{width:100%; height:415px; padding-top:15px;}

.form-box{width:50%; min-height:450px; padding-top:25px;}

.remark{padding:5px;}
.remark span{color:#ea0000; font-weight:500;}

.contact-form-box{margin:0 0 25px;}

.contact-form-box>.form-box-inner{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
    align-items:center;
	}

.contact-form-box>.form-box-inner.align-items-start>label{padding-top:10px;}

.contact-form-box label{
	font-size:18px;
    font-weight:bold;
	padding-left:5px;
	}

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

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

.contact-form{width:90%; margin:0 auto;}

.form-box-content .form-check{display:inline-block; margin-right:15px;}
.form-box-content .form-check label{margin-top:0.25em; padding-left:0;}

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

.confirm-btn-box{text-align:center; margin-top:50px;}

.confirm-btn-box button{
	width:200px;
	padding:10px 20px;
	border:1px solid #ced4da;
	border-radius:0.25rem;
	position:relative;
	z-index:5;
	}

.confirm-btn-box button::before{
	content:"";
	width:0;
	height:0;
	position:absolute;
	top:50%;
	left:50%;
	border-radius:0.25rem;
	background-color:#1c4c77;
	z-index:-1;
	transition:0.5s;
	}

.confirm-btn-box button:hover{
	color:#fff;
	}

.confirm-btn-box button:hover::before{
	width:100%;
	height:100%;
	top:0;
	left:0;
	}

.confirm-btn-box button i{margin-right:5px;}

table{
    border:0;
    width:100%;
    margin:0;
    padding:0;
    border-collapse:collapse;
    border-spacing:0;
	}

table tr{padding:5px;}

table th, table td{padding:10px; text-align:center;}

table th{font-size:14px; letter-spacing:1px;}

.contact-form tr th{
	padding-top:20px;
    width:130px;
    font-size:18px;
    font-weight:bold;
    line-height:150%;
    text-align:left;
    vertical-align:top;
	}

.contact-form tr td{text-align:left;}

.contact-form tr span{
	color:#ea0000;
	font-weight:500;
	vertical-align:baseline;
	}

.contact-form td input{
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
	width:100%;
	font-size:16px;
	padding:7px 15px;
	border:1px solid #dddddd;
	background:#ffffff;
	line-height:180%;
	outline:0;
	-webkit-transition:0.2s ease all;
    transition:0.2s ease all;
	}

.contact-form td textarea{
	-webkit-box-sizing:border-box;
    box-sizing:border-box;
	width:100%;
	height:180px;
	font-size:16px;
	padding:7px 15px;
	border:1px solid #dddddd;
	background:#ffffff;
	line-height:180%;
	outline:0;
	-webkit-transition:0.2s ease all;
    transition:0.2s ease all;
	}

.contact-form td.sending-btn{position:relative;}

.contact-form input[type="sumit"]{
	text-align:center;
	font-size:20px;
	font-weight:bold;
	background-color:#fff;
    border:1px solid #5eb1fd;
    padding:10px 25px;
    cursor:pointer;
    position:relative;
    z-index:5;
    }

.contact-form td.sending-btn::before{
	content:"";
	width:0;
	height:0;
	position:absolute;
	top:50%;
	left:50%;
	border-radius:0;
	background-color:#1c4c77;
	z-index:1;
	transition:0.5s;
	}

.contact-form td.sending-btn:hover input[type="sumit"]{
	color:#fff;
	background-color:unset;
	}

.contact-form td.sending-btn:hover::before{
	width:calc(100% - 20px);
	height:calc(100% - 20px);
	top:10px;
	left:10px;
	}

/*.contact-form input[type="sumit"]:hover{
	color:#fff;
	background:#1c4c77;
    border:1px solid #1c4c77;
	}*/

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

/*崁入youtube_start*/
.youtubecontent{
	position:relative;
	padding-top:30px;
	height:0;
	overflow:hidden;
	}
.youtubecontent{padding-bottom:56.25%;}
.youtubecontent iframe,
.youtubecontent object,
.youtubecontent embed{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	}
/*崁入youtube_end*/

/*process_流程區塊_start*/
.process-area{padding:0;}

.process-block{
	display:flex;
	flex-wrap:wrap;
	}

.process-box{
	width:33.333%;
	padding:10px;
	margin-top:10px;
	padding-bottom:30px;
	text-align:center;
	position:relative;
	border-radius:20px;
	box-shadow:0px 0px 16px rgb(0 0 0 / 0%);
	}

.process-box:before{
	content:"";
    position:absolute;
    width:0;
    height:0;
    border-style:solid;
    border-width:20px 20px 20px 20px;
    border-color:transparent transparent transparent #ccc;
    right:10px;
    top:40%;
	}

.step-box{
	position:absolute;
	top:20px;
	left:20px;
	width:80px;
	height:80px;
	border-radius:50%;
	background-color:#8c8c8c;
	box-shadow:0px 0px 16px rgb(0 0 0 / 0%);
	}

.process-box:hover{box-shadow:0px 0px 16px rgb(0 0 0 / 20%);}

.process-box:hover .step-box{
	background-color:#a52a2a;
	box-shadow:0px 0px 16px rgb(0 0 0 / 20%);
	}

.step-box-inner{
	width:100%;
	height:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items:center;
	}

.step-box p{color:#fff!important;}

.step-number{font-size:28px; font-weight:bold;}

.process-box:last-child:before{border-width:0;}

.process-box img{width:100%; max-width:110px;}

.process-box h3{font-size:20px; font-weight:600; padding-bottom:10px;}

.process-box p{width:100%; margin:0 auto; line-height:1.5em; color:#686868;}

.guide-block{width:100%; display:flex; margin:50px auto;}

.guide-box{width:33.333%; height:70px; display:flex;}

.guide-box-left{
	justify-content:flex-end;
    align-items:flex-end;
    position:relative;
    }

.guide-box-left .inner-line{
	width:50%;
	height:52%;
	border-top:2px solid #ccc;
	border-left:2px solid #ccc;
	border-top-left-radius:20px;
	}

.guide-box-center{align-items:center;}
.guide-box-center .inner-line{
	width:100%;
	height:2px;
	border:1px solid #ccc;
	}

.guide-box-right{
	justify-content:flex-start;
    align-items:flex-start;
    }

.guide-box-right .inner-line{
	width:50%;
	height:51%;
	border-bottom:2px solid #ccc;
	border-right:2px solid #ccc;
	border-bottom-right-radius:20px;
	}

.guide-box-left::before{
	content:"";
    position:absolute;
    width:0;
    height:0;
    border-style:solid;
    border-width:15px 12px 0px 12px;
    border-color:#ccc transparent transparent transparent;
    left:46.7%;
    bottom:0;
	}

/*process_流程區塊_end*/

/*download*/
.download-block{
	width:100%;
	max-width:1200px;
	margin:20px auto 0;
	display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-column-gap:30px;
    grid-row-gap:30px;
    position:relative;
	}

.download-box{padding:10px; text-align:center; position:relative;}

.download-cover{
	box-shadow:0 2px 24px rgb(0 0 0 / 10%);
    transition:all 0.3s;
	position:relative;
	}

.download-effct{
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	opacity:0;
	-webkit-transition:opacity 0.35s ease;
	-moz-transition:opacity 0.35s ease;
	text-align:center;
	vertical-align:middle;
	background:rgba(0, 0, 0, 0.75);
	}

.download-effct a{display:block; height:100%;}

.download-cover:hover .download-effct{opacity:1;}

.download-effct span{
	font-weight:900;
	color:rgba(255, 255, 255, 0.85);
	font-size:18px;
	line-height:35px;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	}

.download-effct span i{font-size:60px;}

.download-box h3{font-size:16px; padding-top:10px;}

.download-box h4{font-weight:inherit; padding-top:5px;}

/* Q&A_faq_start */
.faq-block{
    width:100%;
    max-width: 1200px;
    margin:20px auto 0;
    display:flex;
    flex-wrap:wrap;
    }

.faq-box{width:25%; margin-bottom:25px; position:relative;}

.faq-box>.box-inner{
	margin:10px;
	max-height:unset;
	background:unset;
	}

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

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

.hover-square{
	opacity:0;
	width:calc(100% - 100px);
    height:calc(100% - 100px);
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    border:1px solid #fff;
    position:absolute;
    z-index:2;
	}

.faq-box:hover .hover-square{
	opacity:1;
	border-color:#fff;
    transition:color 0.3s ease-in-out, all 0.3s ease-in-out;
    width:calc(100% - 20px);
    height:calc(100% - 20px);
	}

.faq-box-info{margin-top:5px;}

.faq-box-info h3{
    font-weight:bold;
    color:#2d2b74;
    font-size:22px;
    line-height:1.3em;
}

.faq-date{margin-bottom:10px;}
.faq-date span{font-size:14px; color:#adadad;}

.faq-box-brief 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 0 10px;
	}

.faq-box-info a{color:#5eb1fd; font-size:16px;}

.faq-detail-block{
    width:100%;
    max-width:1000px;
    margin:20px auto 0;
    }

.faq-detail-cover{
    width:90%;
    max-width:600px;
    margin:0 auto 30px;
	}
.faq-detail-cover img{width:100%;}

.faq-detail-block .page-edit-content{min-height:350px;}

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

.back-btn-box a{
    font-size:16px;
    color:#004986;
    padding:12px 25px;
    border:1px solid #004986;
    border-radius:999em;
	}

.back-btn-box i{
    margin-right:5px;
    color:#004986;
	}

.back-btn-box:hover a{
    color:#fff;
    border:1px solid #004986;
    background-color:#004986;
	}
.back-btn-box a:hover i{color:#fff;}

/* Q&A_faq_end */

/*螢幕大小*/
@media screen and (max-width:1680px){
	.main-spirit-text-box{width:45%; left:10%;}
	}

@media screen and (max-width:1600px){
	#contentBox{padding-left:0;}
	.member ul{padding-right:180px;}
	.index-hot-block{width:90%;}
	.index-news-block{width:90%;}
	.index-product-block{width:90%;}
	.news-infobox{
		transform: translateY(-5%);
	    -moz-transform: translateY(-5%);
	    -webkit-transform: translateY(-5%);
	    -o-transform: translateY(-5%);
	    -ms-transform: translateY(-5%);
	    }
	.button-more{margin:50px auto 0;}
	.product-list-menu{left:1%;}
	}

@media screen and (max-width:1480px){
	.main-spirit-text-box{width:50%; left:5%;}
	.edit-block{width:95%; margin:0 auto;}
	.anchor-menu{right:8%;}
	}

@media screen and (max-width:1360px){
	.member ul{padding-right:120px;}
	.logo{left:25px;}
	.main-spirit-text-box::after{width:85%;}
	.top-menu-ul>li:nth-child(3)>ul{min-width:130px;}
	.top-submenu>li ul.short-setting{width:130px;}
	.product-list-menu{display:block; width:90%; max-width:600px; margin:50px auto 0;}
	.product-list-menu{position:inherit; top:unset; left:unset;}
	.product-list-menu{z-index:inherit;}
	.product-list-inner{max-width:none; max-height:none; overflow:hidden;}
	.product-list-inner{margin:0; padding:20px;}
	.product-list-menu ul{border-top:1px solid rgba(216,216,216,0.6);}
	.product-list-menu ul li{display:inline-block;}
	.detail-edit-coverbox .detail-edit-box-inner{margin-left:inherit; margin-right:inherit;}
	}

@media screen and (max-width:1300px){
	.logo{width:250px; margin-top:-23px;}
	nav>ul>li a{font-size:14px;}
	.main-spirit-img{right:12vw;}
	.top-menu-ul>li:nth-child(3)>ul{left:-30px;}
	.button-more{margin:60px auto 0;}
	.anchor-menu{right:0;}
	.anchor-menu ul{padding:10px 20px 10px 15px; border-top-right-radius:unset; border-bottom-right-radius:unset;}
	.anchor-menu ul{border-top-left-radius:10px; border-bottom-left-radius:10px;}
}

@media screen and (min-width:1201px){
	#mobile{display:none;visibility:hidden;}
}

@media screen and (max-width: 1200px){
	.top-menu{display:none;}
	nav>ul{padding-right:50px;}
	.top-menu-block{height:70px; padding:0;}
	.top-menu-ul>li>a{padding:0px 0px 25px 0;}
	.top-menu-bar{position:inherit; display:inline-block;}
	.language-box{display:none;}
	#banner-L{padding-top:0;}
	.without-page-header{padding-top:40px;}
	.news-infobox{
		transform: translateY(-20%);
	    -moz-transform: translateY(-20%);
	    -webkit-transform: translateY(-20%);
	    -o-transform: translateY(-20%);
	    -ms-transform: translateY(-20%);
	    }
	.box-inner:hover .news-infobox{
		transform: translateY(-60%);
	    -moz-transform: translateY(-60%);
	    -webkit-transform: translateY(-60%);
	    -o-transform: translateY(-60%);
	    -ms-transform: translateY(-60%);
	}
	.button-more{margin:40px auto 0;}
	nav{width:100%;}
	.main-spirit-block-active .main-spirit-img{top:-15vw; right:30vw;}
	.main-spirit-text-box{left:25%; top:65%;}
	.main-spirit-text-box::after{width:95%;}
	.slider-block .scroll{left:7%;}
	.news_date{width:13%;}
	.block-title{width:70%;}
	.index-news-block{width:80%; grid-template-columns:repeat(2,1fr);}
	.foot-block{width:90%; max-width:800px;}
	.foot-box-logo{width:100%;}
	.foot-box-contact{width:40%;}
	.foot-box-sitemap{width:60%;}
	.menu-bottom-block{flex-wrap:wrap;}
	.menu-bottom-box{width:33.333%;}
	.menu-bottom-box:nth-child(4){background-color:#468da3;}
	.menu-bottom-box:nth-child(5){background-color:#486371;}
	.menu-bottom-box:nth-child(6){background-color:#468da3;}
	.about-sprit-pic{width:90%; max-width:700px; display:block; margin:0 auto;}
	.about-text-box{width:85%; display:block; margin:30px auto 0;}
	.map-box{width:60%;}
	.contact-text-box{width:35%;}
	.banner-page{margin-top:0;}
	.map-box{width:60%; margin:0 auto 20px;}
	.form-box{width:80%; margin:0 auto;}
	.contact-form{width:100%;}
	.content-area{padding-top:80px;}
	.edit-infobox{max-width:650px;}
	footer:before{top:10%;}
	footer:after{left:-10%;}
	.product-sidebar{width:30%;}
	.product-gallery-subblock{width:70%;}
	.product-box{width:50%;}
	.product-cover-box{max-height:80%; overflow:hidden;}
	}

@media screen and (max-width:1080px){
	.top-menu-logo img{max-width:200px;}
	.nav-navbar>.nav-item>a{margin:0; padding: 0 12px 30px;}
	.member ul{padding-right:0;}
	nav>ul{display:none;padding-right:60px;}
	.header-menu-bottom{display:none;}
	.Lang{position:initial;}
	.footbox{width:90%;}
	#footline{right:130px;}
	.tableDown span ul{margin-left:0px;}
	.download-block{width:90%; grid-template-columns:repeat(3,1fr);}
	.detail-edit-box{width:90%; max-width:650px;}
	.process-block{max-width:600px; margin:0 auto;}
	.process-box{width:50%; margin-bottom:50px;}
	.step-box{top:10px; left:10px;}
	.guide-block{display:none;}
	.news-list_title-box{padding-right:20%;}
	.detail-edit-box-inner{flex-wrap:wrap;}
	.detail-main-pic{flex-basis:100%;}
	.big-pic-box{max-width:450px; margin:0 auto 15px;}
	.small-pic-box{max-width:450px; margin:0 auto;}
	.detail-title{margin-top:30px; padding:0;}
	.exhibit-box{width:100%;}
	.index-product-block{max-width:600px; flex-wrap:wrap;}
	.index-tech-box{width:50%;}
	.faq-block{max-width:800px;}
	.faq-box{width:50%;}
}

@media only screen and (min-width:981px){
	.hideUp .top-menu-bar{background-color:rgba(140, 140, 140, 0.9);}
	.hideUp .top-menu-block{height:70px;}
	.hideUp .logo{width:250px; margin-top:-23px;}
	.hideUp .language-box{display:none;}
	.top-menu-ul>li>a{padding:0px 0px 25px 0;}
	}

@media screen and (max-width: 980px){
	.top-menu-logo .logo-text{font-size:18px;}
	.top-menu-logo .logo-text-en{font-size:16px;}
	.nav-navbar>.nav-item>a{padding:0 10px 30px}
	.block-title{margin:30px auto 10px;}
	.block-title h3{font-size:28px;}
	.index-product-slide-box h4{font-size:18px;}
	.formBox .form input[type="text"]{ width:75%;}
	.formBox .form textarea{width:75%;}
	.titleIcon{width:35px;}
	.tableDown span{padding-left:0px;}
	.tableDown span ul{padding-left:0px;}
	#footline{right:80px;}
	.notice-waterpick{display:none;}
	.index-about-block{overflow:unset;}
	.index-about-picbox{float:none; width:90%; margin:0 auto; padding-top:0;}
	.index-about-textbox{float:none; width:90%; margin:15px auto 0; padding-top:0;}
	.map-box iframe{height:370px;}
	.info-box h2{display:none;}
	.info-pic-box.picboxR{float:none; width:60%; margin:0 auto;}
	.info-text-box{position:relative; margin:0 auto; top:10px;}
	.map-box{width:55%;}
	.contact-text-box{width:40%;}
	.product-menu{max-width:600px;}
	.product-menu li{width:135px; height:135px;}
	footer:before{top:62%; right:-10%; width:110%;}
	footer:after{top:-47%; left:-3%; width:100%;}
	.product-sidebar{width:90%; margin:0 auto;}
	.product-sidebar li{display:inline-block;}
	.sidebar-menu li a{padding-left:25px;}
	.sidebar-menu li a::before{left:12px;}
	.product-sidebar li i{left:17px;}
	.product-gallery-subblock{width:100%;}
	.tech-detail-inner{flex-wrap:wrap;}
	.tech-detail-cover-box{flex-basis:100%;}
	.tech-detail-cover{width:300px;}
	.tech-detail-content-box{margin-top:20px;}
	.contact-person-box ul li{width:33.333%;}
}
@media screen and (max-width:840px){
	.top-menu-logo img{max-width:300px;}
	.top-menu-logo .logo-text{font-size:24px;}
	.top-menu-logo .logo-text-en{font-size:20px;}
	.navTrigger{display:block;}
	.nav-navbar{display:none;}
	#navlist{display:none;}
	#contentBox{overflow:inherit;}
	#keyBg{background-color:#3d3d3d;}
	#navlist_mobile{display:block;}
	.key{width:516px; line-height:35px;}
	.footbox{width:500px;}
	#footlogo{float:none; text-align: center;}
	#footFloat{margin-bottom:15px; width:100%;}
	.key a{color:#bfbfbf;}
	.key a:hover{color:#ffffff;}
	.date{padding:0 0 0 10px;}
	.news{width:75%;}
	.hot {width:100%}
	.photoimg{width:100%;}
	.ptext{width:100%; float:none; margin-left:0;}
	footer{margin-top:0px;}
	#footlogo {padding-bottom:0px;}
	#footline{display:none;}
	#line_vertical{position:fixed; bottom:120px; right:0; z-index:99999;}
	.product_img a{margin-bottom:10px;}
	.tableCenter2 ul li{padding-left:10px;}
	.map-box{width:80%;}
	.contact-text-box{width:45%;}
	.edit-infobox{max-width:500px;}
	.product-sidebar{width:80%; margin:0 auto;}
	.news-detail-cover{width:80%; margin:0 auto 30px;}
	.news-detail-infobox{width:90%; margin:0 auto;}
	.back-box{width:90%;}
	.nav-pills li a{padding:10px 20px;}
	.product-list-menu{max-width:400px;}
	.tab-box-pic, .tab-box-info{width:100%;}
	.portfolio-item h3{font-size:18px;}
	.thumb-rollover-icon{width:100px;}
	.thumb-rollover-content h4{font-size:14px; padding:10px 20px;}
}
@media screen and (max-width:768px){
	.member li{padding:7px 3px;}
	.table1Box{display:block;}
	.formBox .form input[type="text"]{width:70%;}
	.formBox .form textarea{width:70%;}
	.table1{display:block; text-align: center;}
	.tableLeft{width:100%;}
	.tableCenter1{width:100%;}
	.tableCenter2{width:100%;}
	.tableRight{width:100%;}
	.tableTop{padding-left:0;}
	.tableDown span{padding-left:0;}
	.inquiryType{text-align:left; margin-bottom:5px;}
	#banner-L{display:none;}
	#banner-S{display:block;}
	.tableDown{height:auto; margin:15px 0;}
	.tableLeft .tableDown{margin:0px 0;}
	.tableCenter2 ul li{padding-left:15px;}
	.tableDown span ul{margin-left:45px;}
	.shopping-step li{display:block; padding:15px 0; margin:40px 0;}
	.shopping-step li:first-child{margin:10px 0 40px;}
	.shopping-step li:last-child{margin:40px 0 10px;}
	.shopping-step li+li:before{top:0; left:50%; margin:-35px 0 0 -15px; transform:rotate(90deg);}
	.list-box tr{display:block; border:0; padding-left:140px;}
	.list-box td{display:block; text-align:left;}
	.list-pic{position:absolute; left:0; width:120px;}
	.total-box{width:75%; margin:10px auto 0;}
	.total-box td:first-child{text-align:left;}
	.infor-block, .infor-block .infor, .infor-block .infor-box{display:block; width:auto; margin:20px 0 0; padding:0; border:0; background:none;}
	.infor-block .infor-box .infor-title{margin:0; padding:5px 8px;}
	.about-sprit-pic{max-width:600px;}
	.about-text-box{width:90%; padding:0;}
	.notice-item-top{width:100%; margin:0 auto 15px;}
	.notice-info-block-bottom{text-align:center;}
	.notice-info-block-bottom h2{padding-left:0;}
	.notice-info-block-bottom p{text-align:left;}
	.map-box{float:none; width:100%;}
	.spirit-box{float:none; width:100%; max-width:500px; margin:15px auto 0;}
	.index-block h2{width:20%;}
	.index-news-block{width:70%; grid-template-columns:repeat(1,1fr);}
	.foot-block{max-width:600px;}
	.foot-box-contact, .foot-box-sitemap{width:100%;}
	.linklist{text-align:center;}
	.linklist li{float:none; display:inline-block;}
	.map-box{width:100%; display:block; margin:0 auto;}
	.contact-text-box{width:70%; max-width:280px; display:block; margin:20px auto 0; padding:0;}
	.contact-form tr th{display:block; width:90%; margin:0 auto; padding-top:20px; line-height:50%;}
	.contact-form tr td{display:block; width:90%; margin:0 auto;}
	.download-block{grid-template-columns:repeat(2,1fr);}
	.product-box{width:50%;}
	.about-edit-box-pic{flex-basis:100%;}
	.anchor-menu{top:20%;}
	.anchor-menu ul{padding:10px 10px 10px 7px;}
	.anchor-menu li{line-height:30px;}
	.anchor-menu li a{writing-mode:vertical-lr; padding:15px 0;}
	.detail-edit-box{max-width:500px;}
	.process-box{width:50%;}
	.spirit-ttitle-bottom h3{font-size:22px; line-height:1.5em;}
	.pack-box{width:50%;}
	.detail-title, .detail-main-pic{width:100%;}
	.main-pic-inner{width:100%;}
	.about-edit-block{flex-wrap:wrap; margin:5px auto 50px;}
	.about-edit-box-pic{flex-basis:100%;}
	.contact-form-box .form-box-content{width:100%; margin-top:10px; padding:0 5px;}
	}

@media screen and (max-width:640px){
	#footFloat{font-size:0.9em;}
	.key{width:100%;}
	.footbox{width:80%;}
	.video{width:98%;}
	.popup-gallery{width:100%;}
	.hotBg a::before{left:38%; top:70%;}
	.formBox .form input[type="text"]{width:58%;}
	.formBox .form textarea{width:58%;}
	.download-pro h3{position:absolute; right:0; top:12px;}
	.download-pro h4{display:block; margin-left:0; margin-bottom:8px;}
	.download-pro {margin:25px auto 45px;  position:relative;}
	.ptext{float:left;}
	.popup-gallery{display:none}
	.jcarousel-wrapper{display:none}
	.mobile-show-block{display:block;}
	#content{margin:0 auto 30px;}
	.slider-block .scroll span{left:-13px;}
	.index-service-box{width:50%;}
	.info-pic-box.picboxR{width:85%;}
	.info-text-box{width:90%;}
	.servicelist li{display:inline-block; padding-left:15px;}
	.product-menu li{width:120px; height:120px;}
	.menu-bottom-box{width:50%;}
	.menu-bottom-box:nth-child(3){background-color:#468da3;}
	.menu-bottom-box:nth-child(4){background-color:#486371;}
	.menu-bottom-box:nth-child(5){background-color:#486371;}
	.menu-bottom-box:nth-child(6){background-color:#468da3;;}
	.about-edit-block{max-width:360px;}
	.about-edit-box-pic{width:100%;}
	.about-edit-box-info{width:100%; padding:20px;}
	footer:before{top:57%; right:0;}
	footer:after{top:-62%; left:5%; width:110%;}
	.product-sidebar{width:100%;}
	.product-box{width:100%; max-width:400px; margin:0 auto 50px;}
	.content-area{width:100%;}
	.map-box{width:90%;}
	.form-box{width:100%;}
	.page-newsbox-cover-picbox{height:auto;}
	.pack-edit-block{width:95%; padding:40px 20px 50px;}
	.pack-edit-box .tab-content{padding:50px 10px;}
	.nav-pills li a{font-size:16px;}
	.bread-block{width:90%;}
	.has-page-title-area{padding-top:0;}
	.product-list-menu{margin:0 auto;}
	.process-block{max-width:360px;}
	.process-box{width:100%; margin-bottom:70px;}
	.process-box:before{right:45%; top:unset; bottom:-15%;}
	.process-box:before{border-color:#ccc transparent transparent transparent;}
}

@media screen and (max-width:540px){
	.product-gallery-subblock{justify-content:center;}
	.tech-list-box{width:100%; max-width:380px;}
	.contact-person-box ul li{width:50%;}
	}

@media screen and (max-width:480px){
	.top-menu-logo{width:250px;}
	.top-menu-logo img{padding:10px 0;}
	.top-menu-logo .logo-text{font-size:20px;}
	.top-menu-logo .logo-text-en{font-size:16px;}
	#logo{margin-top:0.1em;}
	.slider-block .scroll span{left:-25px;}
	.more {display:none;}
	.news{width:90%;}
	.detailBtn1{float:initial; margin:20px 0 10px;}
	.detailBtn2{float:initial; margin:20px 0 10px;}
	.download-pro h1 {display: block;}
	.formBox .form label{position: initial;}
	.formBox .form input[type="text"]{padding-left: 10px; margin-left: 0px; width:100%;}
	.formBox .form textarea{padding-left: 10px; margin-left: 0px; width:100%;}
	.pro_text{display:block;}
	.page { margin: 25px auto 20px;}
	.shopping-title{padding-top:105px;}
	.shopping-pic{max-width:180px; padding-top:30px;}
	.about-text-box{width:90%;}
	.notice-info-block-top, .notice-info-block-bottom{width:90%;}
	.foot-info{width:100%;}
	.index-block h2{width:30%;}
	.index-service-box{width:70%;}
	.bigger{font-size:28px;}
	.index-tech-box{width:100%;}
	.index-product-box{box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.3);}
	.news-infobox{
		transform:translateY(0%);
	    -moz-transform:translateY(0%);
	    -webkit-transform:translateY(0%);
	    -o-transform:translateY(0%);
	    -ms-transform:translateY(0%);
	    }
	.product-box{width:100%;}
	.edit-infobox{width:85%; max-width:420px;}
	.anchor-menu ul{padding:10px 5px 10px 0;}
	.process-box{width:80%;}
	footer:before{top:59%; width:130%;}
	.process-box{margin:25px auto 20px;}
	.process-box:before{top:-10%; left:40%; border-color:#ccc transparent transparent transparent;}
	.page-newsbox-cover-picbox{width:100%;}
	.page-newsbox-infobox{width:100%;}
	.pack-button a{padding:15px 10px;}
	.news-list_title-box{padding-right:30%;}
	.detail-edit-content{padding:30px 20px;}
	.faq-block{max-width:450px;}
	.faq-box{width:100%;}
}
@media screen and (max-width:400px){
	.logo{width:200px; margin-top:-15px;}
	.ptext{float:left;}
	.download-pro{position:initial; padding-bottom:15px;}
	.download-pro h3{position:initial; right:auto; float:none;}
	.download-pro h4 {margin-bottom:18px;}
	.product_img a::after{width:80px; padding-top:80px;}
}
