body{  font-size:18px; font-family:Arial, Helvetica; color:#333; position:relative;}
body{max-width: 100vw;overflow-x: hidden;}
h1{font-size: 48px;}
h2{font-size: 60px;}
h3{font-size: 48px;}
h4{font-size: 36px;}
h5{font-size: 30px;}
h6{font-size: 24px;}
p{font-size: 18px; line-height: 2; letter-spacing: 0.5px;}
h1,h2,h3{font-weight: bolder;letter-spacing: 2px;}
h4,h5,h6{font-weight: bold;letter-spacing: 1.5px}
a{font-size: 18px;transition: .3s; color:#80a965;box-sizing: border-box;}
a:hover{opacity: 0.9;}
::selection {
background: #80a965;
color: #FFF;
}
::-moz-selection {
background: #80a965;
color: #FFF;
}
body{
	animation-name: fade-in;
	animation-duration:1s;
	animation-timing-function:ease-in;
}
@keyframes fade-in{
    0%{
        opacity:0;
    }
    100%{
        opacity: 1;
    }
}
img{
	max-width: 100%;
}
div{box-sizing:border-box;}
/*-------------*/
/*block width*/
.w1360{width: 100%; max-width: 1360px; margin: 0 auto;box-sizing:border-box;}
.w1020{width: 100%; max-width: 1020px; margin: 0 auto;box-sizing:border-box;}

/*color style*/
.white{color: #FFF;}
.green{color: #80a965;}
.cream{color: #fdebc8;}
.bg_gray{background-color: #f5f4f1;}
.bg_green{background-color: #80a965;}
.center{text-align: center;}

/*line style*/
.g_line{
	display: block;
	height: 5px;
	width: 100%;
	background-color: #80a965;
	margin: 15px 0 20px 0;
	border-radius: 2.5px;
}
.w_line{
	display: block;
	height: 5px;
	width: 100%;
	background-color: #FFF;
	margin: 15px 0 20px 0;
	border-radius: 2.5px;
}
/*背景圖置中cover*/
.bgimg{
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
/*表格*/
input,textarea,select{
	border:none;
	box-shadow: none;
	background-color: rgba(255,255,255,0);
	font-size: 18px;
	padding: 10px 5px;
}
input:focus,
textarea:focus,
select:focus{
	outline-color: rgba(255,255,255,0);
}
/*內頁TOP圖*/
.toppic{
	width: 100%;
	height: 350px;
	animation-name: fade-in;
    animation-duration: 1s;
    animation-timing-function: ease-in;
}
/*button style*/
.all_btn1{
	display: block;
	font-size: 24px;
	color: #FFF;
	background: #80a965;
	border-radius: 50px;
	padding: 20px;
	font-weight: bold;
	text-align: center;
	width: 220px;
	transition: .3s;
}
.all_btn1.white{
	color: #80a965;
	background: #FFF;
}
/*內頁大標*/
.all_title{
	display: block;
	text-align: center;
	margin: 50px auto;
}
body.innerpage{
	padding-top: 80px;
}
/*頁碼*/
.pagebox{
	position: relative;
	margin:50px auto 100px auto;
	padding: 0 40px;
}
.pagebox ul{
	text-align: center;
}
.pagebox ul li{
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	margin: 0 10px;
}
.pagebox ul li a{
	display: block;
	color: #80a965;
	background-color: #f5f4f1;
	border-radius: 35px;
	padding: 20px 28px;
	font-size: 20px;
	font-weight: bold;
}
.pagebox ul li a:hover{
	background-color:#e5e3df;
}
.pagebox ul li a.active{
	color: #FFF;
	background-color: #80a965;
}
.pagebox .prev_btn,
.pagebox .next_btn{
	display: block;
	width: 160px;
	box-sizing: border-box;
}
.pagebox .prev_btn{
	position: absolute;
	left: 40px;
	top: 0;
}
.pagebox .next_btn{
	position: absolute;
	right: 40px;
	top: 0;
}
.pagebox .center_btn{
	margin: 0 auto;
	width: 220px;
	color: #80a965;
	border: 3px solid #80a965; 
	background: none;
}
.article_btn.pagebox .prev_btn{
	left: 0;
}
.article_btn.pagebox .next_btn{
	right: 0;
}
/*MENU*/
#menu{
	display: flex;
	width: 100%;
	height: 90px;
	justify-content: space-between;
	align-items: center;
	background-color: #80a965;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 900;
	transition: .5s ease;
}
#menu .logo{
	padding: 0 20px 0 30px;
}
#menu .logo img{
	width: 180px;
	transition: .5s;
}
.menu_list{
	padding: 0 20px;

}
.menu_list ul li{
	display: inline-block;
}
.menu_list ul li a{
	color: #FFF;
	padding: 0 20px;
	border-right: 1px solid #FFF;
}
.menu_list ul li:last-child a{
	border-right:none;
}
.index_menu #menu{
	background: none;
}
/*MENU下拉選單(電腦版)*/
.menu_list ul li.pc_hide{
	display: none;
}
.menu_list li{
	position: relative;
}
.menu_list li a img{
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
	transition: .5s;
}
.menu_list ul.pull_down{
	display: block;
	opacity: 0;
	height: 0;
	transition: .5s;
	position: absolute;
	top: -200px;
	right: 50%;
	transform: translateX(50%);
	text-align: center;
	z-index: -1;
	margin-top: 25px;
	box-shadow: 0 0 10px rgba(119,151,82,0.3);
	border-radius: 10px;
}
.menu_list ul li:hover ul.pull_down{
	opacity: 1;
	height: auto;
	top: 15px;
}
.menu_list ul li:hover a img{
	transform: rotate(180deg);
}
.menu_list ul.pull_down li a{
	display: block;
	padding: 15px;
	width: 150px;
	transition: .3s;
	color: #80a965;
	background: rgba(255,255,255,0.8);
	border-bottom: 1px solid #f5f4f1;
}
.menu_list ul.pull_down li:first-child a{
	border-radius: 10px 10px 0 0;
}
.menu_list ul.pull_down li:last-child a{
	border-radius: 0 0 10px 10px;
}
.menu_list ul.pull_down li a:hover{
	color: #80a965;
	background: #FFF;
	color: #87993A;
}


/*網頁下拉，MENU變窄*/
#menu.active{
	height: 70px;
	background-color: #80a965;
}
#menu.active .logo img{
	width: 160px;
	margin-top: -10px;
}
/*行動版MENU*/
#menu .logo .m{
	display: none;
}
.menu_btn{
	display: none;
	position: fixed;
	right: 30px;
	top: 25px;
	transition: .3s;
}
#menu.active .menu_btn{
	top: 15px;
	right: 20px;
}
.menu_btn li{
	display: block;
	width: 30px;
	height: 3px;
	margin: 8px;
	background-color: #FFF;
	transition: .5s;
}
.menu_btn.active li:first-child{
	width: 31px;
	transform-origin:right top;
	transform: rotate(-45deg);
}
.menu_btn.active li:nth-child(2){
	width: 0;
	transition: .2s;

}
.menu_btn.active li:last-child{
	width: 31px;
	transform-origin:right bottom;
	transform: rotate(45deg);
}

.video-bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-bg video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/*index style*/
.bigpic{
	height: 100vh;
	padding-top: 15vh;
	/*background-image: url(../images/bigpic1.jpg);*/
}
.bigpic .main{
	text-align: center;
}
.bigpic .main img{
	margin: 0 auto;
	max-width: 70%;
}
.bigpic .main h1{
	margin: 20px 0 15px 0;
	text-shadow: 0 1px 7px #5a7937;
}
.bigpic .main h6{
	text-shadow: 0 1px 4px #5a7937;
}
.iconbox{
	background-color: #ebeae3;
	padding: 80px;
}
.iconbox ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.iconbox ul li{
	text-align: center;
	width: 25%;
}
.iconbox ul li img{
	margin: 0 auto;
	max-width: 100%;
}
.iconbox ul li h6{
	margin: 20px 0 10px 0;
}
.iconbox ul li p{
	/*width: 280px;*/
	font-weight: 900;
	letter-spacing: 1px;
}

.indexbox1{
	position: relative;
	padding: 80px 10px;
	display: flex;
	box-sizing: border-box;

	justify-content: space-between;
	align-items: center;
}
.indexbox1 .pic-img{
	padding: 0 10px;
	box-sizing: border-box;
	text-align: center;
	flex-shrink: 1;
}
.indexbox1 .pic-img img{
	max-width: ;
	width: 100%;
	max-width: 420px;
	display: inline-block;
}
.indexbox1 .text{
	/*position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%);*/
	background-color: #ffffff;
    padding: 30px;
    width: 50%;
    flex-shrink: 0;
}
.indexbox2{
	position: relative;
	padding: 120px 0;
}
.indexbox2 .text{
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
}

.indexbox2 .text p{
	font-size: 22px;
}

.indexbox2 img{
	margin-left: 30%;
	width: 70%;
}
.indexbox2 img.m_pic{
	display: none;
}

.indexbox2 .text{
	position: relative;
	top: auto;
	left: auto;
	display: inline-block;
	width: 40%;
	transform: none;
	vertical-align: middle;

}
.indexbox2 .pic-box{
	display: inline-block;
	width: 50%;
	margin-left: 5%;
	vertical-align: middle;
	border-radius: 30px;
	overflow: hidden;

}
.indexbox2 .pic-box li{
	position: relative;

	border-radius: 30px;
	overflow: hidden;

}
.indexbox2 .pic-box li img{
	/*border-radius: 30px;*/
	width: 100%;
	margin-left: 0;

}
.indexbox2 .pic-box li p{
	width: 100%;
	text-align: center;
	/*margin-top: 15px;*/
	position: absolute;
	bottom: 0;
	text-shadow: 0 0 5px rgba(0,0,0.7);
	color: #fff;
	padding: 20px 10px 10px 10px;
	/*border-radius: 0 0 30px 30px;*/
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.3)10%, rgba(0, 0, 0, 0)80%);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0.3)10%, rgba(0, 0, 0, 0)80%);
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0.3)10%, rgba(0, 0, 0, 0)80%);
	background: -o-linear-gradient(90deg, rgba(0, 0, 0, 0.3)10%, rgba(0, 0, 0, 0)80%);
}
.markbox{
	padding: 150px 0 50px 0;
}
.markbox ul{
	display: flex;
	width: 100%;
	justify-content: space-around;
	align-items: flex-start;
}
.markbox .btn{
	margin: 80px auto;
}
.testbox .w1360{
	text-align: center;
	padding: 120px 0;
}
.testbox .sub{
	margin: 10px 0;
}
.testbox .testlist{
	background-color: #FFF;
	padding: 30px;
	border-radius: 50px;
	margin: 50px auto;
	width: 80%;
}
.testbox .test img{
	width: 100%!important;
	border-radius: 30px;
}
/*.testbox .test img.m_pic{
	display: none;
}*/
.test_owl_m{
	display: none;
}
.testbox .btn{
	margin: 50px auto 0 auto;
}
/*.testbox .test img{
	display: inline-block!important;
	width: 48%!important;
}
.testbox .test img:first-child{
	margin-right: 1.5%;
}*/
.sizebox{
	padding: 120px 40px;
}
.sizebox ul{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.sizebox ul li{
	text-align: center;
	width: 30%;
}
.sizebox ul li .item{
	border-radius: 50px;
	overflow: hidden;
	background-color: #FFF;
	text-align: center;
	padding: 0 0 30px 0;
	box-shadow: 0 0 20px #dedcd2;
}
.sizebox ul li .item>img{
	width: 100%;
}
.sizebox ul li .item h4{
	position: relative;
	color: #FFF;
	background-color: #80a965;
	border-radius: 50px;
	width: 150px;
	padding: 10px;
	margin: 120px auto 10px auto;
}
.sizebox ul li .item h4 img{
	position: absolute;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
}
.sizebox ul li p{
	margin-top: 30px;
}

.sizebox ul li p {
    margin-top: 30px;
    font-weight: bold;
    color: #8a8a8a;
    line-height: 1.5;
}

.sizebox ul li p span {
    font-size: 24px;
}

.index_probox{
	padding: 150px 80px;
}
.probox ul li{
	display:inline-block;
	text-align: center;
	vertical-align: top;
}

.probox ul li img{
	border-radius: 50px;
	overflow: hidden;
	margin-bottom: 20px;
	width: 100%!important;
	transition: .3s;
}
.probox ul li:hover img{
	opacity: 0.8;
}
.probox ul li h6{
	font-size: 20px;
	margin-top: 20px;
	transition: .3s;
}
.probox ul li:hover h6{
	color: #80a965;
}
.probox .btn{
	margin: 80px auto 0 auto;
}
.founder{
	display: flex;
	justify-content: space-between;
	align-items: top;
}
.founder .textbox{
	width: 50%;
	padding: 0 50px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.founder .text{
	width: 60%;
}
.founder .text .w_line{
	margin: 40px 0;
}
.founder .text h6{
	margin-top: 80px;
}
.founder .photo{
	width: 50%;
	height: 100vh;
}
.founder .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.articlebox{
	padding: 120px 40px;
}
.article{
	display: flex;
	justify-content: space-between;
	align-items:flex-start;
}
.articlebox .article:first-child{
	margin-bottom: 100px;
}
.article .cover{
	border-radius: 100px;
	display: inline-block;
	vertical-align: top;
}
.article .text{
	position: relative;
	display: inline-block;
	padding-left: 50px;
}
.article .text h4{
	margin-bottom: 30px;
}
.article .text .content{
	/*display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 100px;
    overflow-y: hidden;*/
}
.article .text .content.active{
	display: block;
	height: auto;
}
.article .text .content_open{
	opacity: 0;
	height: 0;
	overflow: hidden;
	transition: .5s;
}
.article .text .content_open.active{
	opacity: 1;
	height: auto;
}
.article .text .more{
	position: absolute;
	right: 0;
	bottom: -40px;
	cursor: pointer;
	border-bottom: 1px solid;
}
.article .text .more:hover{
	opacity: 0.8;
}
.article .text .more.active{
	opacity: 0;
	height: 0;
	overflow: hidden;
}
.article .text .x1.active,
.article .text .x2.active{
	display: none;
}
.client{
	padding: 150px 80px;
	text-align: center;
}
.client_logo{
	margin-top: 80px;
}
.client_logo li{
	vertical-align: middle;
}
.client_logo li img{
	width: 100%!important;

}
.news{
	padding: 150px 40px;
}
.newslist li{
	display: inline-block;
	width: 30%;
	margin: 1.4%;
	background-color: #FFF;
	border-radius: 50px;
	overflow: hidden;
	font-size: 0;
	box-shadow: 0 0 20px #eeefe8;
	transition: .3s;
	vertical-align: top;
}
.newslist li:hover{
	box-shadow: 0 15px 40px #e2e2dd;
}
.newslist li .cover{
	height: 270px;
	transition: .5s;
	/*background-size: 110%;*/
	/*background-position: top;*/
}
.newslist li:hover .cover{
	/*background-size: 100%;*/
	opacity: 0.8;
}
.newslist li .text{
	padding: 20px 30px 30px 30px;
}
.newslist li .text .date{
	font-size: 16px;
}
.newslist li .text h6{
	margin: 20px 0;
}
.newslist li .text p{
	display: -webkit-box;
	-webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 100px;
    overflow-y: hidden;
}
.news .btn{
	margin: 80px auto 0 auto;
}
.contact{
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.contact_page .contact{
	max-width: 1200px;margin-left: auto;
	margin-right: auto;
	justify-content: center;
}
.contact .photo{
	width: 50%;
	height: 100%;
}
.contact .photo img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contact .textbox{
	width: 50%;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.contact .text{
	padding: 100px 0;
	width: 100%;
	max-width: 600px;
}
.contact .text .w_line{
	margin: 40px 0;
}
.contact .text h6{
	margin-top: 80px;
}
/*表單樣式*/
.form .fillin{
	width: 100%;
	border-bottom: 2px solid #80a965;
	margin: 5px 0;
	padding: 10px 0;
}
.form .fillin .item{
	display: inline-block;
	width: 85px;
	vertical-align: middle;
}
.form .fillin .item::after{
	content: '*';
	color: #80a965;
}
.form .fillin input,textarea{
	display: inline-block;
	width: calc(100% - 100px);
	vertical-align: middle;
}
.form .fillin.msg .item,
.form .fillin.msg input,textarea{
	display: block;
	width: 100%;
}
.form .fillin.captcha{
	display: inline-block;
	width: calc(100% - 210px);
}
.form .captcha_pic{
	display: inline-block;
	vertical-align: bottom;
	width: 200px;
	height: 60px;
	padding: 0 0 5px 5px;
}
.form .fillin:hover .item{
	color:  #80a965;
}
.contact .btn{
	margin-top: 30px;
	max-width: 160px;
}
/*FOOTER*/
#footer{
	text-align: center;
	letter-spacing:1.5px;
}
#footer .logo{
	width: 240px;
	max-width: 60%;
	padding: 50px 0 20px 0;
	margin: 0 auto;
}
#footer .link{
	margin: 20px 40px 40px 40px;
}
#footer .link li{
	display: inline-block;
	border-right: 1px solid #FFF;
	padding: 0 20px 0 15px;
}
#footer .link li:last-child{
	border-right: none;
}
#footer .link li a{
	display: block;
	color: #FFF;
	border-bottom: 1px solid #80a965;
}
#footer .link li a:hover{
	border-bottom: 1px solid #fff;
}
#footer .rights{
	background-color: #535353;
	padding: 10px;
	font-size: 14px;
}
#footer .rights .maya{
	border-left: 1px solid #FFF;
	padding-left: 10px;
	margin-left: 10px;
}
#footer .rights a{
	color: #FFF;
	border-bottom: 1px solid;
	font-size: 14px;
}
#footer .rights a:hover{
	color: #80a965;
}
#footer .mail a{
	color: #FFF;
	border-bottom: 1px solid;
}

.footer_keyword{
	font-weight: 100;
	padding-bottom: 10px;
	color: #fff9;
	margin-top: -10px;
	font-size: 18px;
}

/*NEWS 最新消息*/
.article_page{
	padding: 180px 60px 20px 60px;
	min-height: 60vh;
}
.article_page .title{
	font-size: 36px;
	color: #80a965;
}
.article_page .content{
	margin-bottom: 80px;
}
.article_page .content img{
	max-width: 100%;
	margin: 20px auto;
}
.article_page .content p{
	margin: 20px 0;
}
.article_page .content h2{
	font-size: 36px;
}
.article_page .content h3{
	font-size: 30px;
}
.article_page .content h4{
	font-size: 28px;
}
.article_page .content h5{
	font-size: 24px;
}
.article_page .content h6{
	font-size: 20px;
}
.products ul{
	text-align: center;
}
.products ul li{
	width: 22%;
	margin: 0 1.2% 80px 1.2%;
}
.products ul li img{
	width: 100%;
}
.story_page{
	padding: 0 40px;
}
.story>li{
	margin: 80px 0;
}
.story li .title{
	display: inline-block;
	width: 150px;
	vertical-align: top;
	margin-top: -20px;
	text-align: center;
	color: #80a965;
	font-size: 36px;
	font-weight: bold;
}
.story li .title.small{
	font-size: 28px;
	margin-top: -10px;
}
.story li .title h4,
.story li .title h5{
	color: #80a965;
}
.story li .content{
	display: inline-block;
	width: calc(100% - 160px);
	vertical-align: top;
	background-color: #f5f4f1;
	padding: 30px;
	border-radius: 0 30px 30px 30px;
	position: relative;
}
.story li .content:before{
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0px 20px 20px 0;
	border-color: transparent #f5f4f1 transparent transparent;
	position: absolute;
	top: 0;
	left: -20px;
}
.story li .content h6{
	margin-bottom: 10px;
}
.story li .content img{
	width: 100%;
	margin: 10px 0;
}
.story li .content .pics{
	text-align: center;
}
.story li .content .pics li{
	display: inline-block;
	width: 28%;
	margin: 2%;
	/*text-align: center;*/
}

.contact_page .contact .btn{
	max-width: 200px;
    margin: 50px auto 0 auto;
}
.news_page{
	padding: 0 30px;
}

.inspection_page{
	padding: 0 40px 100px 40px;
	text-align: center;
}
.inspection_box img{
	display: inline-block;
	width: 32%;
	/*width: 40%;*/
	box-shadow: 0 0 5px rgba(100,100,100,0.3);
	margin: 5px 0.3%;
}
.inspection_page h6{
	text-align: center;
	margin-bottom: 20px;
}
.inspection_page .g_line{
    margin: 50px 0;
}
.porduct_page .title{
	text-align: center;
}
.porduct_pic{
	margin: 30px auto 60px auto;
	width: 100%;
}

/*YOUTUBE影片自適應*/
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
	position: absolute;
	top: 0;left: 0;
	width: 100%;
	height: 100%;
}

/*表格*/
table{
	/*padding: 5px;
	border: 1px solid #eee;*/
	text-align: center;
	border: 5px solid #80a965;
}
table tr th{
	padding: 15px 10px;
	border: 1px dashed #ebf0e5;
	text-align: center;
	background-color: #80a965;
	color: #FFF;
	font-weight: bold;
}
table tr td{
	padding: 15px 10px;
	border: 1px dashed #80a965;
	line-height: 1.5;
}
table tr td.item{
	color: #80a965;
	background-color: #ebf0e5;
	font-weight: bold;
	/*border-right: 3px solid #80a965;*/
}
table tr .green{
	font-weight: bold;
}
table tr .ps{
	border-top: 5px solid #80a965;
}
table tr .small{
	font-size: 15px;
}

/*GO TOP*/
.top_box{
	position: fixed;
	bottom: -50px;
	right: 30px;
	z-index: 800
	/*transition: .3s;*/
}
.top_box.active{
	bottom: 50px;
}

/*分類標籤*/
.category{
	max-width:1000px;
	margin: -30px auto 20px;
}
.category li{
	display: inline-block;
	padding: 10px 15px;
	margin: 10px 5px;
	border: 1px solid #ddd;
	color:  #80a965;
	border-radius: 5px;
	cursor: pointer;
	transition: .3s;
}
.category li a{
	font-size: 16px;
	color: #666;
}
.category li:hover{
	border: 1px solid #80a965;
}
.category li:hover a{
	color: #80a965;
}
.category li.active{
	background-color: #80a965;
	border: 1px solid #80a965;
	color: #FFF;
}
.category li.active a{
	color: #FFF;
}
/*首頁吸管圖調整*/
/*我們的客戶*/
.clientbox ul{
	text-align: center;
	margin: 0 auto 100px auto;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.clientbox ul li{
	display: inline-block;
	vertical-align: middle;
	width: 20%;
	margin: 2%;	
	text-align: center;
}
.clientbox ul li a{
	height: 250px;
	border-radius: 20px;
	box-shadow: 0 0 20px #eeefe8;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.clientbox ul li:hover a{
	box-shadow: 0 15px 30px #e2e2dd;
}
.clientbox ul li a img{
	width: 60%;
	/*margin: 0 auto;*/
	transition: .3s;
}
.clientbox ul li:hover img{
	transform: scale(1.05);
}
.clientbox ul li p{
	margin-top: 20px;
	transition: .3s;
	line-height: 1.5;
	/*font-weight: bold;*/
}
.clientbox ul li:hover p{
	color: #80a965;
}



/*20190510新增*/

.index_video{
	position: relative;
	width: 100%;
}
.index_video .cover{
	width: 100%;
	border-radius: 30px;
	transition: .3s;
}
.index_video .video_open{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.index_video .video_open .play-icon{
	display: inline;
	margin-right: 10px;
	transition: .3s;
}
/*.index_video .video_open .play-icon-w{
	opacity: 0;
}*/
.index_video:hover .cover{
	opacity: 0.6;
}
.index_video:hover .video_open{
	background-color: #80a965;
	color: #FFF;
	border:3px solid #FFF;
}
.index_video:hover .play-icon{
	transform: scale(2);
}
.index_video .video_open:hover{
	opacity: 1;
	box-shadow: 0 0 10px #FFF;
}



/*-------*/
.open {
    width: 900px;
    max-width: 90%!important;
    display: block;
}
.open iframe {
    max-width: 100%;
    max-height: 90vh; 
}
/*.open h1 {
    text-align: center;
    color: #fff;
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 2px;
}*/
.close {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    color: #80a965;
}
.close::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #80a965;
    position: absolute;
    right: 0;
    top: 20px;
    transform: rotate(45deg);
    transition: .5s;
}
.close::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #80a965;
    position: absolute;
    right: 0;
    top: 20px;
    transform: rotate(-45deg);
    transition: .5s;
}
.close:hover::before{
	transform: rotate(135deg);
}
.close:hover::after {
	transform: rotate(45deg);
}


.bigpic .main h6{
	/*background-color: rgba(90,121,55,0.5);
    padding: 2px 5px;*/
    display: inline;
    /*color: #80a965;
    background-color: #FFF;*/
    border-radius: 5px;
    padding: 5px 10px;
    text-shadow: none;
    font-size: 26px;

}


/*20200218新增-首頁主圖+標章*/
.idx-main{
	position: relative;

}
.idx-main .main{
	width: 90%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.idx-main .mark-box{
	text-align: center;
	position: absolute;
	bottom: 5vh;
	left: 50%;
	transform: translate(-50%,0);
	width: 90%;
}
.idx-main .mark-box li{
	display: inline-block;
	padding: 15px;

}
.idx-main .mark-box li img{
	height: 100px;
	transition: .3s;
	border-radius: 5px;
	box-shadow: 0 5px 10px rgba(60,90,30,.8);
}
.idx-main .mark-box li img:hover{
	transform: scale(1.1);
}


.i_box7 {
  margin: 100px auto;
  width: 1600px;
  max-width: 95%;
}

.i_box7 .i_b7_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f1f1f1;
  margin-bottom: 50px;
}

.i_box7 .i_b7_box .i_b7_fontbox {
  width: 52%;
  padding: 20px 80px;
}

.i_box7 .i_b7_box .i_b7_fontbox h2 {
  font-size: 40px;
  color: #80a965;
  font-weight: 700;
  letter-spacing: 3.5px;
}

.i_box7 .i_b7_box .i_b7_fontbox h3, .i_box7 .i_b7_box .i_b7_fontbox h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
  line-height: 1.5;
  letter-spacing: 1px;
}

.i_box7 .i_b7_box .i_b7_fontbox h3 {color: #999999;}
.i_box7 .i_b7_box .i_b7_fontbox h4 {color: #80a965;}

.i_box7 .i_b7_box .i_b7_imgbox {width: 48%;}
.i_box7 .i_b7_box .i_b7_imgbox img {width: 100%;}


@media screen and (max-width: 1440px) {

.i_box7 .i_b7_box .i_b7_fontbox {
  padding: 20px 35px;
}
.i_box7 .i_b7_box .i_b7_fontbox h2 {
  font-size: 36px;
}
.i_box7 .i_b7_box .i_b7_fontbox h3, .i_box7 .i_b7_box .i_b7_fontbox h4 {
  font-size: 20px;
}

}

@media screen and (max-width: 1200px) {

.i_box7 .i_b7_box .i_b7_fontbox h2 {
  font-size: 32px;
}
.i_box7 .i_b7_box .i_b7_fontbox h3, .i_box7 .i_b7_box .i_b7_fontbox h4 {
  font-size: 18px;
  margin-top: 10px;
}

}


@media screen and (max-width: 1024px) {
	.idx-main .mark-box{
		bottom: auto;
		top: 60%;
	}
	.idx-main .mark-box li{
		padding: 10px;
	}
	.idx-main .mark-box li img{
		height: 90px;
 }
 
 .i_box7 .i_b7_box .i_b7_imgbox {
    width: 100%;
  }
  .i_box7 .i_b7_box .i_b7_fontbox {
    width: 100%;
    padding: 30px;
  }
  .i_box7 .i_b7_box .i_b7_fontbox h2 {
    font-size: 28px;
  }
  .i_box7 .i_b7_box .i_b7_fontbox h3, .i_box7 .i_b7_box .i_b7_fontbox h4 {
    line-height: 1.5;
  }
  .i_box7 .i_b7_box.ins .i_b7_fontbox {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .i_box7 .i_b7_box.ins .i_b7_imgbox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  
}
@media screen and (max-width: 768px) {
	.idx-main .mark-box li img{
		height: 80px;
	}
	.indexbox2 .pic-box{
		width: 100%;
		margin: 0;
	}
}

@media screen and (max-width: 500px) {
	.idx-main .mark-box li{
		padding: 5px;
	}
	.idx-main .mark-box li img{
		height: 55px;
		padding: 0;
 }
 
.i_box7 .i_b7_box .i_b7_fontbox{
 padding: 25px;
}
.i_box7 .i_b7_box .i_b7_fontbox h2{
 font-size: 24px;
 letter-spacing: 2px;
}
.i_box7 .i_b7_box .i_b7_fontbox h3, .i_box7 .i_b7_box .i_b7_fontbox h4{
 font-size: 16px;
}

}




/*20200506首頁版面修改*/

.markbox-new{
	/*height: 20vh;*/
	/*padding: 10% 0;*/
	/*display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;*/
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ebeae3;
	width: 100%;
	padding: 50px 0 20px 0;
}
.markbox-new .text{
	display: inline-block;
	width: 30%;
}
.markbox-new .pic{
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.markbox-new .pic li{
	width: calc(100% / 6);
	padding: 0 10px;
	margin-bottom: 50px;
	box-sizing: border-box;
}

@media (max-width: 1024px){
	.markbox-new .pic li{
		width: 33.333333%;
	}
}

.faq{
	padding: 150px 0px;
}
.faq-main{
	margin-top: 50px;
}
.faq-main li{
	padding: 20px 20px 15px 20px;
	line-height: 1.75;
	margin-bottom: 10px;
	background-color: #f5f5f5
}
.faq-main li .item-head{
	position: relative;
	color: #80a965;
	font-size: 18px;
	cursor: pointer;
	font-weight: 500;
}
.faq-main li .item-head:before{
    content: url(data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D%220%200%201024%201024%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2216%22%20height%3D%2216%22%3E%3Cpath%20d%3D%22M987.2%20397.248L553.344%20831.072a64%2064%200%200%201-90.528%200L29.056%20397.248A64%2064%200%200%201%2074.304%20288h867.616a64%2064%200%200%201%2045.248%20109.248z%22%20%3E%3C%2Fpath%3E%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.faq-main li.actived .item-head:before{
	content: url(data:image/svg+xml;charset=utf-8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%201024%201024%22%3E%0A%3Cpath%20fill%3D%22%23779752%22%20d%3D%22M36.8%20626.752l433.856-433.824c11.583-11.587%2027.586-18.754%2045.264-18.754s33.681%207.167%2045.264%2018.754l433.76%20433.824c11.578%2011.581%2018.738%2027.578%2018.738%2045.248%200%2035.341-28.646%2063.992-63.986%2064h-867.617c-35.34-0.008-63.986-28.659-63.986-64%200-17.67%207.161-33.667%2018.738-45.248v0z%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.faq-main li .item-body{
	padding-top: 20px;
	padding-bottom: 20px;
	font-size: 16px;
	display: none;
}
.faq-main li.actived  .item-body{
	display: block;
	padding-right: 50px;
}
.faq-more{
	margin-top: 50px;
	display: flex;
justify-content: center;
}


.video-modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	z-index: 999;
	padding: 50px 0;
	display: none;
}
.video-modal video{
	width: 100%;
	height: 100%;
	outline: none;
}
.video-modal-close{
	cursor: pointer;
	position: absolute;
	top: 20px;
	right: 20px;
}

.map-block{
	width: 100%;
}
.map-block #map{
	height: 30vw;
	min-height: 300px;
	width: 100%;
}

.co-icon{
	position: fixed;
	bottom: 100px;
	right: 0px;
	width: 100px;
}
@media screen and (max-width: 768px) {
	.map-block{
		margin-bottom: 20px;
	}
	.co-icon{
right: -50px;
}
	.co-icon img{
		width: 50px;

	}
.faq{
padding: 20px 0px;
}
	.contact_page .w1360 .about-contact{
		flex-wrap: wrap;	
	}
	.contact_page .w1360 .about-contact .left{
		width: 50%;
        margin: 10px 50px;
	}
	.contact_page .w1360 .about-contact .textbox{
		width: 50%;
top: 40%;
	}
.contact_page .w1360 .about-contact .textbox p img{
		width: 200%;
	}


}
.founder p{
	color: #ffffff;
}

textarea.error,
input.error{
	background: #ffd2d2;
}