@charset "utf-8";

* {
	padding: 0;
	margin: 0;
	outline: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}


html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	min-height: 100%;
	font-size: 14px;
	line-height: 1.5;
	color: #222;
	background: #fff;
	font-family: 'Microsoft YaHei';
}

.text-primary {
	color: #4A7FF5;
}

img {
	border: 0;
	vertical-align: top;
}

ul {
	margin: 0;
}

li {
	list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
}

a {
	color: #333;
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: none;
	color: #222;
}

input,
button {
	-webkit-appearance: none;
	border-radius: 0;
}

button {
	cursor: pointer;
}

input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

textarea {
	resize: none;
	overflow: auto;
}

input,
button,
textarea,
select {
	border: 0;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
}

/* select {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	white-space: nowrap;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

select::-ms-expand {
	display: none;
} */

table {
	border-collapse: collapse;
}

.scale {
	display: block;
	overflow: hidden;
}

.scale img {
	transition: 0.6s all;
}

.scale:hover img {
	transform: scale(1.06);
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.clear {
	zoom: 1;
}

.clear:after {
	content: '';
	display: block;
	clear: both;
}

.flex-center {
	display: flex;
	align-items: center;
}

.flex {
	display: flex;
	align-items: flex-start;
}

.flex_bd {
	flex: 1;
	min-width: 0;
}


.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 显示两行文字 */
.line-2 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.line-3 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

@media (min-width: 1300px) {
	.container {
		max-width: 1230px;
	}
}


.head {
	position: fixed;
	top: 0;
	z-index: 99;
	left: 0;
	width: 100%;
	background-color: #fff;
}


.head.c-style2 {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.head-top {
	height: 100px;
	padding-top: 20px;
}

.logo-icon {
	display: flex;
	align-items: center;
}


.logo-text {
	margin-left: 10px;
}

.head-top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.head-right .tel {
	font-family: 'MiSans';
	font-style: normal;
	font-weight: 520;
	font-size: 30px;
	line-height: 100%;
	color: #379070;
}

.head-right .label {
	color: #333333;
	font-size: 16px;
	margin-bottom: 4px;
}

.head .navbar {
	padding: 0;
	background-color: #2A6D55;
}

.head .navbar-nav {
	width: 100%;
}

.head .nav-item {
	position: relative;
	flex: 1;
	min-width: 0;
}

.head .nav-item .nav-link {
	font-size: 18px;
	color: #FFFFFF;
	text-align: center;
	position: relative;
	line-height: 30px;
	padding: 10px !important;
}

.head .nav-item.active .nav-link,
.head .nav-item:hover .nav-link {
	background-color: rgba(0, 0, 0, 0.1);
}

.two-nav {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background-color: #2A6D55;
	display: none;
}

.two-nav li {
	position: relative;
}

.two-nav li a {
	color: #fff;
	font-size: 16px;
	display: block;
	line-height: 50px;
	padding: 0 15px;
	text-align: center;
}

.two-nav li a:hover {
	background-color: rgba(0, 0, 0, 0.1);
}


.three-nav {
	position: absolute;
	left: 100%;
	top: 0;
	width: 100%;
	background-color: #2A6D55;
	display: none;
}

.two-nav>li:hover .three-nav {
	display: block;
}

.nav-item:hover .two-nav {
	display: block;
}

.c-switch {
	display: none;
	width: 24px;
	height: 23px;
	cursor: pointer;
	margin-left: 14px;
}

.c-switch i {
	position: relative;
	display: block;
	height: 2px;
	background: #000;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}

.c-switch i:nth-child(1) {
	top: 0;
}

.c-switch i:nth-child(3) {
	bottom: 0;
}

.c-switch i:nth-child(2) {
	margin: 6px 0;
}

body.c-open {
	overflow: hidden;
}

body.c-open .c-switch i:nth-child(2) {
	opacity: 0;
}

body.c-open .c-switch i:nth-child(1) {
	top: 8px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

body.c-open .c-switch i:nth-child(3) {
	bottom: 8px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


.c-open #c-header .navbar {
	position: fixed;
	right: 0;
	top: 60px;
	bottom: 0;
	width: 100%;
	display: block;
	transition: all 0.5s;
}

.c-open #c-header .navbar-collapse {
	display: block;
}

.modal-dialog {
	position: absolute;
	left: 50%;
	top: 50%;
	margin: 0;
}

.modal.fade .modal-dialog {
	transform: translate(-50%, -200%);
}

.modal.show .modal-dialog {
	transform: translate(-50%, -50%);
}

.c-open #c-header .navbar {
	overflow-y: auto;
}

.c-open .head .nav-item .nav-link {
	text-align: left;
	padding: 10px!important;
}

.c-open .two-nav {
	position: relative;
	display: block;
}

.c-open .two-nav li a {
	text-align: left;
	padding-left: 32px;
}


.c-open .three-nav {
	position: relative;
	display: block;
	left: unset;
	top: unset;
}

.c-open .three-nav li a {
	padding-left: 48px;
}

::placeholder {
	color: #999999;
}


.foot {
	background-color: #333333;
	position: relative;
}

.warpper {
	padding-top: 150px;
}

.foot-top .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.foot-top {
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	padding: 24px 0;
}





.foot-nav {
	display: flex;
	align-items: center;
}

.foot-nav a {
	color: #FFFFFF;
	font-size: 14px;
}

.foot-nav span {
	display: inline-block;
	margin: 0 30px;
	width: 1px;
	height: 16px;
	background-color: #fff;
	opacity: 0.1;
}

.foot-copyright a {
	color: #FFFFFF;
	font-size: 14px;
	margin-left: 20px;
	display: inline-block;
}

.foot-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 24px 0;
}

.foot-bottom span,
.foot-bottom a {
	color: #FFFFFF;
	font-size: 14px;
	margin-right: 26px;
	display: inline-block;
}

.foot-about a:hover,
.foot-bottom a:hover,
.foot-top a:hover {
	color: #379070;
}

.foot-bottom span {
	margin-right: 30px;
}


.foot-center .container {
	display: flex;
}

.foot-address {
	padding-top: 42px;
}

.foot-address p {
	color: #FFFFFF;
	font-size: 14px;
	line-height: 2;
	margin: 0;
}

.foot-contact {
	margin-right: 120px;
	white-space: nowrap;
}

.foot-contact .label {
	color: #FFFFFF;
	font-size: 16px;
	margin-bottom: 5px;
}

.foot-contact .label img {
	margin-right: 5px;
}


.foot-contact .tel {
	font-size: 30px;
	color: #fff;
	font-weight: 500;
	line-height: 1;
}

.foot-about {
	width: 280px;
	padding-top: 5px;
	margin-right: 50px;
}

.foot-about h4 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 20px;
}

.foot-about ul {
	display: flex;
	flex-wrap: wrap;
}

.foot-about ul li {
	width: 50%;
}

.foot-about ul li a {
	color: #FFFFFF;
	font-size: 12px;
	line-height: 2;
}

.foot-center {
	padding: 40px 0 60px;
}




.breadcrumb-box {
	background-color: #ffffff;
	padding: 7px 0 8px;
	box-shadow: 0px 2px 4px 0px #0000001A;
}

.breadcrumb {
	margin-bottom: 0;
	background-color: #fff;
	justify-content: flex-end;
}

.breadcrumb-item a {
	color: #333333;
	font-size: 14px;
}

.breadcrumb-item+.breadcrumb-item::before {
	content: '>';
}

.breadcrumb-item.active {
	color: #333333;
}

.main {
	min-height: 500px;
	position: relative;
	padding: 20px 0;
}

.main-left {
	width: 250px;
	margin-right: 20px;
	margin-top: -50px;
	box-shadow: 0px 4px 6px 0px #0000000D;
}

.main-left_head {
	background-image: url('../images/title_bg.png');
	background-repeat: no-repeat;
	background-position: right top;
	background-color: #2A6D55;
	color: #fff;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	line-height: 60px;
}


.main-left_body {
	background: #FFFFFF;
	padding: 20px;
}


.main-nav li {
	margin-bottom: 10px;
}

.main-nav li a {
	color: #333333;
	display: block;
	text-align: center;
	line-height: 50px;
	font-size: 18px;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
}

.main-nav li.active a,
.main-nav li:hover a {
	background: rgba(42, 109, 85, 0.1);
	color: #2A6D55;
	font-weight: bold;
	font-size: 20px;
	border-color: #2A6D55;
}


.main-panel {
	border: 1px solid #E7E7E7;
	border-top: 0;
	padding: 0 20px 20px;
}


.pagination-flex {
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	flex-wrap: wrap;
	margin-top: 20px;
}

.page-total {
	color: #929AA0;
	font-size: 14px;
	line-height: 32px;
	margin-right: 8px;
}

.page-size {
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	width: 88px;
	font-size: 14px;
	height: 32px;
	padding-left: 12px;
	margin-right: 8px;
}

.page-jump {
	color: #929AA0;
	font-size: 14px;
	line-height: 32px;
	margin-left: 8px;
}

.page-jump .form-control {
	text-align: center;
	font-size: 14px;
	width: 48px;
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	display: inline-block;
	padding: 0 8px;
	height: 32px;
	box-shadow: unset;
}

.page-list li {
	display: inline-block;
	margin-right: 6px;
}

.page-link {
	border: 1px solid #E5E5E5;
	border-radius: 5px;
	font-size: 14px;
	color: #929AA0;
	padding: 0 4px;
	min-width: 32px;
	text-align: center;
	line-height: 30px;
	box-shadow: unset!important;
}

.page-link:hover,
.page-link.active {
	background-color: #2A6D55;
	color: #fff;
	border-color: #2A6D55;
}


.page-link .iconfont {
	font-size: 14px;
}









@media (max-width: 992px) {
	.foot-item {
		width: 50%;
	}


	.foot-center .container {
		flex-wrap: wrap;
	}

	.foot-about {
		margin-right: 0;
	}

	.logo-icon img {
		height: 40px;
	}

	.head .nav-item .nav-link {
		font-size: 15px;
		white-space: nowrap;
		padding: 10px 5px !important;
	}
	
	.two-nav li a{
		font-size: 14px;
	}

	.head .nav-item .nav-link .iconfont {
		font-size: 14px;
	}

	.head .navbar-nav {
		flex-direction: row;
	}

	.foot-address {
		padding-top: 12px;
	}

	.foot-about h4 {
		margin-bottom: 12px;
	}

	.main-left_head {
		font-size: 20px;
	}

	.main-nav li a {
		font-size: 16px;
		line-height: 40px;
	}

	.main-nav li.active a,
	.main-nav li:hover a {
		font-size: 18px;
	}

	.main-left {
		width: 220px;
	}
}


@media (max-width: 768px) {
	.c-switch {
		display: block;
		position: fixed;
		right: 15px;
		top: 20px;
	}


	.warpper {
		padding-top: 60px;
	}


	.foot-bottom span {
		display: block;
		margin: 0 0 5px 0;
	}

	.foot-center {
		padding-bottom: 40px;
	}

	.foot-contact {
		margin: 0 0 12px 0;
		width: 100%;
	}

	.foot-top .container {
		align-items: flex-start;
		flex-direction: column;
	}

	.foot-nav {
		margin-bottom: 10px;
	}

	.foot-copyright {
		white-space: nowrap;
	}

	.foot-copyright a {
		margin-left: 5px;
	}

	.foot-copyright a:first-child {
		margin-left: 0;
	}

	.foot-contact .tel {
		font-size: 18px;
	}

	.head-right {
		margin-right: 40px;
	}

	.head-right .tel {
		font-size: 18px;
	}

	.logo-icon img {
		height: 30px;
	}

	.head-right .label,
	.foot-contact .label {
		font-size: 14px;
	}

	.head-right .label img,
	.foot-contact .label img {
		width: 22px;
		height: 22px;
	}

	.head-top {
		height: 60px;
		padding-top: 5px;
	}

	.logo-icon {
		width: 30px;
		height: 30px;
	}

	.navbar-collapse {
		display: none;
	}

	.head .navbar-nav {
		flex-direction: column;
		padding: 20px;
	}
	
	.head .nav-item{
		border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	}

	.logo-text {
		height: 24px !important;
		margin-left: 5px;
	}


	.main-left {
		width: 100%;
		margin-right: 0;
		margin-top: 0;
		margin-bottom: 20px;
	}

	.main-right {
		width: 100%;
	}

	.main>.container {
		flex-direction: column;
	}
	
	.breadcrumb-box{
		padding: 0;
	}
	
	.main-left_head{
		line-height: 50px;
	}
	
	.page-jump,
	.page-size {
		display: none;
	}
}