﻿@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;300;400;500;700&display=swap');
html{
    font-size: 18px;
}
html *{
    font-size: 1rem;
}
body{
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: 'Montserrat', 'Noto Sans TC', sans-serif;
	color: #919192;
}

.preload{
	position: fixed;
	background: #FFF center center no-repeat;
	background-image: url(../images/loading.svg);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}
/*
*{transition: all .50s linear;}
*:hover{transition: all .50s linear;}
*/
a{
	text-decoration: none !important;
	outline: none !important;
	color: #919192;
}
a:hover{ color: #a6a86b; }

img{max-width: 100%;}
input, select, textarea{outline: none;}

/*=[hover effect]==============================*/
/*
*:hover, *:focus , * {
	transition: all .20s linear
}
*/
#pageWrapper{
	position:relative;
	margin: 0 auto;
	box-sizing: border-box;
	background: #FFF;
	padding-top: 80px;
}
#pageWrapper.fixed{
	height: 100vh;
	overflow: hidden;
}
.wrapper{
	position: relative;
	width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
	overflow: hidden;
}

/*=[header]=========*/
header{
	position: fixed;
	width: 100%; 
	background: #FFF;
	top: 0;
	left: 0;
	z-index: 100;
}

header .navbar{
	position: relative;
	padding: 20px 0;
}
header .navbar .logo{
	display: inline-block;
	color: #000;
	font-size: 1.6rem;
	padding: 7px 0;
}
.main-nav{
	width: 100%;
	padding: 50px 50px 30px;
	box-sizing: border-box;
	background: #232526;
}
.main-nav.open{
	
}
.main-nav ul{
	margin: 0;
	padding: 0;
	display: flex; /* or inline-flex */
    flex-direction: row;
    flex-wrap: wrap;
}
.main-nav ul li{
	position: relative;
	flex-basis: 25%; /*default auto*/
	flex-grow: 1; /*剩餘空間延伸分配的比例*/
	list-style: none;
}
.main-nav ul li a{
	display: block;
	line-height: 2rem;
	color: #FFF;
}
.main-nav ul li a:hover:before {
    border-color: transparent #CB1525 transparent transparent;
}
.main-nav ul li a.current{
	color: #CB1525;
}
.main-nav ul li a.main-item{
	font-size: 1.4rem;
	line-height: 1.4rem;
	color: #a6a86b;
	margin-bottom: 10px;
}
header .navbar #nav_icon{
	float: right;
	color: #000;
	margin: 5px 0 0;
}
header .navbar #search_icon{
	float: right;
	color: #000;
	margin: 5px 20px 0 0;
}
header .navbar #nav_icon img,
header .navbar #search_icon img{
	display: inline-block;
	height: 30px;
	vertical-align: middle;
}

.search-wrapper{
	position: absolute;
	max-width: 400px;
	left: 0;
	right: 0;
	top: 300px;
	margin: 0 auto;
	z-index: 10;
	display: none;
}
.search-wrapper input{
	display: inline-block;
	width: calc(100% - 56px);
	height: 56px;
	box-sizing: border-box;
	vertical-align: top;
	padding: 15px;
	font-size: 16px;
	border: none;
}
.search-wrapper input[type=submit]{
	display: inline-block;
	width: 56px;
	height: 56px;
	background: url(../images/btn-search.jpg) center center no-repeat;
	vertical-align: top;
	border: none;
}
.search-wrapper input[type=submit]:hover{
	background: url(../images/btn-search.jpg) center center no-repeat;
}
.btn-close-search{
	position: absolute;
	top: 100px;
	right: 40px;
	z-index: 10;
	font-size: 16px;
	color: #FFF;
}


/*=[section]=========*/
.section-title{
	font-size: 32px;
	font-weight: normal;
	line-height: 32px;
	color: #CB1525;
	margin: 40px 0 50px;
}
.section-subtitle{
	font-size: 20px;
	font-weight: bold;
	color: #CB1525;
}
.section-des{
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 30px;
	color: #000;
}

/*=page index=======*/
.index .banner{
	overflow: hidden;
}
#slideshow_owl{
	width: 180vw;
	margin-left: -40vw;
	background: #232526;

}
#slideshow_owl::after{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 60vw;
	height: 100%;
	z-index: 10;
	background: rgba(0, 0, 0, 0.4);
}
#slideshow_owl::before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 60vw;
	height: 100%;
	z-index: 10;
	background: rgba(0, 0, 0, 0.4);
}
#slideshow_owl .owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 30px);
	left: 0;
	right: 0;
	height: 60px;
	margin: auto;
	z-index: 20;
}
#slideshow_owl .owl-nav .owl-prev{
	position: absolute;
	top: 0;
	left: 32.2%;
	width: 60px;
	height: 60px;
	opacity: 0.8;
	background: url(../images/arrow-prev.png) center center no-repeat;
	background-size: 100% auto;
}
#slideshow_owl .owl-nav .owl-next{
	position: absolute;
	top: 0;
	right: 32.2%;
	width: 60px;
	height: 60px;
	opacity: 0.8;
	background: url(../images/arrow-next.png) center center no-repeat;
	background-size: 100% auto;
}

#slideshow_owl2 .owl-nav {
	position: absolute;
	width: 100%;
	top: calc(50% - 24px);
	left: 0;
	right: 0;
	height: 40px;
	margin: auto;
	z-index: -1;
}
#slideshow_owl2 .owl-nav .owl-prev{
	position: absolute;
	top: 0;
	left: -10px;
	width: 10px;
	height: 20px;
	opacity: 0.8;
	background: url(../images/btn_owl_prev.png) center center no-repeat;
	background-size: 100% auto;
}
#slideshow_owl2 .owl-nav .owl-next{
	position: absolute;
	top: 0;
	right: -10px;
	width: 10px;
	height: 20px;
	opacity: 0.8;
	background: url(../images/btn_owl_next.png) center center no-repeat;
	background-size: 100% auto;
}
.index .banner .item{

}
/*#slideshow_owl .owl-dots{
	position: absolute;
	bottom: -30px;
	right: 100px;
	z-index: 20;
}
#slideshow_owl .owl-dot{
	display: inline-block;
}
#slideshow_owl .owl-dot span{
	display: inline-block;
	width: 60px;
	height: 3px;
	margin: 0 10px;
	background: #e6e6e6;
}
#slideshow_owl .owl-dot.active span{
	background: #3dbbca;
}*/

.index .banner .slide-pic{
	display: block;
}
.index .section1{
	background: #22282d;
}
.index .section1 .wrapper{
	padding: 100px 0;
}
.index .section1 h2{
	font-size: 2rem;
	color: #a6a86b;
	margin-top: 0;
	padding-top: 0;
}
.index .section1 article{
	font-size: 1rem;
	line-height: 1.8rem;
	color: #FFF;
}
.index .section1 .main-pic{
	display: block;
	width: 90%;
	margin: 10% 0 0 5%;
}

.index .section2{
	background: url(../images/bg3.jpg) center center no-repeat;
	background-size: cover;
}
.index .section2 .wrapper{
	padding: 100px 0;
}
.index .section2 .small-txt{
	color: #707070;
	font-size: 0.8rem;
}
.index .section2 h2{
	font-size: 2rem;
	color: #000000;
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 40px;
}
.index .section2 h3{
	font-size: 2rem;
	color: #000000;
	margin-top: 0;
	padding-top: 0;
}
.index .section2 .scroll-wrap{
	min-height: 600px;
}
.index .section2 .scroll-wrap #slideshow_owl2{
	display: none;
}
.index .section2 .scroll-wrap .year-item-m{
	text-align: center;
	font-weight: bold;
}
.index .section2 .scroll-wrap .year-item-m.action{
	color: #a6a86b;
}
.index .section2 .scroll-wrap .year-list{
	position: relative;
	float: left;
	width: 150px;
	height: 630px;
	overflow: hidden;
	padding: 15px 0;
}
.index .section2 .scroll-wrap .year-list .line{
	position: absolute;
	top: 40px;
	right: 46px;
	height: 550px;
	border-left: 3px #a6a86b solid;
	z-index: 1;
}
.index .section2 .scroll-wrap .year-list .btn-up{
	position: absolute;
	top: 0px;
	left: 40px;
	z-index: 3;
	cursor: pointer;
}
.index .section2 .scroll-wrap .year-list .btn-down{
	position: absolute;
	bottom: 0px;
	left: 40px;
	z-index: 3;
	cursor: pointer;
}
.index .section2 .scroll-wrap .year-list .year-wrap{
	position: relative;
	z-index: 2;
}
.index .section2 .scroll-wrap .year-list .year-item{
	position: relative;
	font-size: 1.5rem;
	font-weight: bold;
	color: #707070;
	padding: 10px;
	width: 120px;
	cursor: pointer;
}
.index .section2 .scroll-wrap .year-list .year-item::after{
	content: "";
	position: absolute;
	right: 10px;
	top: 22px;
	width: 14px;
	height: 14px;
	border-radius: 7px;
	background: #707070;
}
.index .section2 .scroll-wrap .year-list .year-item.action{
	color: #a6a86b;
}
.index .section2 .scroll-wrap .year-list .year-item.action::after{
	background: #a6a86b;
}
.index .section2 .scroll-wrap .info{
	margin-left: 150px;
	padding: 20px;
	border: 1px #a6a86b solid;
	box-sizing: border-box;
	vertical-align: top;

}
.index .section2 .scroll-wrap .scroll-content{
	visibility: hidden;
  	opacity: 0;
  	position: absolute;
  	transition: visibility 0s, opacity 2s linear;
}
.index .section2 .scroll-wrap .scroll-content.action{
	visibility: visible;
  	opacity: 1;
  	position: static;
}
.index .section2 .scroll-wrap .info h3{
	font-size: 1.8rem;
	color: #a6a86b;
	margin-top: 0;
	padding-top: 0;
}
.index .section2 .scroll-wrap .info article{
	padding: 20px;
	background: #FFF;
	color: #707070;
	margin-bottom: 20px;
	text-align: left;
	line-height: 2rem;
}
.index .section2 .scroll-wrap .info .img{
	display: block;
	width: 100%;
	max-width: 460px;
	margin: 0 auto;
}

.index .section3{
	/*background: url(../images/pic01.jpg) center center no-repeat;*/
	background-size: cover;
}
.index .section3 .bg{
	background: rgba(0,0,0, 0.6);
	padding: 200px 0;
}
.index .section3 h2{
	font-size: 2.6rem;
	font-weight: normal;
	color: #FFF;
	margin-bottom: 0;
}
.index .section3 .txt{
	font-size: 1.4rem;
	color: #FFF;
	margin-bottom: 60px;
}
.index .section3 .input-search{
	display: inline-block;
	width: 500px;
	height: 56px;
	box-sizing: border-box;
	vertical-align: top;
	padding: 15px;
	font-size: 16px;
	border: none;
}
.index .section3 input[type=submit]{
	display: inline-block;
	width: 56px;
	height: 56px;
	background: url(../images/btn-search.jpg) center center no-repeat;
	vertical-align: top;
	border: none;
}
.search-wrapper input[type=submit]:hover{
	background: url(../images/btn-search.jpg) center center no-repeat;
}

/*=[page list]=========*/
.list .banner{
	height: 200px;
	background: url(../images/banner.jpg) center center no-repeat;
	background-size: cover;
}
.list .item{
	box-sizing: border-box;
	padding: 10px;
	margin-bottom: 10px;
	text-align: center;
}
.list .item h3{
	color: #3e464c;
	font-size: 1.4rem;
	min-height: 120px;
}
.list .item h3 a{
	color: #3e464c;
	font-size: 1.4rem;
}
.list .item .wrap-img{
	background-color: #CCC;
}
.list .item .item-img{
	height: 300px;
	object-fit: contain;
}
.list .aside-nav{
	padding-right: 40px;
	padding-bottom: 60px;
}
.list .aside-nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.list .aside-nav ul li{
	list-style: none;
	padding: 5px 0;
	margin: 0;
}
.list .aside-nav > ul > li{
	font-size: 1.5rem;
	color: #3e464c;
	padding: 20px 0;
	border-bottom: 1px #CCC solid;
	background: url(../images/arrow-down.png) right 20px top 35px no-repeat;
	cursor: pointer;
}
.list .aside-nav > ul > li.open{
	background: url(../images/arrow-up.png) right 20px top 35px no-repeat;
}
.list .aside-nav ul ul{
	display: none;
	padding-top: 10px;
}
.list .aside-nav > ul > li.open ul{
	display: block;
}
.list .aside-nav ul ul > li{
	color: #727272;
}
.list .aside-nav ul ul > li span{
	font-size: 1.1rem;
}
.list .aside-nav ul ul > li span.current{
	color: #a6a86b;
}
.list .aside-nav ul ul > li.current a{
	color: #a6a86b;
}
.list .aside-nav ul ul ul li{
	padding-left: 20px;
}

/*=[page detail]=========*/
.detail .banner{
	height: 200px;
	background: url(../images/banner.jpg) center center no-repeat;
	background-size: cover;
}
.detail .section1{
	padding-bottom: 60px;
}
.detail .section1 .article-title{
	font-size: 2rem;
	color: #727272;
	margin-bottom: 40px;
}
.detail .section1 .article-subtitle{
	font-size: 0.8rem;
	color: #3e464c;
}
.detail .section1 .article-content{
	font-size: 1.2rem;
	line-height: 2.2rem;
	color: #221815;
	margin-bottom: 60px;
}
.detail .section1 .img-wrap{
	padding: 20px;
	margin-bottom: 60px;
	background: #EEE;
}
.detail .section1 .img-wrap .main-img{
	width: 100%;
}
.detail .section1 .img-wrap .thumbnail-wrap{
	font-size: 0;
}
.detail .section1 .img-wrap .thumbnail-img{
	display: inline-block;
	width: 30%;
	margin: 10px 1.5%;
	height: 150px;
	box-sizing: border-box;
	object-fit: contain;
	border: 1px #FFF solid;
	cursor: pointer;
}
.detail .section1 .img-wrap .img-info{
	margin-top: 20px;
	padding: 10px 0;
}
.detail .section1 .img-wrap .item-number{
	font-size: 0.8rem;
}
.detail .section1 .img-wrap .img-info .btn-zoom{
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../images/zoom.png) center center;
	background-size: cover;
	float: right;
	margin-left: 20px;
}
.detail .section1 .img-wrap .img-info .btn-download{
	display: inline-block;
	width: 30px;
	height: 30px;
	background: url(../images/download.png) center center;
	background-size: cover;
	float: right;
	margin-left: 20px;
}
.detail .section1 .aside-nav{
	padding-left: 40px;
}
.detail .section1 .aside-nav ul{
	list-style: none;
	padding: 0;
	margin: 0;
}
.detail .section1 .aside-nav ul li{
	font-size: 1.2rem;
	color: #3e464c;
	padding: 20px 0;
	border-bottom: 1px #CCC solid;
}
.detail .section1 .aside-nav ul li span{
	color: #727272;
	display: block;
}

.detail .section2{
	background: #a6a86b;
	color: #071433;
}
.detail .section2 .wrapper{
	padding: 60px;
}
.detail .section2 .wrapper h2{
	font-size: 2rem;
}
.detail .section2 .btn-report{
	float: right;
	margin-top: 40px;
}
.detail .section2 .report-form{
	margin-top: 80px;
	display: none;
}
.detail .section2 .report-form label{
	padding: 10px;
	display: block;
}
.detail .section2 .report-form input[type=text],
.detail .section2 .report-form input[type=file]{
	padding: 20px;
	margin-top: 10px;
}
.detail .section2 .report-form textarea{
	padding: 20px;
	margin-top: 10px;
}

/*=[footer]=========*/
footer{
	background: #22282d;
}
footer .wrapper{
	padding: 100px 0;
	color: #FFF;
	font-size: 1rem;
	line-height: 2rem;
}
footer .nav a{
	color: #FFF;
	display: block;
	margin-bottom: 10px;
}
footer .contact{
	border-top: 1px #555 solid;
	padding-top: 10px;
}
footer .copyright{
	border-top: 1px #555 solid;
	padding-top: 10px;
	color: #979797;
	padding-top: 50px;
	text-align: right;
}

#scrollup{
	position: fixed;
	right: 20px;
    bottom: 20px;
	z-index:20;
	display: none;
	width: 48px;
	height: 48px;
	background: url(../images/btn-totop.jpg) center center no-repeat;
	cursor:pointer;
}


/*=[common]=========*/
label{
	font-size: 16px;
	color: #000;
}
input, textarea, select{
	width: 100%;
	background: #EFEFEF;
	box-sizing: border-box;
	padding: 8px;
	margin-bottom: 30px;
	border-radius: 0;
	border: 1px #919192 solid;
	box-sizing: border-box;
	resize: none;
}
input[type=radio],input[type=checkbox]{
	width: initial;
	margin-bottom: 0;
}
input[type=submit],input[type=button]{
	color: #FFF;
	border: none;
	background: #22282d;
	cursor: pointer;
	max-width: 212px;
	text-align: center;
	padding: 12px;
	border: 1px #22282d solid;
}
input[type=submit]:hover, input[type=button]:hover{
	background: transparent;
	color: #22282d;
}
input[type=reset]{
	color: #999;
	border: 1px #CCC solid;
	background: #FFF;
	cursor: pointer;
}
input[type=reset]:hover{
	background: #CCC;
}
select{
	appearance: none;
	-moz-appearance: none; /* Firefox */
	-webkit-appearance: none;
	background: url(../images/select-arrow.png) #919192 right center no-repeat;
	background-size: auto 100%; 
}
.radio-wrapper{
	display: inline-block;
	margin: 20px 20px 0 0;
}
.checkbox-wrapper{
	display: inline-block;
	min-width: 160px;
	margin: 0 10px 0 0;
}
.checkbox-group{
	margin-bottom: 20px;
}

.mobile{display: none !important;}

.cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.9);
	z-index: 10;
	display: none;
}
.cover2{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0,0,0, 0.9);
	z-index: 10;
	display: none;
}
/*
.cover .alert{
	position: absolute;
	width: 400px;
	height: 300px;
	padding: 30px 20px;
	text-align: center;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #FFF;
	z-index: 100;
}
.cover .alert .title{
	color: #3DB9AE;
	font-size: 22px;
	margin: 10px 0;
}
.cover .alert .txt{
	padding: 10px 0;
}
.cover .alert .btn-close{
	position: absolute;
	font-size: 26px;
	top: 10px;
	right: 10px;
	z-index: 100;
	color: #3DB9AE;
}
.cover .alert .btn{
	width: 200px;
}
*/
.btn{
	display: inline-block;
	padding: 15px 0;
	min-width: 200px;
	text-align: center;
	font-size: 18px;
	line-height: 18px;
	color: #FFF;
	background: #d8bb7e;
	border: 1px #d8bb7e solid;
	box-sizing: border-box;
}
.btn:hover{
	color: #d8bb7e;
	background: transparent;
}
.btn-back{
	display: inline-block;
	margin: 30px 0;
	text-decoration: underline!important;
}
.btn-back:hover{

}
.btn-report{
	color: #FFF;
	border: 1px #22282d solid;
	background: #22282d;
}
.btn-report:hover{
	color: #22282d;
	background: transparent;
}

.no-gap{margin: 0;}
.reverse-div{float: right;}
.hide{opacity: 0;}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.desktop-block{display: block;}

.pages{
	margin: 60px 0;
}
.pages a{
	display: inline-block;
	color: #000;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	padding: 7px 0;
	box-sizing: border-box;
	text-align: center;
	border: 1px #333 solid;
	font-weight: bold;
}
.pages a.current, .pages a:hover{
	border: none;
}

.breadcrumb{
	padding: 20px 0;
}


.scrollimation{
	opacity: 0;
	margin-left: 100px;
	transition: all 1s;
}
/*
.scrollimation:nth-child(1) {
	transition-delay: .1s
}
.scrollimation:nth-child(2) {
	transition-delay: .3s
}
.scrollimation:nth-child(3) {
	transition-delay: .5s
}
.scrollimation:nth-child(4) {
	transition-delay: .7s
}
.scrollimation:nth-child(5) {
	transition-delay: .9s
}
.scrollimation:nth-child(6) {
	transition-delay: 1.1s
}
.scrollimation:nth-child(7) {
	transition-delay: 1.3s
}
*/
.scrollimation.in{
	opacity: 1;
	margin-left: 0;
}

@media screen and (max-width: 1200px) {
	header .wrapper{
		max-width: none;
		width: calc(100% - 50px);
	}
}

@media screen and (max-width: 1000px) {
	.pad{ display: none !important;}
	.main-nav ul li{
		flex-basis: 50%; /*default auto*/
	}
}

@media screen and (max-width: 767px) {
	.desktop{ display: none !important;}
	.mobile{ display: block !important;}
	.desktop-block{display: inline-block;}
	.reverse-div{float: none;}
	
	.wrapper{
		width: 100%;
		padding: 0;
	}
	.search-wrapper{
		max-width: 300px;
	}
	header .wrapper{width: 100%; max-width: none; padding: 0 20px;}
	header .topbar{display: none;}
	header .navbar .logo{font-size: 1rem}


	.main-nav{
		padding: 30px;
	}
	.main-nav ul li{
		flex-basis: 100%; /*default auto*/
		margin-bottom: 20px;
	}

	footer .wrapper{
		width: 100%;
		padding: 10px 20px 40px;
	}
	footer .top-border{

	}
	footer .wrapper *{
		font-size: .8rem;
	}

	.pages{
		margin: 10px 0;
	}

	.section-title{
		font-size: 28px;
		margin: 20px 0;
	}


	.btn{
		display: inline-block;
		padding: 10px 0;
		min-width: 100px;
		text-align: center;
		line-height: 14px;
		font-size: 14px;
		border: 1px #919192 solid;
	}

	/*=page====*/
	/*.index .banner .slide-pic{
		display: block;
		width: 100%;
		margin-left: 0;
	}
	.index .banner .info-box{
		position: absolute;
		width: 100%;
		margin-left: 0;
	}
	.index .banner .info-box .banner-title{
		width: 80%;
		font-size: 2rem;
		margin: 0 auto 30px;
		line-height: 3rem;
		color: #000000;
		text-align: center;
	}
	.index .banner .info-box.w3-display-left{text-align: center;}
	.index .banner .txt{
		margin-left: 0;
		font-size: 1rem;
		text-align: center;
	}
	#slideshow_owl .owl-dots{
		position: absolute;
		width: 100%;
		bottom: 30px;
		right: 0;
		left: 0;
		z-index: 20;
		text-align: center;
	}*/
	#slideshow_owl{
		width: 100vw;
		margin-left: 0;
		height: auto;
	}
	#slideshow_owl::after,
	#slideshow_owl::before{
		content: none;
	}
	#slideshow_owl .owl-nav .owl-prev{
		left: 10px;
		width: 40px;
		height: 40px;
	}
	#slideshow_owl .owl-nav .owl-next{
		right: 10px;
		width: 40px;
		height: 40px;
	}

	.index .section1 .wrapper{
		width: 100%;
		padding: 20px 20px 60px;
	}
	.index .section1 h2{
		font-size: 1.5rem;
		text-align: center;
	}

	.index .section2 .wrapper{
		width: 100%;
		padding: 20px;
	}
	.index .section2 h2{
		font-size: 1.5rem;
		text-align: center;
	}
	.index .section2 .scroll-wrap #slideshow_owl2{
		display: block;
	}
	.index .section2 .scroll-wrap .year-list{
		display: none;
	}
	.index .section2 .scroll-wrap .info{
		margin-left: 0;
		padding: 20px;
		border: 1px #a6a86b solid;
		box-sizing: border-box;
		vertical-align: top;
	}
	.index .section2 .scroll-wrap .info h3{
		font-size: 1.2rem;
	}
	.index .section3 .wrapper{
		width: 100%;
		padding: 60px 20px;
	}
	.index .section3 .input-search{
		width: 200px;
	}
	.list .aside-nav{
		padding: 10px;
	}
	.list .item h3{
		font-size: 1rem;
		min-height: 100px;
	}
	.list .item h3 a{
		font-size: 1rem;
	}
	.list .item .item-img{
		height: 200px;
	}
	.detail .section1 .wrapper{
		padding: 20px;
	}
	.detail .section1 .aside-nav{
		padding-left: 0;
	}
	.detail .section2 .wrapper{
		padding: 60px 20px;
	}
	.detail .section2 .wrapper h2{
		font-size: 1.4rem;
	}
	
}
