@charset "utf-8";
body{ font-family:Arial,"Microsoft YaHei"; font-size:16px; line-height:24px; color:#5d5d5d;}
*{ margin:0; padding:0;}
img{ border:none;}
ul,li{ list-style:none;}
a{ color:inherit; text-decoration:none; transition: all 0.3s ease 0s;}
a:hover{ color:#005bac;}


.wrap{ width:85%; margin:0 auto;}
.flex_wrap{ display: flex; flex-wrap: wrap; justify-content: space-between;}
.flex{ display: flex;}
.align{ align-items: center;}


/* header */
.header{ width:100%;}
.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.logo{ margin:20px 0;}
.logo img{ max-height:70px;}
.logo h1{ font-size:18px; color:#005bac; margin: 22px 0 0 20px; text-transform:uppercase; letter-spacing:0px;}
.logo h1 span{ font-size:12px; font-weight:500; text-transform:uppercase; letter-spacing:0px;}

.main-menu{ width:40%; margin:22px 0 0 6%;}
.main-menu ul li {
	font-size: 17px;
	display: inline-block;
	position: relative;
}
.main-menu ul li a {
	color: #000;
	padding-bottom: 25px;
	display: block;
}
.main-menu ul li:hover > a {
	color: #005bac;
}
.main-menu > ul > li > a::before {
	content: "";
	position: absolute;
	left: 0px;
	bottom: 15px;
	height: 0px;
	width: 0;
	border-top: 4px dotted #005bac;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
.main-menu > ul > li:hover > a::before {
	width: 30px;
	opacity: 1;
}
.main-menu ul li .submenu {
	position: absolute;
	z-index: 1;
	border-radius: 4px;
	border: 1px solid #f5f5f5;
	box-shadow: 0px 30px 70px 0px rgba(137,139,142,0.15);
	display: block;
	top: 100%;
	left: -20px;
	right: 0;
	opacity: 0;
	padding: 10px 0;
	margin: 0;
	visibility: hidden;
	min-width: 120px;
	background: #ffffff;
	transform: scale(1 , 0);
	transform-origin: 0 0;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.main-menu ul li .submenu li {
	margin-left: 0;
	display: block;
	line-height: 30px;
	font-size: 16px;
	padding:0 20px;
}
.main-menu ul li .submenu li a {
  position: relative;
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  padding-bottom: 0;
  width: 100%;
}
.main-menu ul li .submenu li a::before {
  content: ">";
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.main-menu ul li .submenu li:hover a{
  color: #005bac;
  padding-left: 15px;
}
.main-menu ul li .submenu li:hover a::before{
  color: #005bac;
  opacity: 1;
  visibility: visible;
}
.main-menu ul li:hover > .submenu {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.tel {
    position: relative;
    padding-left: 30px;
}
.tel::before {
    position: absolute;
    top: 9px;
    left: 0;
    bottom: 9px;
    width: 1px;
    background: #eee;
    content: "";
}
.t_icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
	background:url(../images/tel.png) no-repeat center #005bac;
	background-size: 50%;
}
.t_text {
    padding-left: 15px;
    color: #005bac;
}
.t_text p {
    font-size: 14px;
}
.t_text span {
    font-size: 18px;
}


/* about */
.about { width:100%; padding:70px 0 80px 0;}
.a_left {
    width: 40%;
    position: relative;
	padding-bottom:40px;
}
.a_left:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 70%;
    bottom: 1%;
    background-color: #005bac;
	z-index:-1;
}
.a_img {
    padding: 3%;
    background-color: #f6f6f6;
    margin-left: 7%;
	overflow:hidden;
}
.a_img img {
    height: 400px;
    width: 100%;
	object-fit: cover;
	transition:all 1.0s;
}
.a_img img:hover{ transform:scale(1.2);}
.a_right {
    width: 55%;
	margin-top:40px;
}
.a_right h2 {
    font-size: 28px;
    font-weight: 500;
	color:#000;
}
.a_intro {
    color: #797979;
    line-height: 36px;
	margin:40px 0 40px 0;
	text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:5;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.a_btn {
    background: #005bac;
    color: #ffffff;
	border-radius: 30px;
    padding: 10px 50px;
	display: inline-block;
  position: relative;
  border: 2px solid #005bac;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.a_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.a_btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* service */
.service { width:100%; padding:70px 0 80px 0; background:#f6f6f6;}
.s_text {
    width: 50%;
    position: relative;
}
.s_start, .s_end {
    position: relative;
    z-index: 1;
	padding: 50px 60px;
    background-color: #EDF1FC;
	overflow:hidden;
}
.s_start{
    margin-right: -90px;
}
.s_end {
    margin-left: -90px;
}
.s_start:before, .s_end:before {
     content: "";
     position: absolute;
     border: 8px solid #fff;
     top: 40px;
     right: 40px;
     bottom: 40px;
     left: 40px;
     -webkit-transition-duration: .3s;
     transition-duration: .3s;
     -webkit-transition-property: top,right,bottom,left;
     transition-property: top,right,bottom,left;
     opacity: 0;
	 z-index: -1;
}
.s_start:hover:before, .s_end:hover:before {
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     opacity: 1;
}
.s_text h1{ font-size:24px; color:#001973;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.s_intro{ color: #6C7176; margin:20px 0 20px 0;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:3;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.s_btn {
    color: #005bac;
	padding:8px 40px;
	display: inline-block;
	border:solid 4px #fff;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background:#005bac;
}
.s_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:#EDF1FC;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.s_start:hover .s_btn:before, .s_end:hover .s_btn:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.s_start:hover .s_btn, .s_end:hover .s_btn{ border-color:#005bac; color:#fff;}
.s_text span {
    position: absolute;
    bottom: 15px;
    right: -5px;
    font-size: 80px;
    color: #fff;
	opacity: 0.5;
}
.s_img{ position:relative; height: 400px; width: 50%; overflow:hidden;}
.s_img img {
    height: 100%;
    width: 100%;
    position: absolute;
	object-fit: cover;
	transition:all 2.0s;
}
.s_img img:hover{ transform:scale(1.3);}


/* news */
.news { width:100%; padding:70px 0 80px 0;}
.n_title{
    display: flex;
    justify-content: center;
    margin:30px 0 90px 0;
}
.n_title h1 {
    color: #fff;
    font-size: 100px;
    text-transform: uppercase;
	-webkit-text-stroke: 1px #dee2e6;
}
.n_title h2 {
    color: #005bac;
    font-size: 36px;
    position: absolute;
	left:46%;
}

.news ul li {
    width: 31%;
    box-shadow: 0px 0px 5px #ddd;
    position: relative;
}
.n_image { overflow:hidden;}
.n_image img{ width:100%; height:240px; object-fit: cover; transition:all 0.5s;}
.news ul li:hover .n_image img{ transform:scale(1.2);}
.n_date {
    position: absolute;
    top: 0;
    right: 0;
    background: #005bac;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
	display:flex;
}
.n_icon {
    background: #fff;
    padding: 8px 10px;
	margin-bottom:1px;
}
.n_icon img{ width:15px;}
.n_time {
    font-size: 14px;
    color: #ffffff;
    padding: 3px 13px 0px 13px;
}
.news ul li:hover .n_date{ background: #FF4917;}

.n_text {
    padding: 20px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
	background:#fff;
}
.n_text:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #005bac;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
.n_text h4{ font-size:16px; font-weight:600; color: #333;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.n_intro{ font-size:15px; color: #767676; margin:10px 0; display: inline-block;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:2;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.n_text span{ font-size:15px; color: #005bac; display: inline-block; width: 100%;}
.n_text h4, .n_intro, .n_text span{
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.news ul li:hover .n_text h4, .news ul li:hover .n_intro, .news ul li:hover .n_text span{ color:#eee;}
.news ul li:hover .n_text:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* footer */
.footer { width:100%; padding:60px 0 70px 0; background:#333333; color:#a9a9a9;}
.f_title { font-size:18px; margin-bottom:25px; color:#fff;}
.foot_1 {
    position: relative;
	padding-right:2%;
	margin-right:2%;
	width:40%;
}
.foot_1::before {
    position: absolute;
    top: 20px;
	right:0;
    bottom: 30px;
    width: 1px;
    background: #494949;
    content: "";
}
.foot_1 img{ width:90px; margin-top:3px; opacity: 0.7;}
.foot_1 p{ margin-top:13px;}

.foot_2 { width:13%;}
.foot_2 ul li{ margin-bottom: 11px;}
.foot_2 ul li a{ display:inline-block; width: 100%;}
.foot_2 ul li a::before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	height: 2px;
	width: 15px;
	margin-right: 15px;
	background: #a9a9a9;
	transition: all 0.3s ease 0s;
}
.foot_2 ul li:hover a{ color:#005bac;}
.foot_2 ul li:hover a::before {
	width: 30px;
	background: #005bac;
}

.foot_3 { width:39%;}
.foot_3 p {margin-bottom:8px; padding-left:34px; line-height:28px;}
.f_map { background:url(../images/ct1.png) left 3px no-repeat; background-size: 22px;}
.f_phone { background:url(../images/ct2.png) left center no-repeat; background-size: 22px;}
.f_email { background:url(../images/ct3.png) left center no-repeat; background-size: 22px;}


/* banner_inner */
.banner1{ background:url(../images/b1.jpg) no-repeat center top; width:100%; height:300px;}
.banner2{ background:url(../images/b2.jpg) no-repeat center top; width:100%; height:300px;}
.banner3{ background:url(../images/b3.jpg) no-repeat center top; width:100%; height:300px;}
.banner4{ background:url(../images/b4.jpg) no-repeat center top; width:100%; height:300px;}

.b_info{ height:300px; position:relative;}
.b_info p{
    position: absolute;
    background: #ffffff;
    padding: 10px 30px;
    border-radius: 8px 8px 0 0;
	bottom:0;
	right:0;
	color:#757783;
	font-size:14px;
}
.b_info p span{ color:#005bac;}


/* inner_page */
.inner_page{ width:100%; padding:70px 0 80px 0;}

.i_title {
    color: #005bac;
	text-align: center;
    font-size: 36px;
	font-weight: 500;
	letter-spacing: 1px;
}
.i_text{ font-weight: 700;}
.i_line {
    height: 4px;
    width: 50px;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffab02), color-stop(51%, #ffda00), to(#ffab02));
    display: block;
	margin: 25px auto 45px auto;
}

.d_title {
    font-size: 24px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
	font-weight: 500;
}
.d_title:before {
  content: "";
  background-color: #005bac;
  width: 8.5%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.d_title:after {
  content: "";
  background-color: #f7f7f7;
  width: 90.5%;
  height: 3px;
  position: absolute;
  left: 9.5%;
  bottom: 0;
  border-radius: 10px;
}

.d_date{ color:#b4b4b4; margin-top:5px;}


/* about_inner */
.about_l{ width:60%; line-height:30px;}
.about_l h3 {
    color: #005bac;
    background-color: rgba(0,91,172,.08);
	padding: 2px 40px;
	border-radius: 20px;
	display: inline-block;
	font-size:14px;
	font-weight:500;
	margin:10px 0 20px 0;
}
.name_en{ margin:0 0 35px 0;}
.name_en span {
    position: relative;
    display: inline-block;
	text-transform: uppercase;
	font-size: 28px;
	color: #585e6e;
}
.name_en span:after {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    top: 60%;
    width: 102%;
    background-color: #f1f2f5;
    z-index: -1;
    height: 40%;
    border-radius: 10px;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
}
.name_en span strong{ color: #005bac;}

.about_r{ width:35%; height:350px; overflow:hidden; transition:all 1.0s;}
.about_r:hover{ border-radius:20px;}
.about_r img{ width:100%; height:100%; object-fit: cover; transition:all 1.0s;}
.about_r img:hover{ transform:scale(1.3);}


/* service_inner */
.service_inner{ width:100%;}
.service_inner ul li{
  border: 1px solid #eee;
  width:100%;
  margin-bottom:40px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.service_inner ul li:hover{ box-shadow: 0 0 30px rgba(0, 0, 0, .1);}
.serv_pic{ width:50%; float:left; position: relative; overflow:hidden;}
.serv_pic img{ width: 100%; height:300px; object-fit: cover; transition:all 1.0s;}
.serv_pic::before,
.serv_pic::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}
.serv_pic::before {
    right: 0;
    opacity: 1;
    top: 0;
}
.serv_pic::after {
    bottom: 0;
    opacity: .7;
    left: 0;
}
.service_inner ul li:hover .serv_pic::after, .service_inner ul li:hover .serv_pic::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}
.service_inner ul li:hover .serv_pic img{ transform:scale(1.2);}

.serv_text {
  padding: 45px 3%;
  width:44%;
  float:right;
}
.serv_text h4 {
  font-size: 20px;
  color: #333;
  margin-bottom:25px;
  text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.serv_intro { color: #696E77;
  text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:3;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.service_inner ul li:nth-child(2n) .serv_pic{ float:right;}
.service_inner ul li:nth-child(2n) .serv_text{ float:left;}

.serv_btn {
  background-color: #005bac;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  padding: 10px 40px;
  position: relative;
  margin-top: 30px;
  font-size:15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.serv_btn:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: inherit;
  opacity: 0.4;
  z-index: -1;
  top: 0px;
  left: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service_inner ul li:hover .serv_btn {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff;
}
.service_inner ul li:hover .serv_btn:after {
  top: 5px;
  left: 5px;
}


/*contentPage*/
.contentPage { color: #005bac; text-align:center; clear:both; width:100%;}
.contentPage .zi { font-size:12px; font-weight:bold; float:none!important;}
.contentPage a { color: #005bac; font-size: 12px; margin:0px 3px; padding:4px 7px; border: 1px solid #005bac;}
.contentPage a:hover { color:#FFF; background-color:#005bac;}
.contentPage .current { font-size: 12px; margin:0px 3px; padding:4px 7px;}


/*detail*/
.detail{ line-height:30px; margin:30px 0 50px 0;}


/*page_inner*/
.page_inner {
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
	padding:20px 1%;
	border-radius: 20px;
}
.page_inner ul li:nth-child(1), .page_inner ul li:nth-child(3){ width: 44%;}
.page_inner ul li:nth-child(3){ text-align:right;}
.page_inner ul li span {
    font-size: 12px;
    font-weight: bold;
	color:#005bac;
}
.page_inner ul li h4 {
    font-size: 15px;
	font-weight:500;
	text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}

.back{
	width:45px;
	height:45px;
	line-height:45px;
	border:1px solid #005bac;
	text-align:center;
	display:block;
	color:#005bac;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	font-size: 15px;
}
.back:hover{
	border-radius:100%;
	color:#fff;
	background:#005bac;
}


/* news_inner */
.news_inner { width:100%;}
.news_inner ul li{ margin-bottom:40px; border: 1px solid #eee; transition: all 0.3s ease 0s;}
.news_inner ul li:hover{ border-color: #005bac;}

.news_date{ background:rgba(0, 91, 172, .07); border-radius: 0 10px 10px 0; color:#005bac; transition: all 0.3s ease 0s; padding: 15px 3%; position: relative; overflow: hidden;}
.news_date::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: #005bac;
  z-index: -1;
  -webkit-transform: rotate3d(0, 0, 1, -55deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -55deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.news_inner ul li:hover .news_date{ color:#fff;}
.news_inner ul li:hover .news_date::after {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.news_date h2{ font-size:20px;}
.news_date h3{ font-size:16px; font-weight:500;}

.news_text{ width:53%;}
.news_text h4{ font-size:16px; color: #333;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.news_intro{ font-size:15px; color: #696E77; margin:10px 0 10px 0;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:3;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.news_btn {
    font-size: 15px;
    color: #005bac;
    padding-bottom: 5px;
    position: relative;
    transition: ease-in-out 0.3s;
}
.news_btn::after{
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    transition: ease-in-out 0.3s;
    background: #005bac;
}
.news_btn:hover{ letter-spacing: 1px;}
.news_btn:hover::after { width: 100%;}

.news_pic{ width:25%; height:180px; margin:10px 1%; overflow:hidden;}
.news_pic img{ width:100%; height:100%; object-fit: cover; transition:all 0.5s;}
.news_inner ul li:hover .news_pic img{ transform:scale(1.2);}


/* contact_inner */
.map{ width:48%; font-size: 14px;}

.con_r {
  padding: 40px 4% 60px 4%;
  width:40%;
  line-height:30px;
  box-shadow: 0px 2px 15px rgba(0,0,0, 0.1);
  position: relative;
}
.con_r:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    height: 0px;
    width: 0px;
    border-bottom: 60px solid #005bac;
    border-left: 70px solid transparent;
}
.con_r h3 {
  font-weight: 500;
  font-size: 24px;
  color:#333;
  margin-bottom: 20px;
}
.con_r p{
  margin-top: 10px;
}


/* go-top */
.go-top {
  position: fixed;
  cursor: pointer;
  top: 90%;
  right: -10%;
  background-color: #005bac;
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #005bac;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.go-top:hover {
  color: #ffffff;
  background-color: #005bac;
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 2%;
  top: 90%;
}


.mobile-menu{ display:none;}
.tbottom{ display:none;}
.bottomNav{ display:none;}


@media all and (max-width:640px){
.wrap{ width:90%; margin:0 auto;}

.header{ display:none;}

/* Mobile Menu Start Here */
.mobile-menu { display:block; font-size:18px;}
.mobile-header {
  padding: 0 5%;
  width: 90%;
  align-items: center;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
  height:60px;
}
.mobile-header.menu-fixed {
  position: fixed;
  z-index: 999;
  -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.mobile-header img{ max-height:40px;}
.header-logo h1{ font-size:16px; color:#005bac; margin: 12px 0 0 10px; letter-spacing:-1px; line-height:18px; text-transform: uppercase;}
.header-logo h1 span{ font-size:12px; font-weight:500; text-transform:uppercase; letter-spacing:0px;}
.header-bar { width: 25px; height: 25px; position: relative; cursor: pointer;}
.header-bar span {
      background: #005bac;
      width: 100%;
      height: 3px;
      display: block;
      left: 0;
      top: 50%;
      margin-top: -1px;
      transform-origin: center;
      -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
      transition: all 0.3s ease;
	  position: absolute;
}
.header-bar span:nth-child(1) { margin-top: -9px;}
.header-bar span:nth-child(2) { opacity: 1;}
.header-bar span:nth-child(3) { margin-top: 7px;}
.header-bar.close { opacity: 1;}
.header-bar.close span:nth-child(1) { transform: rotate(-45deg); margin-top: -1px;}
.header-bar.close span:nth-child(2) { opacity: 0;}
.header-bar.close span:nth-child(3) { transform: rotate(45deg); margin-top: -1px;}
.mobile-menu .mobile-menu {
  position: fixed;
  top: 60px;
  bottom: 70px;
  left: 0;
  z-index: 99;
  background: #fff;
  width: 60%;
  transform: scaleY(0);
  transform-origin: top;
  overflow-y: scroll;
  padding: 0 5%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-right: 3px solid rgba(0, 91, 172, 0.3);
}
.mobile-menu .mobile-menu.open { transform: scaleY(1);}
.mobile-menu-area-inner ul { padding: 30px 0; width: 100%;}
.mobile-menu-area-inner ul li { position: relative;}
.mobile-menu-area-inner ul li a {
          display: block;
          padding: 10px 0;
          color: #181818;
          width: 100%;
          border-bottom: 1px solid #f0f0f0;
		  transition: 0.4s;
}
.mobile-menu-area-inner ul li:last-child > a { border-bottom: none;}
.mobile-menu-area-inner ul li.open > a { color: #005bac;}
.menu-expand { top: 0; left: 94%; position: absolute;}
.menu-expand i {
        display: block;
        position: relative;
        width: 10px;
        margin-top: 18px;
        border-bottom: 1px solid #252525;
		transition: 0.4s;
}
.menu-expand i:before {
        top: 0;
        width: 100%;
        content: "";
        display: block;
        position: absolute;
        transform: rotate(90deg);
        border-bottom: 1px solid #252525;
        transition: 0.4s;
}
.mobile-menu-area-inner ul li.open > a .menu-expand i, .mobile-menu-area-inner ul li.open > a .menu-expand i:before { border-bottom: 1px solid #005bac;}
.mobile-menu-area-inner ul li.open > a .menu-expand i:before { transform: rotate(0);}
.mobile-menu-area-inner ul li ul { display: none; padding: 0;}
.mobile-menu-area-inner ul li ul li { padding-left: 20px;}


/* flickerplate */
.flickerplate{ height: 300px!important;}
.flickerplate .dot-navigation .dot{
    width: 12px!important;
    height: 12px!important;
}
.flickerplate ul.flicks>li .flick-inner {
    padding: 0 10%!important;
}
.flickerplate ul.flicks>li .flick-title {
    font-size: 22px!important;
	margin-bottom: 25px!important;
}
.flickerplate ul.flicks>li .flick-sub-text {
    font-size: 15px!important;
}


/* about */
.about { width:100%; padding:55px 0 55px 0;}
.a_left {
    width: 100%;
    position: relative;
	padding-bottom:20px;
}
.a_left:before {
    content: "";
    position: absolute;
    width: 60%;
    height: 70%;
    bottom: 1%;
    background-color: #005bac;
	z-index:-1;
}
.a_img {
    padding: 3%;
    background-color: #f6f6f6;
    margin-left: 6%;
	overflow:hidden;
}
.a_img img {
    height: 260px;
    width: 100%;
	object-fit: cover;
	transition:all 1.0s;
}
.a_img img:hover{ transform:scale(1.2);}
.a_right {
    width: 100%;
	margin-top:30px;
}
.a_right h2 {
    font-size: 18px;
    font-weight: 500;
	color:#000;
}
.a_intro {
    color: #797979;
    line-height: 30px;
	margin:20px 0 30px 0;
	text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:5;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.a_btn {
    background: #005bac;
    color: #ffffff;
	border-radius: 30px;
    padding: 7px 40px;
	display: inline-block;
  position: relative;
  border: 2px solid #005bac;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.a_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #fff;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.a_btn:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}


/* service */
.service { width:100%; padding:55px 0 55px 0; background:#f6f6f6;}
.s_text {
    width: 50%;
    position: relative;
}
.s_start, .s_end {
    position: relative;
    z-index: 1;
	padding: 20px 25px 25px 25px;
    background-color: #EDF1FC;
	overflow:hidden;
}
.s_start{
    margin-right: -90px;
}
.s_end {
    margin-left: -90px;
}
.s_start:before, .s_end:before {
     content: "";
     position: absolute;
     border: 4px solid #fff;
     top: 40px;
     right: 40px;
     bottom: 40px;
     left: 40px;
     -webkit-transition-duration: .3s;
     transition-duration: .3s;
     -webkit-transition-property: top,right,bottom,left;
     transition-property: top,right,bottom,left;
     opacity: 0;
	 z-index: -1;
}
.s_start:hover:before, .s_end:hover:before {
     top: 0;
     right: 0;
     bottom: 0;
     left: 0;
     opacity: 1;
}
.s_text h1{ font-size:18px; color:#001973;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.s_intro{ color: #6C7176; margin:10px 0 15px 0; font-size:14px; line-height:20px;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:3;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.s_btn {
    color: #005bac;
	padding:3px 25px;
	display: inline-block;
	border:solid 3px #fff;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  background:#005bac;
  font-size:14px;
}
.s_btn:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background:#EDF1FC;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.s_start:hover .s_btn:before, .s_end:hover .s_btn:before {
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
.s_start:hover .s_btn, .s_end:hover .s_btn{ border-color:#005bac; color:#fff;}
.s_text span {
    position: absolute;
    bottom: 0px;
    right: -5px;
    font-size: 40px;
    color: #fff;
	opacity: 0.5;
}
.s_img{ position:relative; height: 240px; width: 50%; overflow:hidden;}
.s_img img {
    height: 100%;
    width: 100%;
    position: absolute;
	object-fit: cover;
	transition:all 2.0s;
}
.s_img img:hover{ transform:scale(1.3);}


/* news */
.news { width:100%; padding:55px 0 55px 0;}
.n_title{
    display: flex;
    justify-content: center;
    margin:0px 0 45px 0;
}
.n_title h1 {
    color: #fff;
    font-size: 50px;
    text-transform: uppercase;
	-webkit-text-stroke: 1px #dee2e6;
}
.n_title h2 {
    color: #005bac;
    font-size: 22px;
    position: absolute;
	left:40%;
}

.news ul li {
    width: 100%;
    box-shadow: 0px 0px 5px #ddd;
    position: relative;
	margin-bottom: 40px;
}
.news ul li:last-child{ margin-bottom:0;}
.n_image { overflow:hidden;}
.n_image img{ width:100%; height:200px; object-fit: cover; transition:all 0.5s;}
.news ul li:hover .n_image img{ transform:scale(1.2);}
.n_date {
    position: absolute;
    top: 0;
    right: 0;
    background: #005bac;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
	display:flex;
}
.n_icon {
    background: #fff;
    padding: 8px 10px;
	margin-bottom:1px;
}
.n_icon img{ width:15px;}
.n_time {
    font-size: 14px;
    color: #ffffff;
    padding: 3px 13px 0px 13px;
}
.news ul li:hover .n_date{ background: #FF4917;}

.n_text {
    padding: 20px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
	background:#fff;
}
.n_text:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #005bac;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
	-webkit-transition: all 0.6s ease 0s;
	-o-transition: all 0.6s ease 0s;
	transition: all 0.6s ease 0s;
}
.n_text h4{ font-size:16px; font-weight:600; color: #333;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.n_intro{ font-size:14px; color: #767676; margin:10px 0; display: inline-block;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:2;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.n_text span{ font-size:14px; color: #005bac; display: inline-block; width: 100%;}
.n_text h4, .n_intro, .n_text span{
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.news ul li:hover .n_text h4, .news ul li:hover .n_intro, .news ul li:hover .n_text span{ color:#eee;}
.news ul li:hover .n_text:before {
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  -o-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}


/* footer */
.footer { width:100%; padding:45px 0 45px 0; background:#333333; color:#a9a9a9;}
.f_title { font-size:16px; margin-bottom:15px; color:#fff;}
.foot_1 {
    position: relative;
	padding-right:0%;
	margin-right:0%;
	margin-bottom: 30px;
	width:100%;
}
.foot_1::before {
    position: absolute;
    top: 20px;
	right:0;
    bottom: 30px;
    width: 1px;
    background: #494949;
    content: "";
	display:none;
}
.foot_1 img{ width:90px; margin-top:3px; opacity: 0.7;}
.foot_1 p{ margin-top:13px; font-size: 14px;}

.foot_2 { width:12%; display:none;}
.foot_2 ul li{ margin-bottom: 11px;}
.foot_2 ul li a{ display:inline-block; width: 100%;}
.foot_2 ul li a::before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	height: 2px;
	width: 15px;
	margin-right: 15px;
	background: #a9a9a9;
	transition: all 0.3s ease 0s;
}
.foot_2 ul li:hover a{ color:#005bac;}
.foot_2 ul li:hover a::before {
	width: 30px;
	background: #005bac;
}

.foot_3 { width:100%;}
.foot_3 p {margin-bottom:4px; padding-left:25px; line-height:24px; font-size:13px;}
.f_map { background:url(../images/ct1.png) left 3px no-repeat; background-size: 18px;}
.f_phone { background:url(../images/ct2.png) left center no-repeat; background-size: 18px;}
.f_email { background:url(../images/ct3.png) left center no-repeat; background-size: 18px;}


/* banner_inner */
.banner1{ background:url(../images/b1.jpg) no-repeat center top; width:100%; height:180px; background-size: 320%; box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03);}
.banner2{ background:url(../images/b2.jpg) no-repeat center top; width:100%; height:180px; background-size: 320%; box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03);}
.banner3{ background:url(../images/b3.jpg) no-repeat center top; width:100%; height:180px; background-size: 320%; box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03);}
.banner4{ background:url(../images/b4.jpg) no-repeat center top; width:100%; height:180px; background-size: 320%; box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.03);}

.b_info{ height:180px; position:relative;}
.b_info p{
    position: absolute;
    background: #ffffff;
    padding: 5px 20px;
    border-radius: 5px 5px 0 0;
	bottom:0;
	right:0;
	color:#757783;
	font-size:13px;
}
.b_info p span{ color:#005bac;}


/* inner_page */
.inner_page{ width:100%; padding:45px 0 55px 0;}

.i_title {
    color: #005bac;
	text-align: center;
    font-size: 24px;
	font-weight: 500;
	letter-spacing: 1px;
}
.i_text{ font-weight: 700;}
.i_line {
    height: 3px;
    width: 40px;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffab02), color-stop(51%, #ffda00), to(#ffab02));
    display: block;
	margin: 15px auto 35px auto;
}

.d_title {
    font-size: 20px;
    color: #333;
    position: relative;
    padding-bottom: 10px;
	font-weight: 500;
}
.d_title:before {
  content: "";
  background-color: #005bac;
  width: 29%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.d_title:after {
  content: "";
  background-color: #f7f7f7;
  width: 69%;
  height: 2px;
  position: absolute;
  left: 31%;
  bottom: 0;
  border-radius: 10px;
}

.d_date{ color:#b4b4b4; margin-top:5px;}


/* about_inner */
.about_l{ width:100%; line-height:28px;}
.about_l h3 {
    color: #005bac;
    background-color: rgba(0,91,172,.08);
	padding: 2px 30px;
	border-radius: 20px;
	display: inline-block;
	font-size:14px;
	font-weight:500;
	margin:0px 0 15px 0;
}
.name_en{ margin:0 0 30px 0;}
.name_en span {
    position: relative;
    display: inline-block;
	text-transform: uppercase;
	font-size: 20px;
	color: #585e6e;
}
.name_en span:after {
    content: '';
    position: absolute;
    display: block;
    left: 50%;
    top: 60%;
    width: 102%;
    background-color: #f1f2f5;
    z-index: -1;
    height: 40%;
    border-radius: 10px;
    -webkit-transform: translate3d(-50%,0,0);
    transform: translate3d(-50%,0,0);
}
.name_en span strong{ color: #005bac;}

.about_r{ width:100%; height:260px; overflow:hidden; transition:all 1.0s; margin-top: 40px;}
.about_r:hover{ border-radius:20px;}
.about_r img{ width:100%; height:100%; object-fit: cover; transition:all 1.0s;}
.about_r img:hover{ transform:scale(1.3);}


/* service_inner */
.service_inner{ width:100%;}
.service_inner ul li{
  border: 1px solid #eee;
  width:100%;
  margin-bottom:35px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.service_inner ul li:hover{ box-shadow: 0 0 30px rgba(0, 0, 0, .1);}
.serv_pic{ width:100%; float:left; position: relative; overflow:hidden;}
.serv_pic img{ width: 100%; height:160px; object-fit: cover; transition:all 1.0s;}
.serv_pic::before,
.serv_pic::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}
.serv_pic::before {
    right: 0;
    opacity: 1;
    top: 0;
}
.serv_pic::after {
    bottom: 0;
    opacity: .7;
    left: 0;
}
.service_inner ul li:hover .serv_pic::after, .service_inner ul li:hover .serv_pic::before {
    height: 100%;
    opacity: 0;
    width: 100%;
}
.service_inner ul li:hover .serv_pic img{ transform:scale(1.2);}

.serv_text {
  padding: 25px 5% 35px 5%;
  width:90%;
  float:right;
}
.serv_text h4 {
  font-size: 18px;
  color: #333;
  margin-bottom:15px;
  text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.serv_intro { color: #696E77;
  text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:3;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}
.service_inner ul li:nth-child(2n) .serv_pic{ float:right;}
.service_inner ul li:nth-child(2n) .serv_text{ float:left;}

.serv_btn {
  background-color: #005bac;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #fff;
  padding: 5px 30px;
  position: relative;
  margin-top: 20px;
  font-size:15px;
}
.serv_btn:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: inherit;
  opacity: 0.4;
  z-index: -1;
  top: 0px;
  left: 0px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.service_inner ul li:hover .serv_btn {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  color: #fff;
}
.service_inner ul li:hover .serv_btn:after {
  top: 5px;
  left: 5px;
}


/*contentPage*/
.contentPage { color: #005bac; text-align:center; clear:both; width:100%;}
.contentPage .zi { font-size:12px; font-weight:bold; float:none!important;}
.contentPage a { color: #005bac; font-size: 12px; margin:0px 3px; padding:4px 7px; border: 1px solid #005bac;}
.contentPage a:hover { color:#FFF; background-color:#005bac;}
.contentPage .current { font-size: 12px; margin:0px 3px; padding:4px 7px;}


/*detail*/
.detail{ line-height:26px; margin:25px 0 35px 0;}


/*page_inner*/
.page_inner {
    border-top: 1px solid #f5f5f5;
    border-bottom: 1px solid #f5f5f5;
	padding:10px 2%;
	border-radius: 15px;
}
.page_inner ul li:nth-child(1), .page_inner ul li:nth-child(3){ width: 36%; line-height: 20px;}
.page_inner ul li:nth-child(3){ text-align:right;}
.page_inner ul li span {
    font-size: 12px;
    font-weight: bold;
	color:#005bac;
}
.page_inner ul li h4 {
    font-size: 14px;
	font-weight:500;
	text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:2;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;
}

.back{
	width:40px;
	height:40px;
	line-height:40px;
	border:1px solid #005bac;
	text-align:center;
	display:block;
	color:#005bac;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
	font-size: 13px;
}
.back:hover{
	border-radius:100%;
	color:#fff;
	background:#005bac;
}


/* news_inner */
.news_inner { width:100%;}
.news_inner ul li{ margin-bottom:35px; border: 1px solid #eee; transition: all 0.3s ease 0s;}
.news_inner ul li:hover{ border-color: #005bac;}

.news_date{ background:rgba(0, 91, 172, .07); border-radius: 0 10px 10px 0; color:#005bac; transition: all 0.3s ease 0s; padding: 10px 6%; position: relative; overflow: hidden; line-height: 20px;}
.news_date::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background: #005bac;
  z-index: -1;
  -webkit-transform: rotate3d(0, 0, 1, -55deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -55deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s, background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}
.news_inner ul li:hover .news_date{ color:#fff;}
.news_inner ul li:hover .news_date::after {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
.news_date h2{ font-size:18px;}
.news_date h3{ font-size:15px; font-weight:500;}

.news_text{ width:66%; margin: 20px 3% 10px 0;}
.news_text h4{ font-size:16px; color: #333;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:1;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.news_intro{ font-size:14px; color: #696E77; margin:5px 0 5px 0; line-height: 18px;
text-overflow:ellipsis;/*超出...*/ display:-webkit-box; -webkit-line-clamp:2;/*显示行数*/ -webkit-box-orient:vertical; overflow:hidden;}
.news_btn {
    font-size: 14px;
    color: #005bac;
    padding-bottom: 5px;
    position: relative;
}
.news_btn::after{
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    content: '';
    position: absolute;
    transition: ease-in-out 0.3s;
    background: #005bac;
}
.news_btn:hover{ letter-spacing: 2px;}
.news_btn:hover::after { width: 100%;}

.news_pic{ width:100%; height:150px; margin:10px 3%; overflow:hidden;}
.news_pic img{ width:100%; height:100%; object-fit: cover; transition:all 0.5s;}
.news_inner ul li:hover .news_pic img{ transform:scale(1.2);}


/* contact_inner */
.map{ width:100%; font-size: 12px; height: 300px; margin-bottom: 40px;}

.con_r {
  padding: 30px 8% 40px 8%;
  width:84%;
  line-height:24px;
  box-shadow: 0px 2px 15px rgba(0,0,0, 0.1);
  position: relative;
}
.con_r:before {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    height: 0px;
    width: 0px;
    border-bottom: 40px solid #005bac;
    border-left: 50px solid transparent;
}
.con_r h3 {
  font-weight: 500;
  font-size: 20px;
  color:#333;
  margin-bottom: 20px;
}
.con_r p{
  margin-top: 10px;
}


/* go-top */
.go-top {
  position: fixed;
  cursor: pointer;
  top: 83%;
  right: -10%;
  background-color: #005bac;
  z-index: 4;
  width: 36px;
  text-align: center;
  height: 38px;
  line-height: 38px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: .9s;
  transition: .9s;
}
.go-top i {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #005bac;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.go-top:hover {
  color: #ffffff;
  background-color: #005bac;
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: #ffffff;
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 5%;
  top: 83%;
  z-index:99;
}


/* 手机版底部 */
.tbottom{ display:block; height:70px; clear:both;}
.bottomNav {
    display:block;
    width:100%;
	height:70px;
	position:fixed;
	bottom:0;
	z-index:9;
}
.bottomNav_item {
    width:20%;
	height:70px; border-top:1px solid #d8d8d8;
	float:left; color:#333;
	text-align:center; background:#fff;
}
.bottomNav_icon {
	margin:auto;
	width:30px;
	height:30px; margin-top:11px;
}
.bottomNav_icon img {
	width:100%;
	height:100%;
}
.bottomNav_item p { margin-top:3px; font-size:0.85rem;}
.inital_color { color:#005bac;}
}