@charset "utf-8";
@import url("../fonts/font.css");

* {
	margin: 0;
	padding: 0;
}

body {
	width: 100%;

	margin: 0 auto;
	font-family: 'Microsoft YaHei';
	font-weight: normal;
	font-size: 14px;
	background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
span {
	margin: 0;
}

ul,
ol {
	margin: 0;
	padding: 0;
}

li,
p {
	display: inline-block;
	list-style-type: none;
	font-size: 15px;
	margin: 0;
}

a {
	color: #333;
	text-decoration: none;
	cursor: pointer;
}

a,
a:focus {
	border: none;
	outline: none;
	height: auto;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	border: none;
}

.fl {
	float: left;
}

.fr {
	float: right;
}
.d-block { display: block; }
    .d-inline { display: inline; }
    .d-inline-block { display: inline-block; }
    .d-flex { display: flex; }
    .d-inline-flex { display: inline-flex; }
    .d-grid { display: grid; }
    .d-none { display: none; }

    .flex-row { flex-direction: row; }
    .flex-col { flex-direction: column; }
    .flex-wrap { flex-wrap: wrap; }
    .flex-nowrap { flex-wrap: nowrap; }
    .justify-start { justify-content: flex-start; }
    .justify-center { justify-content: center; }
    .justify-end { justify-content: flex-end; }
    .justify-between { justify-content: space-between; }
    .justify-around { justify-content: space-around; }
    .justify-evenly { justify-content: space-evenly; }
    .items-start { align-items: flex-start; }
    .items-center { align-items: center; }
    .items-end { align-items: flex-end; }
    .items-baseline { align-items: baseline; }
    .items-stretch { align-items: stretch; }
    .content-center { align-content: center; }
    .flex-1 { flex: 1; }
    .flex-auto { flex: auto; }
    .flex-none { flex: none; }

    .grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
    .grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
    .gap-4 { gap: 4px; }
    .gap-8 { gap: 8px; }
    .gap-12 { gap: 12px; }
    .gap-16 { gap: 16px; }

    .relative { position: relative; }
    .absolute { position: absolute; }
    .fixed { position: fixed; }
    .sticky { position: sticky; }
    .top-0 { top: 0; }
    .right-0 { right: 0; }
    .bottom-0 { bottom: 0; }
    .left-0 { left: 0; }
    .inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
    .top-50 { top: 50%; }
    .left-50 { left: 50%; }
    .translate-50 { transform: translate(-50%, -50%); }

    .w-0 { width: 0; }
    .w-25 { width: 25%; }
    .w-50 { width: 50%; }
    .w-75 { width: 75%; }
    .w-full { width: 100%; }
    .w-auto { width: auto; }
    .h-0 { height: 0; }
    .h-25 { height: 25%; }
    .h-50 { height: 50%; }
    .h-75 { height: 75%; }
    .h-full { height: 100%; }
    .h-auto { height: auto; }


    .overflow-hidden { overflow: hidden; }
    .overflow-auto { overflow: auto; }
    .overflow-scroll { overflow: scroll; }
    .overflow-x-hidden { overflow-x: hidden; }
    .overflow-y-hidden { overflow-y: hidden; }
    .overflow-x-auto { overflow-x: auto; }
    .overflow-y-auto { overflow-y: auto; }
    .text-ellipsis { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .text-ellipsis-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .text-ellipsis-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

    /* 2. 盒模型（间距/边框） */
    .m-auto { margin: auto; }

  

 
    .mx-auto { margin-left: auto; margin-right: auto; }


    .border { border: 1px solid #e5e7eb; }
    .border-none { border: none; }
    .border-t { border-top: 1px solid #e5e7eb; }
    .border-b { border-bottom: 1px solid #e5e7eb; }
    .border-l { border-left: 1px solid #e5e7eb; }
    .border-r { border-right: 1px solid #e5e7eb; }
    .border-2 { border-width: 2px; }
    .border-dashed { border-style: dashed; }
    .border-dotted { border-style: dotted; }

   
    
    .text-left { text-align: left; }
    .text-center { text-align: center; }
    .text-right { text-align: right; }
    .text-justify { text-align: justify; }

    .text-10 { font-size: 10px; }
    .text-12 { font-size: 12px; }
    .text-14 { font-size: 14px; }
    .text-16 { font-size: 16px; }
    .text-18 { font-size: 18px; }
    .text-20 { font-size: 20px; }
    .text-22 { font-size: 22px; }
    .text-24 { font-size: 24px; }
    .text-28 { font-size: 28px; }
    .text-32 { font-size: 32px; }
    .text-36 { font-size: 36px; }

    .font-normal { font-weight: 400; }
    .font-medium { font-weight: 500; }
    .font-semibold { font-weight: 600; }
    .font-bold { font-weight: 700; }
    .font-extrabold { font-weight: 800; }
    .font-black { font-weight: 900; }

    .text-uppercase { text-transform: uppercase; }
    .text-lowercase { text-transform: lowercase; }
    .text-capitalize { text-transform: capitalize; }
    .text-italic { font-style: italic; }
    .text-line-through { text-decoration: line-through; }
    .text-underline { text-decoration: underline; }
    .text-no-underline { text-decoration: none; }

    .text-white { color: #ffffff; }
    .text-black { color: #000000; }
    .text-gray-100 { color: #f9fafb; }
    .text-gray-200 { color: #f3f4f6; }
    .text-gray-300 { color: #e5e7eb; }
    .text-gray-400 { color: #d1d5db; }
    .text-gray-500 { color: #9ca3af; }
    .text-gray-600 { color: #6b7280; }
    .text-gray-700 { color: #4b5563; }
    .text-gray-800 { color: #374151; }
    .text-gray-900 { color: #1f2937; }
    .text-primary { color: #165dff; }
    .text-success { color: #00b42a; }
    .text-warning { color: #ff7d00; }
    .text-danger { color: #f53f3f; }
    .text-info { color: #86909c; }

 


.w100 {
	
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-repeat:no-repeat;
}

.clear {
	clear: both;
}

.li_last {
	margin-right: 0 !important;
}

.header {/* background:url(../img/topbg.png) repeat left top; */background-color: #9d0606;z-index:999;}

.head {
	max-width: 1460px;
	margin: 0px auto;
	height: 160px;
	z-index: 99;
}

.logo {
}

.logo a {
	width: 100%;
	height: auto;
	overflow: hidden;
	display: block;
}

.logo img {
	width: 100%;
}

.logor {max-width: 380px;}
 

.toplj {
	line-height:40px;
	margin-right:5px;
}

.toplj a,
.toplj span {
	display: inline-block;
	
	margin: 0 5px;
}

.search {
	margin-left: 0;
	z-index: 15;
	width: 260px;
	padding: 0px;
	height: 40px;
	border-radius: 20px;
	border: 1px solid #fff;
}
.mobNav .xydh,.mobNav .toplj,.mobNav .search{display:none}
.search .ssk {
	float: left;
	background: url(../img/search.png) no-repeat left 10px center;
	/* width: calc(100% - 50px); */
	width: 100%;
	margin: 5px 0;
	padding: 0 10px 0 35px;
	border-radius: 0;
	border: 0;
	/* border-right: 1px solid #fff; */
	outline: none;
	/* color: #333; */
	line-height: 30px;
	height: 30px;
	background-color: transparent;
}

.search .ss {
	float: right;
	background:url(../img/search.png) no-repeat center center;
	width: 50px;
	height: 34px;
	border-radius: 0;
	outline: none;
	color: #fff;
	display: none;
	border: 0;
	/* border-left: 0px solid #fff; */
	margin: 0px 0;
	text-align: center;
}

.dh {
	position: relative;
	z-index: 999;
	float: left;
	width: 100%;
	height: 60px;
	background-color:#850606;
	border-top: 0px solid #6080dc;
}

#menu {
	position: relative;
	z-index: 9;
	zoom: 1;
	width: 100%;
	max-width: 1460px;
	text-align: center;
	height: 58px;
	margin: 0 auto;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

#menu span {
	float: left;
	color: rgb(255 255 255 / 30%);
	line-height: 55px;
}

#menu li {
	padding: 0px 0;
	text-align: center;
	line-height: 58px;
	height: auto;
	/* width: 10%; */
	text-align: center;
	display: inline-block;
	float: left;
	position: relative;
}

#menu li::after {
	position:absolute;
	    left: 50%;
	    bottom: 0px;
	    display:block;
	    content:"";
	    width:0%;
	    height:0px;
	    background-color:#1b3b95;
	    transform: translateX(-50%);
	    visibility: hidden;
	    opacity: 0;
	    -webkit-transition: all .3s;
	    transition: all .3s;
}

#menu li:hover::after {
	opacity:1; width:70%;visibility: visible;
		opacity:0;
		-webkit-transition: all .3s;
		transition: all .3s;
}

#menu li:last-child {
	background: none;
}

#menu li a {
	white-space: normal;
	padding: 0 60px;
	color: #fff;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}



#menu li:hover {background-color:#9d0606;}

#menu li:hover a {
	 color: #fff;
}

#menu li a:hover {}

#menu li ol {
	margin: 0;
	padding: 0;
	width: 100%;
	min-width: 160px;
	_margin: 0;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 100px;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, 0);
	-webkit-transform: translate(-50%, 0);
	-moz-transform: translate(-50%, 0);
	-ms-transform: translate(-50%, 0);
	-o-transform: translate(-50%, 0);
	border-top: 0px solid #1b3b95;
	background: rgba(133,6,6,0.6);
	opacity: 0;
	visibility: hidden;
	/*border-radius: 5px;*/
	transition: opacity .4s ease, top .45s ease;
	padding:0px;
}

#menu li ol li {
	
}

#menu li:hover>ol {
	top:58px;
		opacity: 1;
		visibility: visible;
		z-index: 100;
		margin: 0;
		z-index: 1;
}

#menu ol ul {
	top: 0;
	z-index: 1;
	left: 200px;
	margin: 0 auto;
	_margin: 0;
}

#menu li ol li,
#menu li:hover ol li a {
	padding: 0px;
	white-space: normal;
	float: left;
	width: 100%;
	z-index: 1;
	font-size: 18px;
	height:40px;
	line-height:40px;
	display: block;
	border-bottom:0px solid #e4dbca;
	font-weight: normal;
	color: #fff;
	_line-height: 0;
}

#menu li ol li a {
	white-space: normal;
	padding: 0px 5px;
	width: 100%;
	
	height: 100%;
	/* overflow: hidden; */
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 16px;
	font-weight: normal;
	display: block;
	white-space: nowrap;
	color: #fff;
	float: none;
	
}

#menu li ol li:hover,
#menu li ol li:hover a {
	background-color:#9d0606;
	color: #fff;
}

.menu-btn {
	display: none;
	overflow: hidden;
	float: right;
	/* margin-left: 35px; */
	width: 50px;
	height: 50px;
	background: 0 0;
	text-indent: 0;
	opacity: 1;
	position: absolute;
	top:45px;
	right: 10px;
	z-index: 999;
}

.menu-btn2 {
	position: absolute;
	top: 25px;
	display: none;
	right: 10px;
	z-index: 999;
	width: 50px;
	height: 50px;
}

.menu-btn .line-1,
.menu-btn .line-2,
.menu-btn .line-3,
.menu-btn2 .line-1,
.menu-btn2 .line-2,
.menu-btn2 .line-3 {
	position: absolute;
	top: 50%;
	display: block;
	right: 0;
	width: 46px;
	height: 2px;
	background: #fff;
	transition: all .4s cubic-bezier(.165, .84, .44, 1) 0s;
	transition-property: transform, width, margin, background-color
}

.menu-btn2 .line-1,
.menu-btn2 .line-2,
.menu-btn2 .line-3 {
	background-color: #fff;
}

.menu-btn .line-1,
.menu-btn2 .line-1 {
	margin-top: -15px;
	width: 46px;
}

.menu-btn .line-3,
.menu-btn2 .line-3 {
	margin-top: 15px;
	width: 46px;
}

.drawerMenu-open .menu-btn .line-1,
.menu-btn2.open .line-1 {
	visibility: hidden
}

.drawerMenu-open .menu-btn .line-2,
.menu-btn2.open .line-2 {
	margin-top: 0 !important;
	width: 48px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.drawerMenu-open .menu-btn .line-3,
.menu-btn2.open .line-3 {
	margin-top: 0 !important;
	width: 48px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.mobNav {
	position: fixed;
	top: 160px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	z-index: 200;
	padding: 20px 6% 20px;
	display: none
}

.mobNav ul {
	float:left;;
	width: 100%;
	max-height:70vh;
	overflow: auto
}

.mobNav ul::-webkit-scrollbar {
	display: none
}

.mobNav ul li {
	float: left;
	width: 100%;
	padding: 15px 0;
	border-bottom: 1px solid #ddd
}

.mobNav ul li .navp {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	float: left;
	width: 100%;
}

.mobNav ul li .navp a {
	font-size: 16px;
	color: #9d0606;
	font-weight: 700;
	background-size: auto 100%
}

.mobNav ul li .navp i {
	display: block;
	font-style: normal;
	width: 16px;
	font-size: 30px;
	/* font-weight: lighter; */
	transition: .3s;
	color: #9d0606;
	transform-origin: center;
	margin-right: 5px;
	height: 16px;
	background-size: 16px 16px
}

.mobNav ul li.on .navp i {
	transform: rotate(-45deg);
	margin-right: 15px;
}

.mobNav ul li .subNavm {
	margin-top: 10px;
	padding-left: 10px;
	display: none
}

.mobNav ul li .subNavm a {
	display: block;
	line-height: 36px;
	font-size: 16px
}


.banner{float:left;margin-top: 0;width:100%;position:relative;z-index:9;overflow:hidden;}
.banner img{width:100%;}
.banner .zhe{z-index:1;}
.banSwiper{position:relative;float:left; width:100%; height:100%; overflow:hidden;}
.banSwiper .swiper-slide{float:left; text-align:center; width: 100%;height: 100%;}
.banSwiper .swiper-slide img{display:inline-block; width:100%; height:auto; overflow:hidden;}
.banSwiper  .swiper-button-prev:after,.banSwiper  .swiper-container-rtl .swiper-button-next:after,.banSwiper  .swiper-button-next:after,.banSwiper  .swiper-container-rtl .swiper-button-prev:after{color:transparent; line-height:48px; text-align:center; font-size:25px;}
.banSwiper .swiper-button-prev,.banSwiper  .swiper-button-next{top: calc(50% - 28px) !important;color:transparent;width:160px;height: 56px;line-height: 56px;border-radius:100%;}
.banSwiper  .swiper-pagination-bullet{width:50px;opacity:1;height:6px;border:0px solid #fff;background-color:#fff;margin: 0 3px !important;border-radius:0%;}
.banSwiper  .swiper-pagination-bullet-active{background-color:#1b3b95; opacity:1;}
.banSwiper  .swiper-pagination-bullets{bottom:0px !important;  width:100%;text-align:center; padding-top:0px; height:40px;}

.main{width:100%; max-width:1460px; margin:0 auto;}
.more{background:url(../img/more.png) no-repeat right center;color:#988a8a;padding-right: 25px;line-height:40px;z-index: 7;}

:root {
  --transition-base: all 0.3s ease;
  --transition-fast: all 0.2s ease;
  --shadow-hover: 0 0 20px 2px rgba(180, 198, 220, 0.8);
  --color-primary: #1b3b95;
  --color-hover: #1e5191;
}
.pic img{width:100%; transition: var(--transition-base);}

.listd{background:url(../img/listd.png) no-repeat left center; padding-left:12px;}


.lm{position:relative; height:40px;padding-left:50px; margin:30px auto 30px auto; background-repeat:no-repeat; background-position:left center;}
.lm h5{position: relative;z-index: 4;font-size:26px;color:#333;line-height:26px;}
.lm h6{position:relative;float: left;z-index: 4;line-height:14px;padding-left:10px;text-transform: uppercase;color: #d6c2c2;}
.lm h6:before{position:absolute; left:0; top:6px; display:block; content:''; width:8px; height:2px;background-color:#bd1313;}


.xwdt .lm{background-image:url(../img/lm_xwdt.png);}
.tzgg .lm{background-image:url(../img/lm_tzgg.png);}


.footer{float:left;width:100%;/* background-color:#545454; */background-color: #a60f14;padding: 50px 0;}
.foot{max-width:1460px;margin:0 auto;width:100%;display: flex;flex-wrap: wrap;justify-content: space-between;}

.footl{
    width: 45%;
    border-right: 1px solid #fff;
}
.footlg{}
.footlg img{}
.copy{}
.copy p{line-height:30px;color:#fff;font-size: 18px;margin-top: 20px;}
.footc{
    width: 25%;
    border-right: 1px solid #fff;
}
.footc h6{
    font-size: 20px;
    color: #fff;
    line-height: 30px;
}
.footc p{
    font-size: 18px;
    color: #fff;
    line-height: 30px;
}


.footr{
    width: 20%;
}
.code{}
.code ul{
    width: 100%;
    display: flex;
    justify-content: center;
}
.code ul li{
    width: 130px;
    text-align: center;
}
.code ul li img{width:100px;height:100px;}
.code ul li p{float:right;width: 100%;line-height: 20px;font-family: 'SourceHanSansSC-Regular';font-size:16px;color: #fff;margin: 10px 0 0;text-align: center;}



.bg_index1{    background-color: #f4f2ed;
    padding:40px 0px;}
.bg_index2{padding:40px 0px;}


.bg_main {
	position:relative;
	float:left;
	margin-bottom: 0px;
	background-color: #f8f6f1;
}
.bg_main:before{content:'';display:block;position:absolute;right:0;top: -50px;height: 50px;width: 81%;z-index: 9;background-color: rgb(255 255 255 / 70%);}
.bg_main .main{
    display: flex;
    flex-wrap: wrap;
    /* align-items: flex-start; */
    justify-content: flex-end;
    max-width: 1400px;
    position: relative;
    z-index: 11;
    }
.m_l {
	position: relative;
	z-index: 21;
	float: right;
	margin-top: -100px;
	width: 85%;
	padding-bottom: 0;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.m_l {}

.yjlm {
	float: left;
	width: 100%;
	display: flex;
	align-items: center;
	border-radius: 0;
	padding: 0;
	/* background-color: #850606; */
	flex-wrap: wrap;
}

.yjlm h6 {
	float: left;
	/* width: 100%; */
	line-height: 30px;
	text-align: left;
	text-indent: 25px;
	font-weight: bold;
	font-size: 24px;
	color: #fff;
	/* align-items: center; */
}

.yjlm p {
	float: left;
	width: 100%;
	line-height: 40px;
	text-align: left;
	font-size: 20px;
	color: #fff;
	opacity: 0.5;
}

.ejdh {
	float: left;
	width: 100%;
	padding: 0;
	/* background-color: rgb(255 255 255 / 70%); */
}

.ejdh ul {
	float: left;
	width: 100%;
}

.ejdh ul li {
	float: left;
	/* width: 100%; */
}

.ejdh ul li:first-child {
	border-top: 0;
}

.ejdh ul li.on .navp,.ejdh ul li:hover .navp{
	width: 100%;
}

.ejdh ul li .navp {
	padding: 0;
	float: left;
	width: 100%;
	height: 50px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	padding-left: 0;
}

.ejdh ul li:hover .navp em,
.ejdh ul li.on .navp em {
	
}

.ejdh ul li:hover .navp a,
.ejdh ul li.on .navp a {
	color: #850606;
	font-weight: bold;
	border-bottom: 0;
}

.ejdh ul li.on dl {
    
}

.ejdh ul li .navp a {
	color: #000;
	display: inline-block;
	font-size: 20px;
	padding: 0 20px;
	line-height: 30px;
}

.ejdh ul li .navp em {
	float: right;
	width: 30px;
	cursor: pointer;
	height: 60px;
	display: none;
}

.ejdh ul dl {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	padding: 0 0px 0 0px;
	margin: 0;
	border-top: 1px solid #F0F2F4;
}



.ejdh ul dl dd {
	float: left;
	position: relative;
	width: 100%;
	padding: 0px;
	text-indent: 0px;
	line-height: 30px;
	text-align: left;
	padding-left: 35px;
}

.ejdh ul dl dd a {
	color: #000 !important;
	font-size: 16px;
	font-weight: normal !important;
	padding: 0 !important;
}

.ejdh ul dl dd:hover a,
.ejdh ul dl dd.cur a {
	color: #1b3b95 !important;
font-family: 'SOURCEHANSERIFCN-HEAVY';
}

.m_r {
	position: relative;
	z-index: 21;
	margin-bottom: 60px;
	min-height: 500px;
	float: right;
	margin-top: 20px;
	width: 100%;
	padding: 20px;
	background-color: #fff;
	padding-bottom: 40px;
}

.main1 {
	position: relative;
	margin-bottom: 60px;
	min-height: 500px;
	background-color: #fff;
	float: right;
	margin-top: 20px;
	width: 100%;
	max-width: 100%;
	padding: 0px 20px;
}

.dqlm {
	position: relative;
	float: left;
	width: 100%;
	height: 50px;
	padding-bottom: 0;
	/* border-bottom: 1px solid #850606; */
}

.dqlm h6 {
	float: left;
	line-height: 50px;
	font-size: 26px;
	text-align: left;
	color: #fff;
	text-indent: 0;
}

.dqwz {
	float: right;
	padding-left: 30px;
	font-size: 14px;
	color: #fff;
	line-height: 50px;
}

.dqwz a,
.dqwz span {
	font-size: 16px;
	color: #fff;
}