@charset "UTF-8";

@font-face {
  font-family: 'impact';
  src: url('font/impact.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}



html{font-size: 16px;font-family: 'MicroSoft YaHei', Arial;}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,
form,fieldset,input,textarea,p,blockquote,th,td {padding: 0;margin: 0;}
a{text-decoration:none;}
table {border-spacing: 0;}
fieldset,img {border: 0;}
address,caption,cite,code,dfn,em,strong,th,var {font-weight: normal;font-style: normal;}
strong{font-weight: bold;}
ol,ul {list-style: none;margin:0;padding:0;}
caption,th {text-align: left;}
h1,h2,h3,h4,h5,h6 {font-weight: normal;font-size: 100%;margin:0;padding:0;color:#444;}
q:before,q:after {content:'';}
abbr,acronym {border: 0;}

#myVideo{position: absolute;right: 0;bottom: 0;top:0;width: 100%;height: 100%;background-size: 100% 100%;background-color: black; /* in case the video doesn't fit the whole page*/background-image: /* our video */;background-position: center center;background-size: contain;object-fit: cover; /*cover video background */z-index:3;}
video::-webkit-media-controls {display:none !important;}

@keyframes deepBlueFlow {
	0%, 100% {
		background-position: 0% 50%;
		opacity: 0.9;
	}
	25% {
		opacity: 1;
	}
	50% {
		background-position: 100% 50%;
		opacity: 0.9;
	}
	75% {
		opacity: 1;
	}
}
@keyframes flash {
    0% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
}
@keyframes brightnessFlash {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes gentleFlash {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}



/* Centered texts in each section
* --------------------------------------- */

@media (max-width: 1180px) and (min-width: 300px){
	
	.container{width: 100%;height: auto;overflow: hidden;margin: auto;}
		.top_con{width: 100%;height: calc(80px + (90 - 80) * ((100vw - 300px) / (1180 - 300)));background: rgba(0,0,0,0);display: flex;justify-content: center;position: fixed;z-index: 100;}
		.top_con.active{background: linear-gradient(45deg,#0a0f1a,#0e172f,#142248,#1a2e60,#213e7d,#2a4e9a,#3a66b8,#8cb2f2,#3a66b8,#2a4e9a,#213e7d,#1a2e60);background-size: 400% 400%;animation: deepBlueFlow 15s ease infinite;opacity: 1 !important;position: fixed;z-index: 100;}
		.cur{}

			.top_con .top_b{width: 89%;height: calc(80px + (90 - 80) * ((100vw - 300px) / (1180 - 300)));color: #fff;font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1180 - 300)));font-weight:600;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: center;}
				.top_con .top_b .top_logo{width: 17%;height: calc(80px + (90 - 80) * ((100vw - 300px) / (1180 - 300)));display: flex;flex-wrap: wrap;align-content: center;justify-content: flex-start;}
				.top_con .top_b .top_logo img{width: calc(60px + (90 - 60) * ((100vw - 300px) / (1180 - 300)));}

				.top_con .top_b .top_nav{width: 68%;height: 60px;display: none;flex-wrap: wrap;justify-content: flex-end;}
					.top_con .top_b .top_nav ul{width: 80%;line-height: 60px;display: flex;flex-wrap: wrap;justify-content: flex-end;}
					.top_con .top_b .top_nav ul a{color: rgba(255,255,255,1);;line-height: 60px;transition: color .4s;cursor: pointer;}
					.top_con .top_b .top_nav ul a:hover{color: rgba(255,255,255,.65);}
					.top_con .top_b .top_nav ul li{height: 77px;text-align: center;padding:0 calc(19px + (26 - 19) * ((100vw - 300px) / (1180 - 300)));transition: border-bottom .4s;border-bottom: 2px solid rgba(0,140,235,0);}
					.top_con .top_b .top_nav ul li:hover{height: 77px;text-align: center;padding:0 calc(19px + (26 - 19) * ((100vw - 300px) / (1180 - 300)));transition: border-bottom .4s;border-bottom: 2px solid rgba(0,140,235,1);}


				.top_con .top_b .top_search{width: 14%;height: 58px;background: rgba(112,187,45,0);display: flex;flex-wrap: wrap;justify-content: space-between;align-content: center;}
					.top_con .top_b .top_search .tel{width: 70%;font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1180 - 300)));font-weight:400;line-height: 58px;display:none;flex-wrap: wrap;align-items: center;justify-content: space-evenly;align-content: center;flex-direction: row;}
					.top_con .top_b .top_search .tel a{color:rgba(255,255,255,1);transition: all .4s;}
					.top_con .top_b .top_search .tel a:hover{color:rgba(255,255,255,.65);}
					.top_con .top_b .top_search .tel i{font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1180 - 300)));font-weight:100;text-align: center;padding-top: calc(2px + (3 - 2) * ((100vw - 300px) / (1180 - 300)));}

				.top_con .top_b .top_search .search{display: none;}
				.top_con .top_b .top_search .m_search{width: 50%;text-align: center;line-height: 59px;}
				.top_con .top_b .top_search .m_search i{color:rgba(255,255,255,1);font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1180 - 300)));font-weight:100;text-align: center;cursor: pointer;transition: all .4s;}
				.top_con .top_b .top_search .m_search i:hover{color:rgba(255,255,255,.65);}


				.top_con .top_b .top_search .m_nav{width: 50%;text-align: center;line-height: 59px;}


		/**/
			#m_nav_list{padding: 0;position: fixed;background: #fff !important;top: 0;left: 100%;height: 100vh;-webkit-transition: all 0.5s;transition: all 0.5s;z-index: 1000;width: 100%;padding: 60px 8% 0 8%;z-index:999999;}
			#m_nav_list .close{margin-bottom: 15px;}
			#m_nav_list ul{overflow: hidden;}
			#m_nav_list ul li{width: 85%;}

			#m_nav_list .link-con,#m_nav_list .slide-link{display: block;padding: 0;color:#175b9c;font-weight: bold;border-bottom: 1px solid #E2E2E2;height:70px;line-height: 70px;background: url(../img/arrow.png) right center no-repeat;background-size:8px auto;font-size: 15px;margin: 0;text-align: center;}
			#m_nav_list .link-con:hover{color: #348ed9;}

			#m_nav_list.active{left: 0;}
		/**/



		.banner{width: 100%;height: auto;position: relative;z-index: 10;margin: 0 auto;}
			.swiper-slide img{width: 100%;height: 35vh;object-fit: cover;}
			.swiper-pagination-fraction,.swiper-pagination-custom,.swiper-container-horizontal > .swiper-pagination-bullets {bottom: 60px;left: 0;width: 100%;}
			.swiper-pagination-bullet-active {opacity: 1;background: rgba(255,255,255,.85);}





		/*------icon------*/
		.icon_b{width: 100%;height: auto;background: #fff;padding:20px 0;}
		.icon_b .con{width: 96%;height: auto;margin:auto;}
		.icon_b .con ul{width: 100%;display: flex;flex-wrap:wrap;justify-content: center;}
		.icon_b .con ul li{width: 50%;display: flex;flex-wrap:wrap;justify-content: center;margin-bottom: 10px;}
		.icon_b .con ul li:last-child{width: 100%;display: flex;flex-wrap:wrap;justify-content: center;margin-bottom: 10px;}
		.icon_b .con ul li .icon_txt{width: 96%;background: url(../images/icon_bg.jpg) top center no-repeat;background-size: cover;border-radius: 10px;display: flex;flex-wrap:wrap;flex-direction: column;align-items: center;padding:10px 0 30px;box-shadow: 0 0 10px 0 rgba(0,0,0,0);transition: all 0.4s;cursor: pointer;}
		.icon_b .con ul li .icon_txt:hover {animation: brightnessFlash 0.4s ease;box-shadow: 0px 10px 0px 0px rgba(0,0,0,0.1);}
		.icon_b .con ul li .icon_txt .num{width: 92%;color:#fff;font-family: 'impact';text-align: right;font-size: calc(30px + (40 - 30) * ((100vw - 300px) / (1180 - 300)));line-height: calc(45px + (50 - 45) * ((100vw - 300px) / (1180 - 300)));}
		.icon_b .con ul li .icon_txt .title{width: 92%;color:#fff;font-weight:600;text-align: center;font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));line-height: calc(30px + (50 - 30) * ((100vw - 300px) / (1180 - 300)));margin-top: calc(12px + (20 - 12) * ((100vw - 300px) / (1180 - 300)));}
		.icon_b .con ul li .icon_txt .line{width: 14%;height: 2px;border-bottom: 2px solid rgba(255,255,255,.3);margin: calc(10px + (10 - 5) * ((100vw - 300px) / (1180 - 300))) auto calc(10px + (20 - 6) * ((100vw - 300px) / (1180 - 300)));}
		.icon_b .con ul li .icon_txt .summary{width: 80%;color:#fff;font-weight:100;text-align: center;font-size:  calc(12px + (13 - 12) * ((100vw - 300px) / (1180 - 300)));line-height:  calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));}










		/*---1---*/
		.con1{width: 100%;min-height: calc(657px + (967 - 657) * ((100vw - 300px) / (1180 - 300)));height: auto;margin: auto;background: #f1f2f6;padding-top: 2rem;}
			.con1 .con1_b{width: 96%;margin: 15px auto;display: flex;}
				.con1 .con1_b .title_b{width: 100%;height: auto;display: flex;flex-direction: column;}
					.con1 .con1_b .title_b .title_b_l{width: 100%;height: auto;display: flex;flex-wrap: wrap;}
						.con1 .con1_b .title_b .title_b_l .en{width: 100%;line-height: calc(32px + (38 - 32) * ((100vw - 300px) / (1180 - 300)));color:#222;font-size: calc(30px + (36 - 30) * ((100vw - 300px) / (1180 - 300)));text-transform:capitalize;font-weight: 100;}
						.con1 .con1_b .title_b .title_b_l .ch{width: 100%;line-height: calc(44px + (60 - 44) * ((100vw - 300px) / (1180 - 300)));color:#222;font-size: calc(36px + (42 - 36) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;}


					.con1 .con1_b .title_b .title_b_r{width: 100%;height: auto;display: flex;justify-content: center;margin-top: 30px;}
					.con1 .con1_b .title_b .title_b_r a{display: flex;flex-wrap: wrap;align-items: center;color:#666;transition: color 0.4s;}
					.con1 .con1_b .title_b .title_b_r a:hover{display: flex;flex-wrap: wrap;color:#0d8a3a;}
					.con1 .con1_b .title_b .title_b_r i{font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));margin-right: 4px;}
						
						.con1 .con1_b .title_b .title_b_r .btn{width: auto;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));text-transform: uppercase;line-height: 26px;text-align: center;color:#222;border:1px solid  rgba(110,110,110,1);background: transparent;padding:4px  calc(6px + (18 - 6) * ((100vw - 300px) / (1180 - 300)));margin: 0 6px;transition: all .4s;cursor: pointer;}
						.con1 .con1_b .title_b .title_b_r .btn:hover{color:#fff;font-weight:600;height: 26px;border:1px solid rgba(0,0,0,0);background: #325ab2;}






			.con1 .list_con{width: 96%;height:auto;margin: calc(10px + (35 - 10) * ((100vw - 300px) / (1180 - 300))) auto 0;display: flex;}
			.con1 .list_con ul{width: 100%;padding-top:23px;display: flex;flex-wrap: wrap;justify-content: space-between;}


			.scroll-btn {position: absolute;top: 50%;transform: translateY(-50%);width: 40px;height: 40px;display: none;align-items: center;justify-content: center;cursor: pointer;z-index: 10;font-size: 20px;}
			.left-btn {left: 0px;}
			.right-btn {right: 0px;}
			.scroll-btn i.rarr{font-size: 36px;color:#1d3260;transform: rotateY(180deg);font-weight: 400;transition: color 0.4s;}
			.scroll-btn i.rarr:hover{font-size: 36px;color:#999;transform: rotateY(180deg);font-weight: 400;}
			.scroll-btn i.larr{font-size: 36px;color:#1d3260;font-weight: 400;transition: color 0.4s;}
			.scroll-btn i.larr:hover{font-size: 36px;color:#999;font-weight: 400;transition: color 0.4s;}






			.con1 .list_con ul li{width: 49%;display: flex;justify-content: center;margin-bottom: 15px;}

			.con1 .list_con ul li .list_b{width: calc(315px + (488 - 315) * ((100vw - 300px) / (1180 - 300)));display: flex;flex-direction: column;box-shadow: 0px 0px 15px 0px rgba(0,0,0,.3);cursor: pointer;}
			.con1 .list_con ul li .list_b .pic{width: 100%;}
			.con1 .list_con ul li .list_b .pic img{width: 100%;height: 100%;transition: all 0.4s;}
			.con1 .list_con ul li .list_b:hover .pic img{overflow: hidden;transition: all 0.4s;}


			.con1 .list_con ul li .list_b .txt{width: 100%;background: #fff; display: flex;flex-wrap:wrap;justify-content: center;padding-bottom: 10px;transition: all 0.4s;}
			.con1 .list_con ul li .list_b:hover .txt{width: 100%;background: #214aa3; display: flex;flex-wrap:wrap;justify-content: center;transition: all 0.4s;}


			.con1 .list_con ul li .list_b .txt .title{width: 92%;font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(30px + (38 - 30) * ((100vw - 300px) / (1180 - 300)));color:#233c72;font-weight: 600;text-align: left;transition: all 0.4s;}
			.con1 .list_con ul li .list_b:hover .txt .title{width: 92%;font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(30px + (38 - 30) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 600;text-align: left;transition: all 0.4s;}



			.con1 .list_con ul li .list_b .txt .parm1{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm1{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}

			.con1 .list_con ul li .list_b .txt .parm2{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm2{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}

			.con1 .list_con ul li .list_b .txt .parm3{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm3{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}

			.con1 .list_con ul li .list_b .txt .parm4{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm4{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}

			.con1 .list_con ul li .list_b .txt .parm5{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm5{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}

			.con1 .list_con ul li .list_b .txt .parm6{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#666;font-weight: 100;text-align: left;transition: color 0.4s;display: none;}
			.con1 .list_con ul li .list_b:hover .txt .parm6{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;text-align: left;display: none;}


			.con1 .list_con ul li .list_b .txt .btn_b{width: 92%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(24px + (32 - 24) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;margin-top: 10px;display: flex;justify-content: flex-end;}
			.con1 .list_con ul li .list_b .txt .btn_b a{width: 100%;font-weight: 100;}
			.con1 .list_con ul li .list_b .txt .btn_b .btn{width: 35%;padding:6px 15px;text-align: center;background: rgb(35,60,114);transition: all 0.4s; cursor: pointer;color:#fff;font-size: 13px;line-height: 22px;}
			.con1 .list_con ul li .list_b:hover .txt .btn_b .btn{width: 35%;padding:6px 15px;text-align: center;background: rgb(113,150,232);transition: all 0.4s; cursor: pointer;color:#061639;font-size: 13px;line-height: 22px;}





		/*---2---*/
		.con2{width: 100%;height: auto;background: url(../images/con2_bg.jpg) center top no-repeat;background-size: 100%;display: flex;justify-content: center;padding-top: 150px;margin-top: 45px;padding-bottom: 30px;}
		.con2 .con_b{width: 96%;height: calc(472px + (710 - 472) * ((100vw - 300px) / (1180 - 300)));background: url(../images/con2_bg_txt_bg.jpg) left top no-repeat;background-size: 100%;padding-top: 15px;display: flex;flex-direction: column;align-items: center;}
		

		.con2 .con_b .con_b_txt{width: 94%;}
			.con2 .con_b .con_b_txt .title{width: 95%;font-size: calc(24px + (38 - 24) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;color:#222;text-align: left;line-height: calc(28px + (52 - 28) * ((100vw - 300px) / (1180 - 300)));margin: calc(10px + (30 - 10) * ((100vw - 300px) / (1180 - 300))) 0;}
			.con2 .con_b .con_b_txt .subtitle{width: 95%;font-size: calc(16px + (24 - 16) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;color:#325ab2;text-align: left;line-height: calc(24px + (38 - 24) * ((100vw - 300px) / (1180 - 300)));margin: calc(10px + (30 - 10) * ((100vw - 300px) / (1180 - 300)))  0;}
			.con2 .con_b .con_b_txt .summary{width: 100%;font-size:  calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;color:#222;text-align: left;line-height:  calc(28px + (38 - 28) * ((100vw - 300px) / (1180 - 300)));margin: calc(10px + (30 - 10) * ((100vw - 300px) / (1180 - 300)))  0;}
			
			.con2 .con_b .con_b_txt .btn_b{width: 95%;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));line-height: calc(24px + (32 - 24) * ((100vw - 300px) / (1180 - 300)));color:#fff;font-weight: 100;margin-top: 10px;display: flex;justify-content: center;}
			.con2 .con_b .con_b_txt .btn_b a{width: 100%;font-weight: 100;}
			.con2 .con_b .con_b_txt .btn_b .btn{width: calc(100px + (150 - 100) * ((100vw - 300px) / (1180 - 300)));padding:8px 15px;text-align: center;background: rgb(35,60,114);transition: all 0.4s; cursor: pointer;color:#fff;font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));display: flex;flex-direction: row;align-items: center;justify-content: space-around;}
			.con2 .con_b .con_b_txt .btn_b .btn:hover{width: calc(100px + (150 - 100) * ((100vw - 300px) / (1180 - 300)));padding:8px 15px;text-align: center;background: rgb(113,150,232);transition: all 0.4s; cursor: pointer;color:#061639;font-size: calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));display: flex;flex-direction: row;align-items: center;justify-content: space-around;}

			.con2 .con_b .con_b_txt .btn_b .btn i{color:#fff;font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;}
			.con2 .con_b .con_b_txt .btn_b .btn:hover i{color:#061639;font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;}



		.con2 .con_b .con_b_num{width: 100%;margin-top: 30px;}
			.con2 .con_b .con_b_num ul{width: 100%;display: flex;flex-wrap: wrap;}
			.con2 .con_b .con_b_num ul li{width: 33.33%;display: flex;flex-wrap: wrap;justify-content: center;}
			.con2 .con_b .con_b_num ul li .num_list{width: 96%;text-align: center;color: #fff;}
			.con2 .con_b .con_b_num ul li .num_list.deep{background: #233c72;padding: calc(18px + (30 - 18) * ((100vw - 300px) / (1180 - 300))) 0;}
			.con2 .con_b .con_b_num ul li .num_list.middle{background: #325ab2;padding: calc(18px + (30 - 18) * ((100vw - 300px) / (1180 - 300))) 0;}
			.con2 .con_b .con_b_num ul li .num_list.light{background: #5083f1;padding: calc(18px + (30 - 18) * ((100vw - 300px) / (1180 - 300))) 0;}
			.con2 .con_b .con_b_num ul li .num_list .number{width: 96%;text-align: center;color: #fff;font-family: 'impact';font-weight: 400;font-size: calc(34px + (56 - 34) * ((100vw - 300px) / (1180 - 300)));line-height: calc(55px + (72 - 55) * ((100vw - 300px) / (1180 - 300)));display: flex;justify-content: center;}
			.con2 .con_b .con_b_num ul li .num_list .number sup{color: #fff;font-weight: 400;font-size: calc(15px + (20 - 15) * ((100vw - 300px) / (1180 - 300)));margin-left: calc(5px + (10 - 5) * ((100vw - 300px) / (1180 - 300)));}
			.con2 .con_b .con_b_num ul li .num_list .txt{width: 96%;text-align: center;color: #fff;font-weight: 600;font-size:calc(15px + (20 - 15) * ((100vw - 300px) / (1180 - 300)));line-height:calc(15px + (30 - 15) * ((100vw - 300px) / (1180 - 300)));display: flex;justify-content: center;}




		/*---3---*/
		.con3{width: 100%;height: auto;background: url(../images/con3_bg.jpg) center top no-repeat;background-size: cover;padding-top: 4rem;display: flex;flex-wrap: wrap;justify-content: center;margin-top: 50px;}
			.con3 .title_b{width: 96%;height: auto;margin: auto;}
			.con3 .title_b .en{width: 100%;font-size: calc(28px + (36 - 28) * ((100vw - 300px) / (1180 - 300)));line-height: line-height: calc(36px + (60 - 36) * ((100vw - 300px) / (1180 - 300)));color: #fff;font-weight: 100;text-align: center;}
			.con3 .title_b .ch{width: 100%;font-size: calc(26px + (34 - 26) * ((100vw - 300px) / (1180 - 300)));line-height: calc(42px + (60 - 42) * ((100vw - 300px) / (1180 - 300)));color: #fff;font-weight: 600;text-align: center;}



			.con3 .list_b{width: 96%;height: auto;margin-top: calc(22px + (48 - 22) * ((100vw - 300px) / (1180 - 300)));margin-bottom: 30px;}
			.con3 .list_b ul{width: 100%;height: auto;display: flex;flex-direction: column;}
			.con3 .list_b ul li:nth-child(1){width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;margin: 10px 0;}
			.con3 .list_b ul li:nth-child(2){width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;margin: 10px 0;}
			.con3 .list_b ul li:nth-child(3){width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;margin: 10px 0;}
			.con3 .list_b ul li:nth-child(4){width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;margin: 10px 0;}


			.con3 .list_b ul li .leaf{width: 96%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;}
			.con3 .list_b ul li .leaf .entitle{width:92%;font-size: calc(20px + (22 - 20) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;line-height: 36px;text-align: left;margin-top: 5px;}
			.con3 .list_b ul li .leaf .title{width:92%;font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;line-height: 22px;text-align: left;text-shadow: 0px 3px 5px rgba(0,0,0,.5);color:#fff;margin: 10px 0;}
			.con3 .list_b ul li .leaf .summary{width:92%;font-size: calc(12px + (13 - 12) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;line-height: 30px;text-align: left;color:#fff;padding-bottom: 15px;}
			.white{color: #fff;}
			.blue{color: #5083f1;}

			.leaf1{background: rgba(80,131,241,.7);border-radius: 0 50px 0 50px;}
			.leaf2{background: rgba(50,90,178,.6);border-radius: 0 50px 0 50px;}
			.leaf3{background: rgba(80,131,241,.7);border-radius: 0 50px 0 50px;}
			.leaf4{background: rgba(50,90,178,.6);border-radius: 0 50px 0 50px;}
			



		/*---4---*/
		.con4{width: 100%;height: auto;background: #eaeffb;padding-top: 4rem;display: flex;flex-wrap: wrap;justify-content: center;}
			.con4 .con4_b{width: 96%;margin: 15px auto;display: flex;}
				.con4 .con4_b .title_b{width: 100%;height: auto;display: flex;flex-direction: column;}
					.con4 .con4_b .title_b .title_b_l{width: 100%;height: auto;display: flex;flex-wrap: wrap;}
						.con4 .con4_b .title_b .title_b_l .en{width: 100%;line-height: calc(32px + (38 - 32) * ((100vw - 300px) / (1180 - 300)));color:#222;font-size: calc(30px + (36 - 30) * ((100vw - 300px) / (1180 - 300)));text-transform:capitalize;font-weight: 100;}
						.con4 .con4_b .title_b .title_b_l .ch{width: 100%;line-height: calc(44px + (60 - 44) * ((100vw - 300px) / (1180 - 300)));color:#222;font-size: calc(36px + (42 - 36) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;}


					.con4 .con4_b .title_b .title_b_r{width: 100%;height: auto;display: flex;justify-content: center;margin-top: 30px;}
					.con4 .con4_b .title_b .title_b_r a{display: flex;flex-wrap: wrap;align-items: center;color:#666;transition: color 0.4s;}
					.con4 .con4_b .title_b .title_b_r a:hover{display: flex;flex-wrap: wrap;color:#0d8a3a;}
					.con4 .con4_b .title_b .title_b_r i{font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));margin-right: 4px;}
						
						.con4 .con4_b .title_b .title_b_r .btn{width: auto;font-size: calc(13px + (14 - 13) * ((100vw - 300px) / (1180 - 300)));text-transform: uppercase;line-height: 26px;text-align: center;color:#222;border:1px solid  rgba(110,110,110,1);background: transparent;padding:4px 18px;margin: 0 6px;transition: all .4s;cursor: pointer;}
						.con4 .con4_b .title_b .title_b_r .btn:hover{color:#fff;font-weight:600;height: 26px;border:1px solid rgba(0,0,0,0);background: #325ab2;}




			.con4 .list_b{width: 96%;height: auto;margin-top: 20px;padding-bottom: calc(50px + (120 - 50) * ((100vw - 300px) / (1180 - 300)));}
			.con4 .list_b ul{width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: space-between;}
			.con4 .list_b ul li{width: 50%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;margin-bottom: 12px;}
				.con4 .list_b ul li .list_b_l{width: 94%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;}
				.con4 .list_b ul li .list_b_l .pic_news{width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;}
					.con4 .list_b ul li .list_b_l .pic_news .pic{width: 100%;}
					.con4 .list_b ul li .list_b_l .pic_news .pic img{width: 100%;height: 100%;}


					.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt{width: 100%;background: #fff;display: flex;flex-wrap: wrap;justify-content: center;}
					.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt .title{width: 98%;display: flex;flex-wrap: wrap;justify-content: center;}

					.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt .title .title_txt{width: 94%;font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1180 - 300)));color: #222;font-weight: 800;text-align: left;line-height: calc(18px + (28 - 18) * ((100vw - 300px) / (1180 - 300)));transition: all 0.4s;cursor: pointer;margin-top: 15px;}
					.con4 .list_b ul li .list_b_l .pic_news:hover .pic_news_txt .title .title_txt{width: 94%;font-size: calc(12px + (18 - 12) * ((100vw - 300px) / (1180 - 300)));color: #325ab2;font-weight: 800;text-align: left;line-height: calc(26px + (42 - 26) * ((100vw - 300px) / (1180 - 300)));transition: all 0.4s;cursor: pointer;margin-top: 15px;}

					.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt .title .title_summary{width: 94%;font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1180 - 300)));color: #222;font-weight: 100;text-align: left;line-height: 18px;transition: all 0.4s;cursor: pointer;margin-top: 15px;}
					.con4 .list_b ul li .list_b_l .pic_news:hover .pic_news_txt .title .title_summary{width: 94%;font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1180 - 300)));color: #325ab2;font-weight: 100;text-align: left;line-height: 18px;transition: all 0.4s;cursor: pointer;margin-top: 15px;}

					.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt .title .date{width: 94%;margin: 15px 0;}
						.con4 .list_b ul li .list_b_l .pic_news .pic_news_txt .title .date .md{width: 94%;font-size: calc(12px + (14 - 12) * ((100vw - 300px) / (1180 - 300)));color: #222;font-weight: 800;text-align: left;line-height: 20px;transition: all 0.4s;cursor: pointer;}


		/*----5----*/
		.con5{width: 100%;height: auto;background: #1f293e;display: flex;flex-wrap: wrap;justify-content: space-between;}
			.con5 .con5_b{width: 96%;height: auto;margin: auto;display: flex;flex-wrap: wrap; justify-content: space-between;border-bottom: 1px solid rgba(61,93,160,.3);}
				.con5 .con5_b .logo{padding:6px 0;text-align: center;}
					.con5 .con5_b .logo img{width: 90%;margin: auto;}
				.con5 .con5_b .iconlist{width: 22%;display: none;flex-wrap: wrap;align-content: center;}
				.con5 .con5_b .iconlist ul{display: flex;flex-wrap: wrap;justify-content: flex-end;}
				.con5 .con5_b .iconlist ul li{width: 25%;margin: 7px calc(6px + (10 - 6) * ((100vw - 300px) / (1180 - 300)));text-align: right;}
				.con5 .con5_b .iconlist ul li a{width: 100%;color: #5c6e94;transition: color 0.4s; cursor: pointer;font-size: calc(13px + (15 - 13) * ((100vw - 300px) / (1180 - 300)));}
				.con5 .con5_b .iconlist ul li a:hover{width: 100%;color: #879bc4;transition: color 0.4s; cursor: pointer;}



		/*----6----*/
		.con6{width: 100%;height: auto;background: #1f293e;line-height: 54px;text-align: center;font-size: 15px;font-weight: 800;color: rgba(255,255,255,1);}
			.con6 .con6_b{width: 88%;height: auto;margin: auto;padding:30px 0 0;}
				.con6 .con6_b .nav_b{width: 100%;height: auto;margin: auto;display: flex;flex-direction: column;align-items: center;}
					.con6 .con6_b .nav_b .lxfs{width: 100%;height: auto;display: flex;flex-direction: column;align-items: flex-start;}
					.con6 .con6_b .nav_b .lxfs ul{width: 100%;}
					.con6 .con6_b .nav_b .lxfs ul li{display: flex;flex-wrap: wrap;margin-bottom: 20px;}


						.con6 .con6_b .nav_b .lxfs ul li .com_name{width:50%;font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 600;line-height: calc(30px + (42 - 30) * ((100vw - 300px) / (1180 - 300)));text-align: left;}
						.con6 .con6_b .nav_b .lxfs ul li .com_name i{font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 200;margin-right: 4px;}
						.con6 .con6_b .nav_b .lxfs ul li .com_name .imp{font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 400;font-family: 'impact';}


						.con6 .con6_b .nav_b .lxfs ul li .com_tel{width:50%;font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 600;line-height: calc(30px + (42 - 30) * ((100vw - 300px) / (1180 - 300)));text-align: left;}
						.con6 .con6_b .nav_b .lxfs ul li .com_tel i{font-size: calc(17px + (22 - 17) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 200;margin-right: 4px;}
						.con6 .con6_b .nav_b .lxfs ul li .com_tel .imp{font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 400;font-family: 'impact';}


						.con6 .con6_b .nav_b .lxfs ul li .com_contxt{width:100%;font-size: calc(15px + (18 - 15) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 600;line-height: calc(30px + (42 - 30) * ((100vw - 300px) / (1180 - 300)));text-align: left;}
						.con6 .con6_b .nav_b .lxfs ul li .com_contxt i{font-size: calc(22px + (28 - 22) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 200;margin-right: 4px;}
						.con6 .con6_b .nav_b .lxfs ul li .com_contxt .imp{font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1180 - 300)));color: #377fba;font-weight: 600;}



					.con6 .con6_b .nav_b .qr_code{width: 100%;height: auto;display: flex;justify-content: space-between;font-size: 14px;color: #377fba;line-height: 20px;text-align: center;padding-top: 5px;flex-direction: row;}
					.con6 .con6_b .nav_b .qr_code ul{width: 100%;display: flex;flex-wrap: wrap;justify-content: space-between;}
					.con6 .con6_b .nav_b .qr_code ul li{width: 50%;display: flex;justify-content: center;flex-direction: column;font-size:calc(13px + (16 - 13) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;}
						.con6 .con6_b .nav_b .qr_code img{width: 60%;margin: auto;}

				.con6 .con6_b .icp{width: 100%;height: auto;margin: 30px auto 0;line-height: 20px;padding: 20px 0;border-top: 1px solid rgba(61,93,160,.3);font-weight: 100;}
					.con6 .con6_b .icp a{color: rgba(255,255,255,1);transition: all 0.4s; cursor: pointer;font-weight: 100;}
					.con6 .con6_b .icp a:hover{color: rgba(255,255,255,.51);transition: all 0.4s; cursor: pointer;font-weight: 100;}


			/**/	
				#search_pc_list{padding: 0;position: fixed;background: #fff !important;top: -100%;left: 0;height: 20vh;-webkit-transition: all 0.5s;transition: all 0.5s;z-index: 1000;width: 100%;padding: 0;z-index:999999;display: flex;flex-direction: column;align-items: flex-end;justify-content: center;}
				#search_pc_list .close{margin-bottom: 15px;margin-right: 17%;}
				#search_pc_list .close i{color: #222;}
				#search_pc_list form{width: 100%;}
				#search_pc_list .input-box{width: 100%;display: flex;justify-content: center;}
				#search_pc_list .input-box .input_txt{width: 60%;border:1px solid rgba(0,147,181,1); color: #222;line-height: 28px;padding:0 10px;font-size: 12px;border-radius: 4px;margin-right: 5px;}
				#search_pc_list .input-box .input_btn{width: 5%;border:1px solid rgba(0,147,181,1); color: #fff;line-height: 28px;padding:0 10px;font-size: 12px;border-radius: 4px;background: rgba(0,147,181,1);}
				#search_pc_list.active{top: 0;}

				#m_nav_list{position: fixed;left: 100%;}


				#m_search_list{position: fixed;background: #fff !important;top: -100%;left: 0;height: 12vh;-webkit-transition: all 0.5s;transition: all 0.5s;z-index: 1000;width: 88%;padding: 6%;z-index:999999;display: flex;flex-direction: column;align-items: flex-end;}



				#m_search_list .close{margin-bottom: 15px;}
				#m_search_list form{width: 100%;}
				#m_search_list .input-box{width: 100%;display: flex;}
				#m_search_list .input-box .input_txt{width: 80%;border:1px solid rgba(112,187,45,1); color: #dedede;line-height: 28px;padding:0 10px;font-size: 12px;border-radius: 4px;margin-right: 5px;}
				#m_search_list .input-box .input_btn{width: 15%;border:1px solid rgba(112,187,45,1); color: #fff;line-height: 28px;padding:0 10px;font-size: 12px;border-radius: 4px;background: rgba(112,187,45,1);}
				
				#m_search_list.active{top: 0;}
			/**/




		/*---tem---*/


		.con_tem{width: 100%;height: auto;margin: auto;border-bottom: 10px solid rgb(13,111,179);background: url(../images/con_tem_bg.jpg) bottom center no-repeat;background-size: 100%;padding-top: 2rem;}
			.con_tem .con_tem_b{width: 96%;margin: auto;display: flex;flex-direction: column;padding: 0 0 44px 0;}
			
				.con_tem .con_tem_b .title_b{width: 100%;height: auto;flex-wrap: wrap;justify-content: center;}
					.con_tem .con_tem_b .title_b .en{width: 100%;line-height: calc(36px + (60 - 36) * ((100vw - 300px) / (1180 - 300)));color:#348ed9;font-size: calc(32px + (48 - 32) * ((100vw - 300px) / (1180 - 300)));font-weight: 100;text-transform:capitalize;text-align: center;}
					.con_tem .con_tem_b .title_b .ch{width: 100%;line-height: calc(42px + (60 - 42) * ((100vw - 300px) / (1180 - 300)));color:#222;font-size: calc(28px + (42 - 28) * ((100vw - 300px) / (1180 - 300)));font-weight: 600;display: flex;justify-content: center;align-items: center;text-align: center;}
					
					.con_tem .con_tem_b .title_b .ch .line{margin-left: 10px;border-top: thin solid #dcdcdc;width: 16%;display: none;}
					

					.con_tem .con_tem_b .title_b .btn_b{width: 100%;margin-top: 30px;display: flex;justify-content: space-around;flex-wrap: wrap;}
						.con_tem .con_tem_b .title_b .btn_b .btn{color:#fff;font-weight: 600;padding: 10px 0;border-radius: 10px;text-align: center;margin-top: 7px;transition: all .4s;cursor: pointer;width: 48%;background: #175b9c;box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, .2);}
						.con_tem .con_tem_b .title_b .btn_b .btn:hover{background: #348ed9;color:#fff;}
						.con_tem .con_tem_b .title_b .btn_b .btn a{color:#fff;font-weight: 200;transition: all .4s;font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1180 - 300)));width: 100%;}
						.con_tem .con_tem_b .title_b .btn_b .btn:hover a{color:#fff;}

						.con_tem .con_tem_b .title_b .btn_b .btn.now{background: #348ed9;color:#fff;}


				.con_tem .con_tem_b .txt_b{width: 100%;padding: calc(10px + (14 - 10) * ((100vw - 300px) / (1180 - 300)));height: auto;border-left: 0px solid #e9e9e9;box-sizing: border-box;font-weight: 200;line-height: calc(30px  + (38 - 30) * ((100vw - 300px) / (1180 - 300)));font-size: calc(14px  + (16 - 14) * ((100vw - 300px) / (1180 - 300)));}
				.con_tem .con_tem_b .txt_b img{width: 100%;margin:15px auto;}
				.con_tem .con_tem_b .txt_b .title_txt{width: 100%;line-height: calc(38px + (46 - 38) * ((100vw - 300px) / (1180 - 300))); font-size: calc(32px + (38 - 32) * ((100vw - 300px) / (1180 - 300)));color: #222;font-weight: 800;text-align: center;margin:2rem auto;}



				.con_tem .con_tem_b .txt_b_pic{width: 100%;height: auto;font-weight: 200;line-height: calc(26px + (38 - 26) * ((100vw - 300px) / (1180 - 300)));font-size: calc(14px + (16 - 14) * ((100vw - 300px) / (1180 - 300)));margin-bottom: calc(50px + (100 - 50) * ((100vw - 300px) / (1180 - 300)));color: #222;}
				.con_tem .con_tem_b .txt_b_pic img{width:96%;margin: 25px auto;display: block;}

				.con_tem .con_tem_b .txt_b_pic .title_txt{width: 100%;line-height: calc(32px + (38 - 32) * ((100vw - 300px) / (1180 - 300))); font-size: calc(18px + (22 - 18) * ((100vw - 300px) / (1180 - 300)));color: #222;font-weight: 800;text-align: center;margin:2rem auto;}
				.con_tem .con_tem_b .txt_b_pic hr{border: none;border-bottom: 1px solid rgba(0, 0, 0, 0.1); margin: 16px 0;}



				.con_tem .con_tem_b .txt_b .list_b{width: 100%;height: auto;margin-top: calc(22px + (48 - 22) * ((100vw - 300px) / (1180 - 300)));padding-bottom: calc(50px + (120 - 50) * ((100vw - 300px) / (1180 - 300)));}
				.con_tem .con_tem_b .txt_b .list_b ul{width: 100%;height: auto;display: flex;flex-wrap: wrap;}
				.con_tem .con_tem_b .txt_b .list_b ul li{width: 100%;height: auto;display: flex;flex-wrap: wrap;justify-content: center;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b{width: 90%;display: flex;flex-wrap: wrap;justify-content: center;background: #fff;margin: 1rem auto;padding:1rem 0;transition: all 0.4s;cursor: pointer;box-shadow: 0px 5px 16px 0px rgba(0,0,0,.1);}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b:hover{box-shadow: 0px 9px 16px 0px rgba(0,0,0,.18);}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b .pic{width: 100%;text-align: center;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b .pic img{width: 90%;margin: 1rem auto;opacity: 1;transition: all 0.4s;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b:hover .pic img{width: 90%;margin: 1rem auto;opacity: 0.6;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b .title{width: 92%;text-align: left;font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1180 - 300)));font-weight: 800;color: #222;line-height: calc(20px + (30 - 20) * ((100vw - 300px) / (1180 - 300)));transition: all 0.4s;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b:hover .title{width: 92%;text-align: left;font-size: calc(14px + (18 - 14) * ((100vw - 300px) / (1180 - 300)));font-weight: 800;color: #175b9c;line-height: calc(20px + (30 - 20) * ((100vw - 300px) / (1180 - 300)));}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b .summary{width:92%;text-align: left;font-size: 12px;font-weight: 400;color: #cdcdcd;line-height: 16px;margin-top: 1rem;transition: all 0.4s;}
				.con_tem .con_tem_b .txt_b .list_b ul li .pic_b:hover .summary{width:92%;text-align: left;font-size: 12px;font-weight: 400;color: #222;line-height: 16px;margin-top: 1rem;}

	.contact-pc{display: none;}
	.contact-m{margin-bottom: 30px;}
	.contact-m a{color:#222;}

  /* Common Styles */
  .swiper-pagination-fraction,
  .swiper-pagination-custom,
  .swiper-container-horizontal > .swiper-pagination-bullets {bottom: 10px;left: 0;width: 100%;}


}
