@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: 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%; /*display:block;*/}

.flex-setting{display:flex; flex-wrap:wrap;}
.justify-content{justify-content:center;}
.align-items{align-items:center;}

/*start*/
#wrapper{
	min-height:100%;
	position:relative;
	background-image:url(./images/background-pattern.jpg);
	overflow:hidden;
	}

header{
	height:90px;
	width:100%;
	border-bottom:3px #ededed solid;
	background-color:#fff;
	position:fixed;
	z-index:1100;
	}

nav{width:100%; max-width:1400px; margin:0 auto;}

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

.navTrigger>i{
    background-color:#466a01;
    /*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*/

.top-menu-block{position:relative; align-items:center;}

ul.top-menu{position:relative;}

ul.top-menu>li{display:inline;}

ul.top-menu>li a{
	padding:0 10px 30px;
	color:#000000;
	font-size:16px;
	font-weight:600;
	text-decoration:none;
	line-height:82px;
	letter-spacing:.1em;
	position:relative;
	cursor: pointer;
	}

ul.top-menu>li a::after{
    content:"";
    position:absolute;
    height:3px;
    width:70%;
    transform:scale(0,1);
    background:#466a01;
    transition:all .2s ease-in-out;
    top:25px;
    border-radius:5px;
    left:17%;
}
ul.top-menu>li a:hover::after{transform:scale(1,1);}

ul.link-menu{
	padding-left:0;
	padding-right:15px;
	justify-content:flex-end;
	}

ul.link-menu>li a{
	padding:0 10px 30px;
	font-size:28px;
	line-height:82px;
	}

ul.link-menu i.fa-facebook-square:hover{color:#3b5998;}
ul.link-menu i.fa-line:hover{color:#00b900;}
ul.link-menu i.fa-instagram:hover{color:#e20c35;}
ul.link-menu i.fa-phone:hover{color:#00aff0;}

.search-block .search{
	display:flex;
    justify-content:flex-end;
    align-items:center;
	}

.search-btn{margin-right:10px;}

.search-block .input-block input{
	display:block;
    border:0; /*去除未選中狀態邊框*/
    outline:none; /*去除選中狀態邊框*/
    background-color:rgba(0, 0, 0, 0); /*透明背景*/
    border-bottom:1px solid #fff;
    width:0;
    transition:all 0.5s;
	}

.search-block .search.show .input-block input{
	width:120px;
	border-bottom:1px solid #000;
	}

/*輸入欄預設文字顏色_start*/
/*CSS 3 標準*/
::placeholder{color:#b3b3b4;}

/*Chrome, Safari*/
::-webkit-input-placeholder{color:#b3b3b4;}

/*IE 10+*/
:-ms-input-placeholder{color:#b3b3b4;}

/*Firefox 19+*/
::-moz-placeholder{color:#b3b3b4; opacity:1;}
/*輸入欄預設文字顏色_end*/

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

.mobile-search-box a{
	position:absolute;
	top:20px;
	right:60px;
	}

.mobile-input-block{
	width:100%;
    position:absolute;
    top:calc(100% + 1px);
    left:0;
    -webkit-transform:translateY(-110%);
    transform:translateY(-110%);
    transition:all 0.5s;
    z-index:-1;
	}

.mobile-search-show .mobile-input-block{
	-webkit-transform:translateY(0%);
    transform:translateY(0%);
	}

.mobile-input-block input{
	width:0;
	padding:15px 20px;
	border:0; /*去除未選中狀態邊框*/
    outline:none; /*去除選中狀態邊框*/
    background-color:rgba(0, 0, 0, 0); /*透明背景*/
    opacity:0;
	}

.mobile-search-show .mobile-input-block input{
	width:100%;
	background-color:#f8f4d3;
    opacity:1;
	}

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

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

.mobile-main-logo{display:none; text-align:left; padding-left:15px;}
.mobile-main-logo img{width:300px; margin:10px;}

#logo{width:300px; margin-left:20px;}
#logo a{display:block;}
#logo img{width:100%;}

a{
	color:#383838; 
	font-size:16px;
	text-decoration:none;
	}
p{
	font-size:17px;
	color:#000000;
	line-height:2em;
	}
p a{
	color:#466a01;
	line-height:1.5em;
	text-decoration:none;
	}
p a:hover{color:#466a01;}

#bannerS{display:none;}

#mobile{
	display:none;
	text-align:left;
	position:absolute;
	top:72px;
	right:0;
	width:280px;
	height:auto;
	z-index:100;
	background-color:#05683a;
	}

.mobile-logo{
	width:100%;
	max-width:170px;
	margin:0 auto;
	padding-top:50px;
	display:none;
	}

.mobile-logo img{width:100%;}

li{list-style:none;}

#mobile ul{padding-left:0;}

.navmenu-item{
    width:100%;
	position:relative;
	}

.navmenu-item a{
	display:block;
    font-size:18px;
    color:#fff;
    letter-spacing:2px;
	padding:15px 0 15px 15px;
	position:relative;
	}

.caret{margin-top:7px; margin-left:5px;}

#mobile ul li{
	border-bottom:1px solid rgba(255,255,255,0.5);
	}

#mobile ul li:first-child{
	border-top:1px solid rgba(255,255,255,0.5);
	}

#mobile ul li:hover{background-color:rgba(255,255,255,0.1);}

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

.navmenu-item.has-drop>a::after{
	content:"+";
	font-size:20px;
	position:absolute;
    top:30%;
    left:auto;
    right:24px;
    z-index:10;
	}

.navmenu-item.has-drop:hover>a::after{color:#fff;}
.navmenu-item.has-drop:hover>a.is-open::after{
	content:"-";
	font-size:28px;
	top:18%;
	}

/*次選單drop-menu_start*/
li.has-dropmenu{position:relative;}

.has-dropmenu ul.drop-menu{
	opacity:0;
    visibility:hidden;
    -webkit-transform-origin:0% 0%;
    -moz-transform-origin:0% 0%;
    -ms-transform-origin:0% 0%;
    -o-transform-origin:0% 0%;
    transform-origin:0% 0%;
    -webkit-transition:-webkit-transform .3s,opacity .3s;
    -moz-transition:-moz-transform .3s,opacity .3s;
    -ms-transition:-ms-transform .3s,opacity .3s;
    -o-transition:-o-transform .3s,opacity .3s;
    -webkit-transform-style:preserve-3d;
    -moz-transform-style:preserve-3d;
    -o-transform-style:preserve-3d;
    transform-style:preserve-3d;
    -webkit-transform:rotateX(-75deg);
    -moz-transform:rotateX(-75deg);
    -o-transform:rotateX(-75deg);
    transform:rotateX(-75deg);
	}

.has-dropmenu ul.drop-menu{
	position:absolute;
    top:40px;
    left:0;
    z-index:100;
    width:155px;
    margin:0;
    padding:10px 0;
    font-size:0.9rem;
    background:#fff;
    border:0 solid #e9ecef;
    box-shadow:0 0.25rem 0.75rem rgb(0 0 0 / 25%);
	}

li.has-dropmenu:hover ul.drop-menu{
	opacity:1;
    visibility:visible;
    -webkit-transform:rotateX(0deg);
    -moz-transform:rotateX(0deg);
    -o-transform:rotateX(0deg);
    transform:rotateX(0deg);
	}

ul.drop-menu>li a{
	display:block;
	line-height:35px;
	padding:5px 15px;
	white-space:nowrap;
	}

ul.drop-menu>li:hover a{background-color:rgba(209, 224, 196, 0.3);}

ul.drop-menu>li a::after, ul.mega-menu>li a::after{content:none;}
/*次選單drop-menu_end*/

/*次選單mega-menu_start*/
.mega-menu{
	width:400px;
	padding:30px 0 30px 120px;
    position:absolute;
    left:-999999px;
    top:75px;
    right:auto;
    z-index:100;
    -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;
    }

li.has-megamenu:hover .mega-menu{
    opacity:1;
    position:fixed;
	}

li.has-megamenu:hover .mega-menu#mege-manu1{left:52%;}
li.has-megamenu:hover .mega-menu#mege-manu2{left:56%;}
li.has-megamenu:hover .mega-menu#mege-manu3{left:60%;}
li.has-megamenu:hover .mega-menu#mege-manu4{left:64%;}

.mega-menu li{
	display:inline-block;
	width:48%;
	text-align:center;
	}

.mega-menu li a{
	display:block;
	padding:0;
	margin:7px 10px 10px 5px;
	line-height:40px;
	border:1px solid #2d698a;
	border-radius:5px;
	transition:all 0.5s ease;
    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    -ms-transition:all 0.5s ease;
	}

.mega-menu li:hover a{background-color:rgba(94, 175, 202, 0.7);}

.menu-icon{
	position:absolute;
	top:25px;
	left:15px;
	width:100px;
	}

.menu-icon img{width:100%;}

.menu-icon p{font-size:15px; color:#2d698a;}
/*次選單mega-menu_end*/

/*手機次選單_start*/
#mobile ul.mobile-dropmenu{
	padding-left:0;
	margin:0;
	}

#mobile ul.mobile-dropmenu li{
	width:100%;
	background-color:#e9bd93;
	}

#mobile ul.mobile-dropmenu li:hover{background-color:#d1e0c4;}

#mobile ul.mobile-dropmenu li a{color:#5d2627;}
/*手機次選單_end*/

.aa_item{
	position:absolute;
	right:0; 
	cursor:pointer;
	z-index:500;
	}

#bannerBg{background:url(images/midBg.png) repeat;}

#banner{max-width:1420px; margin:0 auto;}

#banner_s{display:none;}

.group4{width:98%;}

.video{width:560px; height:315px;}

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

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

#navlist{
	background-color:#7d7d7d;
	line-height:3.5em;
	min-height:2em;
	position:inherit;
    width:100%; padding:0;
    background-image:linear-gradient(180deg,#efefef,#e4e4e4 25%);
    border-top:1px #ccc solid;
	}

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

#navlist a:hover{color:#a0a0a0;}

#navlist_mobile{
	display:none;
	background-color:#727271;
	}
#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:#fff;}

#contentBox{
	position:relative;
	overflow:inherit;
	animation:fadeIn 0.5s ease-in-out 1;
	}
@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;}

#navlist ul li>ul{display:none;}/*隱藏次選單*/

#navlist ul li>ul:hover{display: block;}/*滑鼠滑入展開次選單*/

.privacy-box{
	width:100%;
	max-width:250px;
	margin:0 auto;
	text-align:center;
	}

.privacy-box ul{padding-left:0;}
.privacy-box li{display:inline-block; padding:0 10px;}

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

.ccin a{color:#05683a; font-size:12px;}

.ccin li{font-size:12px;}

.ccin img{vertical-align:middle; padding:0 5px;}

footer{
	width:100%;
	float:left;
	color:#333;
	line-height:1.4em;
	padding:0 0 30px;
	position:relative;
	background-color:#d1e0c4;
	}

#keyBg{
	background-color:#7d7d7d;
	height:100%;
	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{
    display:none;
    position:absolute;
    right:24px;
    top:10px;
	font-size:12px;
    color:#c1c1c1;
	}

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

footer a{
	color:#333;
	transition:all .4s ease;
	line-height:1em;
    font-size:1em;
	}

footer a:hover {color:#466a01;}

#udchome .quick-link-block {
    display: none;
}

.quick-link-block{margin:0 auto; position:relative;}

.quick-link-box{
	position:relative;
	z-index:5;
	width:90%;
	max-width:800px;
	padding:10px 0 20px;
	margin:0 auto 20px;
	text-align:center;
	justify-content:space-between;
	}

.quick-link-box p{
	font-size:24px;
	font-weight:700;
	color:#d1e0c4;
	}

.quick-link-L p{color:#05683a;}

.quick-link-box a{
	width:100%;
    max-width:200px;
    font-size:18px;
    font-weight:600;
    color:#05683a;
    background:#efefef;
    display:inline-block;
    line-height:40px;
    margin-top:5px;
    -webkit-border-radius:20px;
    -moz-border-radius:20px;
    border-radius:20px;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
	}

.quick-link-box a:hover{background:#9ebe82; color:#fff;}

.link-iconblock{width:100%; max-width:1300px; margin:0 auto;}

.link-iconbox{
	padding-bottom:20px;
	margin-bottom:30px;
	text-align:center;
	border-bottom:1px dashed rgba(255,255,255,0.5);
	}

.link-iconbox ul{padding-left:0;}

.link-iconbox ul li{
	display:inline-block;
	margin:0 15px;
	width:50px;
	height:50px;
	border:2px solid #fff;
	border-radius:999em;
	}

.link-iconbox ul li a{
	display:block;
	padding:11px;
	font-size:22px;
	color:#fff;
	}

.link-iconbox ul li:hover{
	background-color:#75e6da;
	border:2px solid #75e6da;
	}

.link-iconbox ul li:hover i{color:#011d31;}

.foot-block{width:100%; max-width:1200px; margin:20px auto;}

.foot-infoblock{width:25%; padding:10px 25px 20px;}

.foot-serviceblock{width:50%; padding:10px 25px 20px;}

#footlogo{position:relative; margin-bottom:15px;}
#footlogo a{display:block;}
#footlogo img{width:100%; max-width:300px;}

.foot-infobox{position:relative;}
.foot-infobox h4, .foot-serviceblock h4{
	font-size:20px;
	color:#381f1c;
	font-weight:600;
	padding-bottom:10px;
	}

.foot-infotxt {
	padding-bottom: 15px;
}

.foot-infobox h3 {
	font-size: 18px;
	font-weight: 600;
}

.foot-infobox ul{padding-left:0;}

.foot-infobox p, .foot-infobox li{
	text-align:left;
	font-size:16px;
	color:#333;
	line-height:2em;
	}

.foot-infobox li i{padding-right:8px;}

.foot-serviceblock{position:relative;}

.foot-serviceblock ul{padding-left:0;}

.foot-serviceblock li{width:33.333%; line-height:2.5em;}

.foot-serviceblock li i{padding-right:5px;}

.foot-serviceblock li a{text-align:left; font-size:16px;}

.foot-servicebox{width:22%; padding:0 1%; text-align:center;}
.foot-servicebox a{display:block;}
.foot-servicebox img{width:110px; margin:0 auto;}
.foot-servicebox p{
	width:90%;
	margin:0 auto;
	padding-top:5px;
	color:#fff;
	font-size:14px;
	line-height:1.2em;
	}

/*側邊按鈕選單_start*/
.sidebar-button-box{
	position:fixed;
	top:40%;
	right:0;
	z-index:20;
	}

#sidebar-button{
	height:55px;
    width:40px;
    background-color:#000000;
    opacity:0.3;
    border-top-left-radius:10px;
    border-bottom-left-radius:10px;
    margin-top:-20px;
    position:absolute;
    right:0;
    text-align:center;
    cursor:pointer;
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    transition:0.5s;
	}

#sidebar-button-text span{
    -webkit-transition:0.5s;
    -o-transition:0.5s;
    -ms-transition:0.5s;
    -moz-transition:0.5s;
    transition:0.5s;
    font-size:40px;
    color:#ffffff;
    padding-left:17px;
    padding-top:3px;
	}

#sidebar-button-text span::before{font-size:30px; margin-top:10px;}

#sidebar-block{
	display:-webkit-flex;
    display:flex;
    -webkit-flex-flow:column;
    flex-flow:column;
    -webkit-align-items:flex-end;
    align-items:flex-end;
    position:relative;
	}

.sidebar-box{
	display:-webkit-flex;
    display:flex;
    -webkit-justify-content:center;
    justify-content:center;
    -webkit-align-items:center;
    align-items:center;
    width:48px;
    height:48px;
    transition:width 0.15s ease-in-out;
    position:absolute;
    right:0;
	}

.item-call{top:0}
.item-line{top:48px;}
.item-ig{top:96px;}
.item-fb{top:144px;}

.sidebar-box .sidebar-pic{
	width:32px;
	height:32px;
	vertical-align: middle;
	}

.sidebar-box:hover{width:64px;}

/*側邊按鈕選單_end*/

.overlay{
	position:fixed;
	z-index:90;
	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;}

/*首頁上方門診*/
.clinic-block{
	width:100%;
	max-width:1420px;
	margin:0 auto 10px;
	padding-top:100px;
	display:flex;
	}

.clinic-item{
    width:33.333%;
	height:200px;
	display:flex;
	justify-content:center;
    align-items:center;
    position:relative;
	}

.clinic-TP{background-position:top left;}
.clinic-TC{background-position:bottom right;}
.clinic-shop{background-position:bottom right;}

.clinic-content{text-align:center;}

.clinic-content h3{
    font-size:30px;
    font-weight:700;
    color:#05683a;
    }

.clinic-content p{font-weight:bold;}
.clinic-content i{margin-right:5px;}

.clinic-quick-link{
	display:flex;
	justify-content:center;
    align-items:center;
    margin-top:10px;
	}

.clinic-content a{
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin:0 5px;
    padding:10px 20px;
	border:1px solid #466a01;
    border-radius:999em;
    background-color:#466a01;
	}

.clinic-content a:hover{
    color:#000;
    border:1px solid #d1e0c4;
    background-color:#d1e0c4;
	}

/*首頁區塊_start*/
.index-project-block{width:100%; padding:40px 0 20px;}

.color-setting1{background-color:#5eafca;}

.index-project-box{
	width:100%;
	max-width:1480px;
	margin:0 auto;
	}

.index-project-title{
    position:relative;
    text-align:center;
    padding:0 0 20px;
	}

.index-project-title h3{
    font-size:36px;
    font-weight:500;
    letter-spacing:2px;
	}

.index-project-title::after{
    content:"";
    width:120px;
    height:1px;
    background-color:#fff;
    display:inline-block;
    margin-top:20px;
	}

.index-project-title.title-color-line::after{background-color:#05683a;}

/*首頁區塊_end*/

/*首頁產品類別區_start*/
.index-product-typebox{width:25%; text-align:center;}

.index-product-typebox>.box-inner{
	margin:30px;
	padding:0;
	background-color:#fff;
	}

.index-product-typebox img{width:100%;}

.index-product-typebox h4{
	font-size:24px;
    line-height:34px;
    padding-top:20px;
    }

.typebox-btn{width:120px; margin:20px auto 0;}

.typebox-btn>a{
	display:block;
	color:#fff;
	padding:12px 10px;
	border-radius:5px;
	text-align:center;
	background-color:#466a01;
	transition:all 0.5s ease;
    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    -ms-transition:all 0.5s ease;
    }

.typebox-btn:hover>a{color:#000; background-color:#d1e0c4;}

/*首頁產品類別區_end*/

/*首頁最新消息_start*/
.index-news-content{
	width:90%;
	max-width:800px;
	margin:0 auto;
	}

.index-news-list li{
	margin:10px auto;
	padding:15px 0;
	border-bottom:1px solid #ededed;
	position:relative;
	}

.index-news-list li a{
	display:flex;
	align-items:center;
	}

.index-news-list .index-news-date{flex-basis:120px;}

.index-news-list .index-news-title{
	flex:1;
	font-size:18px;
	font-weight:600;
	line-height:1.3em;
	padding:0 130px 0 10px;
	}

.index-news-list .index-news-btn{
	padding:7px 20px;
	border:1px solid rgba(70,106,1,0.35);
	border-radius:999em;
	position:absolute;
	right:0;
	bottom:13px;
	}

/*首頁最新消息_end*/

/*首頁產品輪播區_start*/
.index-project-content{position:relative; overflow:hidden; padding-bottom:30px;}

.product-slide-box, .news-slide-box{
	margin:10px;
	padding:15px;
	background-color:#fff;
	}

.product-slide-box.color-grey{background-color:#ededed;}

.news-slide-box .news-picbox{
	max-height:unset!important;
	overflow:hidden!important;
	/*border:1px solid rgba(95,96,93,0.3);*/
	}

.product-slide-block .product-slide-box h4{
	padding:15px 5px 10px;
	font-size:18px;
	font-weight:600;
	color:#6c757d;
	text-align:center;
	}

.product-slide-block .news-slide-box h4{
	display:-webkit-box;
	height:3em;
	padding:15px 5px 0;
	font-size:18px;
	font-weight:600;
	color:#6c757d;
	line-height:1.5em;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
	overflow:hidden;
    text-overflow:ellipsis;
	}

.product-slide-box .btn-box, .news-slide-box .btn-box{
	width:100%;
	overflow:auto;
	margin:10px auto;
	}

.more-btn{
	float:right;
	padding:12px 10px;
	border-radius:5px;
	text-align:center;
	background-color:#466a01;
	transition:all 0.5s ease;
    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    -ms-transition:all 0.5s ease;
	}

.more-btn a{color:#fff;}

.more-btn:hover{background-color:#d1e0c4;}
.more-btn:hover a{color:#000;}

.product-slide-block .swiper-button-next,
.product-slide-block .swiper-button-prev{
	top:45%;
	padding:10px 15px;
	background-color:rgba(128,128,128,0.4);
	}

.list-btn{
	width:120px;
	margin:30px auto 0;
	text-align:center;
	border:1px solid #05445e;
	background-color:#edf9fd;
	border-radius:5px;
	transition:all 0.5s ease;
    -webkit-transition:all 0.5s ease;
    -moz-transition:all 0.5s ease;
    -o-transition:all 0.5s ease;
    -ms-transition:all 0.5s ease;
	}

.list-btn a{
	padding:10px;
	color:#05445e;
	display:block;
	font-weight:600;
	}

.list-btn:hover{background-color:#2d698a;}
.list-btn:hover a{color:#fff;}

/*首頁產品輪播區_end*/

/*首頁門診時間表*/
.schedule-img {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 40px;
}

/*關於我們-分頁*/
.page-tab .tab{
    padding:10px 0 40px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
	}

.page-tab .tablinks {
    font-size: 16px;
    text-align: center;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    padding: 10px 30px;
    margin-right: 20px;
    cursor: pointer;
}

.page-tab .tablinks:last-child{margin-right:0;}

.page-tab .tablinks:hover {
    background-color: #9ebe82;
    color: #fff;
}
.page-tab .tablinks.active {
    background-color: #05683a;
    color: #fff;
}
.content-frame {
    padding-bottom: 10px;
}
.content-frame iframe {
    width: 100%;
    height: 450px;
    max-width: 800px !important;
}
.content-frame-img {
    width: 50%;
    float: left;
}
button:focus {
    outline: none !important;
}

/*首頁關於我們_start*/
.index-about-block{max-width:1000px;}

.index-about-picbox{width:35%;}
.index-about-infobox{width:65%;}

.index-about-picbox>.box-inner, .index-about-infobox>.box-inner{padding:15px;}

.spirit-picbox{
	width:300px;
	height:300px;
	margin:0 auto;
	border-radius:999em;
	}

.spirit-picbox img{
	max-width:300px;
	height:100%;
	border-radius:999em;
	}

.index-about-infobox p.spirit-narrate{
	font-size:22px;
	font-weight:500;
	color:#6c757d;
	padding-top:5%;
	}

.index-about-infobox p.spirit-narrate span{
	font-size:32px;
	font-weight:600;
	}

.index-about-btn{
    float:right;
    display:inline-block;
    padding:6px 12px;
    margin-top:10px;
    margin-right:15px;
    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;
}

.index-about-btn{
    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_color1 .arrow, .btn_cis .arrow{
	display:inline-block;
	position:absolute;
	top:50%;
	right:19px;
	transform:translate(0, -50%);
	}

.btn_color1 .arrow:before, .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_color1 .arrow:after, .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_color1 .arrow:hover:before, .btn_cis .arrow:hover:before{background:#ffffff;}

.btn_color1, .btn_cis{
	color:#c16c5c;
	font-size:15px;
	font-weight:500;
	width:180px;
	padding:14.5px 10px;
	display:inline-block;
	margin:0 auto 30px;
	text-align:center;
	border:1px solid #c16c5c;
	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_color1 .insider,
.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_color1:hover, .btn_cis:hover{
	color:#fff;
	background-color:#c16c5c;
	}

.btn_color1:hover .insider, .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_color1:hover .arrow:before, .btn_cis:hover .arrow:before{
	background-color:#ffffff;
	}

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

.btn_cis_mb {
	color:#ffffff;
	font-size:13px;
	font-weight:500;
	padding:5px 10px;
	border:1px solid #ffffff;
	background-color:transparent;
	}

.btn_cis_mb:hover{border-color:#eb2935;}

a.btn_color1 {
  /*按鈕主色1*/
  color: #eb2935;
  border: 1px solid #eb2935;
  background-color: #fff;
}

a.btn_color1:hover {
  color: #fff;
  background-color: #eb2935;
}

a.btn_color2 {
  /*按鈕主色2*/
  color: #fff;
  background-color: #A0A0A0;
}

a.btn_color2:hover{background-color:#999;}

.btn .btn_cis{color:#000; border:1px solid #000;}
.btn .btn_cis:hover{color:#fff; border:1px solid #d45124;}

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

/*首頁關於我們_end*/

/*分頁標題_start*/
.page-title-picbox-bg{
	width:100%;
    background-repeat:no-repeat;
    background-position:center;
    background-size:cover;
    height:300px;
    margin-top:90px;
    position:relative;
    background-image:url(images/page-title-background.jpg);
    justify-content:center;
    align-items:center;
	}

.page-title-picbox{
	width:100%;
	min-height:100px;
	background-color:#fff;
	padding-top:90px;
	position:relative;
	}

.page-title-picbox img{width:100%;}

.page-title-text{width:90%; max-width:1300px;}

.page-maintitle{font-size:26px; padding:20px 0;}

.page-subtitle{font-size:54px; padding:20px 0; display:none;}

.headline{
	position:relative;
    z-index:1;
    margin:0 auto;
    padding:90px 0 0;
    line-height:1;
    color:inherit;
    background:#fff;
    border-top:1px solid #fff;
    border-bottom:0 solid #e9ecef;
    box-shadow:0 2px 12px 2px rgb(0 0 0 / 8%);
	}

.spirit-title{
	text-indent:100%;
    white-space:nowrap;
    overflow:hidden;
	}

.page-title{
	position:relative;
	text-align:center;
	padding:0 0 30px;
	}

.page-title h3{
	font-size:36px;
	font-weight:500;
	letter-spacing:2px;
	margin-top: 20px;
	}

.page-title::after{
	content:"";
    width:120px;
    height:1px;
    background-color:#05683a;
    display:inline-block;
    margin-top:20px;
	}

.edit-content-area{
	width:100%;
	max-width:1200px;
	margin:0 auto;
	position:relative;
	}

.breadcrumb-block{
	width:90%;
	height:60px;
	margin:0 auto;
	justify-content:flex-end;
	align-items:center;
	}

.breadcrumb-box ul{padding-left:0;}

.breadcrumb-box li{padding-right:5px;}
.breadcrumb-box li:last-child{padding-right:unset;}

.breadcrumb-box li, .breadcrumb-box li a{font-size:16px;}

.breadcrumb-box li a::after{
    content:">";
    padding-right:4px;
    padding-left:7px;
    color:#dcdcdc;
}

.breadcrumb span{line-height:1.2em;}

.breadcrumb span, .breadcrumb span a{font-size:14px; padding:15px 0 10px;}
.breadcrumb i{margin-right:5px;}

.breadcrumb li::after{content:"/"; margin-right:8px; margin-left:8px;}

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

.without-title-pic{padding-top:100px;}

.bread{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
	height:40px;
	justify-content:flex-end;
	}

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

.bread a::after{
    content:"/";
    padding-right:7px;
    padding-left:7px;
    color:#cf8e71;
	}

.bread a:hover{color:#9ebe82;}

.bread i{margin-right:3px;}

/*分頁標題_end*/

/*編輯區設定_start*/
.edit-content-block{margin:20px auto 50px;}
.edit-content-block iframe {
    width: 100%;
    max-width: 600px;
    height: 450px;
	margin: 0 auto;
}
.edit-content-block h4{
	font-size:28px;
	line-height:1.8em;
	color:#495057;
	}

.showpic-box{
	width:100%;
	max-width:500px;
	margin:0 auto 30px;
	}

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

.edit-content-block h5{
	font-size:22px;
	font-weight:600;
	color:#466a01;
	line-height:1.5em;
	padding-bottom:10px;
	}

.edit-content-block p{
	text-align:left;
	font-weight:500;
	}

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

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

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

.edit-content-block img{max-width:100% !important; height:auto !important; margin: 0 auto;}

.page-edit-main-area{width:95%; margin:0 auto;margin-top: 3%;}

.page-edit-main-block{margin:0 auto 60px;}

.page-edit-title{margin-bottom:20px; text-align:center;}
.page-edit-title h4{
	font-size:36px;
	color:#05683a;
	}

.page-edit-title h5{
	font-size:20px;
	font-weight:600;
	color:#868686;
	padding-left:3px;
	}

.inner-nav{margin:40px auto 30px; text-align:center;}

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

.inner-nav li{
	display:inline-block;
	position:relative;
	margin-left:-5px;
	border:1px solid #dcdcdc;
	border-width:2px 1px;
	}

.inner-nav li a{
	display:block;
	font-size:14px;
	padding:15px 25px;
	background-color:#fff;
	}

.inner-nav li:hover a{
	color:#5d2627;
	background-color:rgba(209,224,196,0.8);
	}

.inner-nav li.selected a, .inner-nav li.active a{
	background-color:#05683a;
	color:#fff;
	}

/*編輯區設定_end*/

/*about*/
.container-TP{max-width:1280px;}

.about-content-area{min-height:500px;}

.about-content-block{width:100%;max-width:950px; margin:0 auto 100px;}

.container-TP .edit-content-area{max-width:unset;}
.container-TP .about-content-block{max-width:unset;}

.about-spirit-textbox{width:60%; padding:10px;}
.about-spirit-picbox{width:35%; padding:10px;}
.about-spirit-picbox img{width:100%;}

ul.team-link{text-align:center;}

ul.team-link li{
	display:inline-block;
	padding-left:0;
	margin:0 50px;
	}

ul.team-link li::before{content:none;}

ul.team-link li a{font-size:24px; font-weight:500;}

.team-box{width:30%; text-align:center;}
.team-box>.team-box-inner{margin:15px; background-color:#f9f9f9;}
.team-box a{display:block;}

.team-box img{padding-top:30px; padding-bottom:15px;}

.team-box h4{font-size:24px; padding-bottom:30px;}

.team-box:hover h4{color:#21b6a8;}

.time-box{width:100%; max-width:1000px; margin:50px auto 30px;}
.time-box img{width:100%;}

.team-detail-picbox{width:45%;}
.team-detail-textbox{width:50%;}

.team-detail-picbox img{width:100%;}

.team-detail-textbox>.box-inner{padding:0 30px;}

.team-detail-textbox h5{margin-top:10px;}

.certificate img{
	width:45%;
	margin-top:30px;
	vertical-align:top;
	}

.contact-content-box>.box-inner{margin:15px;}

.map-box{margin:0 auto 30px;}

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

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

.environ-box{width:33.333%; text-align:center;}
.environ-box>.box-inner{
	margin:15px;
	padding:10px;
	border:1px solid #e0e0e0;
	background-color:#fff;
	}

.environ-box a{display:block;}

.environ-box h4::before{
	content:"＋";
    display:inline-block;
    color:#466a01;
    font-size:20px;
    font-weight:bold;
    vertical-align:top;
	}

.environ-box h4{font-size:22px; font-weight:600;}

.environ-box img{position:relative;}

.environ-box:hover img::before{
	content:"";
    display:block;
    background:url(../images/hover.png) 50% 50% no-repeat rgba(0,0,0,0.30);
    position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    }

.environ-box a.colorbox{display:none;}

/*news*/
.news-content-block-inner{
	height:100%; 
	line-height:33px;
	border-color:#eaebed;
	border-bottom-width:1px;
	border-style:dashed;
	margin-bottom:20px;
	}

.news-content-block{
	width:100%;
	max-width:800px;
	margin:0 auto;
 	}

.back{color:#2d698a; float:right; margin:50px 0;}

.news-box{
	width:30%;
	padding:15px;
	margin:0 0.5% 20px 0;
	background-color:#f7f7f7;
	box-shadow:0px 0px 10px 0px rgba(0, 0, 0, 0.1);
	transition:box-shadow 0.3s;
	position:relative;
	}
.news-box:hover{
	box-shadow:0px 0px 30px 0px rgba(0, 0, 0, 0.2);
	transition:box-shadow 0.3s;
	}

.news-picbox{width:100%; max-height:250px; overflow:hidden;}
.news-picbox img{width:100%;}

.news-textbox{width:100%; margin-top:10px;}
h4.news-title{
	font-size:22px;
	font-weight:500;
	line-height:1.5em;
	padding:0 5px;
	}


.news-text{
	display:-webkit-box;
    height:4.5em;
    padding:10px 5px;
    font-size:16px;
    font-weight:500;
    color:#6c757d;
    line-height:1.7em;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    text-overflow:ellipsis;
	}

.news-textbox .btn-box{
	width:100%;
    overflow:auto;
    margin:10px auto;
	}

.news-date{
	float:left;
	padding-left:10px;
	color:#808080;
	font-style:italic;
	}

.news-textbox .more-btn{line-height:20px;}

/*product*/
.product-content-area{max-width:1480px;}

.product-content-block{min-height:500px;}

.product-type-box{width:25%;}
.type-box-inner{margin:10px; background-color:#f9f9f9;}

.type-box-inner a{display:block;}

.type-cover{width:90%; margin:0 auto; padding:5% 0 0;}
.type-cover img{width:100%;}

.type-info{text-align:center; margin-:30}

.type-info h4{
	font-size:24px;
    transition:all 0.5s;
    line-height:30px;
    padding:15px 0;
	}

.product-box{width:25%; text-align:center;}

.product-box>.box-inner{
	margin:10px 10px 30px;
	background-color:#fff;
	border:1px solid rgba(128,128,128,0.35);
	}

.product-box>.box-inner a{position:relative; display:block;}

.product-box .product-cover{padding:10px;}
.product-cover img{width:100%;}

.product-box a h4{
	font-size:24px;
	font-weight:500;
	padding-bottom:20px;
	line-height:1.5em;
	}

.product-block-detail{width:75%; margin-bottom:10px; padding:0 15px;}
.product-menu{width:20%; position:relative;}

.exhibit-box{width:100%; max-width:650px;}

.product-menu>.box-inner{
	margin:10px;
	padding-top:40px;
	background-color:#f6f6f6;
	border-radius:10px;
	}

.product-menu h4{
	background:#fff;
    font-size:22px;
    line-height:53px;
    position:relative;
    display:inline-block;
    margin-bottom:0;
    border-top-right-radius:30px;
    border-bottom-right-radius:30px;
    padding-left:50px;
    padding-right:60px;
    transition:all 0.3s ease-in-out;
	}

.product-menu h4:hover{color:#21b6a8;}

.product-menu h4::after{
    content:">";
    position:absolute;
    left:30px;
    top:50%;
    transform:translateY(-50%);
    font-size:22px;
    line-height:1;
    color:#21b6a8;
	}

.product-menu ul{
	padding:15px 30px 50px;
	margin-bottom:0;
	font-weight:bold;
	}

.product-menu ul>li{
	font-weight:500;
	border-bottom:0.5px dashed #21b6a8;
	}

.product-menu ul>li::before{content:unset;}

.product-menu ul li{line-height:25px; padding:12px 0 10px 10px;}

.product-menu ul li>ul{display:none!important;}

.product-submenu{padding-left:15px;}

.product-submenu>a{color:#808080;}

.product-menu ul a:hover, .product-menu li a:hover{
	color:#727271;
	}

.product_img{
	margin:0 auto;
	width:100%;
    height:auto;
    overflow:hidden;
	background-color:#727271;
    position:relative;
	}

.product_img a{
  	box-sizing:border-box;
	transition:all .4s ease;
    text-align:center;
    transition:all .3s ease-in-out;
}
.product_img a::after{
    content: "More+";
    color: #ef6817;
    background: url(images/watermark.png) no-repeat top center;
    background-size: 100%;
    height:80px;
    width:70px;
    top:30%;
    left:35%;
    font-size:0.8em;
    text-align:center;
    padding-top:70px;
    display:block;
    position:absolute;
    opacity:0;
    transition:all .3s ease-in-out;
    margin-top:70px;
}
.product_img img{
	height: 100%;
	transition:all .3s ease-in-out;
	width: 100%;
	display:block;
}
.product_box:hover .product_img img{
    opacity: .2;
}
.product_box:hover .product_img a::after{
	opacity:1;
	margin-top:0px;
}
.product_box:hover .ptext h1{
	color:#727271;
}
.p_page{
	text-align:center;
	margin:10px auto;
	width: 200px;
}
.p_page a{
	color:#595757;
	font-size:18px;
	text-decoration:none;
}
.pro_text{
	color:#5f605d;
	font-size:21px;
	font-weight:bold;
	    display: inline-block;
}
.pro_text2{
	color:#374e6d;
	font-size:16px;
	display:inline-block;
}

.pro_p{font-size:16px;}

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

.mobile-product-menu-block{
	width:100%;
	max-width:1480px;
	display:none;
	margin:20px auto 0;
	}

.mobile-product-menu{
	width:100%;
	padding:0;
	margin:0 auto;
	display:inline-block;
	}

.mobile-product-menu li{
	display:inline-block;
	text-align:center;
	margin:0 -3px -2px -3px;
	width:12.5%;
	border:2px solid #e0e0e0;
	border-width:2px 1px;
	background-color:#f6f6f6;
	/*border-radius:5px;*/
	}

.mobile-product-menu li.selected{background-color:#21b6a8;}
.mobile-product-menu li.selected a{color:#fff;}

.mobile-product-menu li a{
	display:block;
	padding:10px 25px;
	}

.mobile-product-menu li:hover{background-color:#21b6a8;}
.mobile-product-menu li:hover a{color:#fff;}

.product-type-item-box{width:25%;}

.type-item-box-inner{
	background-color:#f9f9f9;
    margin:10px 10px 30px;
    padding-bottom:25px;
    transition:all 0.3s ease-out;
    -webkit-box-shadow:0 2px 8px rgb(0 0 0 / 0%);
    box-shadow:0 2px 8px rgb(0 0 0 / 0%);
    }

.type-item-box-inner:hover{
	-webkit-box-shadow:0 2px 8px rgb(0 0 0 / 30%);
    box-shadow:0 2px 8px rgb(0 0 0 / 30%);
	}

.type-cover{width:90%; margin:5% auto 15px;}
.type-cover img{width:100%;}

.product-type-item-box h4{
	font-size:24px;
    transition:all 0.5s;
    line-height:30px;
    padding:0 25px
    }

.product-type-menu-box{width:25%;}
.product-detail-content-box{width:75%;}

.type-menu-box-inner{margin:15px;}
.detail-content-box-inner{margin:30px;}

.type-menu-box-inner{
	background:#f6f6f6;
    border-radius:10px;
    padding:30px 60px 50px;
	}

.product-type-menu{padding-left:0;}

.product-type-menu li{
	padding:20px 0 15px;
	border-bottom:0.5px dashed #466a01;
	}

.product-type-menu li a{
	font-size:18px;
	font-weight:600;
	color:#686868;
	}

.compare-box{margin:0 auto 20px; max-width:600px;max-height:400px;}
.compare-box img{width:100%; height:auto;}

.case-btn-block{
	width:100%;
	max-width:600px;
	margin:50px auto;
	text-align:center;
	}

.case-btn{
	color:#05683a;
	letter-spacing:1px;
	padding:12px 30px;
	border:1px solid #05683a;
	border-radius:20px;
	-moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
	}

.case-btn:hover{
	color:#fff;
	font-weight:600;
	background-color:#05683a
	}

.narrative-box{
	width:90%;
	max-width:600px;
	margin:15px auto 50px;
	}

.narrative-box h3{
	font-size:22px;
	font-weight:600;
	padding-bottom:7px;
	margin-bottom:7px;
	border-bottom:1px solid #cf8e71;
	}

.detail-content-box-edit p{font-size:18px; line-height:1.8;}

.detail-content-box-edit a{font-size:20pt; line-height:1.8; color:#c16c5c;}

.detail-content-box-edit li{
	font-size:20px;
    list-style-type:disc;
    margin:10px auto;
	}

.detail-content-box-edit span:hover{color:#000;}

.notice-block{margin:30px auto; position:relative;}

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

.notice-item{list-style-type:none!important; position:relative; margin-bottom: 40px;}

.notice-block input[type=checkbox]{
	position:absolute;
    cursor:pointer;
    width:100%;
    height:100%;
    z-index:1;
    opacity:0;
	}

.notice-item .expand-btn{
	position:absolute;
    transform:translate(-6px, 0);
    margin-top:20px;
    top:-5px;
    right: 20px;
	}

.notice-item .expand-btn::before, .notice-item .expand-btn::after{
    content:"";
    position:absolute;
    background-color:#9ebe82;
    width:3px;
    height:15px;
	}

.notice-item .expand-btn::before{transform:translate(-2px, 0) rotate(45deg);}
.notice-item .expand-btn::after{transform:translate(7px, 0) rotate(-45deg);}

.notice-item span.hint{
	position:absolute;
	top:7px;
	left:160px;
	font-size:14px;
	color:#cf8e71;
	}

.notice-item input[type=checkbox]:checked ~ i::before{
    transform:translate(7px, 0) rotate(45deg);
	}

.notice-item input[type=checkbox]:checked ~ i::after{
    transform:translate(-2px, 0) rotate(-45deg);
	}

.notice-item h4{
	font-size:20px;
	color:#05683a;
	font-weight:bold;
	padding: 10px;
	background-color: #d1e0c4;
	border-radius: 10px;
	}

.notice-item .notice-content{opacity:1; line-height:1.3em; margin-left: 2em; padding-top: 1em; padding-left: 1em; border-left: 2px solid #05683a;}

.notice-item input[type=checkbox]:checked ~ .notice-content{
	margin-top:0;
    max-height:0;
    opacity:0;
    transform:translate(0, 50%);
	}

.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;
    letter-spacing:1px;
    padding:12px 30px;
    border-radius:20px;
    background-color:#466a01;
	-moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    -webkit-transition:all 0.3s ease-in-out;
    -ms-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
	}

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

/*影片 film_start*/
.movie-list-block{width:90%; max-width:1000px;}

.movie-list-box{width:50%;}

.movie-list-box>.box-inner{
	margin:10px 10px 30px;
	padding:10px;
	background-color:#f9f9f9;
	transition:all 0.3s ease-out;
    -webkit-box-shadow:0 3px 10px rgb(0 0 0 / 30%);
    box-shadow:0 3px 10px rgb(0 0 0 / 30%);
	}

.movie-list-box .movie-title{margin-top:10px; text-align:center;}
.movie-title h4{font-size:22px; font-weight:bold;}

/*影片 film_end*/

/*搜尋search_start*/
.search-box{width:33.333%; text-align:center;}

.search-box>.box-inner{margin:10px;}

.search-box img{width:100%; padding:15px;}
/*搜尋search_end*/

/*contact*/
.contact-content{padding:50px 0 70px;}

.contact-content h3{font-size:28px; font-weight:bold; padding-bottom:10px;}
.contact-content h4{font-size:20px; font-weight:600; padding-bottom:10px;}

.contact-content ul{padding-left:0;}

.contact-content ul li{font-size:16px; line-height:30px;}

.contact-content p{text-align:left;}

.contact-link-block{display:flex;}

.contact-link-box{width:130px; margin:0 20px 0 0;}
.contact-link-box p{
	text-align:center;
	border:1px solid #05683a;
	border-radius:999em;
	}
.contact-link-box a{display:block; padding:5px 0;}

.contact-link-box:hover p{background-color:#05683a;}
.contact-link-box:hover a{color:#fff;}

/*download*/
.download-box{margin:3% auto;}

.download-pro {
    width: 100%;
    margin: 25px auto;
    padding-bottom: 5px;
    border-bottom: 1px #e0e0e0 dashed;
}

.download-pro img {
	width:100%;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	margin-bottom: 5px;
}

.download-pro h1{
	display:inline;
	font-weight: normal;
	color: #5f605d;
}

.download-pro h2{display:inline;}

.download-pro h3{display:inline; float:right;}

.download-pro h3 a{
    font-size: .95em;
    margin: 0 7px 0 0;
    color: #fff;
    background: #5f605d;
    padding: 5px 8px;
    border-radius: 10px;
    transition:all .2s ease;
}
.download-pro h3 a:hover{
    color:#ffffff;
    background: #ef6817;
}
.download-pro h4{
	display: inline;
    color: #727271;
    font-weight: normal;
    font-size: .9em;
    margin-left: 13px;
    vertical-align: text-top;
}

/*tab選單*/
.abgne_tab ul, li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.abgne_tab {
	clear: left;
	width: 400px;
	margin: 10px 0;
}
ul.tabs {
	width: 100%;
	height: 32px;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
}
ul.tabs li {
	float: left;
	height: 31px;
	line-height: 31px;
	overflow: hidden;
	position: relative;
	margin-bottom: -1px;	/* 讓 li 往下移來遮住 ul 的部份 border-bottom */
	border: 1px solid #999;
	border-left: none;
	background-color: #374e6d;
}
ul.tabs li a {
	display: block;
	padding: 0 10px;
	color: #FFF;
	border: 1px solid #fff;
	text-decoration: none;
}

ul.tabs li a:hover{background:rgba(255,255,255,.5);}

ul.tabs li.active{border-bottom:1px solid #fff;}

ul.tabs li.active a:hover{background:rgba(255,255,255,.5);}

div.tab_container {
	clear: left;
	width: 100%;
	border-bottom: 8px solid #595757;
	border-top: none;
	background: #fff;
}
div.tab_container .tab_content h1 {
	margin: 0 5px;
}
div.tab_container .tab_content h2 {
	margin: 0 5px 20px;
}
.tab_content{text-align: center;}

.tab_content>a>img{width:100%;}

.tab_a{background-color:#595757;}

.tab_b{background-color:#385796;}

.tab_c{background-color:#D0A100;}

.ptext{
	width:100%;
	margin:5px auto;
	text-align:center;
}

.popup-gallery{width:600px; margin:auto;}

.popup-gallery img {width:90%;}

.tableBox{margin-bottom:50px;}

.table1{
	width:100%;
	text-align: center;
	box-sizing: border-box;
	height: auto;
	border-bottom: 1px #CCC solid;
}

.table1 span{display:block;}

.tableLeft{
	width:20%;
	display:inline-block;
	vertical-align:top;
}
.tableCenter1{
	width:23%;display:inline-block;
	vertical-align:top;
}
.tableCenter2{
	width:40%;display:inline-block;
	vertical-align:top;
}
.tableRight{
	width:18%;display:inline-block;
	vertical-align:top;
}
.table1Box{
	border: 1px #eaeaea solid;
	display:flex;
}
.table1Box:nth-child(1n+2){
	margin-top:20px;
}
.tableTop{
	background: #eaeaea;
    line-height: 40px;
    box-sizing: border-box;
    padding-left: 15px;
    text-align: center;
}
.tableDown img{
	max-width:100%;
	width: 100%;
}
.inquryBtnBox{
	margin: 15px auto;
    width: 250px;
}
.table2{
	width:100%;
	text-align:center;
	margin-top: 10px;
}
.tableDown{
	height:210px;
}
.tableDown::before{
   content:'';
   width:0;
   height:100%;
   display:inline-block;
   position:relative;
   vertical-align:middle;
   background:#f00;
}

.tableDown span{
    padding-left: 15px;
    display:inline-block;
   vertical-align:middle;
 }
.tableDown span ul{
	margin-left: 25px;
}
.tableRemove{
	background: #eaeaea;
    padding: 5px 8px;
    border-radius: 5px;
    border: 1px #CCC solid;
    margin: 4px;
    display: inline-block;
}
.tableDown form{
    font-size: .95em;
    padding-top: 10px;
    line-height: 1.5em;
}
.table2 span a{
    background: #777777;
    color: #FFFFFF;
    width: 100px;
    line-height: 30px;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    font-size: .95em;
    font-weight: bold;
    border: 1px #525252 solid;
}
.table2 span a:hover{
	background: #771211;
	border: 1px #5a1d1c solid;
}
.updateBtn{
    text-align: center;
    display: block;
    margin-top: 15px;
}
.tableCenter2 ul li{
	width: 120px;
    text-align: left;
    float: left;
    padding-left: 15px;
}
.inquiryType{
	width:30%; height:auto; display:inline-block;vertical-align:top;
}
.formBox .form {
    position: relative;
    margin-bottom: 25px;
}
.b-box {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.formBox .form label {
    display: block;
    background: #eaeaea;
    font-size: 15px;
    height: auto;
    line-height: 30px;
    width: 171px;
    padding: 0 10px;
    color: #545454;
    position: absolute;
    font-weight: bold;
    left: 0;
    top: 0;
}
.formBox .form input[type="text"] {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 5px;
    margin-left: 195px;
    width: 80%;
    height: 30px;
    line-height: 30px;
    border: 1px solid #d8d8d8;
    font-size: 1em;
}

input[type="text"]{-webkit-appearance:none;}

.formBox .form textarea {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 80%;
    height: 100px;
    padding: 5px 5px;
    margin-left: 195px;
    border: 1px solid #ccc;
    font-size: 1em;
    font-family: Arial,微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
}
.formBox {
    margin-bottom: 25px;
    color: #222;
    font-size: 1em;
    margin-top: 30px;
}
.formBox form .btn a {
    display: inline-block;
    padding: 7px 15px;
    font-size: 16px;
    color: #FFF;
    border-radius: 3px;
    margin: 0 10px;
}
a.btn_color1 {
	background:#777777;
    color:#FFFFFF;
    width:100px;
    line-height:30px;
    display:block;
    margin:0 auto;
    border-radius:10px;
    font-size:0.95em;
    font-weight:bold;
    border:1px #525252 solid;
}

a.btn_color1:hover{background:#771211; border:1px #5a1d1c solid;}

.send{text-align:center; margin-top:80px;}

table {
    border: 1px solid #ccc;
    width: 100%;
    margin: 0;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0;
    white-space:nowrap;
}

table tr{border:1px solid #ddd; padding:5px;}

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

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

.detailBtn1{display:inline-block; float:right;}

.detailBtn1 a{
	color:#fff;
    background:#5f605d;
    border-radius:10px;
    padding:5px 10px;
    margin:0 5px;
    letter-spacing:0.1em;
    border:1px #5f605d solid;
	}
.detailBtn1 a:hover{
    background:#ef6817;
    border:1px #ef6817 solid;
	}
.detailBtn2{
	display:inline-block;
	float:right;
}
.detailBtn2 a{
    background:#7d7d7d;
    border-radius:10px;
    border:1px #656565 solid;
    padding:5px 10px;
    margin:0 5px;
    color:#FFFFFF;
	}
.detailBtn2 a:hover{
    background:#8e8e8e;
    border:1px #777777 solid;
	}
.inquryBtn{
	display:inline-block;
    margin:5px 0;
	}
.inquryBtn a{
	color:#fff;
    background:#3d6cb9;
    border-radius:15px;
    padding:5px 10px;
    margin:0 5px;
    letter-spacing:0.1em;
    border:1px #3d6cb9 solid;
	}
.inquryBtn a:hover{
    background:#00d1ff;
    border:1px #00d1ff solid;
	}
.send input[type="submit"]{
	font-family:Arial,微軟正黑體,Microsoft JhengHei,新細明體,sans-serif;
	font-size:1em;
}

.side-menu{
	position:fixed;
    top:35%;
    right:0;
    width:48px;
    background:#4b95ca;
    box-shadow:5px 5px 0 0 rgb(0 0 0 / 30%);
    z-index:10001;
	}

.side-menu ul{
    list-style:none;
    padding:0;
    margin:0;
	}

.side-menu ul li{
    padding:0;
    margin:0;
    font-size:14px;
    color:#ffffff;
    line-height:1.2;
    border-bottom:1px #499d9a solid;
    box-shadow:0 1px 0 0 rgb(255 255 255 / 45%);
	}

.side-menu ul li:hover{background-color:#5ecabf;}

.side-menu ul li a{display:block; padding:10px;}

.side-menu ul li .float-icon{margin:0 0 5px 0;}

.side-menu ul li .float-icon img{width:100%;}

.side-menu ul li p{
    font-size:14px;
    color:#ffffff;
    padding:0;
    margin:0;
    line-height:1.2em;
	}

/*嵌入youtube影片語法*/
.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%;
	}


.movie-item {
	width: 100%;
}

.movie-box {
	margin: 0 auto 20px;
	max-width: 600px;
	max-height: 400px;
}


.news-item {
    width: 100%;
    max-width: 1000px;
    margin: 10px auto;
    padding: 20px;
    background-color: #f9f9f9;
}
.news-item-box {
    display: flex;
    flex-wrap: wrap;
}
.news-item-img {
    width: 30%;
	float: left;
	display: block;
    height: 0;
    text-align: center;
    padding-bottom: 30%;
    overflow: hidden;
    position: relative;
}
.news-item-img 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-item-content {
    width: 70%;
	float: left;
	padding: 20px;
}
.news-item-tit {
    margin-bottom: 20px;
}
.news-item-tit h4 {
    font-size: 20px;
}
.news-item-date {
    margin-bottom: 10px;
}
.news-item-date span {
    font-size: 16px;
    color: #aaaaaa;
}
.news-item-txt {
    margin-bottom: 20px;
	overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    white-space: normal;
}
.news-item-txt p, 
.news-item-txt h1, 
.news-item-txt h2, 
.news-item-txt h3, 
.news-item-txt h4, 
.news-item-txt h5, 
.news-item-txt h6, 
.news-item-txt span, 
.news-item-txt strong {
    font-size: 16px !important;
	font-weight: 400;
}
.news-item-txt img {
    display: none;
}
.news-item-btn {
    max-width: 120px;
}
.news-item-btn a {
    display: block;
    color: #fff;
    padding: 12px 10px;
    border-radius: 5px;
    text-align: center;
    background-color: #466a01;
}
.news-item-btn:hover a {
	color: #000;
    background-color: #d1e0c4;
}
.numpage-btn {
    width: 100%;
    text-align: center;
	margin-bottom: 30px;
}
.numpage-btn .pagination {
    margin: 10px 0;
    display: inline-flex;
}
.numpage-btn .pagination li {
    padding: 5px 10px;
}
.numpage-btn .pagination li a {
    padding: 7px 10px;
	background-color: #ffffff;
    border: 1px solid #aaa;
    border-radius: 5px;
}
.numpage-btn .pagination li a:hover {
    background-color: #eee;
}
.numpage-btn .pagination .active a {
    background-color: #9ebe82;
    color: #ffffff;
}
.numpage-btn .pagination .active a:hover {
    background-color: #9ebe82;
}

.news-detail-item {
    margin: 30px;
}
.news-detail-date {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.news-detail-date span {
    font-size: 16px;
    color: #aaaaaa;
}
.news-detail-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.news-detail-img img {
	width: 100%;
    max-width: 300px;
}
.news-detail-content {
    display: flex;
    justify-content: center;
    align-items: center;
	margin-bottom: 30px;
}
.news-detail-content img {
    height: auto !important;
}


/*螢幕大小*/
@media screen and (max-width:1600px){
	#contentBox{padding-left:0;}
	}

@media screen and (max-width:1400px){
	.mobile-product-menu li{width:16%;}
	}

@media screen and (min-width:1200px){
	.search-block{width:160px;}
	}

@media screen and (max-width:1200px){
	.news-block{width:52%;}
	.edit-content-area{width:95%;}
	.product-content-area{width:90%; max-width:1080px;}
	.product-box{width:33.333%;}
	.product-menu{display:none;}
	.mobile-product-menu-block{display:block;}
	.container1, .container-3{width:95%;}
	.col-lg-7{width:100%;}
	.search-block .search .input-block{
		width:100%;
		position:absolute;
	    top:calc(100% + 1px);
	    left:0;
	    -webkit-transform:translateY(-110%);
	    transform:translateY(-110%);
	    transition:all 0.5s;
	    z-index:-1;
		}
	.search-block .search.show .input-block{
		-webkit-transform:translateY(0);
	    transform:translateY(0);
		}
	.search-block .search .input-block input{width:100%; padding:15px 20px; opacity:0;}
	.search-block .search.show .input-block input{width:100%; background-color:#f3f3f3; opacity:1;}
	.product-type-item-box{width:33.333%;}
	.product-type-block{max-width:840px; margin:0 auto;}
	.product-type-box{width:50%;}
	.product-type-menu-box{display:none;}
	.product-detail-content-box{width:100%;}
	}

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

@media screen and (max-width:1080px){
	nav>ul{display:none;padding-right:60px;}
	.navTrigger{display:block; top:32px;}
	#logo{text-align:center; float:none; margin:15px auto;}
	.top-menu-block{display:none;}
	header{height:auto; position:inherit; padding-top:1px;}
	.nav-open header{/*background-color:rgba(255,255,255,0.1);*/}
	.nav-open header{/*border-bottom:3px solid rgba(237,237,237,0.1);*/}
	.nav-open .fabs-mod{display:none;}
	.mobile-search-box{display:block;}
	.without-title-pic{padding-top:0;}
	.page-title-picbox{padding-top:0; min-height:inherit;}
	.date{padding:0 0 0 30px; width:100px;}
	.news{width:80%;}
	.hotBg a::before{left:30%;}
	.Lang{position:initial;}
	.product-menu{width:12%;}
	.product-block{width:84%;}
	.product-block-detail{width:78%;}
	.footbox{width:90%;}
	#footFloat{width:50%;}
	nav{width:100%;}
	.tableDown span ul{margin-left:0px;}
	.page-title-picbox-bg{margin-top:0; height:200px;}
	.headline{margin:0 auto;}
	.mobile-product-menu li a{padding:10px 0;}
	.mobile-main-logo{display:block;}
	.inner-nav{max-width:800px; text-align:left;}
	.inner-nav li{width:33.333%; text-align:center; margin:0 0 5px -5px;}
	.inner-nav li a{padding:15px 0;}
	.clinic-block{padding-top:10px;}
	}

@media screen and (max-width:980px){
	nav>ul{padding-right:50px;}
	.index-product-typebox{width:50%; margin:0 auto 30px;}
	.about{font-size:1.5em;}
	.news-pic{float:none; margin:10px auto;}
	.news-block{width:100%;}
	.more{margin:10px 0 20px 0;}
	.hotBg a::before{left:28%; top:83%;}
	.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;}
	.container{width:95%;}
	.product-menu{width:14%;}
	.product-block{width:82%;}
	.product-block-detail{width:75%;}
	.mobile-product-menu li{width:25%;}
	.quick-link-box{width:100%; padding:0 0 20px;}
	.index-project-type-block{max-width:800px; margin:0 auto;}
	.search-box{width:45%;}
	}

@media screen and (max-width:840px){
	#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%}
	.product-box{width:50%;}
	.product_img{margin:0; margin-bottom:5px;}
	.productdt_margin{width:95%;}
	.showbox{float:none; margin:0 auto; width:600px;}
	.abgne-block-20120106{width:600px;margin:0 auto;}
	.abgne-block-20120106 img{margin:10px 8px 0 8px;}
	.photoimg{width:100%;}
	.ptext{width:100%; float:none; margin-left:0;}
	footer{margin-top:0px;}
	#footlogo {padding-bottom:0px;}
	.hotBg a::before{left:20%; top:95%;}
	.about form{position:initial; margin:0 0 45px;}
	.product-block{width:100%; border-left:0;}
	.product-block-detail{width:90%; border-left:0; float:none; margin:0 auto;}
	.product_img a{margin-bottom:10px;}
	.tableCenter2 ul li{padding-left:10px;}
	.edit-content-block{width:90%;}
	.about-spirit-textbox{width:70%;}
	.about-spirit-picbox{width:45%;}
	.index-about-picbox{width:50%; margin:0 auto;}
	.index-about-infobox{width:80%; margin:0 auto;}
	.environ-box{width:50%;}
	.index-project-type-block{max-width:600px;}
	.product-type-block{max-width:600px;}
	.product-type-box{width:80%; margin:0 auto;}
	.inner-nav li{width:50%;}
	}

@media screen and (min-width:769px){
	.quick-link-block::after{
		content:'';
	    position:absolute;
	    z-index:1;
	    width:50%;
	    height:100%;
	    top:0;
	    right:50%;
	    /*background:#cf8e71;*/
	    background:linear-gradient(left, #d1e0c4, #9ebe82);
		background:-moz-linear-gradient(left, #d1e0c4, #9ebe82);
		background:-o-linear-gradient(left, #d1e0c4, #9ebe82);
		background:-webkit-linear-gradient(left, #d1e0c4, #9ebe82);
	}
	.quick-link-block::before{
		content:'';
	    position:absolute;
	    z-index:1;
	    width:50%;
	    height:100%;
	    top:0;
	    left:50%;
	    /*background:#5d2627;*/
	    background:linear-gradient(right, #9ebe82, #05683a);
		background:-moz-linear-gradient(right, #9ebe82, #05683a);
		background:-o-linear-gradient(right, #9ebe82, #05683a);
		background:-webkit-linear-gradient(right, #9ebe82, #05683a);
	}
}

@media screen and (max-width:768px){
	header{height:auto; position:inherit;}
	#logo{margin:0 auto 10px;}
	.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{display:block;}
	#banner_s{display:none;}
	.tableDown{height:auto; margin:15px 0;}
	.tableLeft .tableDown{margin:0px 0;}
	.tableCenter2 ul li{padding-left:15px;}
	.tableDown span ul{margin-left:45px;}
	.hotBg a::before{left:35%; top:80%;}
	.for_PC{display:none;}
	.team-detail-picbox, .team-detail-textbox{width:100%;}
	.certificate img{width:50%;}
	ul.team-link li{display:block; margin:0 auto 50px;}
	.mobile-product-menu li{width:33.333%;}
	.foot-serviceblock li{width:50%;}
	.quick-link{width:100%; position:relative; padding:15px 0 20px;}
	.quick-link-L::after, .quick-link-R::after{content:'';}
	.quick-link-L::after, .quick-link-R::after{position:absolute; z-index:-1;}
	.quick-link-L::after, .quick-link-R::after{width:calc(100% + 30px);}
	.quick-link-L::after, .quick-link-R::after{height:100%; top:0; right:-15px;}
	.quick-link-L::after{
		/*background:#cf8e71;*/
		background:linear-gradient(left, #d1e0c4, #9ebe82, #9ebe82, #d1e0c4);
		background:-moz-linear-gradient(left, #d1e0c4, #9ebe82, #9ebe82, #d1e0c4);
		background:-o-linear-gradient(left, #d1e0c4, #9ebe82, #9ebe82, #d1e0c4);
		background:-webkit-linear-gradient(left, #d1e0c4, #9ebe82, #9ebe82, #d1e0c4);
	}
	.quick-link-R::after{
		/*background:#5d2627;*/
		background:linear-gradient(left, #9ebe82, #05683a, #9ebe82);
		background:-moz-linear-gradient(left, #9ebe82, #05683a, #9ebe82);
		background:-o-linear-gradient(left, #9ebe82, #05683a, #9ebe82);
		background:-webkit-linear-gradient(left, #9ebe82, #05683a, #9ebe82);
	}
	.product-type-item-box{width:50%;}
	.news-item{padding:10px;}
	.news-item-img{width:40%; padding-bottom: 40%;}
	.news-item-content {width:60%;}
	.news-item-tit{margin-bottom:10px;}
	.news-item-tit h4{font-size:16px;}
	.news-item-date{margin-bottom:5px;}
	.news-item-date span{font-size:13px;}
	.news-item-txt{margin-bottom:10px; -webkit-line-clamp:1;}
	.news-item-txt p{font-size:14px;}
	.index-news-list li a{flex-wrap:wrap;}
	.index-news-list .index-news-date{flex-basis:100%; margin-bottom:10px;}
	.index-news-list .index-news-title{padding:0 130px 0 0;}
	.page-tab .tablinks{margin-bottom:20px; padding:10px 20px;}
	.movie-list-block{max-width:600px;}
	.movie-list-box{width:100%;}
	.page-title h3{font-size:30px;}
	.content-frame-img{width:100%;}
	.clinic-block{flex-wrap:wrap;}
	.clinic-item{width:50%;}
	.clinic-item:nth-child(3){width:100%;}
	}

@media screen and (max-width: 640px){
	header{padding-top:1px;}
	.navTrigger{top:22px;}
	#mobile{top:57px;}
	.mobile-main-logo img{width:200px;}
	.hot1{width:410px; margin:10px auto; float:none; text-align:center; height:auto;}
	#footFloat{font-size:0.9em;}
	.news{width:70%; padding:0 0 0 10px;}
	.pic{width:initial; float:none; height:80%;}
	.key{width:100%;}
	.hot_text{height:initial; float:none; padding:10px;}
	.hot_box{margin:0 auto;width:410px;}
	.news_t{float:none;}
	.contact_margin iframe{width:480px; height:300px;}
	.contact_margin{width:480px;}
	.contact_margin p{width:100%;}
	.product-box{width:80%; margin:0 auto;}
	.product_margin{width:440px;}
	.showbox{float:none; margin:0 auto; width:500px; height:385px;}
	.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;}
	.product_img a{width:100%; height:100%;}
	.product_img a::after{width:60px; padding-top:60px;}
	#footlogo{width:90%; max-width:350px; margin:0 auto 15px;}
	.foot-infoblock{width:100%; max-width:350px;}
	.foot-serviceblock{width:100%; max-width:350px;}
	.foot-linkbox{width:48%; margin:0 auto 15px;}
	.about-spirit-textbox{width:100%;}
	.index-about-picbox{width:80%; text-align:center;}
	.spirit-picbox{width:100%; height:auto;}
	.spirit-picbox img{width:100%; height:auto;}
	.index-about-infobox p.spirit-narrate{font-size:18px;}
	.index-about-infobox p.spirit-narrate span{font-size:28px;}
	.index-project-content{width:90%; margin:0 auto;}
	.index-product-typebox>.box-inner{margin:5px;}
	.environ-box{width:100%; max-width:360px; margin:0 auto;}
	.mobile-product-menu li a{font-size:14px;}
	.search-box{width:90%; max-width:350px; margin:0 auto;}
	.page-edit-title{width:90%; margin:0 auto;}
	.product-type-item-box{width:50%; max-width:400px; /*margin:0 auto;*/}
	.clinic-block{flex-wrap:wrap;}
	.clinic-item{width:100%;}
	}

@media screen and (max-width: 519px){
	.tableDown span ul{width:290px;}
	.news-title{margin-top:0; padding-left:10px; padding-right:10px;}
	.news-pic{width:100%; height:200px;}
	.news-pic img{width:100%; height:auto;}
	}

@media screen and (max-width:480px){
	#logo{width:220px; margin:20px auto;}
	.hot_box{display:none;}
	.news{width:90%;}
	.news-text{padding:0;}
	.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;}
	.headline{margin:0 auto; padding:0;}
	.edit-content-block h4{font-size:24px;}
	.about-spirit-picbox{width:70%;}
	.index-about-infobox{width:90%;}
	.index-about-infobox p.spirit-narrate{font-size:16px;}
	.index-about-infobox p.spirit-narrate span{font-size:24px;}
	.certificate img{width:100%;}
	.index-about-btn{float:none; display:block;}
	.product-slide-block .product-slide-box h4{font-size:24px;}
	.page-edit-title h4{font-size:28px;}
	.product-type-item-box h4{font-size:18px; padding:0 15px;}
	.content-frame iframe {
		height: 360px;
	}
	.edit-content-block iframe {
		height: 360px;
	}
	}

@media screen and (max-width: 400px){
	.showbox{float:none; margin:0 auto; width:320px; height:245px;}
	.product_box{width:100%; margin:15px 5px 25px 0px; height:initial;}
	.ptext{float:left;}
	.product_margin{width:80%;}
	.product_img{width:100%;}
	.contact_margin p{font-size:.9em;}
	.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;}
	.tableDown span ul{margin-left:15px;}
	}

.service__text-2 li{
font-size: 20px;
font-weight: bold;
list-style-type:disc ;
margin-top: 5px;
margin-bottom: 10px;
  }