* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/* font-family: 'PingFang SC', 'Microsoft YaHei', 'Microsoft YaHei UI', 'HarmonyOS Sans SC', 'SimSun', 'SimHei', 'Arial', 'sans-serif'; */
}


@font-face {
	font-family: "bahnschrift";
	/* Project id 2871779 */
	src: url('../fonts/bahnschrift.ttf');
}

/* a:link,
a:active,
a:visited,
a:hover,
{
background: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-tap-highlight-color: transparent;
} */

a {
	text-decoration: none;
}

ul {
	list-style: none;
}

body {
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	font-family: "bahnschrift";
}

::-webkit-scrollbar {
	/*高宽分别对应横竖滚动条的尺寸*/
	width: 5px;
	height: 5px;
}

/*滚动条里面小方块*/
::-webkit-scrollbar-thumb {
	border-radius: 2px;
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	background: #164194;
}

/*滚动条里面轨道*/
::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
	border-radius: 2px;
	background: #EDEDED;
}

.content1300 {
	margin: 0 auto;
	width: 1300px;
	max-width: 94%;
}

.content1440 {
	margin: 0 auto;
	width: 1440px;
	max-width: 94%;
}

.content1400 {
	margin: 0 auto;
	width: 1400px;
	max-width: 94%;
}

.content1240 {
	margin: 0 auto;
	width: 1240px;
	max-width: 94%;
}

.content1200 {
	margin: 0 auto;
	width: 1200px;
	max-width: 94%;
}

.content1500 {
	margin: 0 auto;
	width: 1500px;
	max-width: 94%;
}

.content1600 {
	margin: 0 auto;
	width: 1600px;
	max-width: 94%;
}

.content312 {
	padding: 0 3.12%;
}

.content520 {
	padding: 0 5.2%;
}

.picCover {
	position: relative;
}

.picCover .pic {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.picCover .pic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hoverLi .pic {
	overflow: hidden;
}

.hoverLi:hover .imgScale {
	transform: scale(1.05);
}

.imgScale {
	transition: all 1s;
	display: block;
	width: 100%;
}

.font30 {
	font-size: 30px;
}

.font48 {
	font-size: 48px;
}

.font36 {
	font-size: 36px;
}

.font60 {
	font-size: 60px;
}

.font72 {
	font-size: 72px;
}

.font80 {
	font-size: 80px;
}

.font90 {
	font-size: 90px;
}

.font100 {
	font-size: 100px;
}

.font200 {
	font-size: 200px;
}

.header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 999;
	padding: 20px 0;
}

.header.sticky {
	position: sticky;
	background-color: #fafafa;
}

.header.active {
	background-color: #fff;
}

.header .header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .header-container .site-logo {
	display: block;
	max-width: 194px;
}

.header .r {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 52px;
	width: 74.72%;
	justify-content: space-between;
}

.header .r::before {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	width: 100vw;
	height: 100%;
	border-radius: 10px;
	background-color: rgba(22, 65, 148, 1);
	transform: skew(-8deg);
}

.header .r .main-nav,
.header .r .header-actions {
	position: relative;
	z-index: 3;
}

.header .r .nav-list {
	display: flex;
	gap: 0 74px;
}

.header .r .nav-list li>a {

	position: relative;
		font-weight: 400;
		font-size: 18px;
		color: #FAFAFA;
		line-height: 80px;
		display: block;
	}
.header .r .nav-list>li>a::before{
	position: absolute;
	content: "";
	left: 50%;
	transform: translateX(-50%);
	height: 4px;
background: #FAFAFA;
border-radius: 2px;
bottom: 12px;
width: 0;
transition: all 0.3s ease-in-out;
}
.header .r .nav-list>li:hover >a::before,
.header .r .nav-list>li.active >a::before{
	width: 100%;
}
	/* 下拉菜单样式 */
	.header .r .nav-list li.dropdown {
		position: relative;
	}

	.header .r .nav-list li.dropdown:hover .dropdown-menu {
		display: block;
		animation: fadeInUp1 0.3s ease-out forwards;
	}

	.header .r .nav-list li.dropdown .dropdown-menu {
		position: absolute;
		top: 80px;
		left: 50%;
		background-color: white;
		border-radius: 0 0 10px 10px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
		padding: 39px;
		display: none;
		z-index: 1000;
		min-width: 250px;
		opacity: 0;
		transform: translate(-50%, 20px);
	}

	/* 往上浮现动画 */
	@keyframes fadeInUp1 {
		from {
			opacity: 0;
			transform: translate(-50%, 20px);
		}
		to {
			opacity: 1;
			transform: translate(-50%, 0);
		}
	}

	.header .r .nav-list li.dropdown .dropdown-menu ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.header .r .nav-list li.dropdown .dropdown-menu ul li {
		margin-bottom: 10px;
	}

	.header .r .nav-list li.dropdown .dropdown-menu ul li:last-child {
		margin-bottom: 0;
	}

	.header .r .nav-list li.dropdown .dropdown-menu ul li a {
		color: rgba(102, 102, 102, 1);
		line-height: 30px;
		font-size: 16px;
		transition: all 0.3s;
		white-space: nowrap;
	}
	.header .r .nav-list li.dropdown .machines-dropdown ul li a{
		white-space: normal;
	}
	.header .r .nav-list li.dropdown .dropdown-menu ul li a:hover {
		color: #164194;
		/* padding-left: 10px; */
	}

	/* Machines下拉菜单三列布局 */
	.header .r .nav-list li.dropdown .dropdown-menu.machines-dropdown {
		min-width: 863px;
	}

	.header .r .nav-list li.dropdown .dropdown-menu .dropdown-columns {
		display: flex;
		gap: 40px;
		justify-content: space-between;
	}

	.header .r .nav-list li.dropdown .dropdown-menu .dropdown-column {
		/* flex: 1; */
	}

	.header .r .nav-list li.dropdown .dropdown-menu .dropdown-column h4 {
		color: rgba(34, 34, 34, 1);
		font-size: 18px;
		margin-bottom: 15px;
		font-weight: bold;
	}

	.header .r .nav-list li.dropdown .dropdown-menu .dropdown-column ul li {
		margin-bottom: 8px;
	}

.header .r .header-actions {
	display: flex;
	align-items: center;
}

.header .r .header-actions .contact-btn {
	padding: 0 12px 0 18px;
	line-height: 46px;
	background: #FFFFFF;
	border-radius: 23px;
	font-family: Bahnschrift;
	font-weight: 400;
	font-size: 18px;
	color: #164194;
	display: flex;
	align-items: center;
	gap: 14px;
}

.header .r .header-actions .contact-btn .iconfont {
	font-size: 26px;
}

.header .r .aslideBtn .iconfont {
	color: rgba(153, 153, 153, 1);
	font-size: 22px;
	transition: all .6s;
}

.header .r .header-search-box {
	position: relative;
	margin-left: 40px;
}

.header .r .header-search-box .header-searchBtn {
	cursor: pointer;
	font-size: 22px;
	color: #fff;
	transition: all .6s;
	display: block;
}

.header .r .header-search-box .header-searchBtn:hover {
	color: rgba(255, 255, 255, .8);
}

.header .r .header-search-box .header-search-container {
	position: absolute;
	right: -15px;
	top: 70px;
	display: none;
	/* border: 1px solid #999; */
}

.header .r .header-search-box .header-search {
	width: 230px;
	height: 38px;
	background: rgba(255, 255, 255, 1);
	/* background: #F0F0F0; */
	border-radius: 19px;
	display: flex;
	align-items: center;
	/* box-shadow: 0 10px 40px rgba(0, 0, 0, .08); */
	border: 1px solid #999;
}

.header .r .header-search-box .header-search input {
	flex: 1;
	padding-left: 17px;
	font-size: 12px;
	font-family: Microsoft YaHei;
	font-weight: 400;
	color: #333;
	height: 100%;
	width: 100%;
	border-radius: 19px;
	border: none;
	outline: none;
	background-color: transparent;
}

.header .r .header-search-box .header-search input::placeholder {
	color: #999;
}

.header .r .header-search-box .header-search .iconfont {
	cursor: pointer;
	color: rgba(153, 153, 153, 1);
	padding: 0 15px 0 10px;
	transition: all 1s;
}

.header .r .header-search-box .header-search .iconfont:hover {
	color: #164194;
}

.header .r .header-language {
	font-weight: 400;
	font-size: 18px;
	color: #FAFAFA;
	margin-left: 50px;
	display: flex;
	align-items: center;
}

.header .r .header-language .icon-duoyuyan {
	font-size: 24px;
}

.header .r .header-language select {
	border: none;
	outline: none;
	color: #fff;
	margin-left: 10px;
	background: transparent;
	padding-right: 12px;
	font-size: 18px;
	line-height: 30px;
}
.header .r .header-language select option{
	color:#000;
}
.inner-page {
	padding-top: 140px;
}

.footer {
	position: relative;
	z-index: 2;
}

.footer-container {
	background: rgba(34, 42, 53, 1);
	clip-path: polygon(100% 0, 100% calc(100% - 293px), calc(100% - 256px) 100%, 0 100%, 0 0);
}

.footer-top {
	position: relative;
	padding: 56px 0 66px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-top::before {
	position: absolute;
	content: "";
	left: 50%;
	width: 100vw;
	transform: translateX(-50%);
	bottom: 0;
	height: 1px;
	background-color: rgba(255, 255, 255, .2);
}

.footer-top .footer-logo-area {
	display: block;
}

.footer-top .footer-logo-area .footer-logo {
	display: block;
	width: 222px;
}

.footer-top .footer-social-area {
	display: flex;
	gap: 10px;
}

.footer-top .footer-social-area .social-link {
	width: 44px;
	height: 44px;
	background: #AEB8C6;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(34, 42, 53, 1);
	transition: all .6s;
}

.footer-top .footer-social-area .social-link:hover {
	background-color: rgba(22, 65, 148, 1);
	color: #fff;
}

.footer-top .footer-social-area .social-link .iconfont {
	font-size: 22px;
}

.footer .backTop {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 256px;
	height: 293px;
	background: #164194;
	z-index: -1;
}

.footer .backTop .backTopBtn {
	position: absolute;
	font-weight: bold;
	font-size: 18px;
	color: #FFFFFF;
	line-height: 30px;
	text-align: center;
	cursor: pointer;
	right: 53px;
	bottom: 53px;
}

.footer .backTop .backTopBtn .iconfont {
	display: block;
	transform: rotate(-90deg);
}

.footer-middle {
	padding: 49px 0 66px;
}

.footer-middle .contact-info-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0 30px;
	font-weight: 400;
	font-size: 24px;
	color: #FFFFFF;
	line-height: 30px;
}

.footer-bottom {
	padding-bottom: 41px;
}

.footer-bottom .footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0 109px;
}

.footer-bottom .footer-links li>a {
	display: block;
	font-size: 16px;
	color: #FFFFFF;
	line-height: 24px;
	transition: all .6s;
}

.footer-bottom .copyright-text a:hover,
.footer-bottom .footer-links li>a:hover {
	opacity: .8;
}

.footer-bottom .copyright-text {
	margin-top: 66px;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 24px;
}

.footer-bottom .copyright-text a {
	color: #999999;
}

.application-section {
	padding: 144px 0;
}

.application-section .app-grid {
	margin-top: 80px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 13px;
}

.application-section .app-card {
	background: #EFEFEF;
	border-radius: 10px;
	padding: 28px;
	transition: all .3s;
}

.application-section .app-card:hover {
	background-color: rgba(18, 58, 137, 1);
}

.application-section .app-icon-circle {
	width: 200px;
	height: 200px;
	background: #2857B2;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.application-section .app-icon-circle img {
	max-width: 61%;
	max-height: 61%;
}

.application-section .app-label {
	font-weight: 400;
	font-size: 24px;
	color: #123A89;
	line-height: 1.25;
	min-height: 2.5em;
	margin-top: 2em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	transition: all .6s;
}

.application-section .app-card:hover .app-label {
	color: #fff;
}

.breadcrumb-nav {
	display: flex;
	flex-wrap: wrap;
	font-family: Bahnschrift;
	font-weight: 400;
	font-size: 16px;
	color: #999999;
	line-height: 30px;
	gap: 0 10px;
}

.banner-section .breadcrumb-nav {
	margin-top: 16.04vw;
}

.breadcrumb-nav a {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
}

.breadcrumb-nav a.active,
.breadcrumb-nav a:hover {
	color: rgba(22, 65, 148, 1);
}

.breadcrumb-nav>a:last-child {
	color: rgba(22, 65, 148, 1);
}

.banner-section {
	/* background-image: url(../img/about-banner-bg.png);
    background-size: 100% auto; */
	background-color: #fafafa;
	padding-top: 16.82vw;
	/* background-repeat: no-repeat; */
}

.banner-section .bg {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	display: block;
}

.banner-section .banner-bg-wrapper {
	position: relative;
	z-index: 3;
}

.banner-section .banner-title {
	text-align: center;
	color: #FFFFFF;
	line-height: 1;
	letter-spacing: 8px;
}

.banner-section .banner-content-wrapper {
	display: flex;
	align-items: flex-end;
}

.breadcrumb-nav .iconfont {
	font-size: 12px;
	font-weight: bold;
}

.contact-section {
	position: relative;
	margin-top: 120px;
	padding-bottom: 150px;
}

.contact-section .contact-container {
	position: relative;
	z-index: 3;
}

.contact-section .bg {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 4.75%);
	width: 1170px;
	max-width: 94%;
	display: block;
}

.contact-section .contact-title {
	text-align: center;
	font-weight: 400;
	color: #164194;
	line-height: 1.25;
}

.contact-section .contact-filter-box {
	margin-top: 36px;
}

.contact-section .contact-filter-box .custom-select {
	position: relative;
	display: block;
	margin: 0 auto;
	width: 260px;
	height: 60px;
	background: #FAFAFA;
	border-radius: 30px;
	border: 1px solid #D6D6D6;
	outline: none;
	font-weight: 400;
	font-size: 18px;
	color: #222222;
	line-height: 36px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.contact-section .contact-filter-box .custom-select:hover {
	border-color: #164194;
	box-shadow: 0 2px 8px rgba(22, 65, 148, 0.1);
}

.contact-section .contact-filter-box .custom-select-selected {
	padding: 0 28px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.contact-section .contact-filter-box .custom-select-selected::after {
	content: '';
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid #164194;
	transition: transform 0.3s ease;
}

.contact-section .contact-filter-box .custom-select.active .custom-select-selected::after {
	transform: translateY(-50%) rotate(180deg);
}

.contact-section .contact-filter-box .custom-select-dropdown {
	position: absolute;
	top: 110%;
	left: 0;
	right: 0;
	background: #FAFAFA;
	border: 1px solid #D6D6D6;
	border-radius: 0 0 30px 30px;
	max-height: 0;
	overflow: auto;
	transition: max-height 0.3s ease, opacity 0.3s ease;
	opacity: 0;
	z-index: 1000;
}

.contact-section .contact-filter-box .custom-select.active .custom-select-dropdown {
	max-height: 300px;
	opacity: 1;
}

.contact-section .contact-filter-box .custom-select-option {
	padding: 15px 28px;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-section .contact-filter-box .custom-select-option:hover {
	background-color: #164194;
	color: #FFFFFF;
}

.contact-section .contact-filter-box .custom-select-option.selected {
	background-color: #164194;
	color: #FFFFFF;
}

.contact-section .contact-cards-grid {
	margin-top: 80px;
}

.contact-cards-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.contact-cards-grid .contact-card {
	border-radius: 10px;
	background: rgba(0, 159, 227, 1);
	padding: 55px 30px 45px;
}

.contact-cards-grid .contact-card.dark-blue-bg {
	background: #164194;
}

.contact-cards-grid .card-category {
	color: #FAFAFA;
	line-height: 1;
}

.contact-cards-grid .person-profile {
	background: rgba(250, 250, 250, .1);
	border-radius: 10px;
	display: flex;
	align-items: center;
	padding: 35px 30px;
	margin-top: 40px;
}

.contact-cards-grid .person-profile .person-avatar {
	width: 110px;
	height: 110px;
	border-radius: 50%;
}

.contact-cards-grid .person-profile .person-info {
	flex: 1;
	margin-left: 25px;
}

.contact-cards-grid .person-profile .person-name {
	color: #FAFAFA;
	line-height: 1;
}

.contact-cards-grid .person-profile .person-role {
	font-size: 24px;
	color: #FAFAFA;
	line-height: 30px;
	margin-top: 14px;
}

.contact-cards-grid .phone {
	color: #FAFAFA;
	line-height: 1;
	text-align: center;
	margin-top: 37px;
}

.contact-cards-grid .card-actions {
	margin: 45px auto 0;
	width: 380px;
	max-width: 100%;
}

.contact-cards-grid .card-actions .btn-action {
	display: flex;
	padding-left: 55px;
	align-items: center;
	font-weight: bold;
	font-size: 24px;
	color: #FAFAFA;
	line-height: 80px;
	background: #009FE3;
	border-radius: 40px;
	gap: 0 60px;
	transition: all .3s;
}

.contact-cards-grid .contact-right-col .btn-inquiry:hover,
.contact-cards-grid .card-actions .btn-action:hover {
	opacity: .9;
}

.contact-cards-grid .card-actions .btn-action.green-btn {
	background-color: rgba(2, 198, 61, 1);
}

.contact-cards-grid .card-actions .btn-action .iconfont {
	font-size: 36px;
}

.contact-cards-grid .card-actions .btn-action:not(:last-child) {
	margin-bottom: 20px;
}
.contact-cards-grid .contact-right-col{
	display:grid;
	grid-template-columns:repeat(1,1fr);
	gap: 40px;
}
.contact-cards-grid .contact-right-col .small-card:not(:last-child) {
	/* margin-bottom: 40px; */
}

.contact-cards-grid .contact-right-col .card-content-bottom {
	margin-top: 49px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contact-cards-grid .contact-right-col .btn-inquiry {
	display: flex;
	align-items: center;
	padding: 0 25px;
	line-height: 60px;
	background: #FFFFFF;
	border-radius: 30px;
	font-weight: bold;
	font-size: 24px;
	color: #009FE3;
	gap: 0 23px;
	transition: all 0.3s;
}

.contact-cards-grid .contact-right-col .btn-inquiry .iconfont {
	font-size: 20px;
}

.contact-cards-grid .contact-right-col .availability-text {
	font-weight: 400;
	font-size: 16px;
	color: #FAFAFA;
	line-height: 24px;
}

.media-card {
	position: relative;
	transition: all .6s;
}

.media-card:not(:last-child) {
	margin-right: 1.785%;
}

.media-card .pic {
	position: relative;
	border-radius: 10px;
	z-index: 3;
}

.media-card .media-content {
	position: relative;
	padding: 44px 28px;
	z-index: 2;
}

.media-card .media-content::before {
	position: absolute;
	content: "";
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120%;
	background-color: #fff;
	border-radius: 0 0 10px 10px;
	transform: skewY(-10deg);
	transform-origin: left bottom;
	z-index: -1;
}

.media-card .media-title {
	font-weight: bold;
	color: #222222;
	line-height: 1;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-bottom: .8em;
	transition: all 0.3s;
}

.media-card:hover .media-title {
	color: #164194;
}

.media-card .media-desc {
	font-size: 18px;
	color: #222222;
	line-height: 1.33;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	text-overflow: ellipsis;
	height: 3.99em;
	transition: all .6s;
}

.media-card .media-date-row {
	margin-top: 28px;
}

.media-card .media-month,
.media-card .media-day {
	font-weight: bold;
	color: #999999;
	line-height: 1;
	transition: all .6s;
}

.media-card:hover .media-month,
.media-card:hover .media-day,
.media-card:hover .media-desc {
	color: #123A89;
}

.media-card .media-month {
	font-size: 18px;
	display: block;
}

.media-card .more {
	position: absolute;
	right: 28px;
	bottom: 10px;
	width: 110px;
	opacity: 0;
	transition: all .6s;
}

.media-card:hover .more {
	opacity: 1;
}

.media-card .more img {
	display: block;
	width: 100%;
}

.pc-aslide {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 9999;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: ease-in-out .6s;
}

.pc-aslide.active {
	opacity: 1;
	pointer-events: inherit;
	visibility: visible;
}

.pc-aslide-content {
	position: absolute;
	right: 0;
	top: 0;
	background-color: rgba(255, 255, 255, 1);
	height: 100%;
	width: 829px;
	max-width: 100%;
	padding: 48px 50px 50px 77px;
	display: flex;
	flex-direction: column;
	transition: ease-in-out .6s;
	transform: translateX(120%);
	opacity: 0;
}

.pc-aslide.active .pc-aslide-content {
	transform: translateX(0);
	transition: ease-in-out .6s .3s;
	opacity: 1;
}

.pc-aslide-content-t {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pc-aslide-content-t .close {
	color: rgba(153, 153, 153, 1);
	transition: all .6s;
	cursor: pointer;
}

.pc-aslide-content-c .list .li-des a:hover,
.pc-aslide-content-c .list .li-title:hover,
.pc-aslide-content-t .close:hover {
	color: #164194;
}

.pc-aslide-content-t .close .iconfont {
	font-size: 30px;
}

.pc-aslide-content-c {
	text-align: center;
	margin-top: 100px;
	flex: 1;
	overflow: auto;
}

.pc-aslide-content-c .list {
	display: inline-block;
	min-width: 300px;
}

.pc-aslide-content-c .list li {
	opacity: 0;
	transition: all 1s ease;
	transform: translateY(40px);
}

.pc-aslide.active .pc-aslide-content-c .list li {
	opacity: 1;
	transform: translateY(0);
}

.pc-aslide-content-c .list li:not(:last-child) {
	margin-bottom: 50px;
}

.pc-aslide-content-c .list .li-title {
	font-size: 24px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #333333;
	line-height: 1;
	transition: all .6s;
}

.pc-aslide-content-c .list .li-des {
	border-top: 1px solid rgba(230, 230, 230, 1);
	margin-top: 20px;
	padding-top: 20px;
	display: none;
}

.pc-aslide-content-c .list .li-des a {
	font-size: 18px;
	font-family: Microsoft YaHei;
	font-weight: 300;
	color: #666666;
	display: block;
	line-height: 2.5;
	transition: all .6s;
}

.modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.55);
	display: none;
	z-index: 999;
}

.modal .shadow {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.video-content {

	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);

}

.modal .close {
	position: absolute;
	right: -26px;
	top: -26px;
	cursor: pointer;
	color: #fff;
	font-size: 24px;
}

.video-content video {
	display: block;
	margin: 0 auto;
	max-width: 90vw;
	max-height: 80vh;
}

.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.pagination ul li {
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	font-size: 18px;
	color: rgba(153, 153, 153, 1);
	margin: 5px;
	cursor: pointer;
	transition: all .6s;
	border-radius: 50%;
}


.pagination ul li .iconfont {
	font-size: 18px;
}

.pagination ul li:hover,
.pagination ul li.active {
	background-color: #164194;
	border-color: #164194;
}

.pagination ul li a {
	color: rgba(153, 153, 153, 1);
	display: block;
	transition: all .6s;
}

.pagination ul li.active a,
.pagination ul li:hover a {
	color: #fff;
}

@keyframes fadeInUpSmall {
	from {
		opacity: 0;
		transform: translate3d(0%, 30px, 0);
	}

	to {
		opacity: 1;
		transform: translate3d(0%, 0px, 0);
	}
}

.fadeInUpSmall {
	animation-name: fadeInUpSmall;
}

.m-right-buttom {
	display: none;
}

@media (max-width:1630px) {
	.content1600 {
		width: 94%;
	}
}

@media (max-width:1600px) {
	.footer-container {
		clip-path: polygon(100% 0, 100% calc(100% - 249px), calc(100% - 231px) 100%, 0 100%, 0 0);
	}

	.footer .backTop .backTopBtn {
		right: 39px;
		bottom: 39px;
	}

	.header .r .header-language {
		margin-left: 40px;
	}

	.header .r .nav-list {
		gap: 40px;
	}

	.header .r .nav-list li>a,
	.header .r .header-language select {
		font-size: 16px;
	}

	.header .r .header-language .icon-duoyuyan {
		font-size: 20px;
	}
}

@media (max-width:1500px) {}

@media (max-width:1440px) {
	.application-section .app-icon-circle {
		width: 160px;
		height: 160px;
	}

	.media-card .more {
		width: 100px;
	}

	.content312,
	.content520 {
		padding: 0 3%;
	}

	.header .r .nav-list {
		gap: 0 40px;
	}

	.header .r .header-search-box,
	.header .r .header-language {
		margin-left: 30px;
	}

	.header .r {
		padding-left: 34px;
	}

	.font48 {
		font-size: 36px;
	}

	.font36 {
		font-size: 32px;
	}

	.font60 {
		font-size: 48px;
	}

	.font80 {
		font-size: 60px;
	}

	.font90 {
		font-size: 70px;
	}

	.font72 {
		font-size: 50px;
	}
	.font100 {
		font-size: 80px;
	}
	.font200 {
		font-size: 150px;
	}
}

@media (max-width:1400px) {}

@media (max-width:1430px) {
	.content1400 {
		width: 94%;
	}
}

@media (max-width:1330px) {
	.content1300 {
		width: 94%;
	}
}

@media (max-width:1280px) {
	.media-card .more {
		width: 90px;
	}

	.footer-middle .contact-info-row {
		font-size: 20px;
	}

	.header .r .nav-list {
		gap: 0 30px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 20px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 35px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 16px;
		line-height: 2;
	}

	.font36 {
		font-size: 30px;
	}

	.font60 {
		font-size: 36px;
	}

	.font80 {
		font-size: 48px;
	}

	.font90 {
		font-size: 60px;
	}
	.font72 {
		font-size: 40px;
	}
	.font100 {
		font-size: 70px;
	}
	.font200 {
		font-size: 120px;
	}

	.font30 {
		font-size: 28px;
	}

	.font48 {
		font-size: 30px;
	}
}

@media (max-width:1199px) {
	.application-section {
		padding: 80px 0;
	}

	.application-section .app-grid {
		margin-top: 45px;
	}

	.application-section .app-label {
		font-size: 20px;
	}

	.application-section .app-icon-circle {
		width: 120px;
		height: 120px;
	}

	.media-card .more {
		display: none;
	}

	.media-card .media-content {
		padding: 25px 20px 41px;
	}

	.footer-top .footer-logo-area .footer-logo {
		width: 200px;
	}

	.footer-container {
		clip-path: polygon(100% 0, 100% calc(100% - 113px), calc(100% - 113px) 100%, 0 100%, 0 0);
	}

	.footer .backTop {
		width: 113px;
		height: 113px;
	}

	.footer .backTop .backTopBtn {
		bottom: 8px;
		right: 8px;
		font-size: 16px;
	}

	.footer-top {
		padding: 56px 0;
	}

	.footer-middle {
		padding: 56px 0 30px;
	}

	.footer-bottom .copyright-text {
		margin-top: 30px;
	}

	.footer-bottom .footer-links {
		gap: 0 49px;
	}

	.header .r .header-actions .contact-btn {
		font-size: 16px;
		gap: 8px;
		line-height: 38px;
	}

	.header .r .header-actions .contact-btn .iconfont {
		font-size: 22px;
	}

	.header .r {
		width: auto;
		padding: 0;
	}

	.header {
		padding: 10px 0;
	}

	.header .r .header-language select,
	.header .r .header-language,
	.header .r .header-search-box .header-searchBtn {
		color: #0036B2;
	}

	.header .r::before {
		display: none;
	}

	.header .r .nav-list {
		display: none;
	}

	.font36 {
		font-size: 28px;
	}

	.font60 {
		font-size: 30px;
	}

	.font80 {
		font-size: 36px;
	}

	.font90 {
		font-size: 50px;
	}
	.font72 {
		font-size: 32px;
	}
	.font100 {
		font-size: 60px;
	}
	.font200 {
		font-size: 90px;
	}

	.font30 {
		font-size: 26px;
	}

	.font48 {
		font-size: 28px;
	}

	.m-right-buttom {
		display: block;
		cursor: pointer;
		user-select: none;
		margin-left: 30px;
	}

	.m-right-buttom .in {
		height: 30px;
		width: 19px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.m-right-buttom span,
	.m-right-buttom span:after,
	.m-right-buttom span:before {
		display: block;
		height: 2px;
		width: 19px;
		background: #0036B2;
		transition: top .2s linear
	}

	.header.active .m-right-buttom span,
	.header.active .m-right-buttom span:after,
	.header.active .m-right-buttom span:before {
		background: #0036B2;
	}

	.m-right-buttom span {
		transition: all .2s .4s ease, background 0s;
		position: relative
	}

	.m-right-buttom span:after,
	.m-right-buttom span:before {
		position: absolute;
		left: 0;
		content: '';
		transform-origin: 50% 50%;
		transition: top .2s .4s ease, transform .4s ease;
		height: 2px
	}

	.m-right-buttom span:before {
		top: 6px
	}

	.m-right-buttom span:after {
		top: -6px
	}

	.m-right-buttom.active span,
	.header.active .m-right-buttom.active span {
		transition: all .2s 0s ease;
		background: 0 0
	}

	.m-right-buttom.active span:after,
	.m-right-buttom.active span:before {
		transition: top .2s ease, transform .2s .3s ease;
		top: 0;
		width: 19px
	}

	.m-right-buttom.active span:before {
		transform: rotate3d(0, 0, 1, 45deg)
	}

	.m-right-buttom.active span:after {
		transform: rotate3d(0, 0, 1, -45deg)
	}
	.contact-section{
		margin-top: 80px;
		padding-bottom: 80px;
	}
	.contact-section .contact-cards-grid{
		margin-top: 45px;
	}
	.contact-section .contact-filter-box .custom-select{
		height: 50px;
	}
	.contact-section .contact-filter-box .custom-select-selected{
		padding: 0 20px;
	}
	.contact-section .contact-filter-box .custom-select-option{
		padding: 10px 20px;
	}
	.contact-cards-grid .person-profile .person-role{
		font-size: 20px;
	}
	.inner-page{
		padding-top: 130px;
	}
}

@media (max-width: 1024px) {
	.inner-page{
		padding-top: 105px;
	}
	.contact-cards-grid .contact-right-col .btn-inquiry{
		font-size: 20px;
		line-height: 50px;
	}
	.contact-section{
		margin-top: 70px;
		padding-bottom: 70px;
	}
	.contact-section .contact-cards-grid{
		margin-top: 40px;
		grid-template-columns: repeat(1, 1fr);
		gap: 40px;
	}
	.application-section .app-icon-circle {
		width: 100px;
		height: 100px;
	}

	.application-section .app-label {
		margin-top: 1em;
		font-size: 18px;
	}

	.application-section {
		padding: 70px 0;
	}

	.application-section .app-grid {
		margin-top: 40px;
	}

	.footer-top {
		padding: 45px 0;
	}

	.footer-middle {
		padding: 45px 0 25px;
	}

	.footer-bottom .copyright-text {
		margin-top: 25px;
	}

	.footer-middle .contact-info-row {
		font-size: 18px;
	}

	.font36 {
		font-size: 26px;
	}

	.font60 {
		font-size: 28px;
	}

	.font80 {
		font-size: 30px;
	}

	.font90 {
		font-size: 40px;
	}
	.font72 {
		font-size: 28px;
	}
	.font100 {
		font-size: 50px;
	}
	.font200 {
		font-size: 70px;
	}

	.font30 {
		font-size: 24px;
	}

	.font48 {
		font-size: 26px;
	}

	.header .header-container .site-logo {
		max-width: 168px;
	}
	.banner-section .banner-content-wrapper{
		flex-direction: column-reverse;
		align-items: center;
		margin-top: 20px;
	}
	.banner-section .breadcrumb-nav{
        width: 100%;
    }
}

@media (max-width: 768px) {
	.inner-page{
		padding-top: 80px;
	}
	.contact-cards-grid .card-actions .btn-action{
		font-size: 20px;
		line-height: 70px;
		gap: 0 40px;
	}
	.contact-cards-grid .card-actions .btn-action .iconfont{
		font-size: 28px;
	}
	.contact-section{
		margin-top: 60px;
		padding-bottom: 60px;
	}
	.contact-section .contact-cards-grid{
		margin-top: 30px;
	}
	.breadcrumb-nav{
		font-size: 14px;
		line-height: 24px;
		gap: 0 5px;
	}
	.application-section .app-icon-circle {
		width: 80px;
		height: 80px;
	}

	.application-section .app-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.application-section {
		padding: 60px 0;
	}

	.application-section .app-grid {
		margin-top: 30px;
	}

	.footer-top {
		padding: 40px 0;
	}

	.footer-middle {
		padding: 40px 0 20px;
	}

	.footer-bottom .copyright-text {
		margin-top: 20px;
		font-size: 14px;
	}

	.footer-top .footer-logo-area .footer-logo {
		width: 168px;
	}

	.footer-top .footer-social-area .social-link {
		width: 38px;
		height: 38px;
	}

	.header .header-container .site-logo {
		width: 149px;
	}

	.header .r .header-actions .contact-btn {
		display: none;
	}

	.font36 {
		font-size: 24px;
	}

	.font60 {
		font-size: 26px;
	}

	.font80 {
		font-size: 28px;
	}

	.font90 {
		font-size: 30px;
	}
	.font72 {
		font-size: 26px;
	}
	.font100 {
		font-size: 36px;
	}
	.font200 {
		font-size: 50px;
	}

	.font30 {
		font-size: 22px;
	}

	.font48 {
		font-size: 24px;
	}

	.pc-aslide-content {
		background-color: transparent;
	}

	.pc-aslide {
		z-index: 99;
		background-color: transparent;
	}

	.pc-aslide::before,
	.pc-aslide::after {
		position: absolute;
		content: "";
		width: 100vw;
		height: 100vw;
		right: 50vw;
		bottom: -50vw;
		background-color: rgba(0, 0, 0, 1);
		border-radius: 0 50% 0 0;
		transform-origin: center;
		transform: scale(0);
		transition: opacity .7s, transform 1.5s;
	}

	.pc-aslide::after {
		background-color: #fff;
		right: auto;
		bottom: auto;
		left: 50vw;
		top: -50vw;
		border-radius: 0 0 0 50%;
		transition: opacity .7s, transform 1s;
	}

	.pc-aslide.active::after,
	.pc-aslide.active::before {
		transform: scale(5);
		opacity: 1;
	}

	.pc-aslide-content-t {
		display: none;
	}

	.pc-aslide-content {
		padding: 60px 3%;
	}

	.pc-aslide-content {
		transform: translateX(0);
		z-index: 4;
	}

	.pagination ul li {
		width: 36px;
		height: 36px;
		line-height: 36px;
	}

	.video-content {
		width: 85%;
	}

	.video-content video {
		display: block;
		margin: 0 auto;
		width: 100%;
		height: auto;
	}
	.contact-section .contact-filter-box{
		margin-top: 30px;
	}
	.contact-section .contact-filter-box .custom-select{
		font-size: 16px;
	}
}

@media (max-width: 500px) {
	.banner-section{
		padding-top: 18vw;
	}
	.media-card .media-desc{
		font-size: 16px;
	}
	.inner-page{
		padding-top: 70px;
	}
	.banner-section .banner-content-wrapper{
		margin-top: 10px;
	}
	.contact-cards-grid .contact-right-col .btn-inquiry .iconfont{
		font-size: 16px;
	}
	.contact-cards-grid .contact-right-col .btn-inquiry{
		font-size: 16px;
		line-height: 40px;
		padding: 0 14px;
		gap: 0 14px;
	}
	.contact-cards-grid .card-actions{
		width: 270px;
	}
	.contact-cards-grid .card-actions .btn-action .iconfont{
		font-size:24px;
	}
	.contact-cards-grid .card-actions .btn-action{
		padding-left: 40px;
		line-height: 50px;
		gap: 0 22px;
		font-size: 18px;
	}
	.contact-cards-grid .card-actions{
		margin-top: 25px;
	}
	.contact-cards-grid .phone{
		margin-top: 25px;
	}
	.contact-cards-grid .person-profile .person-info{
		margin-left: 15px;
	}
	.contact-cards-grid .person-profile .person-avatar{
		width: 80px;
		height: 80px;
	}
	.contact-cards-grid .person-profile .person-role{
		font-size: 16px;
		line-height: 24px;
		margin-top: 0;
	}
	.contact-cards-grid .person-profile{
		margin-top: 25px;
		padding: 20px;
	}
	.contact-cards-grid .contact-card{
		padding: 30px 20px;
	}
	.contact-section{
		margin-top: 50px;
		padding-bottom: 50px;
	}
	.application-section .app-card {
		padding: 20px;
	}

	.application-section .app-icon-circle {
		width: 60px;
		height: 60px;
	}

	.application-section .app-label {
		font-size: 16px;
	}

	.application-section {
		padding: 50px 0;
	}

	.application-section .app-grid {
		margin-top: 25px;
	}

	.media-card .media-date-row {
		margin-top: 15px;
	}

	.footer-bottom {
		padding-bottom: 30px;
	}

	.footer-middle .contact-info-row {
		font-size: 16px;
	}

	.footer-middle {
		padding-top: 30px;
	}

	.footer-container {
		clip-path: polygon(100% 0, 100% calc(100% - 86px), calc(100% - 86px) 100%, 0 100%, 0 0);
	}

	.footer .backTop .backTopBtn {
		font-size: 14px;
		line-height: 1.1;
	}

	.footer-top .footer-social-area .social-link {
		width: 32px;
		height: 32px;
	}

	.footer-top .footer-social-area .social-link .iconfont {
		font-size: 16px;
	}

	.footer-top .footer-social-area {
		gap: 5px;
	}

	.footer-top .footer-logo-area .footer-logo {
		width: 128px;
	}

	.footer-top {
		padding: 30px 0;
	}

	.header .r .header-search-box .header-search-container {
		top: 50px;
		right: 50%;
		transform: translateX(50%);
	}

	.header .header-container .site-logo {
		width: 128px;
	}

	.header .r .header-language,
	.m-right-buttom {
		margin-left: 20px;
	}

	.header .r .header-search-box {
		margin-left: 0;
	}

	.font36 {
		font-size: 22px;
	}

	.font60 {
		font-size: 24px;
	}

	.font80 {
		font-size: 26px;
	}
	.font72 {
		font-size: 24px;
	}
	.font100 {
		font-size: 26px;
	}
	.font90 {
		font-size: 26px;
	}

	.font200 {
		font-size: 30px;
	}

	.font30 {
		font-size: 20px;
	}

	.font48 {
		font-size: 22px;
	}

	.pc-aslide-content-c .list {
		min-width: 249px;
	}

	.pc-aslide-content-c .list .li-des {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pc-aslide-content-c .list li:not(:last-child) {
		margin-bottom: 25px;
	}

	.pc-aslide-content-c .list .li-des a {
		font-size: 14px;
		line-height: 2;
	}

	.pc-aslide-content-c .list .li-des a:not(:last-child) {
		margin-bottom: 5px;
	}

	.pc-aslide-content-c .list .li-title {
		font-size: 16px;
	}

	.pc-aslide-content-t {
		height: 50px;
	}

	.pc-aslide-content-t .logo img {
		width: 100px;
	}
}