﻿@charset "utf-8";
body, div, span, h1, h2, h3, h4, h5, h6, p, em, img, strong, b, small, u, i, center, dl, dt, dd, ol, ul, li, sub, sup, tt, var, del, dfn, ins, kbd, q, s, samp, strike, applet, object, iframe, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, blockquote, pre, a, abbr, acronym, address, big, cite, code, mark, audio, video, textarea, select, input {
	margin: 0;
	padding: 0;
	outline: none
}
ol, ul {
	list-style: none;
}
html {
	overflow-x: hidden;
	-webkit-text-size-adjust: none;
}
body {
	color: #565656;
	/*font-family: 'Source Han Sans CN', 'Microsoft YaHei', 'PingFang SC', Arial, 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', STHeitiSC-Light, sans-serif;*/
	font-size: 14px;
	color: #222222
}
img {
	display: block;
	max-width: 100%;
	border: none
}
/*a 链接*/

a {
	text-decoration: none;
	outline: none;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	color: #222222;
}
a:hover {
	color: #c70000;
}
/*居中*/

.juzhong {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}
.juzhong2 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.erduan {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
	align-items: center;
}
.shang {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.xia {
	display: flex;
	align-items: flex-end;
	flex-direction: row;
	justify-content: space-between;
}
.shangzhong {
	display: flex;
	flex-direction: row;
	justify-content: center;
}
.shangzuo {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
}
.shangyou {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
.shangerduan {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.zuo {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
}
.you {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-content: center;
	align-items: center;
}
/*省略号*/
.oneline {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
}
.twoline {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2;
	-webkit-box-orient: vertical;
}
.threeline {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	-webkit-box-orient: vertical;
}
.fourline {
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
}
/*浮动*/
.fl {
	float: left;
	display: inline
}
.fr {
	float: right;
	display: inline
}
.clear {
	clear: both
}
.clearfix {
*zoom:1;
}
.clearfix:after {
	clear: both;
	display: block;
	height: 0;
	visibility: hidden;
	line-height: 0;
	content: '\20';
}
/* HTML5 重置为较旧版本的浏览器 */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* 按钮样式 */

input[type="text"], input[type="button"], button, textarea, select, input[type="checkbox"] {
	font-size: 100%;
	outline: none;
	resize: none;
	/*font-family: "exo_2.0light", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;*/
	-webkit-appearance: none;
}
input[type="button"] {
	cursor: pointer;
	border: 0;
}
input[type="submit"] {
	cursor: pointer;
	border: 0
}
input[type="reset"] {
	cursor: pointer;
	border: 0
}

/*删除火狐下按钮默认样式*/

input[type="reset"]::-moz-focus-inner, input[type="button"]::-moz-focus-inner, input[type="submit"]::-moz-focus-inner, input[type="file"] > input[type="button"]::-moz-focus-inner {
border:none;
padding:0;
}
i, em {
	font-style: normal
}


::-moz-scrollbar {
width: 5px;
height: 5px;
background-color: #c70000;
}
/*定义滚动条轨道 内阴影+圆角*/
::-moz-scrollbar-track {
border-radius: 0px;
background: #f5f5f5;
}
/*定义滑块 内阴影+圆角*/
::-moz-scrollbar-thumb {
border-radius: 0px;
background-color: #c70000;
}
::-ms-scrollbar {
width: 5px;
height: 5px;
background-color: #F5F5F5;
}
/*定义滚动条轨道 内阴影+圆角*/
::-ms-scrollbar-track {
border-radius: 0px;
background: #000;
}
/*定义滑块 内阴影+圆角*/
::-ms-scrollbar-thumb {
border-radius: 0px;
background-color: #c70000;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
background-color: #ccc;
}
/*定义滚动条轨道 内阴影+圆
角*/ ::-webkit-scrollbar-track {
border-radius: 0px;
background: #ccc;
}
/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
border-radius: 0px;
background-color: #c70000;
}
.nav-btnbox {
	display: none
}
.pd3 {
	padding-top: 3%;
	padding-bottom: 3%
}
.pd4 {
	padding-top: 4%;
	padding-bottom: 4%
}
.pd5 {
	padding-top: 5%;
	padding-bottom: 5%
}
.pd6 {
	padding-top: 6%;
	padding-bottom: 6%
}
.pd2 {
	padding-top: 2%;
	padding-bottom: 2%
}
.mtb3 {
	margin-top: 3%;
	margin-bottom: 3%
}
.mtb4 {
	margin-top: 4%;
	margin-bottom: 4%
}
.mtb5 {
	margin-top: 5%;
	margin-bottom: 5%
}
.mtb6 {
	margin-top: 6%;
	margin-bottom: 6%
}
.mtb2 {
	margin-top: 2%;
	margin-bottom: 2%
}
.mt1 {
	margin-top: 1%
}
.mt2 {
	margin-top: 2%
}
.mt3 {
	margin-top: 3%
}
.mt4 {
	margin-top: 4%
}
.mt5 {
	margin-top: 5%
}
.mt6 {
	margin-top: 6%
}
.pt3 {
	padding-top: 3%
}
.pt4 {
	padding-top: 4%
}
.pt5 {
	padding-top: 5%
}
.pb3 {
	padding-bottom: 3%
}
.pb4 {
	padding-bottom: 4%
}
.pb5 {
	padding-bottom: 5%
}
.fangdapic {
	overflow: hidden;
	position: relative
}
.fangdapic>img {
	transition: 1s all;
	-webkit-transition: 1s all;
	-moz-transition: 1s all;
	-o-transition: 1s all;
	-ms-transition: 1s all;
	width: 100%;
}
a:hover .fangdapic>img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
li:hover .fangdapic>img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.fangdapic:hover>img {
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.banner {
	position: relative;
}
.banner .swiper-slide {
}
.banner .swiper-slide img {
	width: 100%
}
.banner .swiper-pagination {
	z-index: 999;
	left: 50%;
	transform: translate(-50%, 0);
	bottom: 30px;
	width: 258px;
	padding: 0px 30px;
	height: 50px;
	border-radius: 50px;
	background: rgba(0,0,0,0.3)
}
.banner .swiper-pagination-bullet {
	opacity: 1;
	width: 30px;
	height: 30px;
	margin: 0px 10px;
	color: #fff;
	/*font-family: arial;*/
	line-height: 30px;
	background: none;
}
.banner .swiper-pagination-bullet-active {
	background: #fff;
	color: #f08226
}
.banner .swiper-button-next {
	width: 44px;
	height: 44px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	background: url("../img2025/rightb.png") no-repeat center center rgba(0,0,0,0.2);
	background-size: 13px auto;
	right: 10%;
	opacity: 0;
}
.banner .swiper-button-prev {
	width: 44px;
	height: 44px;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
	background: url(../img2025/leftb.png) no-repeat center center rgba(0,0,0,0.2);
	background-size: 13px auto;
	left: 10%;
	opacity: 0;
}
.banner:hover .swiper-button-next {
	opacity: 1
}
.banner:hover .swiper-button-prev {
	opacity: 1
}
.banner .swiper-button-next:hover {
	background-color: #c70000;
}
.banner .swiper-button-prev:hover {
	background-color: #c70000;
}
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
 @-webkit-keyframes fadeInDown {
 0% {
opacity:0;
transform:translateY(-50px)
}
 100% {
opacity:1;
transform: translateY(0)
}
}
@keyframes fadeInDown {
 0% {
opacity:0;
transform: translateY(-50px)
}
 100% {
opacity:1;
transform: translateY(0)
}
}
.mainbox {
	margin: 0 auto;
	max-width: 1520px;
	padding-left: 10%;
	padding-right: 10%
}
.topone {
	height: 32px;
	background: #2a2a2a;
	line-height: 32px;
	color: #bfbfbf;/*font-size: 12px;*/
}
.topone a {
	color: #bfbfbf;
	margin: 0px 5px
}
.topone a:hover {
	color: #fff
}
.topone em {
	font-size: 10px;
}
.topone p span {
	color: #f2821d;
	font-weight: bold;
	font-size: 16px;
}
.topone.cur {
	margin-bottom: 77px;
}
.toptwo {
	background: #fff;
	position: relative;
}
.toptwo.cur {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 9999999;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
}
.toptwo>.mainbox {
	height: 117px;
}
.logo {
	width: 28%;/*margin-right: 3%*/
}
.nav {
	width: 55%
}
.nav li {
	position: relative;
}
.nav li>a {
	font-size: 18px;
	line-height: 117px;
	display: block
}
.nav li.cur>a {
	color: #1547a8;
}
.nav li:before {
	background: #1547a8;
	height: 4px;
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%, 0);
	width: 0%;
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-o-transition: 0.5s all;
	-ms-transition: 0.5s all;
}
.nav li.cur:before {
	width: 100%
}
.nav li:hover:before {
	width: 100%
}
.nav li:hover>a {
	color: #c70000;
}
.navdown {
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	top: 117px;
	width: 200px;
	z-index: 99;
	display: none;
	padding-top: 10px;
}
.navdown a {
	display: block;
	padding: 15px 0px;
	border-bottom: 1px solid #cccccc;
	background: url("../img2025/you1.png") no-repeat right center;
	background-size: 8px auto
}
.navdown a:hover {
	background: url("../img2025/you2.png") no-repeat right center;
	background-size: 8px auto
}
.navdown a:last-child {
	border-bottom: none
}
.navdownbox {
	background: #fff;
	position: relative;
	padding: 0 20px 0px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	text-align: left
}
.navdownbox:before {
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid #fff;
	position: absolute;
	left: 50%;
	top: -8px;
	transform: translate(-50%, 0);
	content: ""
}
.syabout {
	background: url("../img2025/syabbj.jpg") no-repeat bottom center;
	background-size: 100% auto
}
.abshuzi li {
	width: 33%;
	border-right: 1px solid #efeff5;
	line-height: 1
}
.abshuzi li:last-child {
	border: none
}
.abshuzi li span {
	font-size: 24px;
	color: #1547a8;
	font-weight: bold
}
.abshuzi li span em {
	font-size: 72px;
	/*font-family: arial;*/
	font-weight: bold
}
.abshuzi li p {
	color: #1e1e1e;
	margin-top: 5px;
}
.syabouttxtleft {
	width: 40%;
	color: #cdcdcd;
	line-height: 1.2
}
.syabouttxtleft p {
	font-weight: bold;
	font-size: 90px;
}
.syabouttxtleft span {
	font-weight: bold;
	font-size: 130px;
	display: block
}
.syabouttxtright {
	width: 55%;
	padding-top: 30px;
}
.syabouttxtright h1 {
	font-size: 36px;
	margin: 20px 0px;
}
.syabouttxtrighttxt {
	color: #585858;/*line-height: 2.5;*/
}
.syabouttxtrighttxt p {
	text-indent: 2em;
	line-height: 33px;
	font-size: 16px;
	margin-top: 20px;
}
.shiliboxs ul {
	width: 50%
}
.shiliboxs li {
	width: 100%;
}
.shiliboxs li .fangdapic {
	width: 50%;
}
.shilitxt {
	width: 50%;
	background: #fff;
	position: relative
}
.shilitxtbox {
	width: 80%
}
.shilitxtbox p {
	font-size: 16px;
	font-weight: bold
}
.shilitxtbox span {
	color: #666666;
	line-height: 2;
	margin: 5% 0
}
.shilitxtbox em {
	display: block;
	text-align: right;
	color: #c70000
}
.shiliboxs li:nth-child(1) .shilitxt:before {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 10px solid #fff;
	position: absolute;
	left: -5px;
	top: 50%;
	transform: translate(-50%, 0);
	content: ""
}
.shiliboxs li:nth-child(2) .shilitxt:before {
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 10px solid #fff;
	position: absolute;
	right: -15px;
	top: 50%;
	transform: translate(-50%, 0);
	content: "";
	z-index: 9
}
.syprobox {
	background: url("../img2025/probj.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover
}
.sytit {
	text-align: center
}
.sytit.baise {
	color: #fff
}
.sytit.baise p {
	color: #fff
}
.sytit h2 {
	font-size: 36px;
	margin-bottom: 10px;
}
.sytit p {
	font-size: 16px;
	color: #585858;
	display: inline-block
}
.sytit h1 {
	font-weight: normal;
	font-size: 16px;
	display: inline-block
}
.syproleft {
	width: 268px;
}
.syproleft dl {
	background: #fff;
	padding-bottom: 30%
}
.syproleft dl h4 {
	background: #fff;
	padding: 0px 0px 0px 60px;
	height: 50px;
	background: url(../img2025/tel.png) 18px center no-repeat;
	margin-top: 20px;
}
.syproleft dl h4 p {
	display: block;
	height: 20px;
	line-height: 20px;
}
.syproleft dl h4 span {
	display: block;
	font-size: 20px;
	color: #f2821d;
	height: 30px;
	line-height: 30px;
}
.syproleft dt {
	background: #c70000;
	color: #fff;
	padding: 20px 38px;
}
.syproleft dt p {
	font-size: 26px;
	font-weight: bold
}
.syproleft dt span {
	font-size: 16px;
	display: block
}
.syproleft dd {
	padding: 12px 15px;
}
.syproleft dd a {
	display: block;
	background: #464646;
	height: 38px;
	line-height: 38px;
	padding-left: 25px;
	border-radius: 5px;
	margin: 12px 0px;
	color: #fff;
	position: relative
}
.syproleft dd a:before {
	border-radius: 100%;
	width: 20px;
	height: 20px;
	background: #fff;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	position: absolute;
	content: ""
}
.syproleft dd a:after {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #464646;
	right: 16px;
	top: 50%;
	transform: translate(0, -50%);
	position: absolute;
	content: ""
}
.syproleft dd a:hover {
	background: #c70000
}
.syproright {
	width: calc(100% - 310px);
}
.syproright ul {
	margin-left: -30px;
	width: calc(100% + 30px);
}
.syproright li {
	width: calc(33.333% - 27px);
	float: left;
	margin-left: 27px;
	background: #fff;
	margin-bottom: 30px;
}
.syproright ul:nth-child(1) li:nth-child(1) {
	width: calc(66.666% - 29px);
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.syprotxts {
	padding: 10px 30px 15px;
}
.syprotxts p {
	font-size: 20px;
	color: #020c2a;
	text-overflow: -o-ellipsis-lastline;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	-webkit-box-orient: vertical;
	text-align: center;
}
.syprotxts span {
	display: block;
	color: #373737;
	padding: 10px 0px;
}
.syprotxts span em:first-child {
	margin-right: 20px;
}
.syprotxts i {
	color: #c70000;
	display: block
}
.syyoushibox {
	background: url("../img2025/youshibj.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover
}
.youshipic {
	width: 30%;
}
.youshileft {
	width: 30%;
	text-align: right
}
.youshiright {
	width: 30%
}
.youshileft li {
	position: relative;
	padding: 8% 0;
	padding-right: 90px;
}
.youshileft li:before {
	width: 70px;
	height: 70px;
	background: #1547a8;
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	/*font-family: arial;*/
	border-radius: 100%;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translate(0, -50%);
	text-align: center;
	line-height: 70px;
}
.youshileft li p {
	font-size: 30px;
	font-weight: bold
}
.youshileft li span {
	color: #585858;
	font-size: 16px;
	display: block
}
.youshileft li:nth-child(2) {
	margin-right: 10%
}
.youshileft li:nth-child(1):before {
	content: "01"
}
.youshileft li:nth-child(2):before {
	content: "02"
}
.youshileft li:nth-child(3):before {
	content: "03"
}
.youshiright li {
	position: relative;
	padding: 8% 0;
	padding-left: 90px;
}
.youshiright li:before {
	width: 70px;
	height: 70px;
	background: #1547a8;
	color: #fff;
	font-size: 36px;
	font-weight: bold;
	/*font-family: arial;*/
	border-radius: 100%;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate(0, -50%);
	text-align: center;
	line-height: 70px;
}
.youshiright li p {
	font-size: 30px;
	font-weight: bold
}
.youshiright li span {
	color: #585858;
	font-size: 16px;
	display: block
}
.youshiright li:nth-child(2) {
	margin-left: 10%
}
.youshiright li:nth-child(1):before {
	content: "04"
}
.youshiright li:nth-child(2):before {
	content: "05"
}
.youshiright li:nth-child(3):before {
	content: "06"
}
.sycase {
	background: url("../img2025/casebj.jpg") no-repeat center center;
	background-attachment: fixed;
	background-size: cover
}
.sycaseboxs {
	background: url("../img2025/yuanp.png") no-repeat bottom center;
	background-size: 100% auto;
	padding-bottom: 6%;
	position: relative
}
.sycaseimg {
	position: relative
}
.sycaseimg:before {
	background: rgba(0,0,0,0.6);
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	content: "";
}
.sycaseimg p {
	font-size: 18px;
	text-align: center;
	line-height: 50px;
	color: #fff;
	background: rgba(37,64,143,0.8);
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	z-index: 9
}
.sycaseboxs .swiper-slide-active .sycaseimg:before {
	background: none
}
.sycaseboxs .swiper-button-prev {
	background: url(../img2025/leftan.png) no-repeat center center rgba(255,255,255,0.3);
	width: 36px;
	height: 80px;
	left: 0px;
	margin-top: -80px;
	top: 50%;
	background-size: 9px auto
}
.sycaseboxs .swiper-button-next {
	background: url(../img2025/rightan.png) no-repeat center center rgba(255,255,255,0.3);
	right: 0px;
	width: 36px;
	height: 80px;
	margin-top: -80px;
	background-size: 9px auto
}
.sycaseboxs .swiper-slide {
	width: 650px;
}
.sycaseboxs .swiper-pagination {
	width: 100%;
	bottom: 20px;
}
.sycaseboxs .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 5px;
	width: 10px;
	height: 10px;
	opacity: 1;
	border: 3px solid #fff;
	background: none
}
.sycaseboxs .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 3px solid #c70000
}
.sygonggao {
	width: 34.8%;
}
.synewstit {
	border-bottom: 1px solid #e6e6e6;
}
.synewstit h2 {
	font-size: 22px;
	position: relative;
	display: inline-block;
	padding: 10px 0
}
.synewstit h2:before {
	width: 100%;
	position: absolute;
	left: 0px;
	bottom: -1px;
	height: 3px;
	background: #c70000;
	content: ""
}
.sygongaohezi {
	margin-top: 32px;
}
.sygonggaotxt {
	padding-top: 20px
}
.ggbiaoti {
	margin-bottom: 10px;
}
.ggbiaoti h3 {
	font-size: 18px;
	width: calc(100% - 100px)
}
.ggbiaoti em {
	font-size: 16px;/*font-family: arial*/
}
.sygonggaotxt p {
	color: #585858;
	line-height: 1.8
}
.sycapzhis {
	width: 61.8%;
}
.sycapzhis ul {
	width: calc(100% + 50px);
	margin-left: -50px;
	margin-top: 10px;
}
.sycapzhis li {
	width: calc(50% - 50px);
	margin-left: 50px;
	float: left;
	font-size: 16px;
	border-bottom: 1px dashed #c7c7c7;
	padding: 19px 0px;
}
.sycapzhis li a {
	background: url("../img2025/dax.png") no-repeat left center;
	padding-left: 23px;
}
.sycapzhis li a p {
	width: calc(100% - 120px);
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	word-break: break-all;
}
.sycapzhis li a span {
/*font-family: arial*/
}
.sywenti {
	margin-top: 50px;
}
.sywentileft {
	width: 114px;
}
.sywentileft h1 {
	font-size: 22px;
}
.sywentileft h2 {
	font-size: 20px;
	color: #cfcfcf;/*font-family: arial*/
}
.sywentiright {
	width: calc(100% - 135px)
}
.wetiqihuan {
	position: relative;
	height: 27px;
	background: #333333;
	border-radius: 27px;
	overflow: hidden;
	margin-top: 35px;
}
.wetiqihuan .swiper-button-next {
	background: url("../img2025/wenright.png") no-repeat center center;
	background-size: 20px auto;
	width: 50%;
	height: 27px;
	right: 0;
	top: 0px;
	margin: 0
}
.wetiqihuan .swiper-button-prev {
	background: url("../img2025/wenleft.png") no-repeat center center;
	background-size: 20px auto;
	width: 50%;
	height: 27px;
	left: 0;
	top: 0px;
	margin: 0
}
.wetiqihuan .swiper-button-prev:hover {
	background: url("../img2025/wenleft.png") no-repeat center center #c70000;
	background-size: 20px auto;
}
.wetiqihuan .swiper-button-next:hover {
	background: url("../img2025/wenright.png") no-repeat center center #c70000;
	background-size: 20px auto;
}
.sywentiright .swiper-slide a {
	border: 1px solid #e1e1e1;
	padding: 20px;
	display: block
}
.sywentiright .swiper-slide a p {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	position: relative;
	padding-left: 40px;
}
.sywentiright .swiper-slide a p:before {
	content: "问";
	font-size: 16px;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	background: #c70000;
	color: #fff;
	text-align: center;
	line-height: 28px;
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translate(0, -50%);
}
.sywentiright .swiper-slide a span {
	color: #585858;
	line-height: 1.6;
	position: relative;
	padding-left: 40px;
}
.sywentiright .swiper-slide a span:before {
	content: "答";
	font-size: 16px;
	width: 28px;
	height: 28px;
	border-radius: 100%;
	background: #333333;
	color: #fff;
	text-align: center;
	line-height: 28px;
	position: absolute;
	left: 0px;
	top: 0%;
}
.footerbj {
	background: url("../img2025/footbj.jpg") no-repeat top center #1b1b1b;
	background-size: cover;
	padding-top: 80px;
	position: relative;
}
.uptop {
	width: 70px;
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translate(-50%, 0);
	z-index: 99
}
.footlogo {
	width: 20%;
	text-align: center
}
.footlogo p {
	color: #fff;
	padding: 20px 0px;
}
.footertop {
	position: relative
}
.footertop>img {
	width: 100%
}
.footerbj {
	color: rgba(255,255,255,0.5);
}
.footnav {
	width: 40%
}
.footnav li:nth-child(3)>p {
	display: none;
}
.footnav li:nth-child(3) .footnavdown {
	margin-top: 34px;
}
.footnav li p a {
	color: #fff;
	font-size: 18px;
}
.footnav li p {
	margin-bottom: 10px;
}
.footnavdown span {
	display: block;
	padding: 5px 0px;
}
.footnavdown span a {
	color: rgba(255,255,255,0.5);
}
.footnavdown span a:hover {
	color: #fff;
}
.erweima {
	width: 20%
}
.erweima p {
	color: rgba(255,255,255,0.5);
	padding: 5px 0px;
}
.erweima h4 a {
	color: #fff;
	font-size: 18px;
	display: block;
	margin-bottom: 10px;
}
.erweima p span {
	font-size: 26px;
	font-weight: bold;
	color: #f2821d;
}
.linkbox {
	border-top: 1px solid #494949;
	padding-top: 40px;
	margin-top: 50px;
}
.linklefts {
	width: 80px;
}
.linkboxright {
	width: calc(100% - 80px)
}
.linkboxright a {
	color: rgba(255,255,255,0.5);
	margin-bottom: 10px;
	display: inline-block
}
.linkboxright a:hover {
	color: #fff;
}
.linkboxright em {
	padding: 0px 6px;
	font-size: 12px;
}
.footbot {
	padding: 40px 0px;
	margin-top: 50px;
	border-top: 1px solid #444;
	text-align:center;
}
.footbot p a {
	color: rgba(255,255,255,0.5);
	margin-left: 50px;
}
.nybanner {
	position: relative;
	height:299px;
}
.nybanner img {
	width: 100%
}
.nybantxt {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	color: #Fff;
	font-weight: bold;
	text-align: center
}
.nybantxt h2 {
	font-size: 36px;
}
.nybantxt p {
	font-size: 24px;
}
.nynav li {
	line-height: 58px;
	font-size: 16px;
	/*margin: 0px 20px*/
}
.nynav li a {
	color: #585858;
	display: block;
	padding: 0px 24px;
}
.nynav li a:hover {
	color: #fff;
	background: #c70000;
}
.nynav li.cur a {
	color: #fff;
	background: #c70000;
}
.nybox {
	background: url("../img2025/gezi.jpg") repeat;
	border-top: 1px solid #f4f4f4
}
.mianbao {
	padding: 20px 0px;
	background: url("../img2025/homeico.png") no-repeat left center;
	padding-left: 24px;
	margin-bottom: 30px;
	color: #585858
}
.mianbao a {
	color: #585858
}
.mianbao a:hover {
	color: #c70000
}
.nytit h2 {
	font-size: 30px;
	position: relative;
	padding: 10px 0
}
.nytit h2:before {
	content: "";
	width: 44px;
	height: 3px;
	background: #c70000;
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translate(-50%, 0)
}
.protop {
	position: relative
}
.protoptxt {
	width: 30%;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	left: 9%
}
.protoptxt h2 {
	font-size: 30px
}
.protoptxthezi {
	font-size: 16px;
	color: #585858;
	line-height: 1.8;
	margin: 10px 0px;
}
.chankan {
	width: 110px;
	height: 32px;
	line-height: 32px;
	color: #fff;
	background: #c70000;
	border-radius: 5px;
	display: block;
	text-indent: 13px;
	position: relative
}
.chankan:hover {
	color: #fff;
	background: #304ea6
}
.chankan:before {
	border-radius: 100%;
	width: 14px;
	height: 14px;
	background: #fff;
	right: 10px;
	top: 50%;
	transform: translate(0, -50%);
	position: absolute;
	content: ""
}
.chankan:after {
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 6px solid #c70000;
	right: 12px;
	top: 50%;
	transform: translate(0, -50%);
	position: absolute;
	content: ""
}
.nyprobox {
	margin-top: 30px;
}
.nyprobox ul {
	margin-left: -30px;
	width: calc(100% + 30px);
}
.nyprobox li {
	width: calc(25% - 30px);
	float: left;
	margin-left: 30px;
	background: #fff;
	margin-bottom: 30px;
}
.nyproshowboxleft {
	background: #fff;
	width: calc(100% - 507px);
	padding: 30px;
}
.nyproshowtit {
	font-size: 30px;
	border-bottom: 1px solid #f0f0f0;
	font-weight: bold;
	position: relative;
	padding-bottom: 20px;
	padding-left: 15px;
}
.nyproshowtit:before {
	content: "";
	width: 5px;
	height: 28px;
	background: #c70000;
	position: absolute;
	left: 0%;
	top: 8px;
}
.guigetxt {
	padding: 20px 0px;
	border-bottom: 1px solid #f0f0f0;
	font-size: 16px;
}
.guigetxt ul {
	margin-left: -40px;
	width: calc(100% + 40px);
}
.guigetxt li {
	width: calc(50% - 40px);
	float: left;
	margin-left: 40px;
	padding: 10px 0px;
}
.guigetxt li p {
	color: #c70000
}
.gailisnx {
	padding: 30px 0px;
}
.gailisnx>h3 {
	font-size: 18px;
}
.gaiolinei {
	color: #585858;
	font-size: 16px;
	line-height: 1.8
}
.backs {
	width: 146px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	border: 1px solid #c70000;
	font-size: 16px;
	color: #c70000;
}
.backs:hover {
	background: #c70000;
	color: #fff
}
.updowm {
	padding-top: 30px;
	border-top: 1px solid #f0f0f0
}
.updowm li {
	max-width: 40%
}
.nyproshowboxright {
	width: 417px;
}
.protuijian li {
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
	margin-top: 30px;
}
.protuijianbox {
	background: #fff;
	padding: 30px;
}
.newstuijian {
	background: #fff;
	padding: 30px;
	margin-top: 30px;
}
.newstuijian li {
	font-size: 20px;
	border-bottom: 1px solid #f0f0f0;
	padding: 20px 0px
}
.newstuijian li a {
	color: #585858
}
.newstuijian li a:hover {
	color: #c70000
}
.nyaboutbox {
	background: #fff;
	padding: 50px;
}
.nyabouttxt {
	font-size: 16px;
	color: #585858;
	line-height: 1.8;
	margin-top: 30px
}
.nyabouttxt p {
	text-indent: 2em;
	padding-top: 20px;
}
.honorbox ul {
	width: calc(100% + 40px);
	margin-left: -50px;
}
.honorbox li {
	float: left;
	margin-left: 50px;
	width: calc(33.333% - 50px);
	background: #fff;
	margin-bottom: 50px;
}
.honorpic {
	padding: 30px 50px;
}
.honorpic a {
	height: 240px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.honorpic a img {
	max-height: 100%
}
.honorbox li p {
	text-align: center;
	font-size: 18px;
	height: 60px;
	line-height: 60px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	margin-top: 20px;
	box-shadow: 0px -3px 5px 0 #fafcfd
}
.shengchan ul {
	width: calc(100% + 30px);
	margin-left: -30px;
}
.shengchan li {
	float: left;
	margin-left: 30px;
	width: calc(33.333% - 30px);
	margin-bottom: 30px;
}
.shengchan ul.shang li:nth-child(1) {
	width: calc(66.666% - 30px);
}
.nycase ul {
	width: calc(100% + 30px);
	margin-left: -30px;
}
.nycase li {
	float: left;
	margin-left: 30px;
	width: calc(33.333% - 30px);
	margin-bottom: 30px;
}
.casetxt {
	padding: 20px 30px;
	background: #fff
}
.casetxt p {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 10px;
}
.casetxt span {
	color: #585858;
	font-size: 16px;
	line-height: 1.6
}
.page a {
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 38px;
	margin: 0px 5px;
	/*font-family: arial;*/
	background: #fff
}
.page a:hover {
	background: #c70000;
	color: #fff;
}
.page a.cur {
	background: #c70000;
	color: #fff;
}
.caseshowtit {
	text-align: center;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 20px;
}
.caseshowtit h1 {
	font-size: 30px;
	margin-bottom: 20px;
}
.caseshowtit p {
	font-size: 16px;
	color: #585858;
}
.caseshowtit span:first-child {
	margin-right: 20px;
}
.showshow {
	font-size: 16px;
	color: #585858;
	line-height: 1.8;
	padding: 20px 0px;
}
.showshow p {
	text-indent: 2em;
	padding-top: 20px;
}
.contit {
	font-size: 24px;
}
.contactleft {
	width: 50%;
	font-size: 16px;
	color: #585858
}
.conico01 {
	background: url("../img2025/conico01.png") no-repeat left 7px;
	padding-left: 26px;
}
.conico02 {
	background: url("../img2025/conico02.png") no-repeat left 7px;
	padding-left: 26px;
}
.conico03 {
	background: url("../img2025/conico03.png") no-repeat left 7px;
	padding-left: 26px;
}
.conico04 {
	background: url("../img2025/conico04.png") no-repeat left 7px;
	padding-left: 26px;
}
.contactleft p {
	line-height: 2;
	margin: 5px 0
}
.weimas img {
	border: 1px solid #efefef
}
.weimas p {
	color: #585858;
	padding: 10px 0px;
}
.contacttxt {
	border-bottom: 1px solid #efefef;
}
.conlist ul {
	width: calc(100% + 50px);
	margin-left: -50px;
}
.conlist li {
	float: left;
	margin-left: 50px;
	width: calc(50% - 132px);
	margin-bottom: 40px;
	border: 1px solid #efefef;
	padding: 30px 40px;
}
.conlist li h3 {
	color: #c70000;
	font-size: 24px;
	border-bottom: 1px solid #efefef;
	padding-bottom: 20px;
}
.conlist li h3 span {
	font-size: 16px;
	font-weight: normal;
	margin-left: 10px
}
.conlxs {
	padding-top: 20px;
	line-height: 1.6;
	color: #585858
}
.conlxs p {
	padding: 5px 0px;
}
.jieyu h3 {
	font-size: 24px;
	margin-bottom: 20px;
}
.jieyu p {
	color: #585858;
}
.liuyanbox li {
	width: 50%;
	float: left;
	margin-bottom: 20px;
}
.liuyanbox li span {
	width: 80px;
	text-align: right;
	color: #585858;
	padding-right: 20px
}
.inputtext {
	width: calc(100% - 112px);
	padding-left: 10px;
	border: 1px solid #d9d9d9;
	height: 52px;
}
.liuyanbox li:nth-child(5) {
	width: 100%
}
.liuyanbox li:nth-child(6) {
	width: 100%
}
.wenbenquyu {
	width: calc(100% - 122px);
	padding: 10px;
	border: 1px solid #d9d9d9;
	height: 180px;
}
.tijiao {
	width: 145px;
	height: 50px;
	background: #c70000;
	color: #fff;
	margin-left: 100px;
	margin-top: 10px;
}
.tijiao:hover {
	background: #304a93;
}
.newstop {
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05)
}
.newstop .fangdapic {
	width: 400px
}
.newstopright {
	width: calc(100% - 460px);
	padding: 0px 30px;
}
.newstopright p a {
	font-weight: bold;
	font-size: 20px;
	color: #c70000
}
.newstopright em {
	color: #585858;
	/*font-family: arial;*/
	display: block;
	font-size: 16px;
	margin: 10px 0px;
}
.newstopright span {
	color: #585858;
	font-size: 16px;
	margin-bottom: 20px;
}
.zhunewsbox li {
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.05);
	margin-top: 30px;
}
.zhunewsbox li a {
	background: url("../img2025/jian.png") no-repeat 97% center;
	padding-right: 10%
}
.newstime {
	width: 186px;
	border-right: 1px solid #ededed;
	text-align: center;
	color: #585858;
	font-weight: 100;
	/*font-family: 'PingFang SC';*/
	min-height: 154px;
}
.newstime p {
	font-size: 48px;
}
.newstime span {
	font-size: 16px;
	border-top: 1px solid #ededed;
	padding: 10px 0px;
	display: inline-block
}
.newstxt {
	width: calc(100% - 220px);
}
.newstxt p {
	font-weight: bold;
	font-size: 20px;
	margin-bottom: 10px;
}
.newstxt span {
	color: #585858;
	font-size: 16px;
}
.newstuijian.mtnone {
	margin-top: 0
}
.wapfooter {
	position: fixed;
	left: 0px;
	width: 100%;
	background: #c70000;
	bottom: 0;
	z-index: 9999999;
	display: none
}
.wapfooter li {
	width: 25%;
	text-align: center
}
.wapfooter li a {
	color: #fff;
	padding: 8px 0px;
	display: block
}
.wapfooter li img {
	display: inline-block;
	width: 25%;
	max-width: 40px;
}
.wapfooter li p {
	margin-top: -5px;
}
.nynewstwoboxleft {
	width: calc(100% - 447px);
}
.nynewstwoboxleft .zhunewsbox li:first-child {
	margin-top: 0px;
}
.biaoqian {
	padding-top: 30px;
}
.biaoqian a {
	height: 30px;
	padding: 0px 10px;
	border: 1px solid #ccc;
	line-height: 30px;
	border-radius: 5px;
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}
.biaoqian a:hover {
	background: #c70000;
	color: #fff
}
/*yhcms翻页*/
.pages {
	margin-top: 30px;
	overflow: hidden;
	margin-bottom: 30px;
}
div.flickr {
	padding: 0px;
	text-align: center;
	margin-top: 50px;
	font-size: 13px;
}
div.flickr a {
	border: #dedfde 1px solid;
	background-position: 50% center;
	color: #666;
	margin-right: 3px;
	text-decoration: none;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	padding: 0px 15px;
	font-size: 13px;
}
div.flickr a:hover {
	border-right: #ddd 1px solid;
	border-top: #ddd 1px solid;
	background-image: none;
	border-left: #ddd 1px solid;
	color: #fff;
	border-bottom: #ddd 1px solid;
	background-color: #1547a8;
}
div.flickr a:active {
	border-right: #ddd 1px solid;
	border-top: #ddd 1px solid;
	background-image: none;
	border-left: #ddd 1px solid;
	color: #fff;
	border-bottom: #ddd 1px solid;
	background-color: #1547a8;
}
div.flickr span {
	color: #999;
	margin-right: 5px;
}
div.flickr span.current {
	border: #dedfde 1px solid;
	background-position: 50% bottom;
	color: #1547a8;
	margin-right: 5px;
	text-decoration: none;
	font-size: 13px;
	height: 30px;
	line-height: 30px;
	display: inline-block;
	padding: 0px 15px;
	font-weight: bold;
}
div.flickr span.disabled {
	color: #adaaad;
	margin-right: 5px;
}