html,
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	box-sizing: border-box;
	line-height: 1.5;
	font-family:
		system-ui, -apple-system, BlinkMacSystemFont, segoe ui, Roboto,
		Helvetica, Arial,
		sans-serif, apple color emoji, segoe ui emoji, segoe ui symbol;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

img {
	border: 0 none;
}

a {
	text-decoration: none;
	background-color: transparent
}

a:active,
a:hover {
	outline: 0
}

p {
	margin: 0;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
	-webkit-appearance: button;
	cursor: pointer
}

button[disabled],
html input[disabled] {
	cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0
}

input {
	line-height: normal
}

input[type=checkbox],
input[type=radio] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	height: auto
}

input[type=search] {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
	-webkit-appearance: textfield
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

ul {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	outline: none;
}

/* .clear {
	clear: both;
} */
a:focus {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.clear::after {
	content: "";
	display: block;
	clear: both;
}

.container {
	max-width: 1220px;
	padding: 0 10px;
	margin: 0 auto;
	min-height: 1px;
}

.container::after {
	content: "";
	clear: both;
	display: block;
}

.sx {
	width: 100%;
	/* min-width: 1200px; */
}

/* 导航 */
nav {
	width: 100%;
}

.top-1 {
	width: 100%;
	height: 400px;
		border-bottom: 1px solid #0B624B;
}

.top-1 .logo {
	display: inline-block;
	margin-top: 22px;
}

.sou {
	float: right;
	position: relative;
	margin-top: 40px;
}

.sou input {
	background: none;
	border: none;
}

.sou input[type="text"] {
	position: absolute;
	width: 250px;
	right: 40px;
	top: 0;
	border-radius: 20px 0 0 20px;
	height: 40px;
	background-color: #FFFFFF;
	box-shadow: 0 0 15px 1px rgba(255, 255, 255, 0.4);
	padding: 0 10px;
	opacity: 0;
	z-index: -1;
}

.sou input[type="submit"] {
	width: 40px;
	height: 40px;
	background: url(../image/sou.png) no-repeat center center;
	border-radius: 0 20px 20px 0;
}

.sou:hover input[type="text"] {
	opacity: 1;
	z-index: 2;
}

.sou:hover input[type="submit"] {
	box-shadow: 0 0 15px 2px rgba(255, 255, 255, 0.5);
}

.menu {
	display: none;
	float: right;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	margin-top: 10px;
	border-radius: 5px;
	position: relative;
	line-height: 1;
	cursor: pointer;
}

.menu span {
	display: inline-block;
	width: 30px;
	height: 3px;
	background: #FFFFFF;
	left: 4px;
	top: 8px;
	border-radius: 10px;
	position: absolute;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.menu span:nth-child(2) {
	top: 18px;
}

.menu span:nth-child(3) {
	top: 28px;
}

.menu.cur span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 7px);
}

.menu.cur span:nth-child(2) {
	opacity: 0;
}

.menu.cur span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -7px);
}


.top-2 {
	width: 100%;
	height: 49px;
	background: #c50a11;
	position: relative;
}

.top-2>ul {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}

.top-2>ul>li {
	flex: 1;
	height: 100%;
}

.top-2>ul>li>a {
	display: inline-block;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 49px;
	font-size: 1.1875rem;
	color: #FFFFFF;
}

.top-2>ul>li:hover>a {
	background: rgba(0, 0, 0, 0.3);
}

/* 二级菜单 */
.top-2>ul>li .sub {
	display: none;
	position: absolute;
	top: 49px;
	
	
	background-color: rgba(243, 243, 243, 0.94);
	/* background-image: linear-gradient(135deg,rgba(0, 172, 183, 0.5),rgba(0, 106, 200, 0.5)); */
	box-shadow: 0 5px 10px 2px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	
	z-index: 50;
}

.top-2>ul>li .sub .tu {
	float: left;
	display: inline-block;
	width: 300px;
	height: 200px;
	overflow: hidden;
}

.top-2>ul>li .sub .tu img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.top-2>ul>li .sub .tu:hover img {
	transform: scale(1.1, 1.1);
}

.top-2>ul>li .sub .img {
	max-width: 320px;
	float: left;
	margin: 0 40px;
	margin-top: 55px;
}

.sub ul {
	width: 132.5px;
	min-height: 200px;
	float: left;
	
	box-sizing: border-box;
	
}

.sub ul span {
	display: inline-block;
	width: 100%;
	font-size: 1.375rem;
	color: #007457;
	font-weight: 600;
	position: relative;
	margin-bottom: 1rem;
	line-height: 56px;
}

.sub ul span::before {
	position: absolute;
	content: "";
	left: 0;
	top: 90%;
	width: 35px;
	height: 4px;
	background-color: #007457;
}

.sub ul li {
	box-sizing: border-box;
	background-image: url(../image/nav-l.png);
	background-repeat: no-repeat;
	background-position: left center;
	width:100%;
	min-width: 30%;
	text-align:center;
	float: left;
}

.sub ul li a {
	font-size: 1rem;
	color: #333333;
	line-height: 56px;
	position: relative;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.sub ul li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: 100%;
	width: 0;
	height: 2px;
	background-color: #007457;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.sub ul li a:hover {
	color: #007457;
	margin-left: 5px;
}

.sub ul li a:hover::before {
	width: 100%;
}




/* banner */
.banner {
	width: 100%;
	height: 542px;
	position: relative;
}

.banner>a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	left: 10%;
	display: inline-block;
}

.banner>a.rig {
	left: auto;
	right: 10%;
}

.banner .swiper-container {
	width: 100%;
	height: 100%;
}

.banner .swiper-container .swiper-wrapper {
	width: 100%;
	height: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide {
	width: 100%;
	height: 100%;
	position: relative;
}

.banner .swiper-container .swiper-wrapper .swiper-slide>img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	height: 100%;
	min-width: 100%;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .ban {
	position: absolute;
	left: 50%;
	height: 100%;
	max-width: 1200px;
	transform: translateX(-50%);
	z-index: 15;
}

@-webkit-keyframes and_none1 {
	from {
		-webkit-transform: translate(-50%, -50%) scale3d(1, 1, 1);
		transform: translate(-50%, -50%) scale3d(1, 1, 1);
	}

	to {
		-webkit-transform: translate(-50%, -50%) scale3d(1.2, 1.2, 1);
		transform: translate(-50%, -50%) scale3d(1.2, 1.2, 1);
	}
}

.banner .swiper-slide-active>img {
	z-index: 10;
	-webkit-animation: and_none1 10s linear 0s both;
	animation: and_none1 10s linear 0s both;
}

.banner .swiper-container .swiper-wrapper .swiper-slide .ban img {
	position: absolute;
	opacity: 0;
	z-index: 15;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-ms-transition: all 1s;
	transition: all 1s;
}

/* swiper-one */
#swiper-one .ban img:nth-child(1) {
	right: 156px;
	top: 106px;
	transform: translate(50px, 0);
	transition-delay: 0.5s;
}

#swiper-one .ban img:nth-child(2) {
	right: 210px;
	top: 106px;
	transform: translate(50px, 0);
	transition-delay: 1s;
}

#swiper-one .ban img:nth-child(3) {
	right: 245px;
	top: 132px;
	transform: translate(0, 0) scale(0, 0);
	transition-delay: 1.5s;
}

.banner .swiper-container .swiper-wrapper .swiper-slide-active .ban img {
	opacity: 1;
	transform: translate(0, 0) scale(1, 1) !important;
}

.banner .swiper-pagination {
	bottom: 20px;
}

.banner .swiper-pagination span {
	width: 12px;
	height: 12px;
	margin: 0 9px !important;
	opacity: 1;
	background: #FFFFFF;
}

.banner .swiper-pagination .swiper-pagination-bullet-active {
	background: #1a56ba;
}

.new-1 {
	width: 100%;
	margin: 36px 0;
	overflow: hidden;
}

.new-11 {
	float: left;
	width: 790px;
	width: calc(100% - 410px);
}

.bt-1 {
	width: 100%;
	height: 50px;
	margin-bottom: 30px;
	line-height: 50px;
}

.bt-1 p {
	float: left;
	height: 100%;
}

.bt-1 p i {
	display: inline-block;
	width: 50px;
	height: 50px;
	border-radius: 5px;
	background: #c50a11;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 23px;
	float: left;
}

.bt-1 p i img {
	max-width: 100%;
	max-height: 100%;
}

.bt-1 p span:nth-child(2) {
	display: inline-block;
	height: 50px;
	font-size: 1.125rem;
	color: #333333;
}

.bt-1 p span:nth-child(3) {
	font-size: 1rem;
	color: #C5C5C5;
	text-transform: uppercase;
	padding: 0px 5px;
	background: url(../image/newico-7.png) no-repeat right top;
}

.bt-1 a {
	float: right;
	font-size: 0.875rem;
	color: #444444;
}

.bt-1 a:hover {
	color: #000000;
	font-weight: 600;
}

#new11 {
	width: 100%;
	height: 536px;
}

#new11 .swiper-wrapper {
	height: 504px;
}

#new11 .swiper-slide {
	height: 237px;
	overflow: hidden;
	border-top: 2px solid #c50a11;
}

#new11 a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
	padding-top: 20px;
}

#new11 a * {
	-webkit-transition: all 0.8s;
	-moz-transition: all 0.8s;
	-ms-transition: all 0.8s;
	transition: all 0.8s;
}

#new11 a .det {
	position: absolute;
	left: 0;
	top: -102%;
	opacity: 0;
	height: 100%;
	width: 100%;
}

#new11 a .det img {
	width: 100%;
	height: 100%;
	display: block;
}

#new11 a .det p {
	position: absolute;
	left: 0;
	bottom: -40px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: rgba(0, 0, 0, 0.6);
	padding: 0 15px;
	font-size: 16px;
	color: #FFFFFF;
	opacity: 0;
	transition-delay: 0.8s;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

#new11 a p:nth-child(1) {
	font-size: 1.125rem;
	color: #c50a11;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 2;
}

#new11 a span {
	display: inline-block;
	font-size: 0.875rem;
	color: #888888;
	line-height: 2.5;
}

#new11 a p:nth-child(3) {
	line-height: 2;
	font-size: 1rem;
	color: #444444;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 4;
}

#new11 .swiper-pagination {
	bottom: 0;

}

#new11 .swiper-pagination span {
	opacity: 1;
	width: 12px;
	height: 12px;
	background: #E4E4E4;
}

#new11 .swiper-pagination .swiper-pagination-bullet-active {
	background: #c50a11;
}

#new11 .swiper-slide-active a .det,
#new11 a:hover .det {
	top: 0;
	opacity: 1;
}

#new11 .swiper-slide-active a .det p,
#new11 a:hover .det p {
	bottom: 0;
	opacity: 1;
}

#new11 .swiper-slide-active a p:nth-child(1),
#new11 a:hover p:nth-child(1) {
	margin-top: 60px;
	opacity: 0;
}

#new11 .swiper-slide-active a span,
#new11 a:hover span {
	margin-top: 20px;
	opacity: 0;
}

#new11 .swiper-slide-active a p:nth-child(3),
#new11 a:hover p:nth-child(3) {
	margin-top: 30px;
	opacity: 0;
}

.new-12 {
	width: 380px;
	float: right;
}

.new121 {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 170PX;
	margin-bottom: 10px;
	border-top: 2px solid #1a56ba;
	background: #F2F2F2;
	padding: 0 23px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new121::before,
.new121::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #1a56ba;
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new121::after {
	transform: scale(1.1);
}

.new121 span {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: 20px;
	color: #1a56ba;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 10px;
	position: relative;
	z-index: 10;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new121 a {
	position: relative;
	z-index: 10;
	display: inline-block;
	width: 100%;
	height: 30px;
	line-height: 30px;
	background: url(../image/new2.png) no-repeat left center;
	padding: 0 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
	font-size: 1rem;
	color: #333333;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new121:hover::before,
.new121:hover::after {
	opacity: 1;
	transform: scale(1);
}

.new121:hover {
	overflow: inherit;
	border-color: #F2F2F2;
}

.new121:hover span {
	color: #FFFFFF;
}

.new121:hover a {
	color: #FFFFFF;
	background-image: url(../image/newico-8.png);
}

.new121 a:hover {
	padding-left: 25px;
	font-weight: 600;
}

.zt {
	width: 100%;
	height: 120px;
	margin-bottom: 37px;
}

#swiperzt {
	width: 100%;
	height: 120px;
}

#swiperzt a {
	display: inline-block;
	width: 100%;
	height: 100%;
}

#swiperzt a img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

#swiperzt a:hover img {
	transform: scale(1.1);
}

.new-21 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 20px;
}

.new-22 {
	width: 31.66%;
}

.new-22 .bt-1 {
	margin-bottom: 20px;
}

.new-22 ul {
	width: 100%;
}

.new-22 ul li {
	width: 100%;
	height: 37px;
	line-height: 37px;
}

.new-22 ul li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new-22 ul li a p {
	float: left;
	padding-left: 16px;
	background: url(../image/new-dian.png) no-repeat left center;
	font-size: 1rem;
	color: #333333;
	width: 80%;
	width: calc(100% - 80px);
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new-22 ul li a span {
	float: right;
	display: inline-block;
	font-size: 0.875rem;
	color: #888888;
}

.new-22 ul li:hover p {
	font-weight: 600;
	color: #1a56ba;
	padding-left: 20px;
}

.new-22 ul li:hover a {
	padding: 0 5px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
}

.new-22 ul li:hover span {
	color: #000000;
}
.new-23{
	width: 380px;
float:right;
}

.new-23 .bt-1 {
	margin-bottom: 20px;
}

.new-23 ul {
	width: 100%;
}

.new-23 ul li {
	width: 100%;
	height: 37px;
	line-height: 37px;
}

.new-23 ul li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new-23 ul li a p {
	float: left;
	padding-left: 16px;
	background: url(../image/new-dian.png) no-repeat left center;
	font-size: 1rem;
	color: #333333;
	width: 80%;
	width: calc(100% - 80px);
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.new-23 ul li a span {
	float: right;
	display: inline-block;
	font-size: 0.875rem;
	color: #888888;
}

.new-23 ul li:hover p {
	font-weight: 600;
	color: #1a56ba;
	padding-left: 20px;
}

.new-23 ul li:hover a {
	padding: 0 5px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
}

.new-23 ul li:hover span {
	color: #000000;
}

.qie {
	float: left;
}

.qie span {
	display: inline-block;
	margin-left: 50px;
	width: 117px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	background: #F1F1F1;
	cursor: pointer;
	font-size: 1rem;
	color: #A1A1A1;
	border-radius: 50px;
}

.qie span.on {
	color: #FFFFFF;
	background: #1a56ba;
}

.new-3 {
	overflow: hidden;
}

.new-31 {
	width: 100%;
	height: 380px;
	margin-bottom: 50px;
	position: relative;
}

.new-31>a {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	left: -90px;
}

.new-31>a.rig {
	left: auto;
	right: -90px;
}

.new-31 .new-32 {
	display: none;
}

.new-31 .new-32.on {
	display: block;
}

#new3 {
	width: 100%;
	height: 100%;
}

#new3 a {
	display: inline-block;
	height: 100%;
	border: 1px solid #D5D5D5;
	padding: 5px;
	text-align: center;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

#new3 a .img {
	width: 100%;
	height: 255px;
	overflow: hidden;
}

#new3 a .img img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

#new3 a span {
	display: inline-block;
	font-size: 1rem;
	color: #1a56ba;
	font-weight: 600;
	line-height: 40px;
}

#new3 a p {
	font-size: 0.875rem;
	color: #666666;
}

#new3 a:hover .img img {
	transform: scale(1.1);
}

#new3 a:hover {
	border-color: #1a56ba;
	box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.3);
	padding-top: 2px;
}

/* footer */
footer {
	width: 100%;
	min-height: 95px;
	background: #000000;
	text-align: center;
	padding: 20px 0;
}

footer p {
	line-height: 2;
	font-size: 0.875rem;
	color: #C6C6C6;
}

footer p span {
	display: inline-block;
	margin: 0 10px;
}

footer p a {
	font-size: 0.875rem;
	color: #C6C6C6;
}

footer p a:hover {
	color: #FFFFFF;
}

/* inside */
.inside {
	min-height: calc(100vh - 266px);
}

.in-top {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
}

.in-top img {
	height: 100%;
	min-width: 100%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.in-tiao {
	width: 100%;
	min-height: 51px;
	line-height: 50px;
	background: #F5F5F5;
	border-bottom: 1px solid #D7D7D7;
}

.in-top-qie {
	float: left;
	height: 50px;
}

.in-top-qie a {
	display: inline-block;
	height: 100%;
	padding: 0 30px;
	font-size: 1.0625rem;
	color: #333333;
	float: left;
}

.in-top-qie a:hover {
	background: rgba(0, 116, 87, 0.3);
	color: #FFFFFF;
}

.in-top-qie a.cur {
	background: #1a56ba!important;
	color: #FFFFFF;
}

.in-tiao p {
	float: right;
	font-size: 0.9375rem;
	color: #666666;
}

.in-tiao p a {
	color: #666666;
	padding-right: 20px;
	background: url(../image/in-jt1.jpg) no-repeat right 5px center;
}

.in-tiao p a:last-child {
	background: none;
	padding-right: 0;
}

.in-tiao p a:hover {
	text-decoration: underline;
	font-weight: bold;
	color: #333333;
}

.in-gk {
	width: 100%;
	padding-top: 47px;
}

.in-gk-1 {
	width: 100%;
	position: relative;
	z-index: 20;
}

.ingk1-lef {
	float: left;
	position: relative;
	z-index: 10;
}

.ingk1-lef .img {
	width: 500px;
	padding: 18px 0;
	border: 1px solid #1a56ba;
	text-align: center;
	background: #FFFFFF;
}

.ingk1-rig {
	float: right;
	width: calc(97.25% - 500px);
}

.ingk1-rig .bt {
	width: 100%;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 15px;
}

.ingk1-rig .bt::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 3px;
	background: #1a56ba;
}

.ingk1-rig .bt p {
	font-size: 1.375rem;
	color: #1a56ba;
	font-weight: bold;
	letter-spacing: 0.5rem;
}

.ingk1-rig .bt span {
	font-size: 0.625rem;
	font-weight: 600;
	color: #1a56ba;
	text-transform: uppercase;
}

.ingk1-rig>p {
	font-size: 0.9375rem;
	color: #555555;
	text-indent: 2rem;
	line-height: 3;
}

/* in-gk-2 */
.in-gk-2 {
	width: 100%;
	background: #59A794;
	padding: 48px 0 65px;
	position: relative;
	margin-top: -50px;
}

.ingk2-lef {
	float: left;
	padding-top: 30px;
	width: calc(95.83% - 361px);
}

.ingk2-lef p {
	text-indent: 2rem;
	color: #FFFFFF;
	font-size: 0.9375rem;
	line-height: 2.7;
}

.ingk2-rig {
	float: right;
	width: 361px;
	padding-left: 16px;
}

.ingk2-rig .img {
	position: relative;
	float: right;
}

.ingk2-rig .img img {
	position: relative;
	z-index: 10;
}

.ingk2-rig .img::after {
	content: "";
	position: absolute;
	left: -16px;
	top: 16px;
	width: 100%;
	height: 100%;
	border: 1px solid #8BC2B4;
}

/* in-gk-3 */
.in-gk-3 {
	width: 100%;
	padding: 78px 0 48px;
}

.ingk3 {
	float: right;
	width: calc(100% - 18px);
	border: 1px solid #59A794;
	padding: 30px;
}

.ingk3 .img {
	float: left;
	width: 455px;
	position: relative;
	margin-left: -48px;
	margin-top: -60px;
}

.ingk3 .det {
	width: calc(100% - 455px);
	float: right;
}

.ingk3 .det span {
	font-size: 1.1875rem;
	color: #22997C;
	background-color: #FFFFFF;
	position: absolute;
	padding: 0 10px;
	margin-top: -44px;
}

.ingk3 .det p {
	font-size: 0.9375rem;
	color: #333333;
	text-indent: 2rem;
	line-height: 2.3;
}

.in-gk-4 {
	padding: 50px 0;
	background-color: #EBF5F3;
}

.ingk4-lef {
	float: left;
	width: calc(97.16% - 492px);
}

.ingk4-lef .bt {
	font-size: 1.1875rem;
	color: #FFFFFF;
	text-align: center;
	line-height: 48px;
	background: #59A794;
	padding: 0 10px;
}

.ingk4-lef p {
	margin-top: 30px;
	text-indent: 2rem;
	font-size: 0.9375rem;
	color: #333333;
	line-height: 2.8;
}

.ingk4-rig {
	width: 492px;
	padding-left: 12px;
	float: right;
}

.ingk4-rig .img {
	width: 100%;
	position: relative;
}

.ingk4-rig .img img {
	width: 100%;
	position: relative;
	z-index: 10;
}

.ingk4-rig .img::after {
	content: "";
	position: absolute;
	left: -12px;
	top: 12px;
	width: 100%;
	height: 100%;
	background-color: #FFFFFF;
}

.in-1 {
	width: 100%;
	background: url(../image/in1bg.png);
	background-size: 100% auto;
	min-height: 100%;
}

.in-jg {
	width: 100%;
	padding-top: 50px;
}

.in-jg-1 {
	width: 100%;
	box-shadow: 0 0 6px #D7D7D7;
	background-color: #FFFFFF;
	margin-bottom: 34px;
	background-repeat: no-repeat;
	background-image: url(../image/injg-2.png);
	background-position: right -30px bottom -45px;
	position: relative;
}

.in-jg-title {
	position: absolute;
	width: 120px;
	height: 100%;
	line-height: 120px;
	float: left;
	background-color: #117962;
	text-align: center;
	background-image: url(../image/injg-1.png);
	background-position: center bottom;
}

.in-jg-title p {
	width: 100%;
	height: 100%;
	writing-mode: tb-rl;
	writing-mode: vertical-rl;
	letter-spacing: 0.5rem;
	font-size: 1.5rem;
	color: #FFFFFF;
}

.in-jg-content {
	height: 100%;
	padding: 0 30px;
	float: right;
	width: calc(100% - 120px);
}

.injg-item {
	width: calc(50% - 25px);
	height: 75px;
	line-height: 75px;
	float: left;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #D7D7D7;
}

.in-jg-1 .injg-item span {
	display: inline-block;
	width: 50%;
}

.in-jg-2 .injg-item span {
	width: auto;
text-overflow: ellipsis;
white-space: nowrap;
word-break: keep-all;
overflow: hidden;
}

.injg-item:nth-child(even) {
	margin-left: 50px;
}

.injg-item span {
	font-size: 1.0625rem;
	color: #333333;
}

.in-jg-2 .injg-item span:nth-child(1) {
	width: 60px;
	text-align: center;
}

.in-jg-2 .injg-item span:nth-child(3) {
	width: 90px;
	text-align: center;
}

.in-jg-2 .injg-item:nth-child(1),
.in-jg-2 .injg-item:nth-child(2) {
	border: none;
	height: 45px;
	line-height: 70px;
}

.in-jg-3 .injg-item span:nth-child(1) {
	width: 170px;
	text-align: center;
}

.in-jg-3 .injg-item span:nth-child(2) {
	width: 90px;
	text-align: center;
}

.in-jg-3 .injg-item span:nth-child(3) {
	width: 90px;
	text-align: center;
}


.in-js {
	width: 100%;
	overflow: hidden;
	padding-top: 36px;
}

.injs-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.injs-item {
	width: 49.16%;
	border: 1px solid #D5D5D5;
	background: #FFFFFF;
	padding: 5px;
	margin-bottom: 30px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.injs-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.injs-item .img {
	float: left;
	width: 205px;
	height: 255px;
	overflow: hidden;
}

.injs-item .img img {
	width: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.injs-item:hover .img img {
	transform: scale(1.1);
}

.injs-item .det {
	padding-left: 4%;
	float: left;
	width: calc(100% - 205px);
}

.injs-item .bt {
	display: inline-block;
	font-size: 1.1875rem;
	color: #1a56ba;
	font-weight: bold;
	margin-top: 10px;
}

.injs-item .det1 {
	font-size: 0.9375rem;
	color: #666666;
	border-bottom: 1px dashed #BEBEBE;
	line-height: 3;
	padding-bottom: 10px;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

.injs-item .det2 {
	font-size: 0.875rem;
	color: #666666;
	line-height: 2.2;
	margin-top: 10px;
	position: relative;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 5;
}

.injs-item .det2 a {
	display: inline-block;
	font-size: 0.875rem;
	color: #EDC00D;
	background-color: #FFFFFF;
	padding: 0 5px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.injs-item .det2 a:hover {
	font-weight: bold;
}

.in-page {
	width: 100% !important;
	text-align: center !important;
	padding: 30px 0 !important;
	/* float: left; */
}

.in-page span {
	all:unset !important;
	display: inline-block !important;
	font-size: 0.875rem !important;
	color: #666666 !important;
	padding: 10px 20px !important;
	margin: 0 5px !important;
	border: 1px solid #EEEEEE !important;
	background-color: #FFFFFF !important;
}

.in-page .this-page {
	border: none !important;
	background: #EBA621 !important;
	color: #FFFFFF !important;
}

.in-page a {
	all:unset !important;
	cursor: pointer !important;
	display: inline-block !important;
	font-size: 0.875rem !important;
	color: #666666 !important;
	padding: 10px 20px !important;
	margin: 0 5px !important;
	border: 1px solid #EEEEEE !important;
	background-color: #FFFFFF !important;
	-webkit-transition: all 0.3s !important;
	-moz-transition: all 0.3s !important;
	-ms-transition: all 0.3s !important;
	transition: all 0.3s !important;
}

.in-page a:hover {
	background-color: rgba(235, 166, 33, 0.5) !important;
	border-color: #B5CAE0 !important;
	color: #FFFFFF !important;
}
.in-page table tr td tr td:nth-child(1) {
	display:none;
}

.in-2 {
	width: 100%;
}

.in-newdet1 {
	padding-top: 40px;
	padding-bottom: 53px;
}

.in-newdet2 {
	width: 100%;
	border: 1px solid #EDEDED;
	background-color: #FFFFFF;
	padding: 30px 2.3%;
}

.in-new-title {
	border-bottom: 1px dashed #D5D5D5;
	text-align: center;
	padding-bottom: 30px;
}

.in-new-title .bt {
	font-size: 1.5rem;
	color: #333333;
	font-weight: bold;
}

.in-new-title .xbt {
	font-size: 1.125rem;
	color: #666666;
	line-height: 3;
}

.in-new-title .xq {
	font-size: 0.875rem;
	color: #999999;
}

.in-new-title .xq span {
	margin: 0 5px;
}

.in-new-det {
	width: 100%;
	padding: 30px 0;
}

.in-new-det p {
	width: 100%;
	font-size: 1rem;
	color: #333333;
	text-indent: 2rem;
	line-height: 2;
}

.in-new-det img {
	max-width: 100% !important;
	margin: 20px 0;
	
height:auto;
}

.in-zy {
	width: 100%;
	padding-top: 60px;
}

.in-zy-title {
	width: 100%;
	text-align: center;
	overflow: hidden;
	padding-bottom: 53px;
}

.in-zy-title .det {
	display: inline-block;
	max-width: 100%;
	position: relative;
}

.in-zy-title .det::before {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	left: 105%;
	top: 50%;
	background-color: #D5D5D5;
}

.in-zy-title .det::after {
	content: "";
	position: absolute;
	height: 1px;
	width: 100%;
	right: 105%;
	top: 50%;
	background-color: #D5D5D5;
}

.in-zy-title .det span {
	display: inline-block;
	position: relative;
	font-size: 1.1875rem;
	color: #333333;
	background-color: #FFFFFF;
	padding: 5px 15px;
	cursor: pointer;
}

.in-zy-title .det span::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -15px;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-top: 15px solid #1a56ba;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	opacity: 0;
}

.in-zy-title .det span.cur {
	background: #1a56ba;
	color: #FFFFFF;
}

.in-zy-title .det span.cur::after {
	opacity: 1;
}

.in-zy-item {
	display: none;
}

.in-zy-item.cur {
	display: block;
}

.in-zy-lef {
	width: 66.66%;
	float: left;
}

.in-zy-rig {
	width: 33.34%;
	float: left;
}

.in-zy-content {
	padding-bottom: 67px;
}

.in-zy-item-1 {
	width: 100%;
	height: 300px;
	background-color: #FFFFFF;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.in-zy-item-1:hover {
	position: relative;
	z-index: 20;
	box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.2);
}

.in-zy-item-1 .img {
	width: 50%;
	height: 100%;
	float: left;
	overflow: hidden;
}

.in-zy-item-1 .img img {
	margin-left: 50%;
	transform: translateX(-50%);
	min-width: 100%;
	height: 100%;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	transition: all 0.3s;
}

.in-zy-item-1:hover .img img {
	transform: translateX(-50%) scale(1.1);
}

.in-zy-item-1 .det {
	width: 50%;
	height: 100%;
	float: left;
	position: relative;
	padding: 20px;
	z-index: 10;
}

.in-zy-item-1 .det::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
}

.in-zy-item-1 .det .bt {
	font-size: 1.1875rem;
	color: #1a56ba;
}

.in-zy-item-1 .det p {
	font-size: 0.9375rem;
	color: #333333;
	line-height: 2.3;
	margin-top: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 6;
}

.in-zy-item-1 .det p span {
	font-weight: bold;
}

.in-zy-item-1 .det a {
	font-size: 0.9375rem;
	color: #DCBC0A;
	float: right;
}

.in-zy-item-1 .det a:hover {
	font-weight: bold;
}

.in-zy-rig .in-zy-item-1 {
	height: 600px;
}

.in-zy-rig .img,
.in-zy-rig .det {
	width: 100%;
	height: 50%;
}

.in-zy-jt-lef::after {
	top: 50%;
	transform: translateY(-50%);
	left: -30px;
	border-right: 30px solid #F7463A;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
}

.in-zy-jt-rig::after {
	top: 50%;
	transform: translateY(-50%);
	right: -30px;
	border-left: 30px solid #55A9F3;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
}

.in-zy-jt-top::after {
	left: 50%;
	transform: translateX(-50%);
	top: -30px;
	border-bottom: 30px solid #FEC888;
	border-left: 15px solid transparent;
	border-right: 15px solid transparent;
}

.in-list2 {
	width: 100%;
	padding-top: 40px;
}

.in-list2 ul {
	width: 100%;
	/* float: left; */
	overflow: hidden;
}

.in-list2 ul li {
	float: left;
	width: 31.5%;
	margin-bottom: 40px;
}

.in-list2 ul li a {
	display: inline-block;
	width: 100%;
}

.in-list2 ul li:nth-child(3n-1) {
	margin-left: 2.75%;
	margin-right: 2.75%;
}

.in-list2 ul li .img {
	width: 100%;
	height: 260px;
	overflow: hidden;
}

.in-list2 ul li .img img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.in-list2 ul li p {
	background: #FFFFFF;
	text-align: center;
	width: 100%;
	height: 60px;
	line-height: 60px;
	font-size: 1rem;
	color: #333333;
	position: relative;
	overflow: hidden;
}

.in-list2 ul li p::before,
.in-list2 ul li p::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: #EBA621;
	left: 0;
	top: -100%;
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}

.in-list2 ul li p::after {
	top: 100%;
}

.in-list2 ul li p span {
	display: inline-block;
	width: 100%;
	position: relative;
	z-index: 10;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

.in-list2 ul li:hover .img img {
	transform: scale(1.1);
}

.in-list2 ul li:hover p {
	color: #FFFFFF;
}

.in-list2 ul li:hover p::before,
.in-list2 ul li:hover p::after {
	opacity: 1;
	top: 0;
}

.innew-list {
	width: 100%;
	padding-top: 40px;
}

.innew-det {
	width: 100%;
	background: #FFFFFF;
	margin-bottom: 50px;
	float: left;
}

.innew-list ul {
	width: 100%;
}

.innew-list ul li {
	padding: 0 2.5%;
	width: 100%;
	height: 120px;
}

.innew-list ul li:hover {
	box-shadow: 0 0 15px 1px #ccc;
	position: relative;
	z-index: 10;
}

.innew-list ul li:hover .det .bt {
	color: #1a56ba;
	font-weight: bold;
}

.innew-list ul li:hover .det p,
.innew-list ul li:hover label span,
.innew-list ul li:hover label p {
	color: #1a56ba;
}

.innew-list ul li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding: 30px 0;
	border-bottom: 1px solid #E5E5E5;
}

.innew-list ul li .img {
	display: none;
}

.innew-list ul li .time {
	display: none;
}

.innew-list .det {
	float: left;
	height: 100%;
	width: calc(100% - 102px);
	padding-right: 5px;
}

.innew-list .det .bt {
	font-size: 1.125rem;
	color: #333333;
	display: inline-block;
	width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

.innew-list .det p {
	width: 100%;
	font-size: 0.875rem;
	color: #888888;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

.innew-list label {
	width: 102px;
	float: left;
	height: 100%;
	text-align: center;
	border-left: 1px dashed #CCCCCC;
}

.innew-list label span {
	font-size: 2.125rem;
	color: #888888;
	line-height: 40px;
}

.innew-list label p {
	font-size: 0.875rem;
	color: #888888;
}

.innew-list2 {
	width: calc(97.08% - 266px);
	float: left;
	padding-top: 38px;
}

.innew-list2 ul {
	width: 100%;
}

.innew-list2 ul li {
	width: 100%;
	padding: 0 3.33%;
	height: 200px;
}

.innew-list2 ul li:hover {
	box-shadow: 0 0 15px 1px #ccc;
	position: relative;
	z-index: 10;
}

.innew-list2 ul li:hover .det .bt {
	color: #1a56ba;
	font-weight: bold;
}

.innew-list2 ul li:hover .det .bt::after {
	background-color: #1a56ba;
}

.innew-list2 ul li:hover .det p,
.innew-list2 ul li:hover .det .time {
	color: #1a56ba;
}

.innew-list2 ul a {
	display: inline-block;
	width: 100%;
	height: 100%;
	border-bottom: 1px solid #E5E5E5;
	padding: 30px 0;
}

.innew-list2 label {
	display: none;
}

.innew-list2 .img {
	width: 210px;
	height: 100%;
	overflow: hidden;
	float: left;
}

.innew-list2 .img img {
	min-width: 100%;
	height: 100%;
	margin-left: 50%;
	transform: translateX(-50%);
}

.innew-list2 .det {
	float: left;
	width: calc(100% - 210px);
	padding-left: 3%;
}

.innew-list2 .det .bt {
	display: inline-block;
	width: 100%;
	position: relative;
	font-size: 1.125rem;
	color: #333333;
	line-height: 44px;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}

.innew-list2 .det .bt::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 3px;
	background: #6E6E6E;
}

.innew-list2 .det .time {
	display: inline-block;
	width: 100%;
	font-size: 0.875rem;
	color: #888888;
	line-height: 2.5;
}

.innew-list2 .det p {
	font-size: 0.875rem;
	color: #888888;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 2;
}
.innew-list2 li.noimg .det {
	width: 100%;
	padding-left: 0;
}

.in-rig {
	width: 266px;
	float: right;
	padding-top: 38px;
}

.in-rig-1 {
	margin-bottom: 32px;
}

.inrig-bt {
	width: 100%;
	background: #1a56ba;
	text-align: center;
	color: #FFFFFF;
	line-height: 44px;
}

.inrig-new {
	width: 100%;
	background-color: #FFFFFF;
	padding: 0 13px;
	padding-bottom: 20px;
}

.inrig-new li {
	padding: 0 13px;
	height: 80px;
	padding: 17px 0;
	border-bottom: 1px dashed #D5D5D5;
}

.inrig-new li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	padding: 0 15px;
	background: url(../image/inrig-dian.png) no-repeat 4px 10px;
	font-size: 0.875rem;
	color: #555555;
	line-height: 1.8;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	/* autoprefixer: off */
	-webkit-box-orient: vertical;
	/* autoprefixer: on */
	-webkit-line-clamp: 2;
}
.inrig-new li a:hover {
	font-weight: bold;
	color: #333333;
}
.inrig-swiper {
	width: 100%;
	height: 175px;
	margin-top: 13px;
}
.innewswiper {
	height: 100%;
	width: 100%;
}
.innewswiper a {
	display: inline-block;
	width: 100%;
	height: 100%;
	position: relative;
}
.innewswiper img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}
.innewswiper .swiper-slide:hover img {
	transform: scale(1.1);
}
.innewswiper p {
	position: absolute;
	width: 100%;
	bottom: -34px;
	opacity: 0;
	left: 0;
	background: rgba(0,0,0,0.6);
	line-height: 34px;
	font-size: 0.875rem;
	color: #FFFFFF;
	padding: 0 5px;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
}
.innewswiper .swiper-slide-active p {
	transition-delay: 0.5s;
	bottom: 0;
	opacity: 1;
}


.dang {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background: url("../images/dang-1.png") no-repeat center top;
	padding-top: 389px;
}
.d-nav {
	width: 100%;
	height: 81px;
	padding-top: 14px;
	margin-bottom: 33px;
	background: url(../image/dangnav-bg.png) no-repeat center bottom;
}
.d-nav ul {
	width: 100%;
	line-height: 67px;
	display: flex;
	justify-content: space-between;
}
.d-nav ul li {
	flex: 1;
}
.d-nav ul li a {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
	 color: #FFFFFF;
	 text-align: center;
}
.d-nav ul li:hover a {
	background: rgba(0,0,0,0.2);
	border-radius: 10px;
}
.d-nav .container {
	max-width: 1200px;
}
.d-1 {
	width: 100%;
}
.d1-lef {
	width: 536px;
	height: 322px;
	float: left;
}
.innewswiper .swiper-pagination {
	width: auto;
	left: auto;
	right: 10px;
	bottom: 5px;
}
.innewswiper .swiper-pagination span {
	border-radius: 0;
	width: 10px;
	height: 10px;
	background: #FFFFFF;
	opacity: 1;
}
.innewswiper .swiper-pagination .swiper-pagination-bullet-active {
	background: #CC0000;
}
.d1-lef p {
	padding-right: 90px;
}
.d1-rig {
	float: right;
	width: calc(100% - 558px);
}
.d-new {
	width: 100%;
	height: 322px;
	border: 1px solid #D7D7D7;
	border-top: none;
}
.d-bt {
	width: 100%;
	height: 50px;
	border-top: 2px solid #CC0000;
	border-bottom: 1px solid #D7D7D7;
	background-color: #FFF3D9;
	padding-top: 11px;
}
.d-bt span {
	display: inline-block;
	font-size: 1rem;
	color: #CC0000;
	width: 138px;
	height: 37px;
	line-height: 37px;
	text-align: center;
	cursor: pointer;
}
.d-bt span:first-child {
	margin-left: 25px;
}
.d-bt span.cur {
	background: #CA0000;
	color: #FFFFFF;
}
.d-bt p {
	float: right;
	padding-right: 17px;
}
.d-bt p a {
	line-height: 37px;
	font-size: 0.75rem;
	color: #0E0E0E;
	display: none;
}
.d-bt p a.cur {
	display: block;
}
.d-bt p a:hover {
	font-weight: bold;
}
.d-ul {
	width: 100%;
	padding: 15px 0;
}
.d-ul ul {
	width: 100%;
}
.d-ul ul li {
	width: 100%;
	line-height: 40px;
	padding: 0 25px;
	height: 40px;
}
.d-ul ul li:hover {
	box-shadow: 0 0 15px 1px rgba(0,0,0,0.2);
}
.d-ul ul li:hover a p {
	color: #CC0000;
	font-weight: bold;
}
.d-ul ul li a {
	padding-left: 15px;
	display: inline-block;
	width: 100%;
	height: 100%;
	background: url(../image/dang-2.png) no-repeat left center;
}
.d-ul ul li a p {
	font-size: 0.875rem;
	color: #0E0E0E;
	float: left;
	width: calc(100% - 90px);
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}
.d-ul ul li a span {
	font-size: 0.75rem;
	color: #858585;
	float: right;
}
.d-2 {
	margin: 24px 0;
}
.d2-lef {
	float: left;
	width: 48.98%;
}
.d2-rig {
	float: right;
	width: 48.98%;
}
.d-foot {
	margin-top: 48px;
	width: 100%;
	background: #CC0000;
	text-align: center;
}
.d-foot p {
	padding: 24px 0;
	font-size: 0.875rem;
	color: #FFFFFF;
}
.d-foot span {
	display: inline-block;
	margin: 0 5px;
}
.d-foot a {
	font-size: 0.875rem;
	color: #FFFFFF;
}
.d-foot a:hover {
	text-decoration: underline;
}
.d-list {
	width: 100%;
}
.d-item {
	width: 100%;
	margin-top: 18px;
	padding: 0 14px;
	display: none;
}
.d-list .d-item.cur {
	display: block;
}
#dnew {
	height: 250px;
	padding: 10px 10px;
	width: 100%;
}
#dnew a.swiper-slide {
	display: inline-block;
	width: 100%;
	height: 100%;
}
#dnew a.swiper-slide img {
	width: 100%;
	height: 100%;
}
#dnew > a {
	position: absolute;
	top: 95px;
	transform: translateY(-50%);
	left: 10px;
	z-index: 10;
}
#dnew > a.dnewrig {
	left: auto;
	right: 10px;
}
#dnew > a img {
	width: 30px;
}
#dnew .img {
	width: 100%;
	height: 190px;
}
#dnew .img img {
	width: 100%;
	height: 100%;
}
#dnew p {
	width: 100%;
	line-height: 40px;
	font-size: 0.875rem;
	color: #0E0E0E;
	text-align: center;
	text-overflow: ellipsis;
	white-space: nowrap;
	word-break: keep-all;
	overflow: hidden;
}
#dnew a.swiper-slide:hover {
	box-shadow: 0 0 10px 2px rgba(0,0,0,0.2);
}
#dnew a.swiper-slide:hover p {
	color: #CC0000;
	font-weight: bold;
}

.dang .in-tiao {
	background: linear-gradient(to bottom,#FFF9F1,#F3F3F3);
	border-color: rgba(204, 0, 0,0.3);
}
.dang .in-top-qie a.cur {
	background: #CC0000!important;
}
.dang .in-top-qie a:hover {
	background: rgb(204, 0, 0, 0.5);
}
.dang .innew-list ul li:hover .det .bt {
	color: #CC0000;
	font-weight: bold;
}

.dang .innew-list ul li:hover .det p,
.dang .innew-list ul li:hover label span,
.dang .innew-list ul li:hover label p {
	color: #CC0000;
}
.dang .inrig-bt {
	background: #CC0000;
}
.dang .innew-list2 ul li:hover .det .bt {
	color: #CC0000;
	font-weight: bold;
}

.dang .innew-list2 ul li:hover .det .bt::after {
	background-color: #CC0000;
}

.dang .innew-list2 ul li:hover .det p,
.dang .innew-list2 ul li:hover .det .time {
	color: #CC0000;
}
.dang .in-new-title .bt {
	color: #CC0000;
}
.dang .in-list2 ul li p::before,.dang  .in-list2 ul li p::after {
	background: #CC0000;
}
.new-31 {
height: auto!important;
}