@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; }
    .w-100 { width: 100px; }
    .w-200 { width: 200px; }
    .w-300 { width: 300px; }
    .w-400 { width: 400px; }
    .h-0 { height: 0; }
    .h-25 { height: 25%; }
    .h-50 { height: 50%; }
    .h-75 { height: 75%; }
    .h-full { height: 100%; }
    .h-auto { height: auto; }
    .h-100 { height: 100px; }
    .h-200 { height: 200px; }
    .h-300 { height: 300px; }
    .h-screen { height: 100vh; }
    .max-w-full { max-width: 100%; }
    .max-w-1200 { max-width: 1200px; }
    .max-w-1000 { max-width: 1000px; }
    .max-h-full { max-height: 100%; }
    .min-w-full { min-width: 100%; }
    .min-h-full { min-height: 100%; }
    .min-h-screen { min-height: 100vh; }

    .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-0 { margin: 0; }
    .m-4 { margin: 4px; }
    .m-8 { margin: 8px; }
    .m-12 { margin: 12px; }
    .m-16 { margin: 16px; }
    .m-20 { margin: 20px; }
    .m-24 { margin: 24px; }
    .m-auto { margin: auto; }

    .mt-4 { margin-top: 4px; }
    .mt-8 { margin-top: 8px; }
    .mt-12 { margin-top: 12px; }
    .mt-16 { margin-top: 16px; }
    .mt-20 { margin-top: 20px; }
    .mr-4 { margin-right: 4px; }
    .mr-8 { margin-right: 8px; }
    .mr-12 { margin-right: 12px; }
    .mr-16 { margin-right: 16px; }
    .mr-20 { margin-right: 20px; }
    .mb-4 { margin-bottom: 4px; }
    .mb-8 { margin-bottom: 8px; }
    .mb-12 { margin-bottom: 12px; }
    .mb-16 { margin-bottom: 16px; }
    .mb-20 { margin-bottom: 20px; }
    .ml-4 { margin-left: 4px; }
    .ml-8 { margin-left: 8px; }
    .ml-12 { margin-left: 12px; }
    .ml-16 { margin-left: 16px; }
    .ml-20 { margin-left: 20px; }

    .mx-4 { margin-left: 4px; margin-right: 4px; }
    .mx-8 { margin-left: 8px; margin-right: 8px; }
    .mx-12 { margin-left: 12px; margin-right: 12px; }
    .mx-auto { margin-left: auto; margin-right: auto; }
    .my-4 { margin-top: 4px; margin-bottom: 4px; }
    .my-8 { margin-top: 8px; margin-bottom: 8px; }
    .my-12 { margin-top: 12px; margin-bottom: 12px; }

    .p-0 { padding: 0; }
    .p-4 { padding: 4px; }
    .p-8 { padding: 8px; }
    .p-12 { padding: 12px; }
    .p-16 { padding: 16px; }
    .p-20 { padding: 20px; }
    .p-24 { padding: 24px; }

    .pt-4 { padding-top: 4px; }
    .pt-8 { padding-top: 8px; }
    .pt-12 { padding-top: 12px; }
    .pt-16 { padding-top: 16px; }
    .pr-4 { padding-right: 4px; }
    .pr-8 { padding-right: 8px; }
    .pr-12 { padding-right: 12px; }
    .pr-16 { padding-right: 16px; }
    .pb-4 { padding-bottom: 4px; }
    .pb-8 { padding-bottom: 8px; }
    .pb-12 { padding-bottom: 12px; }
    .pb-16 { padding-bottom: 16px; }
    .pl-4 { padding-left: 4px; }
    .pl-8 { padding-left: 8px; }
    .pl-12 { padding-left: 12px; }
    .pl-16 { padding-left: 16px; }

    .px-4 { padding-left: 4px; padding-right: 4px; }
    .px-8 { padding-left: 8px; padding-right: 8px; }
    .px-12 { padding-left: 12px; padding-right: 12px; }
    .px-16 { padding-left: 16px; padding-right: 16px; }
    .py-4 { padding-top: 4px; padding-bottom: 4px; }
    .py-8 { padding-top: 8px; padding-bottom: 8px; }
    .py-12 { padding-top: 12px; padding-bottom: 12px; }
    .py-16 { padding-top: 16px; padding-bottom: 16px; }

    .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; }

 



    @media (max-width: 575.98px) {
      .xs-hidden { display: none !important; }
      .xs-block { display: block !important; }
      .xs-inline { display: inline !important; }
      .xs-inline-block { display: inline-block !important; }
      .xs-flex { display: flex !important; }
      .xs-grid { display: grid !important; }
      .xs-flex-col { flex-direction: column !important; }
      .xs-w-full { width: 100% !important; }
      .xs-w-auto { width: auto !important; }
      .xs-m-0 { margin: 0 !important; }
      .xs-p-0 { padding: 0 !important; }
      .xs-text-12 { font-size: 12px !important; }
      .xs-text-center { text-align: center !important; }
    }

    
    @media (min-width: 576px) and (max-width: 767.98px) {
      .sm-hidden { display: none !important; }
      .sm-block { display: block !important; }
      .sm-inline { display: inline !important; }
      .sm-inline-block { display: inline-block !important; }
      .sm-flex { display: flex !important; }
      .sm-grid { display: grid !important; }
      .sm-flex-col { flex-direction: column !important; }
      .sm-w-50 { width: 50% !important; }
      .sm-w-full { width: 100% !important; }
      .sm-text-14 { font-size: 14px !important; }
    }

    
    @media (min-width: 768px) and (max-width: 991.98px) {
      .md-hidden { display: none !important; }
      .md-block { display: block !important; }
      .md-inline { display: inline !important; }
      .md-inline-block { display: inline-block !important; }
      .md-flex { display: flex !important; }
      .md-grid { display: grid !important; }
      .md-w-33 { width: 33.333% !important; }
      .md-w-50 { width: 50% !important; }
    }

    @media (min-width: 992px) and (max-width: 1199.98px) {
      .lg-hidden { display: none !important; }
      .lg-block { display: block !important; }
      .lg-inline { display: inline !important; }
      .lg-inline-block { display: inline-block !important; }
      .lg-flex { display: flex !important; }
      .lg-grid { display: grid !important; }
      .lg-w-25 { width: 25% !important; }
      .lg-w-33 { width: 33.333% !important; }
      .lg-w-50 { width: 50% !important; }
    }

    
    @media (min-width: 1200px) {
      .xl-hidden { display: none !important; }
      .xl-block { display: block !important; }
      .xl-inline { display: inline !important; }
      .xl-inline-block { display: inline-block !important; }
      .xl-flex { display: flex !important; }
      .xl-grid { display: grid !important; }
      .xl-w-20 { width: 20% !important; }
      .xl-w-25 { width: 25% !important; }
      .xl-w-33 { width: 33.333% !important; }
    }

    

.w100 {
	
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-repeat:no-repeat;
}

.clear {
	clear: both;
}

.li_last {
	margin-right: 0 !important;
}

.header {position: fixed;
	background-color:#1b3b95;z-index:999;
}

.head {
	max-width: 1400px;
	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: 340px;}

.xydh{
    line-height: 70px;
}
.xydh p,.xydh p span{color: #ffd700;
    background: linear-gradient(180deg, #fff9c4 0%, #ffd700 50%, #f57f17 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;}
	 

.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:0px;
	border: 1px solid #fff;
}
.mobNav .xydh,.mobNav .toplj,.mobNav .search{display:none}
.search .ssk {
	float: left;
	width: calc(100% - 50px);
	margin: 5px 0;
	padding: 0 10px 0 10px;
	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;
	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;
	border-top: 1px solid #6080dc;
}

#menu {
	position: relative;
	z-index: 9;
	zoom: 1;
	width: 100%;
	max-width: 1400px;
	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: #fff;
	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 10px;
	color: #fff;
	font-size: 18px;
	text-align: center;
	font-weight: bold;
}



#menu li:hover {background-color: #d7bfe1;}

#menu li:hover a {
	 color: #1b3b95;
}

#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(0,104,183,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: #1b3b95;
	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: 30px;
	height: 30px;
}

.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: #1b3b95;
	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: #1b3b95;
	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:160px; width:100%; position:relative; z-index:9; overflow:hidden;}
.banner img{width:100%;}
.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:1400px; margin:0 auto;}
.more{background:url(../img/more.png) no-repeat right center;color:#6c86cf;padding-right: 40px;}
.lmgzdt{background:url(../img/lm_gzdt.png) no-repeat center center; margin:50px 0 30px 0; line-height:40px; height:40px;}
.lmgzdt h6{font-size:34px; color:#1b3b95; z-index:9;}

.lmgzdt .more{line-height:32px; z-index:11;}
: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);}
.time{background:url(../img/bg_time.png) no-repeat left center; padding-left:20px; color:#1b3b95;}

.listd{background:url(../img/listd.png) no-repeat left center; padding-left:12px;}

.bg_index2{background-color:#d7bfe1; padding:40px 0;}

.bg_index3{background: url(../img/bg_index3.png) #ecf7fc no-repeat center bottom;padding: 60px 0 50px 0;}


.lm{height: 70px;border-bottom:1px solid #bfa1cb;line-height: 50px;}
.lm h6{float: left;background-position:left top;background-repeat:no-repeat;padding-left:50px;line-height: 50px;color: #1b3b95;font-family: 'SourceHanSerifSC-Bold';}

.tzgg .lm h6{background-image:url(../img/lm_tzgg.png);}
.aqjy .lm h6{background-image:url(../img/lm_aqjy.png);}
.djgz .lm h6{background-image:url(../img/lm_djgz.png);}

.bg_index3 .lm{width:190px;height: 340px;align-content: space-around;background-position:center center;background-repeat:no-repeat;}


.flfg .lm{background-image:url(../img/bg_flfg.png);}
.wjxz .lm{background-image:url(../img/bg_wjxz.png);}
.bg_index3 .lm h6{padding-left:0; width:100%; color:#fff; padding-top:80px;background-position:center top;}
.bg_index3 .more{background-image:url(../img/more2.png); color:#fff;}
.flfg .lm h6{background-image:url(../img/lm_flfg.png);}
.wjxz .lm h6{background-image:url(../img/lm_wjxz.png);}
.bszn .more{background:url(../img/more.png) no-repeat right center;color:#6c86cf;}


.footer{background-color:#1b3b95;}
.foot{max-width:1400px; margin:0 auto;width:100%;;}
.links{max-width:440px;padding: 30px 0;}

.select-group {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0px;
    justify-content: space-between;
}

.custom-select {
    position: relative;
    max-width: 210px;
    width: 48%;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #fff;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    margin: 0;
}

.custom-select:hover {
   
}

.custom-select dt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 10px;
    height: 100%;
    font-size: 16px;
    color: #fff;
    font-weight: normal;
}

.select-arrow {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
    transition: transform 0.3s ease;
}

.custom-select.open .select-arrow {
    transform: rotate(180deg);
}

.custom-select dd {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #e5e6eb;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 999;
    margin: 0;
 }

.custom-select.open dd {
    display: block;
}

.select-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.select-options li {
    padding: 10px 10px;
    width: 100%;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.select-options li:hover {
    
}

.select-options li.active {
  
}
.foot h6{font-size:20px; line-height:50px; color:#fff; font-family: 'SOURCEHANSANSSC-BOLD';}
.lxwm{max-width:500px;padding: 30px 5%;border-left:1px solid #3457b9;border-right:1px solid #3457b9;}
.lxwm p{font-size:18px;font-family: 'SourceHanSansSC-Regular';line-height:35px;color: #fff;}

.code{max-width:340px;padding: 30px 0;}
.code ul{}
.code ul li{}
.code ul li img{float:left; width:170px; height:170px; margin-right:0px;}
.code ul li p{float:right;margin-left:10px; width:20px;height:170px;line-height: 16px;font-family: 'SourceHanSansSC-Regular';font-size:16px;color: #fff;text-align: center;display: flex;align-items: center;}

.bg_copy{color:#fff;font-family: 'SourceHanSansSC-Regular';font-size:16px;background-color: #072477;display: flex; flex-wrap: wrap; align-items: center;justify-content: center;}
.copy{}
.copy p{line-height:50px;}
.fwtj{background:url(../img/bg_fwtj.png) no-repeat left center;line-height:50px;padding-left: 20px;color:#fff;margin-left: 40px;}




.bg_main {float:left;
	margin-bottom: 0px;
}
.bg_main .main{flex-wrap: wrap;
    align-items: flex-start;}
.m_l {
	position: relative;
	z-index: 21;
	float: left;
	margin-top: 50px;
	width: 320px;
	padding-bottom: 180px;
	background-image: url(../img/bg_ml.png);
	border-left: 4px solid #1b3b95;
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #f2f2fb;
}

.m_l {}

.yjlm {
	float: left;
	width: 100%;
	display: flex;
	align-items: center;
	height: 80px;
	background: url(../img/bg_yjlm.png) no-repeat center center;
	border-radius: 0;
	padding: 0 10px;
}

.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;
}

.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%;
	background: url(../img/ejdh_li.png) no-repeat left -10px center;
}

.ejdh ul li .navp {
	padding: 0;
	float: left;
	width: 100%;
	height: 70px;
	text-align: left;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	align-items: center;
	justify-content: flex-start;
	padding-left: 35px;
}

.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: #1b3b95;
	font-weight: bold;
	border-bottom: 0;
}

.ejdh ul li.on dl {
    /* display: block; */
}

.ejdh ul li .navp a {
	color: #000;
	display: inline-block;
	font-size: 22px;
	padding: 0 10px;
	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:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: calc(100% - 15px);
	background-color: #e2e7ec;
} */

.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:before {
	content: "";display
	position: absolute;
	left: 0;
	top: 15px;
	width: 15px;
	height: 1px;
	background-color: #e2e7ec;
} */

.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';
}

.sideContact{/* border: 1px solid #e6e6e6; *//* background: #f5f5f5; */padding: 20px 15px;float: left;}
.sideContact p{font-size: 12px;line-height: 24px;color: #262626;margin-bottom: 12px;}
.sideContact div{font-size: 14px;line-height: 32px;color: #1a1a1a;}
.sideContact div span{font-weight: bold;color: #1a1a1a;}

.m_r {
	position: relative;
	z-index: 21;
	margin-bottom: 60px;
	min-height: 500px;
	float: right;
	margin-top: 50px;
	width: calc(100% - 380px);
	max-width: 1240px;
	padding: 0px 0px;
	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: 80px;
	padding-bottom: 0;
	border-bottom: 1px solid #1b3b95;
}

.dqlm h6 {
	float: left;
	line-height: 78px;
	font-size: 26px;
	text-align: left;
	color: #1b3b95;
	text-indent: 0;
	border-bottom: 3px solid #1b3b95;
}

.dqwz {
	float: right;
	padding-left: 30px;
	font-size: 14px;
	color: #1b3b95;
	line-height: 80px;
	/* background: url(../img/bg_dqwz.png) no-repeat left center; */
}

.dqwz a,
.dqwz span {
	font-size: 16px;
	color: #1b3b95;
}