@charset "utf-8";

* {
	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{
	display: inline-block;
	list-style-type: none;
	font-size: 15px;
	margin: 0;
}
p{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; }

    .rounded-0 { border-radius: 0; }
    .rounded-2 { border-radius: 2px; }
    .rounded-4 { border-radius: 4px; }
    .rounded-6 { border-radius: 6px; }
    .rounded-8 { border-radius: 8px; }
    .rounded-12 { border-radius: 12px; }
    .rounded-16 { border-radius: 16px; }
    .rounded-20 { border-radius: 20px; }
    .rounded-full { border-radius: 50%; }
    .rounded-t-8 { border-top-left-radius: 8px; border-top-right-radius: 8px; }
    .rounded-b-8 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }

    /* 3. 样式类（颜色/文字/背景） */
    .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; }

    .bg-transparent { background-color: transparent; }
    .bg-white { background-color: #ffffff; }
    .bg-black { background-color: #000000; }
    .bg-gray-50 { background-color: #f9fafb; }
    .bg-gray-100 { background-color: #f3f4f6; }
    .bg-gray-200 { background-color: #e5e7eb; }
    .bg-gray-300 { background-color: #d1d5db; }
    .bg-gray-400 { background-color: #9ca3af; }
    .bg-gray-500 { background-color: #6b7280; }
    .bg-primary { background-color: #165dff; }
    .bg-success { background-color: #00b42a; }
    .bg-warning { background-color: #ff7d00; }
    .bg-danger { background-color: #f53f3f; }
    .bg-info { background-color: #86909c; }

    .shadow-none { box-shadow: none; }
    .shadow-xs { box-shadow: 0 0 2px rgba(0, 0, 0, 0.05); }
    .shadow-sm { box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); }
    .shadow { box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); }
    .shadow-md { box-shadow: 0 0 12px rgba(0, 0, 0, 0.12); }
    .shadow-lg { box-shadow: 0 0 16px rgba(0, 0, 0, 0.15); }
    .shadow-xl { box-shadow: 0 0 24px rgba(0, 0, 0, 0.2); }
    .shadow-inset { box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1); }
    .shadow-primary { box-shadow: 0 0 8px rgba(22, 93, 255, 0.2); }
    .shadow-success { box-shadow: 0 0 8px rgba(0, 180, 42, 0.2); }

    /* 4. 交互类 */
    .cursor-default { cursor: default; }
    .cursor-pointer { cursor: pointer; }
    .cursor-not-allowed { cursor: not-allowed; }
    .cursor-wait { cursor: wait; }
    .cursor-help { cursor: help; }
    .user-select-none { user-select: none; }
    .user-select-text { user-select: text; }
    .pointer-events-none { pointer-events: none; }
    .pointer-events-auto { pointer-events: auto; }

    .opacity-0 { opacity: 0; }
    .opacity-10 { opacity: 0.1; }
    .opacity-20 { opacity: 0.2; }
    .opacity-30 { opacity: 0.3; }
    .opacity-40 { opacity: 0.4; }
    .opacity-50 { opacity: 0.5; }
    .opacity-60 { opacity: 0.6; }
    .opacity-70 { opacity: 0.7; }
    .opacity-80 { opacity: 0.8; }
    .opacity-90 { opacity: 0.9; }
    .opacity-100 { opacity: 1; }

    /* 5. 动效类 */
    .transition { transition: all 0.3s ease; }
    .transition-fast { transition: all 0.2s ease; }
    .transition-slow { transition: all 0.5s ease; }
    .transition-transform { transition: transform 0.3s ease; }
    .transition-opacity { transition: opacity 0.3s ease; }
    .transition-bg { transition: background-color 0.3s ease; }

    .transform { transform: translate(0, 0); }
    .scale-0 { transform: scale(0); }
    .scale-50 { transform: scale(0.5); }
    .scale-90 { transform: scale(0.9); }
    .scale-95 { transform: scale(0.95); }
    .scale-100 { transform: scale(1); }
    .scale-105 { transform: scale(1.05); }
    .scale-110 { transform: scale(1.1); }
    .scale-x-100 { transform: scaleX(1); }
    .scale-x-0 { transform: scaleX(0); }
    .scale-y-100 { transform: scaleY(1); }
    .scale-y-0 { transform: scaleY(0); }

    .rotate-0 { transform: rotate(0deg); }
    .rotate-90 { transform: rotate(90deg); }
    .rotate-180 { transform: rotate(180deg); }
    .rotate-270 { transform: rotate(270deg); }
    .rotate-360 { transform: rotate(360deg); }
    .rotate-15 { transform: rotate(15deg); }
    .rotate--15 { transform: rotate(-15deg); }

    .translate-x-0 { transform: translateX(0); }
    .translate-x-50 { transform: translateX(50%); }
    .translate-x--50 { transform: translateX(-50%); }
    .translate-y-0 { transform: translateY(0); }
    .translate-y-50 { transform: translateY(50%); }
    .translate-y--50 { transform: translateY(-50%); }

    .skew-x-0 { transform: skewX(0); }
    .skew-x-10 { transform: skewX(10deg); }
    .skew-y-0 { transform: skewY(0); }
    .skew-y-10 { transform: skewY(10deg); }

    .hover-scale:hover { transform: scale(1.05); }
    .hover-scale-sm:hover { transform: scale(1.02); }
    .hover-scale-lg:hover { transform: scale(1.1); }
    .hover-opacity:hover { opacity: 0.8; }
    .hover-shadow:hover { box-shadow: 0 0 12px rgba(0, 0, 0, 0.15); }

    /* ==================== 通用场景快捷样式 ==================== */
    /* 通用容器 */
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 16px;
    }
    .container-sm {
      max-width: 960px;
    }
    .container-lg {
      max-width: 1400px;
    }

    
   
   
    

.w100 {
	/* float: left; */
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-repeat:no-repeat;
}

.bg_e7f3ff {
	background-color: #e7f3ff;
	overflow: hidden;
}

.clear {
	clear: both;
}

.li_last {
	margin-right: 0 !important;
}

.header { 
	top:0;
	left:0; 
	right:0;
	bottom:0;width: 100%;
	height: 130px;
	z-index:9999;
	background: url(../img/bg_header.png) no-repeat center center;
}

.head {
	max-width: 1400px;
	margin: 0px auto;
	
	/* position: relative; */
	z-index: 99;
}

.logo {
}

.logo a {
	width: 100%;
	height: auto;
	overflow: hidden;
	display: block;
}

.logo img {
	width: 100%;
}

.logor {max-width: 800px;padding-top: 10px;}

/* ========== wzSwiper 强制生效样式 ========== */
.topwz {
  position: relative;
  width: 400px;
  overflow: hidden;
  margin-left: 20% ;
  height: 50px ; 
  z-index: 9999 !important; 
}

.toplj {
	line-height: 50px;
}

.toplj a{padding-left: 20px;background-repeat:no-repeat;background-position:left center;margin: 0 10px;}
.toplj a:hover{font-weight:bold;color:#fff;}





.dh {
	/* position: relative; */
	z-index: 999;
	float: left;
	width: 100%;
	height: 50px;
	margin-top: 20px;
}

#menu {
	/* position: relative; */
	z-index: 9;
	zoom: 1;
	width: 100%;
	max-width: 100%;
	text-align: center;
	height: 50px;
	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 20px;
	text-align: center;
	line-height: 50px;
	height: auto;
	/* width: 10%; */
	text-align: left;
	display: inline-block;
	float: left;
}

#menu li::after {
	position:absolute;
	    left: 50%;
	    bottom: 0px;
	    display:block;
	    content:"";
	    width:0%;
	    height:0px;
	    background-color:#014eae;
	    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,#menu li .item {
	white-space: normal;
	padding: 0 0px;
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	color: #fff;
}


#menu li:hover {background-color:#fff;}

#menu li:hover a,#menu li:hover .item {
	color: #014eae;
}

#menu li a:hover {}

#menu .sunav {
	margin: 0;
	padding: 0;
	width: 100%;
	_margin: 0;
	position: absolute;
	z-index: 900;
	top:130px;
	left:0;
	opacity: 0;
	padding-top:30px;
	visibility: hidden;
	max-width: none;
	height:50vh;
	display: flex;
	max-height: 350px;
	background-color:#fff;
	transition: opacity .4s ease, top .45s ease;
	/* align-items: center; */
}

#menu .sunav.active{
	top:130px;
		opacity: 1;
		visibility: visible;
}
 
#menu  .sunav ol{
    /* width: 100%; */
    display: flex;
    justify-content: flex-start;
    max-width: 1400px;
    /* min-width: 500px; */
    margin: 0 auto;
    padding-left: 40px;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    }
#menu .sunav ol li{
    padding: 0 10px;
    min-width: 200px;
    position: relative;
    line-height: 40px;
    margin: 0 40px 40px 0;
}
#menu .sunav ol li a{color: #05489d;font-size: 18px;}
#menu  .sunav ol li::before{display:block;content:'';width: 6px;height: 6px;position: absolute;left: 0;top: 17px;background-color: #05489d;border-radius: 100%;}
#menu  .sunav ol li dl{}
#menu  .sunav ol li dl dd{
    text-align: left;
    line-height: 30px;
}
#menu  .sunav ol li dl dd::before{display:none;}
#menu  .sunav ol li dl dd a{
    font-size: 16px;
    font-weight: normal;
    color: #333;
}
#menu  .sunav ol li dl dd:hover a{color: #05489d;}

.menu-btn {
	display: none;
	overflow: hidden;
	float: right;
	/* margin-left: 35px; */
	width: 30px;
	height: 30px;
	background: 0 0;
	text-indent: 0;
	opacity: 1;
	/* position: absolute;
	top:45px;
	right: 10px;
	z-index: 999; */
}

.menu-btn2 {
	position: absolute;
	top: 20px;
	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: 26px;
	height: 2px;
	background-color: #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: -10px;
	width: 26px;
}

.menu-btn .line-3,
.menu-btn2 .line-3 {
	margin-top: 10px;
	width: 26px;
}

.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: 26px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg)
}

.drawerMenu-open .menu-btn .line-3,
.menu-btn2.open .line-3 {
	margin-top: 0 !important;
	width: 26px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg)
}

.mobNav {
	position: fixed;
	top: 100px;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	z-index: 999;
	padding: 20px 6% 20px;
	display: none
}

.mobNav ul {
	float:left;;
	width: 100%;
	max-height:65vh;
	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: #014eae;
	font-weight: 700;
	background-size: auto 100%
}

.mobNav ul li .navp i {
	display: block;
	font-style: normal;
	width: 20px;
	font-size: 30px;
	/* font-weight: lighter; */
	transition: .3s;
	color: #014eae;
	transform-origin: center;
	margin-right: 0;
	height: 20px;
	background-size: 16px 16px;
	background: url(../img/navicontop.png) no-repeat center center;
	background-size: contain;
}

.mobNav ul li.on .navp i {
	background: url(../img/navicontopb.png) no-repeat center center;
}

.mobNav ul li .subNavm {
	margin-top: 10px;
	padding-left: 0;
	display: none;
	float: left;
	width: 100%;
}

.mobNav ul li .subNavm a {
	display: block;
	line-height: 36px;
	font-size: 16px;
	text-align: left;
	width: 100%;
}
.mobNav ul li .subNavm dl{margin-bottom:0;width: 100%;display: flex;flex-wrap: wrap;justify-content: space-around;}
.mobNav ul li .subNavm dd{
    margin: 0 5px;
}
.mobNav ul li .subNavm dd a{line-height: 36px;
	font-size: 14px}





.bg_index1 {
}

.bg_index2{
	background-color:#edf2f8;
	
}


.sj{display:none;}


.lmbanner {
	float: left;
	margin-top: 0px;
	width: 100%;
	position: relative;
	height: auto;
	z-index: 9;
}

.banner {
	position:relative;
	z-index: 99;
	float: left;
	width: 100%;
	height:100vh;
	max-height:750px;
	margin-top: 0;
}

.banner img,
.lmbanner img {
	width: 100%;
}

.circle__box {
    width: 32px;
    height: 32px;
    position: relative;
    opacity: 0;
    display: none;
}

.circle__wrapper {
    width: 16px;
    height: 32px;
    position: absolute;
    top: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.circle__wrapper--right {
    right: 0;
}

.circle__wrapper--left {
    left: 0;
}

.circle__whole {
    width: 32px;
    height: 32px;
    border: 2px solid hsl(0deg 0% 100% / 20%);
    border-radius: 50%;
    position: absolute;
    top: 0;
    transform: rotate(-135deg);
}

.circle__right {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    right: 1px;
    animation: circleRight 5000ms linear forwards;
}

.circle__left {
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    left: 1px;
    animation: circleLeft 5000ms linear forwards;
}

.banner .swiper-slide-active,.banner .swiper-pagination-bullet-active{
    svg {
        opacity: 1;
    }

    .circle {
        -webkit-animation: stroke var(--circle-speed,1s) linear forwards;
        animation: stroke var(--circle-speed,1s) linear forwards;
    }

    .sc-content {
        opacity: 1;
    }

    .counter {
        opacity: 1;
    }

    .circle__box {
        opacity: 1;
        display: block;
    }
}


.banSwiper {
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.banner .swiper-button-next,
.banner .swiper-button-prev {
	color: transparent;
}

.banner .pgba {
	z-index: 5;
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	bottom: 0px !important;
	height:128px;
	padding-top: 58px;
	
}


.banner .swiper-pagination-bullet{
	position:relative;
	width: 32px;
	height: 32px;
	background: hsl(0deg 0% 100% / 0%);
	margin: 0px 0px !important;
	opacity:1 !important;
	color: #fff;
	}
.banner .swiper-pagination-bullet span{
    position: absolute;
    left: 0;
    right: 0;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    text-align: center;
    font-style: normal;
}



.banner .swiper-pagination-bullet-active{
	width: 32px;
	height: 32px;
	margin: 0px 10px !important; 
}

.banner .pgba span.active i {
	opacity: 1;
	transition: .3s;
}
@keyframes circleRight {
    0% {
        transform: rotate(-135deg);
    }

    50%,100% {
        transform: rotate(45deg);
    }
}

@keyframes circleLeft {
    0%,50% {
        transform: rotate(-135deg);
    }

    100% {
        -webkit-transform: rotate(45deg);
    }
}

.ban_l,
.ban_r {
	position: absolute !important;
	bottom: 5px !important;
	top: auto !important;
}

.ban_l {
	left: 40% !important;
	
}

.ban_r {
	right: 40% !important;
	
}

@keyframes cilcle {
	0% {
		transform: rotateZ(0);
	}

	100% {
		transform: rotateZ(360deg);
	}
}
.swiper-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner .swiper-slide {
	/* min-width: 100vw */
}

.banner .swiper-slide .a {
	display: block;
	height: 100%;
	max-height: 750px;
}

.banner .swiper-slide .a {
	position: relative;
	display: block;
	overflow: hidden;
	width: 100%;
}

.banner .swiper-slide .bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	z-index: -1;
}

.banner .swiper-slide .bg:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 20%;
	background-size: 100% 100%;
	z-index: 1;
	bottom: 0
}

.banner .swiper-slide .bg {
	-webkit-transform: scale(1.0);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	transition: 5s;
	background-size: cover !important;
	width: 100%;
}

.banner .swiper-slide-active .bg {
	-webkit-transform: scale(1);
}

.main {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}



.lm {
	position:relative;
	float: left;
	width: 100%;
	height: 60px;margin-bottom:20px;
}
.lm .tit{
    text-align: center;
}
.lm .tit h6 {
	line-height: 60px;
	font-weight: bold;
	color: #333;
	letter-spacing: 5px;
	font-size: 30px;
	/* float: left; */
}
.more{line-height: 60px; color: #888;}


.footer {
            background-color: #03479c; /* 深蓝色背景 */
            color: #fff;
            font-size: 14px;
            padding: 20px 0 0  0px;
            position: relative; /* 用于二维码定位 */
            float: left;
            width: 100%;
        }

.foot {
	width: 100%;
	color: #fff;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding: 0;
	padding-bottom: 20px;
}

.lxwm {
            display: flex;
            align-items: center;
            gap: 15px;
            width: 50%;
            flex-wrap: wrap;
        }
        .footer-logo {
           
            height: 60px;
        }
        .footer-info p {
            margin: 0;
            line-height: 30px;
        }

        /* 中间：友情链接 */
        .yqlj {

            width: 50%;
        }
		 .yqlj h6{background-image:url(../img/bg_yqlj.png);background-position: left center;background-repeat: no-repeat;padding-left: 25px;line-height: 30px;font-size: 16px;}
		.yqlj ul{
    display: flex;
    flex-wrap: wrap;
}
		.yqlj li{width:50%;line-height: 30px;}
         .yqlj li a {
            color: #fff;
            text-decoration: none;
        }
          .yqlj li:hover a{
            text-decoration: underline;
        }

        /* 右侧：访问量 + 社交图标 */
        .footer-bottom {
			float:left;
			width:100%;
			border-top: 1px solid rgb(255 255 255 / 25%);
			display: flex;
			justify-content: center;
			line-height: 50px;
			}.copy{display: flex;}.copy p{padding:0 5px;}
        .code{
    margin-left: 20px;
}
        .code ul{
            width: 100%;
            text-align: center;
        }
        .code ul li{
            position: relative;
            width: 40px;
            margin: 0 5px;
            text-align: center;
        }
        .code ul li img{
            /* width: 80px; */
        }
        .code ul li p{
            color: #fff;
            font-size: 14px;
            line-height: 30px;
            padding-top: 10px;
        }
        .code ul li .ewm{
            position: absolute;
            left: 66%;
            bottom: 50px;
            opacity: 0;
            width: 120px;
            height: 120px;
            visibility: hidden;
            transform: translate(-50%, 0);
            -webkit-transform: translate(-50%, 0);
            -moz-transform: translate(-50%, 0);
            -ms-transform: translate(-50%, 0);
            -o-transform: translate(-50%, 0);
            background-color: #fff;
        }
        .code ul li:hover .ewm{opacity: 1; visibility: visible;}
        .code ul li .ewm::before{display:block;content:"";position: absolute;left: 40px;bottom: -10px;border: 10px solid transparent;border-top: 10px solid #fff;border-bottom: 0;}
        .code ul li .ewm img{
            width: 100%;
        }
		
		
.right_nav{
    position: fixed;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10000;
    width:120px;
    height:500px;
    background-color: #03479c;
    border-radius: 60px;
    display: flex;
    }		
.right_nav ul{width:100%;display: flex;flex-wrap: wrap;align-items: center;}
.right_nav ul li{
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    padding: 0px 0;
}
.right_nav ul li a{
    display: flex;
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: center;
    align-items: center;
}
.right_nav ul li a img{
    display: inline-block;
}
.right_nav ul li a p{
    width: 100%;
    color: #fff;
    line-height: 30px;
}
		

.bg_main1 {
	float:left;
	width:100%;
	background-color:#e1e8f0;
	background-repeat:no-repeat;
	background-image:url(../img/bg_main.png);
	background-position:bottom center;
	margin-top: 130px;
	}

.bg_main .main{flex-wrap: wrap;
    align-items: flex-start;}
.m_l {
	position: relative;
	z-index: 21;
	float: left;
	margin-top: 30px;
	width: 240px;
	padding-bottom: 200px;
	background-image: url(../img/bg_ml.png);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-color: #fff;
	border-radius: 0 30px 0 0;
}

.yjlm {
	float: left;
	width: 100%;
	display: flex;
	align-items: center;
	height: 100px;
	border-radius: 0 30px 0 0;
	padding: 0 30px;
	background-color: #03479c;
}

.yjlm h6 {
	float: left;
	width: 100%;
	line-height: 30px;
	text-align: center;
	font-weight: bold;
	font-size: 36px;
	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%;
	border-bottom: 1px solid #bcd1ea;
	line-height: 60px;
	/* height: 65px; */
}

.ejdh ul li:first-child {
	border-top: 0;
}

.ejdh ul li.on .navp,.ejdh ul li:hover .navp{background-image: url(../img/ejdhli.png);background-position: left top 20px;background-color:#f3f8ff;background-repeat: no-repeat;}

.ejdh ul li .navp {
	padding: 0;
	float: left;
	width: 100%;
	padding-left: 75px;
	padding-right: 21px;
	text-align: left;
}

.ejdh ul li:hover .navp em,
.ejdh ul li.on .navp em {
	background-image:url(../img/ejdh_on.png);}

.ejdh ul li:hover .navp a,
.ejdh ul li.on .navp a {
	color: #03479c;
	
}

.ejdh ul li.on dl {
    display: block;
}

.ejdh ul li .navp a {
	color: #000;
	display: inline-block;
	font-size:18px;
	padding: 15px 0;
	line-height: 30px;
	width: 120px;
}

.ejdh ul li .navp em {
	float: right;
	width: 20px;
	cursor: pointer;
	height: 60px;
	background-image:url(../img/ejdh_li.png);
	background-repeat: no-repeat;
	background-position: left center;
}

.ejdh ul dl {
	position: relative;
	display: none;
	float: left;
	width: 100%;
	padding: 0 0px 0 75px;
	margin: 0;
	border-top: 0px solid #F0F2F4;
}



.ejdh ul dl dd {
	float: left;
	position: relative;
	width: 100%;
	padding: 0px;
	text-indent: 0px;
	line-height: 35px;
	text-align: left;
	padding-left: 0;
}



.ejdh ul dl dd a {
	color: #686866 !important;
	font-size: 16px;
	font-weight: normal !important;
	padding: 0 !important;
}

.ejdh ul dl dd:hover a,
.ejdh ul dl dd.cur a {
	color: #03479c !important;
}

.m_r {
	position: relative;
	z-index: 21;
	margin-bottom: 60px;
	min-height: 500px;
	float: right;
	margin-top: 30px;
	width: calc(100% - 270px);
	max-width: 920px;
	padding: 20px;
	padding-bottom: 40px;
	background-color: #fff;
}
.bg_main1 .main{display:block;}
.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: 35px;
	padding-bottom: 0;
	border-bottom: 1px solid #d5d9d7;
}

.dqwz {
	float: left;
	padding-left:25px;
	font-size: 14px;
	color: #777;
	line-height: 35px;
	background: url(../img/bg_dqwz.png) no-repeat left center;
}

.dqwz a,
.dqwz span {
	font-size: 14px;
	color: #777;
	
}
.dqlm .search{float:right;width:206px; height:26px; border:1px solid #9d9d9d;line-height:26px;}
.dqlm .search .ssk{float: left;width: calc(100% - 30px);padding: 0 10px;line-height: 24px;height: 24px;margin: 0;outline: 0;border: 0;}
.dqlm .search .ss{border: 0;background-image:url(../img/bgsearch2.png);width:30px;height: 24px;background-repeat:no-repeat;background-position: center;}