@font-face {
	font-family: "Roboto";
	src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
	font-family: "Roboto-Light";
	src: url("../fonts/Roboto-Light.ttf");
}

@font-face {
	font-family: "awesome";
	src: url("../fonts/line-awesome.ttf");
}

@font-face {
	font-family: "Font Awesome 5 Free-Regular";
	src: url("../fonts/Font Awesome 5 Free-Regular-400.otf");
}

@font-face {
	font-family: "Font Awesome 5 Free-Solid";
	src: url("../fonts/Font Awesome 5 Free-Solid-900.otf");
}

* {
	margin: 0px;
	padding: 0px;
}

html,
body {
	font-family: "Roboto", "PingFang", "Microsoft Yahei", "SimHei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif;
	font-size: 16px;
	line-height: 1.5em;
	letter-spacing: 0;
	font-weight: 400;
	color: #000;
	-webkit-font-smoothing: antialiased;
}

a:hover {
	color: inherit;
}

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

li {
	list-style: none;
}

h2 {
	font-size: 36px;
	line-height: 1.33em;
	font-weight: 700;
	letter-spacing: .4px;
	margin-bottom: 30px;
}

h3 {
	font-size: 20px;
	line-height: 1.3em;
	letter-spacing: .4px;
	font-weight: 700;
	margin-top: 0;
}

h4 {
	font-size: 18px;
	line-height: 1.33em;
	letter-spacing: .4px;
	font-weight: 700;
	margin-top: 0;
}

p {
	margin-bottom: 20px;
}

img {
	max-width: 100%;
	height: auto;
	border-style: none;
}

.blue_text {
	color: #0784C1;
}

.mt-0 {
	margin-top: 0px !important;
}

.mt-20 {
	margin-top: 20px !important;
}

.mb-30 {
	margin-bottom: 30px !important;
}

.mb-20 {
	margin-bottom: 20px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-50 {
	margin-bottom: 50px;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-50 {
	margin-top: 50px !important;
}

.pt-0 {
	padding-top: 0px;
}

.layout_col {
	width: 100%;
}

.bggrey {
	background: #f9f9f9;
}

.bgwhite {
	background: #fff !important;
}

.bgblue {
	background: #001973;
}

.site-header {
	display: flex;
	align-items: center;
	-webkit-box-align: center;
	position: relative;
	height: 120px;
	padding: 0 20px;
	margin: 0 auto;
	z-index: 999;
}

.site-header__section {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 33.33333%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.site-header__section.site-header_left {
	-webkit-box-pack: start;
	justify-content: flex-start;
	width: 40%;
}

.site-header__section--right {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.site-header__section.site-header_right {
	justify-content: flex-end;
	width: 40%;
}

.site-header_right {
	position: relative;
}

.site-header__section.site-header_center {
	width: 20%;
}

.menu {
	background: none;
	border: none;
	cursor: pointer;
	height: 30px;
	position: relative;
	padding: 0;
	outline: none;
	z-index: 5;
	color: #fff;
}

.menu_line {
	position: absolute;
	display: block;
	height: 4px;
	width: 30px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: #fff;
}

.menu_line {
	-webkit-transform: rotate(0deg) translateY(8px);
	transform: rotate(0deg) translateY(8px);
	-webkit-transition: -webkit-transform .25s ease-in-out;
	transition: -webkit-transform .25s ease-in-out;
	transition: transform .25s ease-in-out;
	transition: transform .25s ease-in-out, -webkit-transform .25s ease-in-out;
}

.menu_line:first-child {
	transform: rotate(0deg) translateY(-8px);
	-webkit-transform: rotate(0deg) translateY(-8px);
}

.menu_text {
	display: block;
	margin-left: 50px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 900;
	line-height: 30px;
}


/*侧边菜单*/

.icon_open .menu_line,
.icon_open .menu_line:first-child {
	-webkit-transform: rotate(0deg) translateY(0);
	transform: rotate(0deg) translateY(0);
}

.icon_open .menu_line {
	opacity: 0;
}

.icon_open .menu_text {
	color: #000;
}

.menu_cross:after,
.menu_cross:before {
	background: #fff;
}

.menu_cross {
	position: absolute;
	display: block;
	height: 4px;
	width: 30px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	will-change: transform, opacity;
}

.menu_cross {
	opacity: 0;
	display: block;
}

.menu_cross:after,
.menu_cross:before {
	position: absolute;
	content: "";
	display: block;
	width: 30px;
	height: 4px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: opacity .25s ease-out, -webkit-transform ease-in-out ease-out;
	transition: opacity .25s ease-out, -webkit-transform ease-in-out ease-out;
	transition: transform ease-in-out ease-out, opacity .25s ease-out;
	transition: transform ease-in-out ease-out, opacity .25s ease-out, -webkit-transform ease-in-out ease-out;
}

.icon_open .menu_cross {
	opacity: 1;
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
}

.icon_open .menu_cross:after,
.icon_open .menu_cross:before {
	background: #000;
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
	-webkit-transition-duration: .1s;
	transition-duration: .1s;
}

.icon_open .menu_cross:before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.icon_open .menu_cross:after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/*-------close 按钮*/

.no-scroll {
	overflow: hidden;
}

.menu_open {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 4;
}

.bg_overlay {
	position: fixed;
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
}

.menu_open .bg_overlay {
	background: rgba(0, 0, 0, .3);
	opacity: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	visibility: visible;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
}

.menu_container,
.nav_list {
	background: #fff;
}

.menu_container {
	padding: 80px 0 20px;
	position: fixed;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 90vw;
	height: 100%;
	-webkit-transform: translateX(-90vw);
	transform: translateX(-90vw);
	max-width: 590px;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0;
	-webkit-transition: -webkit-transform .3s ease-in;
	transition: -webkit-transform .3s ease-in;
	transition: transform .3s ease-in;
	transition: transform .3s ease-in, -webkit-transform .3s ease-in;
}

.menu_open .menu_container {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition-delay: .25s;
	transition-delay: .25s;
	opacity: 1;
	-webkit-transition: -webkit-transform .3s ease-in;
	transition: -webkit-transform .3s ease-in;
	transition: transform .3s ease-in;
	transition: transform .3s ease-in, -webkit-transform .3s ease-in;
}

.nav_menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	overflow-y: auto;
}

.nav_list {
	display: block;
	margin: 0;
	font-size: 14px;
}

.nav_item {
	font-weight: 700;
}

.nav_link_container {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.nav_link {
	display: block;
	padding: 20px 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	margin-left: 10px;
	-webkit-transition: background .25s ease-out;
	transition: background .25s ease-out;
}

.nav_link:hover {
	background: #e5e5e5;
}

.nav_icon {
	-ms-flex-item-align: stretch;
	align-self: stretch;
	background: transparent;
	cursor: pointer;
	width: 52px;
	margin-right: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	-webkit-transition: background .25s ease-out;
	transition: background .25s ease-out;
}

.nav_icon:hover {
	background: #e5e5e5;
}

.nav_icon:after,
.nav_icon:before {
	background: #000;
}

.nav_icon:after,
.nav_icon:before {
	-ms-flex-item-align: center;
	align-self: center;
	content: "";
	display: block;
	width: 12px;
	height: 2px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition: -webkit-transform .25s ease-out;
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.nav_icon:after {
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.nav_item--open>.nav_link_container>.nav_icon:after {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}

.nav_child {
	background: #f9f9f9;
	overflow: hidden;
	display: none;
}

.nav_item .nav_item {
	font-weight: 400;
	padding-left: 20px;
	text-transform: none;
}

.des_con-text>p {
	margin-bottom: 5px;
}

@media only screen and (min-width: 1200px) {
	.nav_link {
		margin-left: 80px;
		max-width: calc(100% - 212px);
	}
}

@media only screen and (min-width: 960px) {
	.menu_container {
		padding: 140px 0 80px;
	}
}


/*侧边菜单end*/


/*footer*/

.footer {
	padding-bottom: 40px;
	padding-top: 40px;
}

.footer__content {
	max-width: 1440px;
	margin: 0 auto;
}

.footer__list {
	text-align: center;
	margin-bottom: 100px;
	font-size: 16px;
}

.footer__list-item {
	margin-bottom: 35px;
}

.footer__copyright-container {
	text-align: center;
}

.footer__logo {
	height: 30px;
	margin-bottom: 10px;
}

.footer__copyright {
	margin: 0;
	color: #8c8c8c;
}

@media only screen and (min-width: 768px) {
	.footer {
		padding-bottom: 80px;
		padding-top: 80px;
	}
}

@media only screen and (min-width: 960px) {
	.footer__list {
		margin-bottom: 70px;
	}

	.footer__list-item {
		display: inline-block;
		margin: 0 10px 10px;
	}

	.footer__logo {
		margin-bottom: 20px;
	}
}


/*footer------end*/

.header_menu {
	margin-bottom: 0px;
	/*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;*/
}

.header_menu>li {
	float: left;
	margin-left: 40px;
	font-size: 1.125rem;
	color: #fff;
	line-height: 24px;
	font-weight: 700;
}

.header_menu>li:first-child {
	margin-left: 0px;
}

.header_menu>li>a {
	color: #fff;
}

.header_menu>li .icon_down {
	margin-left: 6px;
}

.header_menu .menu_item {
	position: relative;
	text-align: center;
}

.header_menu .menu_item>a {
	padding: 10px 15px;
	display: block;
	border-radius: 3px;
}

.menu_item:hover>a {
	background: #001973;
}

.menu_item .sublink {
	position: absolute;
	left: 0px;
	text-align: center;
	display: none;
	background: #fff;
	border-radius: 3px;
	overflow: hidden;
}

.sublink>li>a {
	display: block;
	padding: 10px 15px;
	white-space: nowrap;
}

.sublink>li>a:hover {
	background: #e5e5e5;
}

.menu_item>ul a {
	font-size: 14px;
	color: #000;
	text-align: left;
}

.search_btn {
	transform: rotate(-90deg);
	position: absolute;
	top: 0px;
	right: 0px;
}

.search_btn:before {
	font-family: "awesome";
	font-weight: 900;
	content: '';
	font-size: 24px;
	color: #fff;
}

.main {
	margin-top: -120px;
}

.swiper-container {
	height: 100%;
}

.swiper-slide {
	background-size: cover;
	padding: 0 20px;
	background-position: 50%;
}

.banner_inner {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	height: calc(100vh + 44px);
}

.contentone {
	background-color: #000;
}

.swiper_content {
	max-width: 1440px;
	margin: 0 auto;
	padding: 40vh 0 0;
	position: relative;
	z-index: 1;
}

/*.swiper-pagination-bullet {
	width: auto;
	height: auto;
	border-radius: 0px;
	color: #fff;
	background: none;
	margin-right: 60px;
}
*/
.swiper-pagination {
	position: absolute;
	/*top: 46vh;*/
	right: 0;
	width: 88.8%;
	z-index: 2;
	text-align: left;
	padding: 0 20px;
}

/*
.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination .swiper-pagination-bullet {
	margin: 0 60px 0 0;
	font-size: 14px;
	color: #FFFFFF;
	letter-spacing: normal;
	text-align: left;
	line-height: 24px;
	font-weight: 700;
	text-transform: uppercase;
}*/
.swiper-container-horizontal>.swiper-pagination,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 60px;
	text-align: center
}

.swiper-pagination-bullet {

	background: rgba(255, 255, 255, 0.7)
}

.swiper-pagination-bullet-active {

	background: rgba(255, 255, 255, 1)
}



.con_title {
	margin: 0 0 32px;
	font-size: 40px;
	line-height: 1.15em;
	font-weight: lighter;
	color: #fff;
}

.con_more {
	position: relative;
	font-weight: 500;
	color: #fff;
	padding-right: 30px;
	cursor: pointer;
	display: inline-block;
}

a.con_more:hover {
	color: #fff;
}

.con_more:after {
	position: absolute;
	font-family: 'awesome';
	content: '';
	font-weight: 700;
	top: 0px;
	right: 6px;
}

.news_titles {
	position: relative
}

.news_title {
	font-weight: 700;
	font-size: 36px;
	color: #000000;
	letter-spacing: -0px;
	text-align: left;
	line-height: 60px;
}

.news_more {
	position: absolute;
	bottom: 15px;
	left: 50%;
	font-size: 14px;
	color: #0032D6;
	letter-spacing: 1.4px;
	text-align: left;
	line-height: 24px;
	font-weight: 600;
}

.news_more:hover {
	color: #0032D6;
}

.news_more:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	right: -25px;
	bottom: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 16px;
	color: #0032D6;
	transition: right .25s ease-out;
}

.news_more:hover:after {
	right: -30px;
}

.news_items {
	margin-bottom: 15px;
}

.news_items:last-child {
	margin-bottom: 0px;
}

.news_date {
	display: inline-block;
	font-weight: 700;
	font-size: 16px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 24px;
}

.news_con {
	display: block;
	font-size: 16px;
	color: #001973;
	letter-spacing: 0;
	text-align: left;
	line-height: 28px;
}

.rich-text {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.rich-text__inner {
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 44px;
}

.rich-text__inner p {
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
}

.new_box {
	padding-top: 80px;
	padding-bottom: 80px;
}

.box_inner {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.newbox_link {
	display: block;
	position: relative;
}

.img_container {
	padding-bottom: 60%;
	position: relative;
	overflow: hidden;
}

.img_container-bx {
	padding-bottom: 57.142%;
	position: relative;
	overflow: hidden;
}

.img_container-s,
.img_container-ctx {
	padding-bottom: 66.66%;
	position: relative;
	overflow: hidden;
}

.imgbox {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 3px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.img_container:after,
.img_container-bx:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .8)));
	background: linear-gradient(-180deg, transparent, rgba(0, 0, 0, .8));
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	opacity: 0.5;
	border-radius: 3px;
}

.img_container-s:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .8)));
	background: linear-gradient(-180deg, transparent, rgba(0, 0, 0, .8));
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	opacity: 0.5;
	border-radius: 3px;
}

.img_container-s.have-textbx:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: rgba(0, 0, 0, .2);
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	opacity: 0.5;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	-moz-border-radius-bottomleft: 0px;
	-moz-border-radius-bottomright: 0px;
}

.newbox_link:hover .img_container:after {
	opacity: 1;
}

.newbox_link:hover .img_container-s:after {
	opacity: 1;
}

.newbox_link:hover .img_container-s.have-textbx:after {
	opacity: 1;
}

.row {
	margin-left: 0px;
	margin-right: 0px;
}

.rowbox.col-6 {
	padding-left: 0px;
	padding-right: 0px;
	width: calc(50% - 20px);
	flex: none;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
}

.rowbox.col-4 {
	padding-left: 0px;
	padding-right: 0px;
	width: calc(33.3333% - 20px);
	flex: none;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
}

.col-2 {
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}

.rowbox.col-2 {
	padding-left: 0px;
	padding-right: 0px;
	width: calc(20% - 20px);
	flex: none;
	margin-right: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
}

.content_container {
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	padding: 20px 30px;
	color: #fff;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.tag_info {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	min-height: 40px;
}

.tag_item {
	display: inline-block;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.4px;
	border-style: solid;
	border-width: 2px;
	border-radius: 3px;
	padding: 3px 10px 2px;
	color: #fff;
	border-color: #0032d6;
	background: #0032d6;
	margin-bottom: 10px;
}

.share {
	position: relative;
	border-color: transparent;
	background: transparent;
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
}

.share:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 24px;
	transition: right .25s ease-out;
}

.doc {
	position: relative;
	border-color: transparent;
	background: transparent;
	display: block;
	width: 100%;
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
}

.doc:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 24px;
	transition: right .25s ease-out;
}

.item_title {
	width: 100%;
	margin-bottom: 0;
	padding-right: 30px;
	font-weight: 600;
	line-height: 1.33em;
	font-size: 24px;
	position: relative;
	letter-spacing: 0.4px;
}

.item_info-noarrow .item_title {
	padding-right: 0px
}

.item_info,
.item_info-noarrow {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.item_info {
	position: relative;
}

.item_info:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 16px;
	transition: right .25s ease-out;
}

.newbox_link:hover .item_info:after {
	right: -5px;
}

.text_container {
	padding: 20px 30px;
	background: #fff;
}

.newbox_link.have-text {
	border-radius: 3px;
}

.title_txbx {
	margin-bottom: 25px;
}

.item_ctx {
	font-size: 16px;
	color: #000000;
	letter-spacing: 0;
	text-align: left;
	line-height: 24px;
}

.seemore,
.seemore-w {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 700;
	text-transform: uppercase;
	color: #0032d6;
	letter-spacing: 1.4px;
	text-align: left;
	padding-right: 30px;
}

.seemore-w {
	color: #fff;
}

.seemore:after,
.seemore-w:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 16px;
	transition: right .25s ease-out;
}

.newbox_link:hover .seemore:after {
	right: -5px;
}

.newbox_link:hover .seemore-w:after {
	right: -5px;
}

.newbox_link:hover .item_title.title_txbx {
	color: #0032d6;
}

.content_ctx {
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 32px;
}

.inner-w {
	max-width: 1440px;
	margin: 0 auto;
}

.swiper1_bg-container {
	position: relative;
	width: 100%;
	height: 480px;
	background-size: cover;
	background-position: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.swiper-container1 {
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
	position: relative;
}

.swiper1-inner {
	position: relative;
	height: 100%;
}

.swiper1_slide-in {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: -30px;
	height: 350px;
	background: #FFFFFF;
	box-shadow: 0 8px 8px -2px rgba(0, 0, 0, 0.15);
}

.swiper-container1 .swiper-slide {
	padding: 60px 0px 80px 100px;
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column;
	flex-flow: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: auto;
}

.swiper-pagination1 {
	position: absolute;
	bottom: 0px !important;
	width: 100%;
	margin: 30px 0;
	text-align: center;
	z-index: 10;
}

.swiper-pagination1 .swiper-pagination-bullet {
	border: 2px solid #fff;
	cursor: pointer;
	outline: none;
	background: transparent;
	border-radius: 100%;
	padding: 7px;
	margin: 0 8px !important;
	opacity: 1;
	transition: background .25s ease-out;
}

.swiper-pagination1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #fff;
}

.swiper_content1 {
	position: relative;
	width: 100%;
	height: 100%;
}

.content-title {
	font-size: 36px;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 48px;
	margin-bottom: 60px;
	font-weight: 600;
}

.sub-titles {
	font-size: 18px;
	font-weight: 600;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: left;
	line-height: 28px;
}

.sub-title {
	font-size: 18px;
	color: #FFFFFF;
	letter-spacing: 0;
	text-align: left;
	line-height: 24px;
	margin-bottom: 30px;
	width: 100%;
}

.content_btn {
	max-width: 100%;
	color: #fff;
	border: 2px solid #fff;
	border-radius: 2px;
	padding: 9px 70px 9px 40px;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(0, transparent));
	background: linear-gradient(90deg, #fff 50%, transparent 0);
	background-size: 201% 100%;
	background-position: 100% 100%;
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 600;
	text-transform: uppercase;
	transition: background .2s ease-out, color .25s ease-out;
}

.blue_btn {
	color: #0032d6;
	border: 2px solid #0032d6;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0032d6), color-stop(0, transparent));
	background: linear-gradient(90deg, #0032d6 50%, transparent 0);
	background-size: 201% 100%;
	background-position: 100% 100%;
	border-radius: 2px;
	padding: 9px 60px 9px 20px;
	-webkit-transition: background .2s ease-out, color .25s ease-out;
	transition: background .2s ease-out, color .25s ease-out;
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 900;
	text-transform: uppercase;
}

.black_btn {
	color: #000;
	border: 2px solid #000;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, #000), color-stop(0, transparent));
	background: linear-gradient(90deg, #000 50%, transparent 0);
	background-size: 201% 100%;
	background-position: 100% 100%;
	border-radius: 2px;
	padding: 9px 60px 9px 20px;
	-webkit-transition: background .2s ease-out, color .25s ease-out;
	transition: background .2s ease-out, color .25s ease-out;
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 900;
	text-transform: uppercase;
}

.content_btn:after {
	position: absolute;
	font-family: "Font Awesome 5 Free-Solid";
	content: "";
	font-size: 16px;
	line-height: 0;
	top: 50%;
	right: 35px;
	color: #fff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: color .25s ease-out, right .25s ease-out;
	transition: color .25s ease-out, right .25s ease-out;
	z-index: 100;
}

.content_btn:hover {
	color: #000;
	background-position: 0 100%;
}

.content_btn:hover:after {
	color: #000;
	right: 30px;
}

.blue_btn:after {
	position: absolute;
	font-family: "Font Awesome 5 Free-Solid";
	content: "";
	font-size: 16px;
	line-height: 0;
	top: 50%;
	right: 25px;
	color: #0032d6;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: color .25s ease-out, right .25s ease-out;
	transition: color .25s ease-out, right .25s ease-out;
	z-index: 100;
}

.blue_btn:hover {
	color: #fff;
	background-position: 0 100%;
}

.blue_btn:hover:after {
	color: #fff;
	right: 20px;
}

.black_btn:after {
	position: absolute;
	font-family: "Font Awesome 5 Free-Solid";
	content: "";
	font-size: 16px;
	line-height: 0;
	top: 50%;
	right: 25px;
	color: #000;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: color .25s ease-out, right .25s ease-out;
	transition: color .25s ease-out, right .25s ease-out;
	z-index: 100;
}

.black_btn:hover {
	color: #fff;
	background-position: 0 100%;
}

.black_btn:hover:after {
	color: #fff;
	right: 20px;
}

.service_bx_in {
	max-width: 1440px;
	margin: 0 auto;
	overflow: hidden;
	padding-left: 30px;
	padding-right: 30px;
}

.service_bx {
	padding-top: 80px;
	padding-bottom: 80px;
}

.service_title,
.us_title {
	font-weight: 600;
	font-size: 36px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 48px;
	margin-bottom: 30px;
}

.us_title {
	margin-bottom: 35px;
}

.swiper-container2,
.swiper-container3 {
	width: 100%;
	position: relative;
}

.swiper-container2 .swiper-slide,
.swiper-container3 .swiper-slide {
	padding: 0px;
}

.swiper_content2 {
	display: block;
	width: 100%;
	height: calc(100% - 0px);
	background: #fff;
	padding: 20px;
	text-align: center;
}

.swiper_content2 img {
	width: 80px;
	margin-top: 14px;
	margin-bottom: 16px;
}

.go_next {
	width: 100%;
	font-size: 18px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 24px;
	margin-bottom: 0;
	font-weight: 600;
	position: relative;
}

.go_next:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	position: absolute;
	right: 0px;
	bottom: 0px;
	z-index: 999;
	display: inline-block;
	font-size: 16px;
	color: #565656;
	transition: right .25s ease-out;
}

.swiper_content2:hover .go_next:after {
	right: -5px;
}

.swiper_content2 img {
	transition: all 0.8s;
}

.swiper_content2:hover img {
	transform: scale(1.05);
}

.swiper-button-prev2,
.swiper-button-prev3 {
	position: absolute;
	cursor: pointer;
	top: -64px;
	right: 74px;
}

.swiper-button-prev1 {
	position: absolute;
	cursor: pointer;
	bottom: 30px;
	right: 67%;
	z-index: 999;
}

.swiper-button-prev1:after {
	position: absolute;
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	color: #aaa;
	font-size: 26px;
	padding: 0 10px 0 0;
	display: inline-block;
	font-weight: 900;
}

.swiper-button-prev2:after,
.swiper-button-prev3:after {
	position: absolute;
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	color: #999;
	font-size: 26px;
	padding: 0 10px 0 0;
	display: inline-block;
	font-weight: 900;
}

.swiper-button-next2,
.swiper-button-next3 {
	position: absolute;
	cursor: pointer;
	top: -64px;
	right: 20px;
}

.swiper-button-next3,
.swiper-button-prev3 {
	top: -109px;
}

.swiper-button-next1 {
	position: absolute;
	cursor: pointer;
	bottom: 30px;
	right: 36%;
	z-index: 999;
}

.swiper-button-next1:after {
	position: absolute;
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	color: #aaa;
	font-size: 26px;
	padding: 0 10px 0 0;
	display: inline-block;
	font-weight: 900;
}

.swiper-button-next2:after,
.swiper-button-next3:after {
	position: absolute;
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	color: #999;
	font-size: 26px;
	padding: 0 10px 0 0;
	display: inline-block;
	font-weight: 900;
}

.swiper-button-prev2,
.swiper-button-next2 {
	display: none;
}

.inner_bx {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.solution_bx {
	padding-top: 80px;
	padding-bottom: 80px;
}

.title_bx {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
}

.rowbox1.rowbox {
	width: calc(50% - 10px);
}

.row .rowbox1:nth-child(2n) {
	margin-right: 0px;
}

.image-cta__content {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 15px;
	color: #fff;
}

.image-cta__title {
	margin-bottom: 15px;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 32px;
	font-weight: 600;
}

.image-cta__btn {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	border: 2px solid #fff;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, #fff), color-stop(0, transparent));
	background: linear-gradient(90deg, #fff 50%, transparent 0);
	background-size: 201% 100%;
	background-position: 100% 100%;
	border-radius: 2px;
	padding: 9px 70px 9px 40px;
	-webkit-transition: background .2s ease-out, color .25s ease-out;
	transition: background .2s ease-out, color .25s ease-out;
}

.image-cta__btn:after {
	position: absolute;
	font-family: "Font Awesome 5 Free-Solid";
	content: "";
	font-size: 16px;
	line-height: 0;
	top: 50%;
	right: 35px;
	color: #fff;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: color .25s ease-out, right .25s ease-out;
	transition: color .25s ease-out, right .25s ease-out;
	z-index: 100;
}

.image-cta__btn:hover {
	color: #000;
	background-position: 0 100%;
}

.image-cta__btn:hover:after {
	color: #000;
	right: 30px;
}

.image_title {
	font-weight: 600;
	margin-bottom: 15px;
}

.img-sub_title {
	font-size: 16px;
	color: #000000;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 40px;
}

.swiper_content3 {
	width: 100%;
	/*padding-bottom: 67%;*/
	display: block;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
}

.swiper_content3 img {
	width: 100%;
	transition: all 0.8s;
}

.swiper_content3:after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .8)));
	background: linear-gradient(-180deg, transparent, rgba(0, 0, 0, .8));
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	opacity: 0.2;
	border-radius: 3px;
	z-index: 3;
}

.swiper_content3:hover:after {
	opacity: 0.6;
}

.con3_face {
	position: absolute;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	padding: 20px 30px;
	color: #fff;
	display: flex;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	z-index: 4;
}

.con3_face .go_next,
.con3_face .go_next:after {
	color: #fff;
}

.con3_face .go_next {
	font-weight: 600;
	font-size: 24px;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 32px;
}

.swiper_content3:hover .con3_face .go_next:after {
	right: -5px;
}

.swiper_content3:hover img {
	transform: scale(1.05);
}


/*瀑布流样式*/

.masonry {
	-moz-column-count: 3;
	/* Firefox */
	-webkit-column-count: 3;
	/* Safari 和 Chrome */
	column-count: 3;
	-moz-column-gap: 0px;
	-webkit-column-gap: 0px;
	column-gap: 0px;
	width: 100%;
	margin: 0px auto;
}

.box_items {
	margin-bottom: 20px;
	-moz-page-break-inside: avoid;
	-webkit-column-break-inside: avoid;
	break-inside: avoid;
	width: calc(100% - 20px);
}


/*瀑布流样式-end*/

.banner_ {
	background: #000;
}

.banner_in {
	position: relative;
	margin: 0 auto;
	max-width: 1920px;
	overflow: hidden;
	height: 1px;
	min-height: 580px;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-align: center;
	justify-content: center;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
}

.banner_in:after {
	content: '';
	background: rgba(0, 0, 0, 0.2);
	position: absolute;
	top: 0px;
	right: 0px;
	bottom: 0px;
	left: 0px;
}

.banner_content {
	z-index: 1;
	text-align: center;
	padding-bottom: 40px;
	padding-top: 40px;
}

h1 {
	font-weight: 300;
	font-size: 40px;
	line-height: 1.15em;
	margin-top: 0;
	margin: 0.67rem 0;
}

.banner_title {
	color: #fff;
	margin-bottom: 30px;
	font-family: "Roboto-Light";
	font-weight: 300;
}

.bread_crumb {
	background: #f9f9f9;
	padding-top: 15px;
	padding-bottom: 15px;
}

.breadcrumb_con {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.breadcrumb__list {
	font-size: 15px;
}

.breadcrumb__item {
	display: inline-block;
}

.breadcrumb__link--home {
	color: #000;
	margin-right: 4px;
}

.breadcrumb__link {
	font-size: 12px;
	word-break: break-word;
	-webkit-transition: color .25s ease-out;
	transition: color .25s ease-out;
}

.breadcrumb__link--home:focus,
.breadcrumb__link--home:hover {
	text-decoration: none;
}

.breadcrumb__link:hover {
	color: rgba(0, 50, 214, .75);
}

.breadcrumb__item:after {
	content: '';
	font-family: "Font Awesome 5 Free-Solid";
	font-weight: 900;
}

.breadcrumb__item:last-child:after {
	content: '';
}

.breadcrumb__link--home:before {
	content: '';
	font-family: "Font Awesome 5 Free-Solid";
	font-weight: 900;
	font-size: 15px;
}

.page_introduction {
	background: #f9f9f9;
	padding-top: 60px;
	padding-bottom: 60px;
}

.introduction_inner {
	margin: 0 30px;
	max-width: 1440px;
}

.page_intro_title {
	margin-bottom: 15px;
}

.page_intro_text {
	margin: 0px;
	font-size: 18px;
	line-height: 1.5em;
}

.layout_w {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.layout_ww {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.col_ {
	width: 100%;
}

.form_title {
	font-size: 24px;
}

.form_content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 40px;
	padding-bottom: 40px;
}

.form_section {
	width: 100%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.form_section {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.form_label {
	display: block;
	margin-bottom: 10px;
	width: 100%;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0px;
}

input {
	overflow: visible;
}

.form_input,
.form_select {
	margin-bottom: 15px;
	position: relative;
	height: 44px;
	width: 100%;
}

.form_textarea {
	margin-bottom: 15px;
	position: relative;
	width: 100%;
}

.form_input,
.form_textarea,
.form_select {
	padding: 10px 15px;
	border: 1px solid #bcbec0;
	border-radius: 3px;
	display: block;
}

.form_img {
	margin-top: 3px;
	width: 100px;
	height: 44px;
	border: 1px solid #bcbec0;
	border-radius: 3px;
	display: block;
	text-align: center;
}

.form_img img {
	height: 44px;
}

.form_select {
	background: #fff;
}

select::-ms-expand {
	display: none;
}

select.form_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../img/select.svg) 99% center no-repeat;
}

.form_checkbx {
	margin-right: 10px;
}

.form_check.form_section {
	justify-content: center;
}

.form_check.form_section label {
	margin-bottom: 0px;
	margin-top: 10px;
}

.form_label-checkbx input[type=checkbox] {
	display: none;
}

.checkbx_input {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 1px solid #bcbec0;
	border-radius: 2px;
	vertical-align: middle;
	margin: 0 0 1px 0;
	margin-right: 10px;
	position: relative;
}


/*.form_checkbx:checked+.checkbx_input{
	border: none;
	background: url("../img/checkbox.png")no-repeat center;
	background-size: 20px;
}*/

.form_checkbx:checked+.checkbx_input {
	background: #0032d6;
	border: 1px solid #0032d6;
}

.form_checkbx:checked+.checkbx_input:after {
	content: "L";
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 10;
	display: block;
	width: 20px;
	height: 20px;
	color: #fff;
	border-radius: 2px;
	text-align: center;
	line-height: 20px;
	font-weight: 700;
	transform: rotateY(180deg) rotate(-45deg) translateY(-1px) translateX(3px);
}

.form_button {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 900;
	text-transform: uppercase;
	border-radius: 2px;
	padding: 9px 40px !important;
	cursor: pointer;
	-webkit-transition: background .2s ease-out, color .25s ease-out;
	transition: background .2s ease-out, color .25s ease-out;
	color: #0032d6;
	border: 2px solid #0032D6;
	background: -webkit-gradient(linear, left top, right top, color-stop(50%, #0032d6), color-stop(0, transparent));
	background: linear-gradient(90deg, #0032d6 50%, transparent 0);
	background-size: 201% 100%;
	background-position: 100% 100%;
	margin-top: 20px;
}

.form_button:hover {
	color: #fff;
	background-position: 0 100%;
}

.content_feed_title {
	border-bottom: 1px solid #bcbec0;
	margin: 20px 0px;
	line-height: 48px;
}

.feed_items {
	width: 100%;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 30px;
}

.items_link {
	display: block;
	width: 33.33332%;
	overflow: hidden;
}

.items_img {
	-webkit-transition: -webkit-transform .25s ease-out;
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	float: left;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

.items_img:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.feed_content {
	width: 66.66664%;
	padding-left: 30px;
}

.feed_items_title {
	margin: 0 0 8px;
	word-wrap: break-word;
	font-size: 18px;
	line-height: 1.33em;
	letter-spacing: .4px;
	font-weight: 700;
	margin-top: 0;
}

.feedtext-link {
	color: #0032d6;
	padding: 10px 30px 10px 0px;
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 1.7em;
	letter-spacing: 1.4px;
	font-weight: 900;
	text-transform: uppercase;
}

.feedtext-link:after {
	position: absolute;
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	font-size: 16px;
	line-height: 0;
	top: 50%;
	right: 5px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: currentColor;
	transition: right .25s ease-out;
	font-weight: 900;
}

.feedtext-link:hover {
	color: #0032d6;
}

.feedtext-link:hover:after {
	right: 0px;
	color: #0032d6;
}

.paddingsmall {
	padding-top: 30px;
	padding-bottom: 30px;
}

.paddingbig {
	padding-top: 50px;
	padding-bottom: 50px;
}

.info_why .info_why-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.info_why-inner {
	margin-left: auto;
	margin-right: auto;
}

.info_why-title {
	margin-bottom: 30px;
}

.info_reason-items {
	width: 100%;
	margin-bottom: 30px;
}

.reason_content {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	/*height: 100%;*/
}

.reason_img {
	width: 54px;
	height: 54px;
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-right: 15px;
}

.reason_info {
	width: calc(100% - 54px);
}

.reason_title {
	/*height: 1px;*/
	min-height: 54px;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 15px;
}

.reason_summary {
	margin: 0;
}

.des_content-container {
	color: #fff;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.des_con-title {
	margin-right: 0px;
	margin-bottom: 30px;
}

.des_small {
	font-size: 16px;
	color: #FFFFFF;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 1.5em;
	margin-bottom: 0px;
}

.des_con-text p strong {
	font-size: 18px;
	line-height: 1.33em
}

.tabs,
.tabs_top,
.inner {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.tabs_title.tabs_title--active,
.tabs_title:focus,
.tabs_title:hover,
.tabs_title-pc.tabs_title--active,
.tabs_title-pc:focus,
.tabs_title-pc:hover {
	background: #001973;
	color: #fff;
}

.tabs_title,
.tabs_title-pc {
	position: relative;
	background: #f9f9f9;
	font-size: 16px;
	line-height: 1.33em;
	letter-spacing: .4px;
	font-weight: 400;
	margin-top: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	text-align: center;
	cursor: pointer;
	padding: 15px;
	border-radius: 5px 5px 0 0;
	-webkit-transition: background .25s ease-out, color .25s ease-out;
	transition: background .25s ease-out, color .25s ease-out;
	margin-bottom: 15px;
}

.tabs_title--active {
	pointer-events: none;
}

.tabs_title--active+.tabs_content {
	max-height: 100%;
	height: 100%;
	opacity: 1;
}

.tabs_content.tab_content-active {
	max-height: 100%;
	height: 100%;
	opacity: 1;
}

.tabs_content {
	margin: 0px;
	overflow: hidden;
	max-height: 0;
	height: 0px;
	opacity: 0;
	-webkit-transition: height 1s ease-out, opacity 1s ease-out;
	transition: height 1s ease-out, opacity 1s ease-out;
}

.tabs_content.bgblue {
	padding: 8px;
}

.tabs_container-con {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
}

.tab_con-items {
	width: 100%;
	margin-bottom: 30px;
}

.tab_items-title {
	border-bottom: 4px solid #753BBD;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.tab_items-info {
	font-weight: 700;
	margin-bottom: 15px;
}

.tabs_top-title,
.top_lists-text,
.tc_title {
	text-align: center;
}

.top_lists-text {
	font-size: 18px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 24px;
	font-weight: 700;
}

.tabs_top {
	margin-bottom: 50px;
}

.tc_title {
	margin-bottom: 50px;
	margin-top: 80px;
}

.map_img {
	text-align: center;
}

.map_title {
	font-weight: 600;
	font-size: 18px;
	color: #001973;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 24px;
}

.map_con {
	font-size: 16px;
	color: #000000;
	letter-spacing: 0;
	text-align: left;
	line-height: 24px;
}

.map_text {
	margin-bottom: 30px;
}

.map_text:last-child {
	margin-bottom: 0px;
}

.profile_container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-top: 30px;
}

.profile_items {
	width: 100%;
}

.profile_items-inner {
	padding-top: 30px;
	padding-bottom: 30px;
	position: relative;
	border-bottom: 1px solid #e5e5e5;
}

.profile_img {
	max-width: 450px;
	margin-bottom: 20px;
}

.profile_img img {
	width: 100%;
}

.profile_info {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.profile_role {
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
}

.profile_description {
	margin-bottom: 20px;
}

.banner_sub-title {
	color: #fff;
	font-size: 18px;
	line-height: 1.5em;
}

.page_intro-conb,
.page_intro-cons {
	margin-bottom: 0px;
}

.page_intro-conb {
	font-weight: 600;
	font-size: 16px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 22px;
}

.hasdot {
	position: relative;
	padding-left: 20px;
}

.hasdot:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 5px;
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #000;
}

.page_intro-cons {
	font-size: 14px;
	color: #000000;
	text-align: left;
	line-height: 22px;
}

.page_intro-consw {
	font-size: 16px;
	color: #000000;
	text-align: left;
	line-height: 24px;
}

.page_intro-con {
	margin-top: 20px;
}

.grid_list-inner {
	margin-left: auto;
	margin-right: auto;
	min-height: 260px;
}

.grid_list-title {
	margin-bottom: 30px;
}

.grid_list-items {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	flex-flow: column nowrap;
	-ms-flex-flow: column nowrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin-bottom: 30px;
}

.grid_img {
	margin-bottom: 15px;
	height: 54px;
}

.grid_title {
	width: 100%;
	margin-bottom: 15px;
}

.grid_summary {
	margin-top: 0;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	width: 100%;
	margin-bottom: 15px;
}

.pointnum {
	margin-right: 20px;
}

.location_global {
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 30px;
}

.location_global-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: space-between;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}

.location_items {
	width: 30%;
}

.location_title {
	font-weight: 700;
	font-size: 16px;
	color: #000000;
	letter-spacing: 0.4px;
	text-align: left;
	line-height: 22px;
	margin-bottom: 24px;
}

.location_name {
	font-size: 14px;
	color: #000000;
	letter-spacing: 0;
	text-align: left;
	line-height: 22px;
	margin-bottom: 0px;
}

.location_text-inner {
	max-width: 1440px;
	margin: 0 auto;
}

.news_room {
	max-width: 1440px;
	margin: 30px auto;
	padding: 0 15px;
	position: relative;
}

.news_total {
	width: 100%;
	margin: 0 0 20px;
}

.newsitems {
	max-width: 1020px;
}

.news_details {
	margin: 0 auto 60px;
}

.news_link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
}

.news_img-container {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	height: auto;
}

.news_img-container img {
	position: absolute;
	height: 100%;
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform .25s ease-out;
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out, -webkit-transform .25s ease-out;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	font-family: "object-fit: cover; object-position: center";
}

.news_img-container:after {
	content: "";
	display: block;
	padding-bottom: 85%;
}

.news_img-container:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .5)));
	background: linear-gradient(-180deg, transparent, rgba(0, 0, 0, .5));
	z-index: 1;
	opacity: 0;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
}

.news_link:hover .news_img-container:before {
	opacity: 0.5;
}

.news_con-container {
	position: relative;
}

.news_time {
	font-size: 16px;
	display: inline-block;
	margin: 0 0 7.5px;
}

.newsitem_title {
	position: relative;
	margin-bottom: 24px;
	-webkit-transition: color .25s ease-out;
	transition: color .25s ease-out;
}

.newsitem_title:after {
	content: "";
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 35px;
	background: #000;
}

.news_link:hover .newsitem_title {
	color: #0032d6;
}

.newsitem_text {
	padding-right: 30px;
	margin-bottom: 0;
}

.newsitem_icon:after {
	content: "";
	font-family: "Font Awesome 5 Free-Solid";
	display: block;
	font-size: 16px;
	font-weight: 900;
	color: #d8d8d8;
	margin-right: 5px;
	position: absolute;
	bottom: 0;
	right: 5px;
	-webkit-transition: right .25s ease-out;
	transition: right .25s ease-out;
}

.news_link:hover .newsitem_icon:after {
	right: 0px;
}

.internet_text-left {
	color: #fff;
	font-size: 28px;
	margin-bottom: 20px;
}

.internet_text-right {
	color: #fff;
}

.text-left.hasdot-white {
	padding-left: 20px;
	position: relative;
	font-weight: 500;
}

.tabs_title--active+.tabs_content {
	/*padding: 20px;*/
}

.text-left {
	margin-bottom: 10px;
}

.internet_text:first-child {
	margin-bottom: 20px;
}

.hasdot-white:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 5px;
	display: inline-block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #fff;
}

.picesofnews {
	padding-top: 30px;
	padding-bottom: 30px;
}

.news_in {
	max-width: 1440px;
	margin: 0 auto;
}

.single-title {
	max-width: 1440px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

.sub-title-intro {
	font-size: 18px;
}

.page_intro-con_l.page_intro-conb {
	font-weight: normal;
}

.sitemap {
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 30px;
	padding-right: 30px;
}

.sitemap_inner {
	margin: 0 auto;
}

.sitemap_title {
	margin-top: 30px;
	margin-bottom: 30px;
}

.sitemap_link {
	font-size: 16px;
	word-break: break-word;
	color: #0032d6;
	-webkit-transition: color .25s ease-out;
	transition: color .25s ease-out;
}

.sitemap_link:hover {
	text-decoration: underline;
	color: rgba(0, 50, 214, .75);
}

.sitemap_list {
	font-size: 16px;
	margin: 10px 0 20px;
}

.sitemap_list-item {
	list-style-type: disc;
	margin: 10px 0 10px 40px;
}

.awards_link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-flow: column nowrap;
	flex-flow: column nowrap;
}

.awards_img {
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	height: auto;
}

.awards_con {
	padding-top: 5px;
}

.awards_con p {
	margin-bottom: 5px;
}

.awards_item {
	margin-bottom: 20px;
}

.awards_con p {
	font-size: 14px;
	line-height: 1.5;
}

@media only screen and (min-width:768px) {
	.awards_item {
		margin-bottom: 50px;
		width: 100%;
	}

	.location_map {
		width: 58.333%;
	}

	.bgblue-pc {
		background: #001973;
		;
	}

	.layout_col-50 {
		width: 50%;
	}

	.locatino_title {
		padding-left: 10px;
		padding-right: 10px;
	}

	.layout_col {
		padding-left: 10px;
		padding-right: 10px;
	}

	h1 {
		font-size: 60px;
		line-height: 1.2em;
	}

	h2 {
		font-size: 36px;
		line-height: 1.33em;
	}

	h3 {
		font-size: 24px;
		line-height: 1.33em;
	}

	.con_title {
		font-size: 60px;
		line-height: 1.2em;
	}

	h2.con_title.toge {
		font-size: 50px;
	}

	.banner_in {
		min-height: 550px;
	}

	.banner_content {
		width: 83.33333%;
		padding-top: 80px;
	}

	.banner_title {
		margin-bottom: 15px;
	}

	.news_title {
		font-weight: 900;
		font-size: 60px;
		color: #000000;
		letter-spacing: -0px;
		text-align: left;
		line-height: 72px;
	}

	.bread_crumb {
		padding-bottom: 20px;
		padding-top: 20px;
	}

	.breadcrumb_con {
		padding-left: 40px;
		padding-right: 40px;
	}

	.page_introduction {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.introduction_inner {
		width: 66.66667%;
		margin: 0 auto;
	}

	.introduction_inner-c {
		width: 90%;
	}

	.layout_w {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
	}

	.col_ {
		padding-left: 10px;
		padding-right: 10px;
	}

	.form_content {
		/*padding-top: 80px;
		padding-bottom: 80px;*/
	}

	.col_75 {
		width: 66.66667%;
	}

	.col_25 {
		width: 33.33333%;
	}

	.form__section--half {
		width: calc(50% - 15px);
	}

	.form_input {
		margin-bottom: 20px;
	}

	.form_button {
		padding: 9px 70px 9px 40px;
	}

	.content_feed-list {
		margin: 0px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.paddingsmall {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.paddingbig {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.info_why-inner {
		max-width: 1440px;
	}

	.info_why .info_why-inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.info_reason-list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.info_reason-items {
		width: calc(50% - 20px);
		margin-right: 20px;
	}

	.reason_items {
		left: 0 !important;
		margin-left: 0 !important;
	}

	.reason_img {
		width: 60px;
		height: 60px;
		margin-right: 20px;
	}

	.reason_title {
		margin-bottom: 20px;
		min-height: 60px;
	}

	.des_content-container {
		margin: 0 auto;
		padding-left: 40px;
		padding-right: 40px;
	}

	/*.des_con-text {
		-webkit-column-count: 2;
		column-count: 2;
		-webkit-column-gap: 30px;
		column-gap: 30px;
	}*/
	.des_con-text p {
		margin-top: 0px;
	}

	.tabs,
	.tabs_top,
	.inner {
		padding-left: 40px;
		padding-right: 40px;
	}

	.tabs_top {
		margin-bottom: 80px;
	}

	.tabs_container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.tabs_title,
	.tabs_title-pc {
		display: block;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: calc(50% - 2px);
		margin-left: 2px;
		margin-bottom: 0;
	}

	.tabs_title-50 {
		display: block;
		-webkit-box-ordinal-group: 2;
		-ms-flex-order: 1;
		order: 1;
		width: calc(50% - 2px);
		margin-left: 2px;
		margin-bottom: 0;
	}

	.tabs_title:first-child,
	.tabs_title-pc:first-child {
		margin-left: 0;
	}

	.tabs_title--active+.tabs_content {
		border-top: 2px solid #0032d6;
		height: auto;
	}

	.tabs_content {
		-webkit-box-ordinal-group: 3;
		-ms-flex-order: 2;
		order: 2;
		width: 100%;
		height: 0;
	}

	.tab_con-items {
		width: calc(50% - 10px);
	}

	.tab_items-title {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.tab_items-info {
		margin-bottom: 20px;
	}

	.tabs_top-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: space-between;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.tab_top-lists img {
		width: 150px;
		height: 150px;
	}

	.top_lists-text {
		margin-top: 20px;
		text-align: center;
	}

	.profile_items-inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.profile_items-inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.profile_img {
		margin-right: 15px;
	}

	.page_intro-conb {
		font-weight: 600;
		font-size: 18px;
		color: #000000;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 24px;
	}

	.hasdot {
		position: relative;
		padding-left: 20px;
	}

	.hasdot:before {
		content: '';
		position: absolute;
		top: 8px;
		left: 5px;
		display: inline-block;
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #000;
	}

	.page_intro-cons {
		font-size: 16px;
		color: #000000;
		letter-spacing: 0;
		text-align: left;
		line-height: 24px;
	}

	.page_intro-consw {
		font-size: 18px;
		color: #000000;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
	}

	.page_intro-con {
		margin-top: 30px;
	}

	.grid_list-inner {
		max-width: 1440px;
	}

	.grid_list-con {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.grid_list-items {
		max-width: 345px;
		left: 0 !important;
		margin-left: 0 !important;
		width: calc(50% - 30px);
		margin-right: 8%;
	}

	.grid_img {
		margin-bottom: 20px;
		height: 60px;
	}

	.blue_btn {
		padding: 9px 70px 9px 40px;
	}

	.blue_btn:after {
		right: 35px;
	}

	.blue_btn:hover:after {
		color: #fff;
		right: 30px;
	}

	.black_btn {
		padding: 9px 70px 9px 40px;
	}

	.black_btn:after {
		right: 35px;
	}

	.black_btn:hover:after {
		color: #fff;
		right: 30px;
	}

	.pointnum {
		margin-right: 40px;
		font-weight: 600;
		font-size: 16px;
	}

	.map2_title {
		margin-bottom: 60px;
	}

	.location_global {
		padding-top: 60px;
		margin-bottom: 0px;
	}

	.location_title {
		font-weight: 700;
		font-size: 18px;
		color: #000000;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 24px;
		margin-bottom: 24px;
	}

	.location_name {
		font-size: 16px;
		color: #000000;
		letter-spacing: 0;
		text-align: left;
		line-height: 24px;
		margin-bottom: 0px;
	}

	.grid_title {
		margin-bottom: 20px;
	}

	.grid_summary {
		margin-bottom: 20px;
	}

	.news_container {
		padding-top: 20px;
	}

	.news_more {
		position: absolute;
		bottom: 15px;
		left: 40%;
		font-size: 14px;
		color: #0032D6;
		letter-spacing: 1.4px;
		text-align: left;
		line-height: 24px;
		font-weight: 600;
	}

	.news_items {
		margin-bottom: 16px;
	}

	.news_items:last-child {
		margin-bottom: 0px;
	}

	.news_date {
		display: inline-block;
		font-weight: 700;
		font-size: 18px;
		color: #000000;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 24px;
		max-width: 200px;
		margin-right: 30px;
		width: 190px;
	}

	.news_con {
		display: inline-block;
		font-size: 18px;
		color: #001973;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
	}

	.slide1-title {
		font-weight: 600;
		font-size: 24px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 30px;
	}

	.slide1-con {
		font-size: 14px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 20px;
		margin-bottom: 15px;
	}

	.slide1-case {
		display: block;
		float: left;
		font-size: 15px;
		color: #000000;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
		width: 160px;
		padding-top: 7px;
	}

	.slide1-num {
		font-weight: 900;
		font-size: 26px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 35px;
	}

	.slide1-con.row-2 .slide1-num {
		line-height: 30px
	}

	.swiper-button-prev2,
	.swiper-button-next2 {
		display: none;
	}

	.locatino_title {
		margin-bottom: 20px;
	}

	.layout_inner {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
	}

	.layout_ww {
		padding-top: 20px;
		padding-bottom: 60px;
	}

	.news_list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		margin: 0;
	}

	.news_total {
		width: 100%;
		margin: 0 4.166665% 20px;
	}

	.newsitems {
		width: 100%;
	}

	.news_details {
		margin: 0 4.166665% 100px;
	}

	.news_link {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.news_img-container {
		-ms-flex-preferred-size: calc(40% + 20px);
		flex-basis: calc(40% + 20px);
		margin-right: 20px;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}

	.news_time {
		margin: 0 0 10px;
	}

	.picesofnews {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.single-title {
		padding-left: 40px;
		padding-right: 40px;
	}

	.sitemap {
		padding-left: 40px;
		padding-right: 40px;
	}

	.awards_link {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
	}

	.awards_img {
		-ms-flex-preferred-size: calc(15% + 30px);
		flex-basis: calc(15% + 30px);
		margin-right: 30px;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}

	.awards_con {
		-ms-flex-preferred-size: calc(40% + 30px);
		flex-basis: calc(40% + 30px);
		margin-right: 30px;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}

	.awards_con p {
		font-size: 16px;
	}

	.awards_btn {
		align-self: center;
	}
}

@media only screen and (min-width:960px) {
	.content_feed-list {
		display: block;
	}

	.info_reason-items {
		width: calc(24% - 20px);
	}

	.des_content-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		/*max-width: 1920px;*/
	}

	.des_con-title {
		/*width: 25%;*/
		width: 30%;
	}

	.des_con-info {
		width: 33.333333%;
	}

	.des_con-info-half {
		width: 68%;
	}

	.des_con-info_h {
		width: 49%;
	}

	.tab_con-items {
		width: calc(33.3333% - 30px);
	}

	.grid_list-items {
		width: calc(33.3333% - 40px);
		margin-right: 4.65%;
	}

	.grid_list-items:nth-child(3n) {
		margin-right: 0px;
	}

	.swiper1_bg_content {
		width: 50%;
		padding: 40px 60px;
		position: relative;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: auto;
	}

	.swiper2_bg_content {
		width: 50%;
		padding: 0 60px 0 0px;
		position: relative;
		height: auto;
	}

	.swiper-container1 .swiper-slide {
		padding: 60px 0px 80px 40px;
		padding: 15px;
	}

	.news_room {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		margin: 60px auto;
	}

	.news_con-container {
		-ms-flex-preferred-size: calc(60% - 20px);
		flex-basis: calc(60% - 20px);
		-webkit-box-flex: 1;
		-ms-flex-positive: 1;
		flex-grow: 1;
	}

	.internet_text {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.internet_text-left {
		width: 20%;
		text-align: center;
		margin-bottom: 0px;
		padding: 40px 0px;
		border-right: 2px solid #fff
	}

	.internet_text-right {
		width: 79%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: center;
		padding-left: 40px;
	}

	.text-left {
		font-weight: 600;
		font-size: 18px;
		color: #FFFFFF;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
	}

	.text-left:last-child {
		margin-bottom: 0px;
	}

	.hasdot-white:before {
		content: '';
		position: absolute;
		top: 10px;
		left: 5px;
		display: inline-block;
		width: 7px;
		height: 7px;
		border-radius: 50%;
		background: #fff;
	}

	.internet_text {
		border-bottom: 2px solid #fff;
	}

	.no-border_bottom {
		border-bottom: 0px;
	}

	.tabs_content.bgblue {
		border-top: 0px;
	}

	.tabs_content.tab_content-active {
		padding: 20px 0px;
	}

	.internet_text:first-child {
		margin-bottom: 0px;
	}

	.awards_list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 100%;
		margin: 0;
	}
}

@media only screen and (min-width: 1024px) {
	.breadcrumb_con {
		padding-left: 30px;
		padding-right: 30px;
	}

	.introduction_inner {
		width: 66.66667%;
	}

	.introduction_inner-c {
		width: 90%;
	}

	.page_intro_title {
		width: 91.66667%;
		max-width: 715px;
	}

	.page_intro_text {
		width: 91.66667%;
		max-width: 715px;
	}

	.page_intro-conw {
		width: 91.66667%;
		max-width: 715px;
	}

	.layout_w {
		padding-left: 15px;
		padding-right: 15px;
	}

	.layout_ww {
		padding-left: 15px;
		padding-right: 15px;
	}

	.col_ {
		padding-left: 15px;
		padding-right: 15px;
	}

	.info_why .info_why-inner {
		padding-left: 30px;
		padding-right: 30px;
	}

	.des_content-container {
		padding-left: 30px;
		padding-right: 30px;
	}

	.tabs,
	.tabs_top,
	.inner {
		padding-left: 30px;
		padding-right: 30px;
		width: 95%;
	}

	.banner_sub-title {
		width: 50%;
		margin-left: auto;
		margin-right: auto;
	}

	.grid_list-title {
		margin-left: auto;
		margin-right: auto;
	}

	.grid_list-con {
		margin-left: auto;
		margin-right: auto;
	}

	.grid_list-items {
		margin-right: 4%;
	}

	.grid_img {
		height: 80px;
	}

	.location_items {
		width: 20%;
	}

	.swiper1_bg_content {
		width: 50%;
		padding: 40px 80px;
		position: relative;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: auto;
	}

	.swiper2_bg_content {
		width: 50%;
		padding: 0 80px 0 20px;
		position: relative;
		height: auto;
	}

	.swiper-container1 .swiper-slide {
		padding: 60px 0px 80px 50px;
		padding: 30px;
	}

	.news_total {
		width: 91.66667%;
		margin: 0 0 20px;
		max-width: 1020px;
	}

	.newsitems {
		width: 91.66667%;
		margin: 0 0 100px;
	}

	.single-title {
		padding-left: 30px;
		padding-right: 30px;
	}

	.sitemap {
		padding-left: 30px;
		padding-right: 30px;
	}

	.sitemap_inner {
		width: 58.33333%;
	}
}

@media only screen and (min-width:1200px) {
	.con_title {
		font-size: 47px;
	}
}

@media only screen and (min-width:1200px) {
	.swiper-slide {
		padding: 0 80px;
	}

	.site-header {
		padding: 0 80px;
	}

	.swiper-pagination {
		/*top: 46vh;*/
		padding: 0 80px;
	}

	.swiper_content {
		max-width: 1440px;
		margin: 0 auto;
		padding: 44vh 0 0;
	}

	.banner_in {
		min-height: 500px;
	}

	.info_why-title,
	.map_text {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.banner_sub-title {
		width: 41.66667%;
	}

	.banner_sub-titlew {
		width: 48%
	}

	.nowrap {
		white-space: nowrap;
	}

	.swiper1_bg_content {
		width: 50%;
		padding: 40px 100px;
		position: relative;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: auto;
	}

	.swiper2_bg_content {
		width: 50%;
		padding: 0 120px 0 30px;
		position: relative;
		height: auto;
	}

	.swiper-container1 .swiper-slide {
		padding: 60px 80px 80px 80px;
		padding: 35px;
	}

	/*.swiper-container1 .swiper-slide.first{
		padding: 40px;
	}*/
	.news_img-container {
		-ms-flex-preferred-size: calc(45% + 20px);
		flex-basis: calc(45% + 20px);
	}

	.news_con-container {
		-ms-flex-preferred-size: calc(55% - 20px);
		flex-basis: calc(55% - 20px);
	}

	.awards_img {
		-ms-flex-preferred-size: calc(15% + 30px);
		flex-basis: calc(15% + 30px);
	}

	.awards_con {
		-ms-flex-preferred-size: calc(50% + 30px);
		flex-basis: calc(50% + 30px);
	}

	.awardsw {
		width: 70%;
	}
}

@media only screen and (min-width: 1200px) and (max-width: 1300px) {
	.swiper-container1 .swiper-slide {
		padding: 60px 50px 80px 50px;
	}
}

@media only screen and (min-width:1367px) {
	.con_title {
		font-size: 60px;
	}

	.swiper_content {
		padding: 42vh 0 0;
	}

	h2.con_title.toge {
		font-size: 50px;
	}
}

@media only screen and (min-width:1920px) {
	.swiper_content {
		padding: 45vh 0 0;
	}
}

@media only screen and (min-width:1440px) {
	.introduction_inner-c {
		width: 66.66667%;
	}

	.rich-text,
	.inner_bx {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.box_inner {
		width: 82.777%;
		margin-left: auto;
		margin-right: auto;
	}

	.service_bx_in {
		width: 79.44%;
		margin-left: auto;
		margin-right: auto;
	}

	.swiper-pagination {
		padding: 0px;
		max-width: 1440px;
		margin: 0 auto
	}

	.breadcrumb_con {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.layout_w {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.layout_ww {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.info_why .info_why-inner {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.des_content-container {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.tabs,
	.tabs_top,
	.inner {
		width: 83.33333%;
		width: 65%;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	.grid_list-items {
		margin-right: 4.55%;
	}

	.location_global {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}

	.swiper1_bg_content {
		width: 50%;
		padding: 40px 120px;
		position: relative;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		height: auto;
	}

	.swiper2_bg_content {
		width: 50%;
		padding: 0 150px 0 30px;
		position: relative;
		height: auto;
	}

	.single-title {
		width: 83.3333%;
		margin-left: auto;
		margin-right: auto;
	}

	.sitemap {
		width: 83.33333%;
		margin-left: auto;
		margin-right: auto;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.layout_col {
		padding-left: 15px;
		padding-right: 15px;
	}
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
	.swiper-pagination {
		padding: 0px 80px;
		max-width: 1440px;
		margin: 0px;
	}
}

@media only screen and (max-width:1200px) {

	/*.swiper-pagination {
		top: 35vh;
	}*/
	.header_menu {
		display: none;
	}

	.swiper_content2 img {
		width: 60px;
	}

	/*瀑布流样式*/
	.masonry {
		-moz-column-count: 2;
		/* Firefox */
		-webkit-column-count: 2;
		/* Safari 和 Chrome */
		column-count: 2;
		-moz-column-gap: 0px;
		-webkit-column-gap: 0px;
		column-gap: 0px;
		width: 100%;
		margin: 0px auto;
	}

	.box_items {
		margin-bottom: 20px;
		-moz-page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
		width: calc(100% - 20px);
	}

	/*瀑布流样式---end*/
}

@media only screen and (max-width:960px) {
	.des_con-info {
		margin-bottom: 20px;
	}

	.swiper1_bg_content {
		width: 100%;
		padding: 40px 100px;
		position: relative;
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column;
		flex-flow: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: flex-start;
		height: auto;
	}

	.swiper2_bg_content {
		width: 100%;
		padding: 0 100px 0 100px;
		position: relative;
		height: auto;
	}

	.swiper-container1 .swiper-slide {
		padding: 60px 0px 80px;
		padding: 30px;
		align-items: center;
	}

	.content-title {
		font-size: 30px;
		color: #FFFFFF;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 40px;
		margin-bottom: 20px;
		font-weight: 600;
	}

	.swiper1_slide-in {
		bottom: -100px;
	}

	.service_bx {
		padding-top: 160px;
	}
}

@media only screen and (max-width:768px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}

	.logo {
		max-height: 50px;
	}

	.site-header {
		padding: 15px 20px;
		height: 94px;
	}

	.main {
		margin-top: -94px;
	}

	.banner_inner {
		height: 100vh;
	}

	.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination .swiper-pagination-bullet {
		font-size: 12px;
	}

	h2 {
		/*font-size: 32px;*/
		font-size: 24px;
	}

	h2.con_title.toge,
	h2.con_title {
		font-size: 30px
	}

	.page_intro_text {
		font-size: 16px;
	}

	.tab_items-info {
		font-weight: 500;
	}

	.rowbox.col-6 {
		width: calc(100% - 0px);
		margin-right: 0px;
		max-width: 100%;
	}

	.rowbox.col-4 {
		width: calc(100% - 0px);
		margin-right: 0px;
		max-width: 100%;
	}

	.rowbox.col-2 {
		width: calc(50% - 20px);
		margin-right: 20px;
		max-width: 100%;
	}

	.img_container {
		padding-bottom: 100%;
	}

	.new_box {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.item_title {
		font-size: 20px;
	}

	.content_container {
		padding: 15px;
	}

	/*瀑布流样式*/
	.masonry {
		-moz-column-count: 1;
		/* Firefox */
		-webkit-column-count: 1;
		/* Safari 和 Chrome */
		column-count: 1;
		-moz-column-gap: 0px;
		-webkit-column-gap: 0px;
		column-gap: 0px;
		width: 100%;
		margin: 0px auto;
	}

	.box_items {
		margin-bottom: 20px;
		-moz-page-break-inside: avoid;
		-webkit-column-break-inside: avoid;
		break-inside: avoid;
		width: calc(100% - 0px);
	}

	/*瀑布流样式---end*/
	.swiper-container1 .swiper-slide {
		height: 350px;
	}

	/*.swiper_content1 {
		width: 91.66667%;
		padding: 30px;
	}*/
	.content-title {
		font-size: 30px;
		line-height: 1.25em;
		margin-bottom: 20px;
	}

	.sub-titles {
		font-size: 16px;
	}

	.sub-title {
		font-size: 16px;
	}

	.img_container-bx {
		padding-bottom: 37%;
	}

	.image-cta__title {
		font-size: 20px;
	}

	.solution_bx,
	.service_bx {
		padding-bottom: 40px;
		padding-top: 40px;
	}

	.service_bx {
		padding-top: 160px;
	}

	.us_title {
		margin-bottom: 40px;
	}

	.swiper-button-next3,
	.swiper-button-prev3 {
		top: -70px;
	}

	.menu_text {
		display: none;
	}

	.form_check.form_section label {
		margin-top: 0px;
		margin-bottom: 20px;
	}

	.form_text {
		margin-top: 30px;
	}

	.no_768 {
		display: none;
	}

	.tab_top-lists {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		width: 100%;
		height: 100%;
		margin-bottom: 20px;
	}

	.tab_top-lists img {
		width: 80px;
		height: 80px;
		margin-right: 30px;
	}

	.top_lists-text {
		align-self: center;
	}

	.tabs_top-title {
		text-align: left;
	}

	.tc_title {
		margin-bottom: 20px;
		margin-top: 40px;
	}

	.map_title {
		font-size: 16px;
	}

	.map_con {
		font-size: 14px;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 20px;
	}

	.slide1-title {
		font-weight: 600;
		font-size: 24px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 32px;
	}

	.slide1-con {
		font-size: 14px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 20px;
		margin-bottom: 10px;
	}

	.slide1-case {
		display: block;
		float: left;
		font-size: 18px;
		color: #000000;
		letter-spacing: 0;
		text-align: left;
		line-height: 28px;
		width: 150px;
		margin-right: 0;
		clear: both;
		padding-top: 5px;
	}

	.slide1-num {
		font-weight: 900;
		font-size: 36px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 48px;
	}

	.swiper-container1 .swiper-slide {
		padding: 50px 0px 40px;
		padding: 20px;
		justify-content: flex-start;
	}

	.swiper1_slide-in {
		height: 300px;
	}

	.swiper_content1 {
		height: auto;
		/*padding: 0px 20px;*/
	}

	.slide1-title {
		ont-weight: 600;
		font-size: 22px;
		color: #001973;
		letter-spacing: 0.4px;
		text-align: left;
		line-height: 28px;
	}

	.slide1-num {
		font-size: 26px;
		line-height: 36px;
	}

	.swiper1_slide-in {
		bottom: -60px;
	}

	.layout_col {
		margin-bottom: 0px !important;
	}

	.layout_ww {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.locatino_title {
		margin-bottom: 20px;
	}

	.feedtext-link {
		font-size: 700;
	}

	.pointnum {
		font-weight: 700;
	}

	.internet_text-left {
		font-size: 22px;
		margin-bottom: 10px;
	}

	.text-left {
		font-size: 16px;
		margin-bottom: 5px;
	}

	.text-left.hasdot-white {
		width: 100%;
	}

	:;
	font-size:30px
}

@media only screen and (max-width:767px) {
	.tabs_title:after {
		content: '';
		font-family: "Font Awesome 5 Free-Solid";
		font-weight: 900;
		color: #001973;
		position: absolute;
		right: 15px;
		top: 50%;
		transform: translateY(-50%);
	}

	.awards_img {
		width: 60%;
	}
}

@media only screen and (max-width:560px) {
	.swiper1_bg_content {
		padding: 15px 15px;
	}

	.swiper2_bg_content {
		padding: 0px 15px;
	}
}

@media only screen and (max-width:415px) {
	.rich-text {
		padding-left: 10px;
		padding-right: 10px;
	}

	.rich-text__inner {
		padding-top: 15px;
	}

	.rich-text__inner h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.rich-text__inner p {
		font-size: 14px;
		line-height: 20px
	}

	.new_box {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.box_inner,
	.inner_bx {
		padding-left: 15px;
		padding-right: 15px;
	}

	.item_title {
		font-size: 16px;
	}

	.text_container {
		padding: 15px;
	}

	.item_ctx {
		font-size: 14px;
	}

	.title_txbx {
		margin-bottom: 15px;
	}

	.swiper_content1 {
		width: 100%;
		padding: 5px 10px;
	}

	.content-title {
		font-size: 20px;
		margin-bottom: 10px;
	}

	.sub-title {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.swiper-container1 .swiper-slide {
		height: 340px;
	}

	.swiper-pagination {
		white-space: nowrap;
	}

	.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination .swiper-pagination-bullet {
		margin: 0 15px 0 0;
	}

	.solution_bx,
	.service_bx {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	h2,
	.us_title,
	.service_title {
		font-size: 24px;
	}

	.us_title {
		margin-bottom: 30px;
	}

	.img-sub_title {
		margin-bottom: 20px;
	}

	.swiper-button-prev2:after,
	.swiper-button-prev3:after {
		font-size: 20px;
	}

	.swiper-button-next2:after,
	.swiper-button-next3:after {
		font-size: 20px;
	}

	.swiper-button-next3,
	.swiper-button-prev3 {
		top: -60px;
	}

	.swiper1_slide-in {
		bottom: -40px
	}

	.swiper-container1 .swiper-slide {
		padding: 20px 0px 40px;
		padding: 15px
	}

	.slide1-case {
		font-size: 15px;
		width: 140px;
	}

	.slide1-num {
		font-size: 24px;
		line-height: 32px;
	}

	.service_bx.service_b {
		padding-top: 80px;
	}

	.swiper-button-prev1:after,
	.swiper-button-next1:after {
		font-size: 22px;
	}

	.con3_face .go_next {
		font-size: 20px;
		line-height: 26px;
	}

	.con3_face {
		padding: 10px 15px;
	}

	.service_bx_in {
		padding-left: 15px;
		padding-right: 15px;
	}

	.tab_top-lists img {
		width: 60px;
		height: 60px;
	}
}

.lang_list {
	padding: 10px 0;
	margin-top: -7px;
	position: relative;
}

.lang_list img.global {
	vertical-align: middle;
}

.lang_list img.down {
	vertical-align: -7px;
	margin-left: 7px;
}

.yy_list {
	display: none;
	width: 125px;
	position: absolute;
	right: 0;
	margin-top: 10px;
	/*background: rgba(255, 255, 255, 0.1);*/
	background: rgba(0, 0, 0, 0.2);
	/*padding:2px;*/
	border: 2px solid #fff;
	/*margin-top:5px;*/
}

.yy_list.lang_inner_bg {
	background: rgba(0, 0, 0, 0.5);

}

.yy_list li {}

.yy_list li a {
	color: white;
	display: block;
	padding: 8px 18px;
	margin: 1px;
	font-size: 14px;
	font-weight: bold
}

.yy_list li a:hover {
	background: rgba(255, 255, 255, 1);
	color: #fff;
	color: #001973;
}

img.cn,
img.jp,
img.eg {
	width: 25px;
	margin-right: 8px
}

.lang_list:hover .yy_list {
	display: block
}

.pc {
	display: block
}

.sp {
	display: none
}

.ns-group {
	font-size: 16px;
	line-height: 1.8em;
	margin-bottom: 80px;
}

.ns-group:last-child {
	margin-bottom: 0;
}

h3.ns-title {
	color: #0032d6;
	margin-bottom: 30px;
}

.ns-list li {
	list-style: disc;
	margin-left: 1.2em
}

.ns-group p {
	font-weight: bold;
	margin-top: 30px;
}

.ready {
	margin-bottom: 100px;
}

.ready .tab_top-lists {
	width: 14%;
	margin: 0 3%;
}

.ready .tab_top-lists img {
	width: 100%;
	height: auto;
	max-width: 100%;
}

.ns-bg {
	background: #090d5f;
	color: white;
	padding: 50px 0 30px;
	line-height: 1.8em
}

.ns-bg .email {
	width: 68px;
	float: left;
	margin-right: 20px;
	margin-top: 4px;
}

.sp-scroll-txt {
	display: none
}

@media only screen and (max-width:1366px) {
	.ready .tab_top-lists {
		width: 16%;
		margin: 0 2%;
	}

	.top_lists-text {
		font-size: 16px;
	}
}

@media only screen and (max-width:768px) {
	.yy_list {
		padding: 20px 0;
		display: block !important;
		position: static;
		border-top: 1px solid #001973;
		border-bottom: 1px solid #001973;
		border-radius: 0;
		background: none;
		width: 100%;
		text-align: center;
		display: ;
	}

	.yy_list li {
		display: inline-block;
	}

	.yy_list li a {
		color: #001973;
		padding: 0 10px;
		text-align: center;
		vertical-align: middle;
	}

	.pc {
		display: none
	}

	.sp {
		display: block
	}

	.ready .tab_top-lists {
		width: 100%;
		margin: 0 0 20px;

	}

	.ready .top_lists-text {
		font-weight: normal
	}

	.ready .tab_top-lists img {
		width: 60px;
		height: 60px;
	}

	.ns-bg {
		background: #090d5f;
		color: white;
		padding: 40px 0 20px;
		line-height: 1.8em;
		text-align: center
	}

	.ns-bg .email {
		float: none;
		margin-right: 0;
		display: inline;
		margin-bottom: 10px;
	}
}

.blue_text a {
	color: #0784C1
}

.nav_child_bg {
	border-bottom: 2px solid #f9f9f9
}

.nav_child_bg li {
	background: white;
	padding-left: 20px
}

.nav_child_bg .nav_link {
	padding: 20px 40px
}

.contact-us {
	background: #000;
	text-align: center;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 20px;
	padding: 20px;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}


/*contactus*/

.sticky-anchor-navigation {
	width: 100%;
	background-color: #000;
	display: block;
}

.sticky-anchor-navigation__inner {
	background-color: #000;
	color: #fff;
	text-align: center;
}

.sticky-anchor-navigation__link {
	padding: 20px;
	text-transform: uppercase;
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.4px;
	line-height: 20px;
	color: #fff;
}

.sticky-anchor-navigation__inner--sticky {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}


.tab-abs {
	padding-top: 80px;
	position: relative
}

.abs-title {
	position: absolute;
	top: 0px;
	width: 100%;
	text-align: left;
	z-index: 10;
}

.tabs_top-container.about-t {
	text-align: center;
	padding: 0;
	margin: 0
}

.about-t img {
	display: inline
}

.about-t a {
	display: block;
	margin-top: 20px;
}

.about-t .blue_btn:after {
	right: 25px
}

.about-t .blue_btn {
	padding: 9px 50px 9px 20px
}

.tabs.tab-pd {
	padding-left: 65px;
	padding-right: 65px
}

.info-3 .info_reason-items {
	width: calc(33% - 20px)
}

.des_con-info.qykk {
	width: 100%
}

.des_con-info.qykk p.des_small {
	float: left;
	width: 50%;
	display: block;
}

.des_con-info.qykk p.des_small:last-child {
	margin-right: 0;
}

.des_con-info.qykk .yw {
	margin-left: -83px;
}

.des_con-info.rel {
	position: relative;
}

.des_con-text.abs {
	color: white;
	border-color: white;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
}

.des_con-text.abs a {
	width: 200px
}

.des_con-text.abs a:first-child {
	margin-bottom: 15px;
}

.white_btn {
	border-color: white;
	color: white
}

.white_btn:after {
	color: white
}

.des_con-info.rel:after {
	display: table;
	content: "";
	clear: both
}

.ab-title-1 {
	margin-top: 40px;
	text-align: left
}

.ab-title-2 {
	background: #001973;
	border-radius: 4px;
	color: white;
	text-align: center;
	line-height: 60px;
	font-size: 24px;
	padding: 0 20px
}

.img-fl {
	float: left;
	width: 75px;
	max-width: 75px;
}

.cont-img-fl {
	padding-left: 100px
}

.slide1-cont {
	padding-left: 170px;
}

.swiper2_bg_content .swiper-wrapper {
	height: 400px
}

.rel {
	position: relative
}

.abs-rb {
	position: absolute;
	bottom: 25px;
	right: 0;
	z-index: 100;
}

.abs-img-rb {
	position: absolute;
	bottom: 25px;
	right: 10%;
	z-index: 100;
	width: 30px;
}

.lo-right {
	text-align: right;
	margin-right: 14%
}

span.star {
	color: #de1313;
	margin-left: 3px
}

.w-link a {
	display: inline-block;
	border: 2px solid white;
	color: white;
	padding: 4px 15px;
	margin-right: 20px;
	font-size: 16px;
	/*margin-right:30px*/
}

.footer__copyright a {
	display: block;
	color: #888
}

.imgbks {
	text-align: center;
	margin-top: 60px;
}

.imgbks img {
	width: 600px;
	display: inline
}

.con_comp {
	font-size: 20px;
	color: ;
	margin-top: 3px;
	line-height: 1em;
	display: block;
	margin: 0 0 20px;
}

.center-clear {
	text-align: left;
	clear: both;
	padding-top: 15px;
	font-size: 17px;
	font-family: "Roboto", "PingFang", "SimHei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, tahoma, arial, Verdana, sans-serif;
}

.lang_list.pc {
	display: !important
}

.detail-out {
	text-align: right;
	font-size: 28px;
	font-weight: bold;
	padding: 40px 50px;
	line-height: 2em;
	color: white;
	background: #1e2856;
	margin: 120px 0 0;
}

.detail-out span {
	position: relative;
	top: 4px;
}

.detail-out a {
	margin-top: 0;
	font-size: 18px;
	margin-left: 20px;
	line-height: 1.4em;
}

.rw_img {
	width: 100%;
	max-width: 450px;
	margin-right: 20px;
	margin-bottom: 20px;
	float: left;
}

.in-news .news_date {
	float: left;
}

.in-news .news_con {
	padding-left: 220px;
	display: block
}

.in-news:last-child {
	conten: "";
	display: table;
	clear: both;
}

.grid_list_wid {
	width: 80%;
}

.grid_list_wid .grid_list-items {
	width: calc(50% - 40px);
}

.col_75.news-wid {
	width: 100%
}

.col_75.news-wid .news_img-container {
	flex-basis: calc(38% + 20px);
}

.tabs.director-wid {
	width: 70%
}

.sp-scroll-txt {
	display: none
}

@media only screen and (max-width:1100px) {
	.go_next {
		font-size: 14px;
		letter-spacing: 0;
	}
}

@media only screen and (max-width:1100px) {
	.tabs.director-wid {
		width: 85%
	}
}

@media only screen and (max-width:767px) {
	.des_con-info.qykk p.des_small {
		float: none;
		width: 100%;
		display: block
	}

	.des_con-info.qykk .yw {
		margin-left: 0;
	}

	.white_btn.abs {
		position: relative;
		right: 0
	}

	.info-3 .info_reason-items {
		width: calc(100%)
	}

	.about-t a {
		display: block;
		width: 180px;
	}

	.slide1-cont {
		padding-left: 140px
	}

	.swiper2_bg_content .swiper-wrapper {
		height: 350px
	}

	.abs-rb,
	.des_con-text.abs {
		position: static;
		bottom: auto;
		right: auto;
	}

	.w-link a {
		margin-right: 0;
	}

	.detail-out {
		font-size: 24px;
		padding: 30px 15px;
		margin: 60px 0 0;
	}

	.detail-out span {
		position: relative;
		top: 0;
	}

	.detail-out a {
		margin-top: 15px;
		font-size: 16px;
		margin-left: 20px;
		line-height: 1.4em;
	}

	.profile_container,
	.profile_items-inner {
		padding-top: 0
	}

	.rw_img {
		width: 100%;
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 20px;
		float: none;
	}

	.in-news .news_date {
		float: none;
		width: 100%;
		max-width: 100%;
	}

	.in-news .news_con {
		padding-left: 0;
		width: 100%;
		display: block
	}

	.grid_list_wid {
		width: 100%;
	}

	.grid_list_wid .grid_list-items {
		width: calc(100%);
	}

	.tabs.director-wid {
		width: 100%
	}

	.detail-out {
		text-align: center;
		font-size: 20px;
		padding: 30px;
	}

	.detail-out a {
		margin-left: 0;
		margin-top: 20px;
	}

	.footer {
		font-size: 14px;
	}

	.footer__copyright-container {
		margin-bottom: 15px;
	}

	.swiper1_slide-in {
		position: relative;
		bottom: 0;
	}

	.service_bx.service_b {
		padding-top: 30px;
	}

	.swiper-container1 .swiper-slide {
		margin-bottom: 0;
		padding: 20px 0px 40px
	}

	.swiper1_bg-container {
		height: inherit;
		padding: 0px 15px 60px
	}

	.sp-scroll-txt {
		text-align: center;
		display: block;
		font-size: 13px;
		color: #222;
	}

	.detail-out {
		line-height: 1.3em
	}
}

@media only screen and (max-width:375px) {
	.yy_list li a {
		padding: 0 5px
	}

	.w-link a {
		padding: 4px 10px;
		font-size: 14px;
	}
}


.mov {
	margin-top: 0;
	/*animation:myfirst 1s;
-moz-animation:myfirst 1s;
-webkit-animation:myfirst 1s;
-o-animation:myfirst 1s;*/
}

@keyframes myfirst {
	from {
		margin-top: -80px;
		opacity: 0.7;
	}

	to {
		margin-top: 0;
		opacity: 1.0;
	}

}

@-moz-keyframes myfirst {
	from {
		margin-top: -3%;
	}

	to {
		margin-top: 0
	}
}

@-webkit-keyframes myfirst {
	from {
		margin-top: -3%
	}

	to {
		margin-top: 0
	}
}

@-o-keyframes myfirst {
	from {
		margin-top: -3%
	}

	to {
		margin-top: 0
	}
}



/*---safe page --*/
.page-safe .page_intro_title {
	margin-bottom: 0
}

.safe-spec {
	margin-top: 100px;
}

.safe-spec .down_tab li {
	font-size: 24px;
	padding: 20px 0;
	border-top: 1px solid #ccceda;
	border-bottom: 1px solid #ccceda;
	margin-top: -1px;
	font-weight: bold;
	line-height: 1.33em;
	cursor: pointer;
}

.safe-spec .page_intro_title {
	margin-bottom: 30px;
}

.safe-spec .down_tab .downlist {
	margin: 30px 0;
}

.safe-spec .down_tab .downlist li {
	border: 0;
	font-size: inherit;
	margin: 0 0 10px;
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
	border: 0;
	padding: 0;
	list-style: disc;
	margin-left: 20px;
}

.safe-spec .down_tab .downlist p img {
	margin-top: 30px;
	display: block;
	width: 300px;
}

.page_intro-cons {
	font-size: 16px;
	line-height: 24px;
}

@media only screen and (max-width:768px) {
	.page-safe .page_intro-con {
		margin-top: 15px
	}

	.safe-spec {
		margin-top: 50px
	}

	.safe-spec .page_intro_title {
		margin-bottom: 15px;
	}

	.safe-spec .down_tab li {
		font-size: 20px;
		padding: 15px 0;
	}

	.safe-spec .down_tab .downlist p img {
		margin-top: 20px;
		width: 100%;
	}

	.page-safe p.mt-50 {
		margin-top: 30px !important;
	}
}

.hz-hover {
	position: relative;
	display: inline-block;
}

.hz-hover a {
	color: white;
	text-decoration: underline;
}

.hz-hover a:hover {
	text-decoration: underline;
}

.hz-hover img.lar {
	display: none;
	position: absolute;
	right: -190px;
	top: -70px;
	width: 190px;
	height: 272px;
}

.hz-hover:hover img.lar {
	display: block
}

.hz-hover .sma {
	display: none
}

@media only screen and (max-width: 768px) {
	.hz-hover .sma {
		display: block;
		width: 60%;
		margin: 15px auto 0;

	}

	.hz-hover:hover img.lar {
		display: none;
	}
}





/*********1216首页新闻********/
.news_ind .box_inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 100px;
	padding: 0;
}

.news_ind .box_inner .in-news {
	width: 70%;
}

.news_titles {
	width: 27%;
	min-width: 250px;
}

.news_ind .in-news .news_con {
	padding-left: 0;
	display: block;
}

.news_ind .in-news {}

.news_ind .in-news .news_items {
	margin-bottom: 24px;
	padding: 40px;
	background: white;
	border-radius: 2px;
	box-shadow: 0 2px 8px 0 #78788029;
	position: relative;
}

.news_ind .in-news .news_date {
	float: none;
	width: inherit;
	margin-right: 0;
	max-width: inherit;
	color: #001973;
	font-weight: normal;
	font-size: 14px;
	padding: 5px 10px;
	border: 1px solid #001973;
}

.news_ind .in-news .news_items .title {}

.news_ind .in-news .news_items p {
	font-size: 14px;
	color: #666;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 10px;
}

.news_ind .in-news .news_items .title {
	color: #000;
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 16px;
}

.news_ind .in-news .news_items::before {
	content: "";
	display: table;
	width: 16px;
	height: 16px;
	background: blue;
	border-radius: 2px 0 0 0;
	position: absolute;
	top: 0;
	left: 0;
}

.news_ind .news_title {
	font-size: 36px;
	line-height: 48px;
	margin-bottom: 64px;
	height: 48px;
}

.news_ind .news_more {
	color: #000;
	font-size: 18px;
	display: block;
	position: static;
}

.news_ind .news_more::after {
	display: none
}

@media only screen and (max-width: 768px) {
	.news_ind .box_inner {
		display: block;
		margin: 0 15px;
	}

	.news_ind .in-news .news_items {
		padding: 25px;
		margin-bottom: 20px;
	}

	.news_ind .box_inner .in-news {
		width: 100%;
	}

	.news_ind .news_title {
		font-size: 24px;
		margin-bottom: 10px;
		height: inherit;
		line-height: 1.25em;
	}

	.news_ind .news_more {
		font-size: 16px;
	}

	.news_titles {
		width: inherit;
		min-width: inherit;
		margin-bottom: 30px;
	}
}

/*********1216首页产品与服务********/
.service_ind {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.service_ind .bk {
	width: calc((100% - 64px) / 3);
	background: white;
	padding: 40px;
	display: flex;
	justify-content: space-between;
	gap: 32px;
	position: relative;
}

.service_ind .bk .ico {
	width: 78px;
	height: 78px;
}

.service_ind .bk .ico img {
	width: 78px;
	height: 78px;
	max-width: inherit;
}

.service_ind .bk .title {
	font-weight: 600;
	font-size: 24px;
	color: #000000;
	letter-spacing: 0;
	line-height: 32px;
	margin-bottom: 24px;
}

.service_ind .bk p {
	font-weight: 400;
	font-size: 16px;
	color: #2B2B2B;
	letter-spacing: 0;
	line-height: 24px;
	margin-bottom: 0;
}

.service_ind .bk a {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #0032D6;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	opacity: 0;
	font-weight: normal;
	transition: opacity .25s ease-out;
}

.service_ind .bk:hover a {

	opacity: 0.9;
}

.service_ind .bk a.go_next:after {
	color: white;
	position: static;
	margin-left: 10px;
}

@media only screen and (max-width: 960px) {
	.service_ind .bk {
		width: calc((100% - 64px) / 2);
	}
}

@media only screen and (max-width: 768px) {
	.service_ind {
		gap: 20px
	}

	.service_ind .bk {
		width: 100%;
		padding: 25px;
		gap: 20px;
	}

	.service_ind .bk .ico,
	.service_ind .bk .ico img {
		width: 65px;
		height: 65px
	}
}