/* LESS Document */
html {
	font-size: 14px;
}

@media (max-width: 1200px) {
	html {
		font-size: 11px;
	}
}

@media (max-width: 768px) {
	html {
		font-size: 8px;
	}
}

/*---- animated 动画 ----*/
.animated {
	animation-fill-mode: forwards;
}

/*---- root ----*/
#root {
	overflow: hidden;
}

.index-title {
	display: block;
	position: relative;
	top: 100px;
	margin: 3.5rem auto 0 auto;
	z-index: 100;
}

/*---- Header ----*/
#header {
	position: fixed;
	width: 100%;
	height: 100px;
	z-index: 1000;
	background-color: #000;
}

#header .navbar-inverse {
	border: none;
}

#header .navbar #logo {
	height: auto;
	padding: 15px;
}

#header .navbar #logo img {
	height: 70px;
}

#header .navbar .navbar-toggle {
	margin: 12px 15px;
	padding: 10px;
	color: #FFF;
	border: none;
}

#header .navbar .navbar-nav li.active {
	border-bottom: 2px solid #00bfb3;
}

#header .navbar .navbar-nav li.active a {
	background-color: inherit;
}

#header .navbar .navbar-nav .dropdown .dropdown-menu {
	min-width: inherit;
	width: 100%;
	background-color: rgba(1, 191, 179, 1);
}

#header .navbar .navbar-nav .dropdown .dropdown-menu>li>a {
	color: #fff;
	background-color: rgba(1, 191, 179, 1);
	padding: 10px 0;
	text-align: center;
}

#header .navbar .navbar-nav .dropdown .dropdown-menu>li>a:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

#header .navbar-top .form-control {
	color: rgba(255, 255, 255, 0.8);
}

#header .navbar-top .form-control:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

#header .navbar-top .form-control:focus {
	color: #000;
	background-color: rgba(255, 255, 255, 0.6);
}

#header .navbar-top .btn {
	margin-right: 15px;
	color: #000;
}

#header .navbar-top .btn:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

#header .navbar-top .form-control,
#header .navbar-top .btn {
	height: 29px;
	font-size: 12px;
	line-height: 17px;
	background: #ebeaea;
	border: none;
	border-radius: 0;
	transition: background-color 0.3s;
}

#header .navbar-top a {
	display: inline-block;
	padding: 7px;
	font-size: 18px;
	line-height: 18px;
	color: #9d9d9d;
	transition: color .3s;
}

#header .navbar-top a:hover {
	text-decoration: none;
	/* color: #FFF;*/
}

/*---- banner ----*/
#banner {
	position: relative;
}

#banner .btn-box {
	position: absolute;
	right: 7.8rem;
	top: 4rem;
	z-index: 100;
}

#banner .btn-box .search-box {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: space-between;
	position: absolute;
	top: 5px;
	right: 100%;
	background-color: #FFF;
	border-radius: 22px;
	overflow: hidden;
	opacity: 0;
}

#banner .btn-box .search-box input {
	display: block;
	padding: .5rem 1rem;
	font-size: 1.2rem;
	line-height: 2.1rem;
	border: none;
}

#banner .btn-box .search-box button {
	padding: 0 .7rem;
	display: block;
	font-size: 2.1rem;
	background-color: inherit;
	border: none;
}

#banner .btn-box .btn {
	padding: .5rem .7rem;
	font-size: 2.1rem;
	color: rgba(0, 0, 0, 0.9);
	border-radius: 3px;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0);
	transition: all .3s;
}

#banner .btn-box .btn:hover {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 2px 10px #000000;
}

#banner #menu {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	width: 35%;
	min-width: 200px;
	margin: auto;
	background-color: rgba(3, 3, 3, 0.8);
	z-index: 999;
}

#banner #menu.animated {
	display: block;
}

#banner #menu .content {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-around;
	position: relative;
	width: 70%;
	height: 100%;
}

#banner #menu .logo {
	display: block;
	position: relative;
	text-align: center;
}

#banner #menu .logo img {
	max-height: 7.14rem;
	margin: auto;
}

#banner #menu a {
	color: rgba(255, 255, 255, 0.8);
	transition: color .3s;
}

#banner #menu a:hover {
	text-decoration: none;
	color: #ffffff;
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

#banner #menu nav {
	list-style: none;
	text-align: center;
}

#banner #menu nav a {
	display: inline-block;
	padding: 1rem .8rem;
	font-size: 1.4rem;
}

#banner #menu .share {
	text-align: center;
}

#banner #menu .share a {
	display: inline-block;
	padding: .5rem;
	font-size: 1.6rem;
}

#banner #menu .close-btn {
	display: block;
	position: absolute;
	padding: .5rem;
	font-size: 1.6rem;
	top: 5%;
	right: 10%;
	color: #FFF;
	background-color: rgba(255, 255, 255, 0);
	transition: background-color 0.3s;
	border-radius: 5px;
}

#banner #menu .close-btn:hover {
	background-color: rgba(255, 255, 255, 0.2);
}

#banner .slide {
	position: relative;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#banner .slide .visible-xs {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-position: center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-ms-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#banner .fp-controlArrow {
	display: block;
	margin: 0 15px;
	border: none;
	color: #FFF;
}

#banner .fp-controlArrow::before {
	font-family: "Ionicons";
	font-size: 3rem;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	speak: none;
	text-transform: none;
	text-rendering: auto;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#banner .fp-controlArrow.fp-prev {
	left: 0;
}

#banner .fp-controlArrow.fp-prev::before {
	content: "\f3d2";
}

#banner .fp-controlArrow.fp-next::before {
	content: "\f3d3";
}

#banner .fp-slidesNav ul li {
	margin: 0 .3rem;
	width: 3.5rem;
	height: 5px;
}

#banner .fp-slidesNav ul li a {
	background: #A5A5A5;
	box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

#banner .fp-slidesNav ul li a:hover {
	background: #CCC;
}

#banner .fp-slidesNav ul li a.active {
	background: #FFF;
	cursor: default;
}

#banner .fp-slidesNav ul li a span {
	display: none;
}

/*---- index-1 ----*/
#index-1 {
	position: relative;
}

#index-1 .index-title {
	position: absolute;
	margin: 30px 0 0 0;
	left: 50%;
	transform: translateX(-50%);
}

#index-1 .flex-sm {
	position: absolute;
	top: 100px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#index-1 .left-box {
	overflow: hidden;
	margin-top: -100px;
}

#index-1 .left-box img {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#index-1 .right-box {
	position: relative;
}

#index-1 .right-box .tab-box {
	padding-top: 100px;
	padding-bottom: 10rem;
	height: 100%;
}

#index-1 .right-box .tab-box>.box {
	position: absolute;
	margin: 100px auto 200px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

#index-1 .right-box .article {
	white-space: normal;
	padding: 60px;
}

#index-1 .right-box .nav {
	position: absolute;
	top: inherit;
	bottom: 15px;
	height: auto !important;
	left: 15px;
	right: 15px;
	margin: auto;
	z-index: 100;
}

#index-1 .right-box .nav .item {
	cursor: pointer;
	padding: 15px;
	text-align: center;
	font-size: 1rem;
}

#index-1 .right-box .nav .item img {
	max-width: 60px;
	border: 5px solid rgba(250, 240, 215, 0);
	border-radius: 50%;
}

#index-1 .right-box .nav .item p {
	margin: 5px 0;
}

#index-1 .right-box .nav .item:hover img {
	border-color: #EEE;
}

#index-1 .right-box .nav .item.active {
	color: #00bfb3;
}

#index-1 .right-box .nav .item.active img {
	border-color: #faf0d7;
}

/*---- index-2 ----*/
#index-2 {
	position: relative;
}

#index-2 .index-title {
	position: absolute;
	margin: 2rem 0 0 0;
	left: 50%;
	transform: translateX(-50%);
}

#index-2 .flex-md {
	position: absolute;
	top: 190px;
	bottom: 10px;
	left: 0;
	right: 0;
	margin: auto;
	width: 80%;
	max-width: none;
}

#index-2 .left-box {
	position: relative;
	text-align: center;
}

#index-2 .left-box img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 80%;
}

#index-2 .box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 48%;
	height: 48%;
	margin: 1%;
	padding: 35px;
	text-align: center;
	background-color: #FFF;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
	color: #333;
}

#index-2 .box .title {
	margin: 0;
	font-size: 1.4rem;
	font-weight: bold;
}

#index-2 .box .detail {
	font-size: 1rem;
}

#index-2 .box .pdimg {
	flex: auto;
	height: auto;
	position: relative;
}

#index-2 .box .pdimg img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

/*---- index-3 ----*/
#index-3 .index-title {
	position: absolute;
	left: 0;
	right: 0;
	margin: 30px auto 0;
}

#index-3 .flex-sm {
	top: 100px;
	bottom: 10px;
	height: 100%;
	width: 100%;
	max-width: none;
	margin: auto;
}

#index-3 .left .video-box {
	position: absolute;
	margin: 0;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 70%;
	height: auto;
}

#index-3 .left .video-box .control-box a {
	cursor: pointer;
}

#index-3 .left .video-box .control-box .more {
	display: inline-block;
	position: absolute;
	top: 15%;
	margin-left: -10%;
	padding: 0 1.8rem;
	font-size: 1.1rem;
	line-height: 2;
	color: #996D00;
	background-color: #333;
	transition: background-color 0.3s;
}

#index-3 .left .video-box .control-box .more:hover {
	background-color: #000;
}

#index-3 .left .video-box .control-box .play {
	font-size: 3rem;
}

#index-3 .left .video-box video {
	display: block;
}

#index-3 .right {
	position: relative;
}

#index-3 .right .abs-sm {
	top: 50%;
	margin: auto;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	max-width: 580px;
	padding: 40px;
	background-color: rgba(255, 255, 255, 0.6);
}

#index-3 .right .title {
	margin-bottom: 35px;
	padding-bottom: 35px;
	font-size: 1.4rem;
	font-weight: bold;
	border-bottom: 1px solid #000;
}

#index-3 .right .detail {
	margin: 0;
	padding: 0;
	font-size: 1.14rem;
	line-height: 1.87;
	white-space: pre-line;
}

#index-3 .right .page-control {
	margin-top: 40px;
}

#index-3 .right .page-control a.btn {
	display: inline-block;
	width: 5rem;
	height: 3.4rem;
	font-size: 1.7rem;
	line-height: 3.4rem;
	text-align: center;
	border-radius: 0;
	color: #000;
	cursor: pointer;
}

#index-3 .right .page-control a.btn.prev-btn {
	background-color: #E6E6E6;
}

#index-3 .right .page-control a.btn.prev-btn:hover {
	background-color: #CCC;
}

#index-3 .right .page-control a.btn.next-btn {
	background-color: #996D00;
}

#index-3 .right .page-control a.btn.next-btn:hover {
	background-color: #D29400;
}

#index-3 .fp-controlArrow,
#index-3 .fp-slidesNav {
	display: none;
}

/*---- index-4 新闻----*/
#index-4 .index-title {
	position: absolute;
	margin: 30px 0 0 0;
	left: 50%;
	transform: translateX(-50%);
}

#index-4 .container {
	margin-top: 120px;
}

#index-4 .owl-carousel {
	position: relative;
}

#index-4 .owl-carousel .owl-stage {
	top: 50%;
	transform: translate3d(-1170px, -50%, 0px);
}

#index-4 .owl-carousel .owl-nav button {
	position: absolute;
	font-size: 4.5rem;
	top: 50%;
	transform: translateY(-50%);
}

#index-4 .owl-carousel .owl-nav button.owl-prev {
	left: -15px;
	right: auto;
}

#index-4 .owl-carousel .owl-nav button.owl-next {
	left: auto;
	right: -15px;
}

#index-4 .box {
	margin: 15px;
	padding: 30px 15px;
	background-color: #FFF;
	box-shadow: 0 -2px 9px rgba(0, 0, 0, 0.3);
}

#index-4 .box .simg-box {
	height: 180px;
}

#index-4 .box .title {
	font-size: 1.5rem;
	font-weight: bold;
}

#index-4 .box .small {
	font-size: .8rem;
	color: #595959;
}

#index-4 .box .detail {
	height: 40px;
	font-size: 1rem;
	text-align: justify;
	color: #000;
}

#index-4 .box .more-btn {
	margin-top: 20px;
	width: 6.4rem;
	font-size: 1rem;
	line-height: 1.4;
	color: #FFF;
	background-color: #000;
	border: none;
	border-radius: 0;
}

#index-4 .box .more-btn:hover {
	background-color: #333;
}

#index-4 .visible-xs .box {
	display: block;
	padding: 15px;
	color: inherit;
	border-bottom: 1px solid #CCC;
}

#index-4 .visible-xs .box .img-box {
	margin-bottom: 15px;
	height: 140px;
	width: 100%;
}

#index-4 .visible-xs .box .title {
	margin: 0;
	font-size: 1.8rem;
}

#index-4 .visible-xs .box .small {
	font-size: 1.2rem;
}

#index-4 .visible-xs .box .detail {
	font-size: 1.4rem;
}

#index-4 .visible-xs .more-btn {
	padding: .6rem 1.6rem;
	font-size: 1.2rem;
	line-height: 1.4;
	color: #FFF;
	background-color: #000;
	border: none;
	border-radius: 0;
}

#index-4 .visible-xs .more-btn:hover {
	background-color: #333;
}

@media (max-width: 1024px) {
	#index-2 .left-box {
		margin: 15px 0;
	}

	#index-2 .left-box img {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
	}

	#index-2 .right-box {
		align-items: stretch;
	}

	#index-2 .right-box .box {
		display: flex;
		height: auto;
		justify-content: space-between;
	}

	#index-2 .right-box .box .pdimg {
		margin-top: 15px;
	}

	#index-2 .right-box .box .pdimg img {
		display: block;
		position: relative;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
		transform: none;
	}
}

@media (max-width: 768px) {
	#banner .btn-box {
		top: 15px;
		right: 15px;
	}

	#banner .btn-box .search-box {
		top: 0;
	}

	#index-2 .flex-md {
		width: inherit;
	}

	#index-3 .left {
		margin-top: 100px;
	}

	#index-3 .right {
		padding: 0 20px;
	}

	#index-4 .index-title {
		position: relative;
	}

	#index-4 .container {
		margin-top: 0px;
		margin-bottom: 30px;
	}
}

/*---- footer ----*/
#footer {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #00bfb3;
}

#footer p {
	margin: 0;
	padding: 20px 15px;
	font-size: .85rem;
	line-height: 1.5rem;
	text-align: center;
	color: #000;
}

#footer p a {
	color: #000;
}

@media (min-width: 768px) {
	#header .navbar .container .navbar-collapse .navbar-nav a {
		padding: 10px 40px;
	}
}

@media (max-width: 768px) {
	#header {
		height: 70px;
	}

	#header .navbar .container #logo img {
		height: 40px;
	}

	#header .navbar .container .navbar-collapse .navbar-top {
		margin: 0;
	}

	#header .navbar .container .navbar-collapse .navbar-top .form-group {
		display: inline-block;
		width: 80%;
	}

	#header .navbar .container .navbar-collapse .navbar-top .icon {
		margin: 0;
	}

	#header .navbar .container .navbar-collapse .navbar-nav a {
		padding: 10px;
	}

	#footer {
		position: relative;
	}

	.index-title {
		display: block;
		position: relative;
		margin: 0 auto 0 auto;
		z-index: 100;
	}

	#index-1 .index-title {
		top: 0;
	}

	#index-1 .flex-sm {
		position: inherit;
	}

	#index-1 .left-box {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
	}

	#index-1 .left-box img.am-img-responsive {
		position: absolute;
		max-width: none;
		height: 100%;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#index-1 .right-box {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background-color: rgba(255, 255, 255, 0.8);
	}

	#index-1 .right-box .article {
		margin: auto;
		padding: 30px;
		line-height: 250%;
		font-size: 1.4rem;
	}

	#index-1 .right-box .nav .item {
		padding: 5px;
		font-size: 1rem;
	}

	#index-1 .right-box .nav .item img {
		width: 90%;
	}

	#index-1 .right-box .tab-box>.box.active {
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		width: 100%;
		height: 60%;
		overflow: scroll;
	}

	#index-2 .index-title {
		position: relative;
		top: 0;
	}

	#index-2 .flex-md {
		position: inherit;
		top: 80px;
		height: auto;
	}

	#index-3 {
		-webkit-background-size: contain;
		-moz-background-size: contain;
		-ms-background-size: contain;
		-o-background-size: contain;
		background-size: contain;
	}

	#index-3 .index-title {
		top: 30px;
	}

	#index-3 .flex-sm {
		height: auto;
	}

	#index-3 .left {
		position: relative;
		padding: 15px 0;
	}

	#index-3 .left .video-box {
		position: relative;
		top: 0;
		left: 0;
		margin: auto;
		transform: none;
	}

	#index-3 .right {
		background-color: #fff;
	}

	#index-3 .right .abs-sm {
		position: relative;
		left: 0;
		right: 0;
		margin: auto;
		padding: 20px 0;
		transform: none;
	}
}

@media (max-width: 1024px) {
	.index-title {
		height: 50px;
	}

	#index-4 .index-title {
		top: 0;
	}

	#index-4 .am-thumbnail {
		width: 30%;
		margin: 1.5%;
		padding: 10px 5px;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
	}
}

@media (min-width: 1024px) {
	#header .navbar .container {
		display: flex;
		align-items: stretch;
	}

	#header .navbar .navbar-collapse {
		float: left;
		flex: 1;
	}

	#header .navbar .navbar-collapse .navbar-top,
	#header .navbar .navbar-collapse .navbar-bottom {
		clear: both;
	}

	#header .navbar .navbar-collapse .navbar-bottom {
		display: flex;
		flex-wrap: nowrap;
		justify-content: space-between;
		/* width: 100%; */
	}
}

@media (max-width: 1200px) {
	#index-3 {
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-ms-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
	}

	.index-title {
		height: 40px;
	}
}

@media (min-width: 1200px) {
	#index-1 .right-box .article {
		padding: 40px;
		font-size: 1.2rem;
	}

	.index-title {
		height: 60px;
	}
}

@media (min-width: 1400px) {
	#index-1 .left-box {
		max-height: 975px;
	}

	#index-1 .left-box img {
		max-width: none;
		max-height: none;
	}

	.index-title {
		height: auto;
	}
}
