html,
body {
	position: relative;
	height: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

body {
	background: #fff;
	font-family: 'Microsoft JhengHei', Helvetica Neue, Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #000;
	margin: 0;
	padding: 0;
}

.musk {
	position: fixed;
	left: 0;
	top: 100px;
	width: 100%;
	height: calc(100vh - 100px);
	z-index: 3;
	backdrop-filter: blur(6px);
	background: hsla(0, 0%, 100%, .5);
	transition: ease-in-out 0.2s;
	display: none;
}

/* .list .item:hover .musk{
	height: calc(100vh - 100px);
	backdrop-filter: blur(6px);
	background: hsla(0, 0%, 100%, .5);
} */

.top-nav-area {
	display: flex;
	justify-content: space-between;
	padding: 0 50px;
	height: 100px;
	align-items: center;
	position: relative;
	z-index:99999999999;
}

.top-nav-area .logo {
	flex: 1;
	height: 46px;
}

.top-nav-area .logo img {
	display: block;
	width: 233px;
	height: 100%;
}

.top-nav-area .language {
	margin-right: 20px;
	border-radius: 100px;
	width: 120px;
	height: 65px;
	line-height: 65px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	white-space: nowrap;
}

.top-nav-area .language>span {
	color: #0a5ca3;
	font-size: 20px;
}

.top-nav-area .language>b {
	color: #333;
	font-size: 18px;
}

.top-nav-area .search {
	margin-right: 20px;
	border-radius: 100px;
	width: 65px;
	height: 65px;
	line-height: 65px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: ease-in-out 0.2s;
}

.top-nav-area .search>input {
	transition: ease-in-out 0.2s;
	height: 65px;
	line-height: 65px;
	width: 0;
	padding: 0 0px;
	border: none;
	box-sizing: border-box;
	background: transparent;
	font-size: 14px;
	outline: none;
	display: block;
	float: left;
}


.top-nav-area .search:hover {
	width: 205px;
	min-width: 205px;
}

.top-nav-area .search:hover>input {
	width: 140px;
	padding: 0 20px;
}

.top-nav-area .search>span {
	color: #333;
	width: 65px;
	display: block;
	float: right;
	font-size: 20px;
	display: block;
}

.top-nav-area .nav {}

.top-nav-area .nav .list {
	display: flex;
}

.top-nav-area .nav .list .item {
	color: #333;
	padding: 0 25px;
	transition: ease-in-out 0.2s;
	height: 100px;
	line-height: 100px;
	cursor: default;
	white-space: nowrap;
}

.top-nav-area .nav .list .item:hover {
	color: #003b83;
}

.top-nav-area .nav .list .item:after {
	content: '';
	display: block;
	position: relative;
	height: 2px;
	background-color: #333;
	transition: ease-in-out 0.2s;
	margin: -10px 0 0 0;
	width: 0;
}


.top-nav-area .nav .list .item:hover:after {
	background-color: #003b83;
	width: 100%;
}


.top-nav-area .list .item .block {
	position: absolute;
	box-sizing: border-box;
	line-height: normal;
	left: 0;
	height: 0;
	width: 100%;
	opacity: 0;
	transition: ease-in-out 0.2s;
	z-index: 4;
	display: none;
}

.top-nav-area .list .item:hover .block {
	background: #fff;
	height: 595px;
	opacity: 1;
	display: block;
	overflow-y: auto;
	overflow-x: hidden;
}

.top-nav-area .subcategory {
	width: 100px;
	line-height: 50px;
	transition: ease-in-out 0.2s;
	border-left: solid 0px #ccc;
	padding: 10px 20px;
	cursor: default;
}

.top-nav-area .item .block:first-child .subcategory:first-child .subcategory-list {
	transform: translateX(0%);
	opacity: 1;
	z-index: 2;
}

.top-nav-area .list .item:hover .subcategory:hover

/* ,.subcategory:first-child */
	{
	background-color: #fdfdfd;
	border-left: solid 2px #003b83;
	padding-left: 23px;
}

.top-nav-area .subcategory .subcategory-list {
	transform: translateX(100%);
	opacity: 0;
	padding: 20px 30px;
	box-sizing: border-box;
	position: absolute;
	left: 140px;
	top: 0;
	right: 0;
	overflow: auto;
	height: 50vh;
}

/* .top-nav-area .list .item:hover .subcategory:hover .subcategory-list{
	transform: translateX(0%);
	display: block;
} */

.top-nav-area .subcategory .subcategory-list .subcategory-item {
	width: 200px;
	height: 100px;
	float: left;
	padding: 20px;
	border-radius: 10px;
	transition: ease-in-out 0.2s;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0);
	margin-right: 20px;
	text-decoration: none;
}

.top-nav-area .subcategory .subcategory-list .subcategory-item:hover {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.top-nav-area .subcategory .subcategory-item .img {
	width: 30px;
	height: 30px;
	overflow: hidden;
	border-radius: 5px;
}

.top-nav-area .subcategory .subcategory-item .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.top-nav-area .subcategory .subcategory-item .title {
	font-size: 16px;
	font-weight: bold;
	color: #333;
	line-height: 3;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.top-nav-area .subcategory .subcategory-item .intro {
	font-size: 14px;
	color: #ccc;
	line-height: 2;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.full-swiper {
	width: 100%;
	height: calc(100% - 100px);
	background: #eee;
}

.full-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.full-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-area {
	width: 100%;
	height: 100%;
}

.banner-swiper {
	width: 100%;
	height: 100%;
}

.banner-swiper .swiper-slide {}

.banner-area .swiper-wrapper {
	transition-delay: 0.3s;
}

.banner-swiper .banner-item {
	position: relative;
	z-index: 3;
	color: #fff;
    padding: 20px;
}

.banner-swiper .banner-item .sub-title {
	font-size: 50px;
	font-weight: light;
	transform: translateX(-200px);
	opacity: 0;
	transition: all .2s;
}


.banner-area .ani-slide .sub-title {
	transform: translateX(0);
	opacity: 1;
}

.banner-swiper .banner-item .title {
	font-size: 78px;
	font-weight: bold;
	margin-bottom: 20px;
	transform: translateX(-200px);
	opacity: 0;
	transition: all .3s;
	font-family: auto;
}

.banner-area .ani-slide .title {
	transform: translateX(0);
	opacity: 1;
}

.banner-swiper .banner-item .more {
	border: #fff solid 1px;
	display: flex;
	align-items: center;
	width: 220px;
	margin: 0 auto;
	line-height: 60px;
	overflow: hidden;
	transition: ease-in-out 0.2s;
	background: #ffffff00;
	transform: translateX(-200px);
	opacity: 0;
}

.banner-area .ani-slide .more {
	transform: translateX(0);
	opacity: 1;
}

.banner-swiper .banner-item .more b {
	box-sizing: border-box;
	display: block;
	border-right: solid 1px #fff;
	font-size: 16px;
	width: 180px;
	transition: ease-in-out 0.2s;
}

.banner-swiper .banner-item .more span {
	font-size: 20px;
	width: 40px;
	transition: ease-in-out 0.2s;
}

.banner-swiper .banner-item .more:hover {
	background: #ffffff20;
}

.banner-swiper .banner-item .more:hover b {
	background-color: #fff;
	color: #333;
}

.banner-swiper .banner-item .more:hover span {
	transform: rotate(-180deg);
	font-size: 20px;
	width: 40px;
}

.banner-swiper .banner-img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
}

.banner-swiper .banner-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.banner-area {
	position: relative;
}

.banner-area .news-area {
	position: absolute;
	bottom: 0;
	left: 50px;
	right: 50px;
	z-index: 2;
}

.banner-area .news-area .list {
	display: flex;
	width: 100%;
}

.banner-area .news-area .list .item {
	color: #fff;
	flex: 1;
	width: 50%;
	padding: 30px 20px;
	text-align: left;
	overflow: hidden;
	transition: ease-in-out 0.2s;
	box-sizing: border-box;
}

.banner-area .news-area .list .item:hover {
	transform: scale(1.05);
}

.banner-area .news-area .list .item:nth-child(odd) {
	background: #7ed4f7;
}

.banner-area .news-area .list .item:nth-child(even) {
	background: #003b83;
}

.banner-area .news-area .classify {
	font-size: 16px;
}

.banner-area .news-area .title {
	font-size: 18px;
	font-weight: bold;
	padding: 5px 0;
}

.banner-area .news-area .time {
	font-size: 14px;
	float: left;
}

.banner-area .news-area .more {
	float: right;
	font-size: 14px;
}

.banner-area .news-area .more b {
	font-weight: normal;
}

.banner-area .news-area .more span {
	font-size: 14px;
}

.service-area {
	height: 100%;
	width: 100%;
	overflow: hidden;
}

.service-area .list {
	display: flex;
	height: 100%;
}

.service-area .list .item {
	height: 100%;
	color: #fff;
	flex: 1;
	width: 20%;
	padding-top: 200px;
	position: relative;
	box-sizing: border-box;
	transition: ease-in-out 0.2s;
	transform: translateY(-200px);
	opacity: 0;
}


.service-area .list .item * {
	position: relative;
	z-index: 2;
}

.service-area .list .item .img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	background-color: #003b83;
}

.service-area .list .item .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
	transition: ease-in-out 0.2s;
}

.service-area .list .item .img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.4;
}

.service-area .list .item:hover .img img {
	opacity: 0.6;
}

.service-area .list .item:nth-child(1) {
	transition: ease-in-out 0.1s;
}

.service-area .list .item:nth-child(2) {
	transition: ease-in-out 0.2s;
}

.service-area .list .item:nth-child(3) {
	transition: ease-in-out 0.3s;
}

.service-area .list .item:nth-child(4) {
	transition: ease-in-out 0.4s;
}

.service-area .list .item:nth-child(5) {
	transition: ease-in-out 0.5s;
}

.ani-full-slide .service-area .list .item {
	transform: translateY(0);
	opacity: 1;
}

.service-area .list .item:hover {
	flex: 1.5;
}

/* .service-area .list .item:nth-child(odd) {
	background-color: #b72621;
}

.service-area .list .item:nth-child(even) {
	background-color: #003b83;
} */

.service-area .title {
	font-size: 28px;
	font-weight: bold;
	margin: 0 auto;
	line-height: 40px;
	height: 120px;
}

.service-area .intro {
	font-size: 22px;
	width: 180px;
	height: 120px;
	line-height: 40px;
	margin: 0 auto;
}

.service-area .more {
	border: solid 2px #fff;
	margin: 80px auto;
	width: 60px;
	height: 60px;
	line-height: 58px;
	border-radius: 100px;
	transition: ease-in-out 0.2s;
}

.service-area .more:hover {
	transform: rotate(-180deg);
}

.service-area .more span {
	font-size: 24px;
}

.service-area .list .item .num {
	position: absolute;
	left: 50%;
	font-size: 100px;
	bottom: -10px;
	font-family: fantasy;
	opacity: 0.2;
	transform: translateX(-50%) rotate(90deg);
}

.product-area {
	width: 100%;
	height: 100%;
	position: relative;
}


.product-swiper {
	width: 100%;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
}

.product-swiper .swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.product-swiper .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.5;
}

.product-swiper .swiper-slide {
	background-size: cover;
	background-position: center;
}


.product-swiper-small .swiper-slide {
	height: 100%;
	opacity: 0.6;
}

.product-swiper-small .swiper-slide-thumb-active {
	opacity: 1;
}

.product-area .product-swiper-small {
	position: absolute;
	width: calc(100% - 100px);
	left: 50px;
	height: 150px;
	box-sizing: border-box;
	z-index: 2;
	border-bottom: solid 2px #fff;
}

.product-area .product-swiper-small .title {
	font-size: 22px;
	color: #fff;
	position: relative;
	width: 100%;
	height: 100%;
	line-height: 150px;
	cursor: pointer;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.product-area .product-swiper-small .title span {
	margin-right: 10px;
}

.product-area .product-swiper-small .title:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	height: 2px;
	right: 50%;
	background-color: #fff;
	transition: ease-in-out 0.2s;
	bottom: 0;
}

.product-area .product-swiper-small .swiper-slide-thumb-active .title {
	background-color: #ffffff20;
}

.product-area .product-swiper-small .swiper-slide-thumb-active .title:before {
	left: 0px;
	right: 0px;
	height: 4px;
	background-color: #b82724;
}

.product-area .product-swiper-small .title:hover:before {
	left: 25px;
	right: 25px;
	height: 10px;
	background-color: #b82724;
}

.product-area .product-swiper-large {
	position: absolute;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.product-area .product-swiper-large .item {
	position: relative;
	height: 100%;
	width: 100%;
}

.product-area .product-swiper-large .item .title {
	position: absolute;
	left: 0;
	z-index: 2;
	right: 0;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	font-size: 30px;
	top: 50%;
	transform: translateY(-50%);
}

.product-area .product-swiper-large .item .more {
	position: absolute;
	left: 50%;
	z-index: 2;
	right: 0;
	text-align: center;
	top: 70%;
	transform: translate(-50%, -50%);
	background-color: #333;
	color: #fff;
	width: 200px;
	line-height: 60px;
}

.product-area .product-swiper-large .item .img {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	background: #000416;
}

.product-area .product-swiper-large .item .title {
	opacity: 0;
	transform: translateX(-100px);
	transition: ease-in-out 0.4s;
}

.product-swiper-large .ani-product-slide .item .title {
	opacity: 1;
	transform: translateX(0);
}

.product-area .product-swiper-large .item .more {
	opacity: 0;
	transform: translate(100%, -50%);
	transition: ease-in-out 0.4s;

}

.product-swiper-large .ani-product-slide .item .more {
	opacity: 1;
	transform: translate(-50%, -50%);

}

.enable-area {
	width: 1850px;
	max-width: 100%;
}

.full-title {
	font-size: 30px;
	margin-bottom: 30px;
}

.enable-area .list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.enable-area .list .item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	width: 300px;
	height: 350px;
	margin: 10px;
}

.enable-area .list .item .title {
	position: absolute;
	bottom: 0;
	width: 100%;
	left: 0;
	z-index: 2;
	line-height: 45px;
	padding: 0 20px;
	box-sizing: border-box;
	background: #00000060;
	text-align: left;
	color: #fff;
}

.enable-area .list .item img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.footer-area {
	color: #fff;
	background: #636363;
}

.footer-area .firend-links {
	background: #4d4d4d;
	color: #fff;
	line-height: 60px;
	padding: 0 80px;
}

.footer-area .firend-links>span {}

.footer-area .firend-links>a {
	color: #fff;
	text-decoration: none;
	margin-left: 10px;
}

.footer-area .footer {

	padding: 50px 80px;
	display: flex;
}

.footer-area .footer .company {}

.footer-area .footer .company .logo {
	margin-bottom: 20px;
}

.footer-area .footer .company .logo img {
	display: block;
}

.footer-area .footer .company .list {
	line-height: 40px;
	font-size: 14px;
}

.footer-area .footer .links {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	padding: 0 60px;
}

.footer-area .footer .links .block {
	padding-right: 30px;
}

.footer-area .footer .links .title {
	font-size: 18px;
	line-height: 40px;
	margin-bottom: 20px;
}

.footer-area .footer .links .list {
	line-height: 40px;
	color: #c5c5c5;
	line-height: 40px;
	color: #c5c5c5;
}

.footer-area .footer .links .list .item {
	width: 160px;
}

.footer-area .footer .qr-code {}

.footer-area .footer .qr-code img {
	width: 220px;
	height: 220px;
	object-fit: contain;
}

.footer-area .copyright {
	border-top: solid 1px #797979;
	background: #636363;
	line-height: 60px;
	text-align: center;
	margin: 0 50px;
}



.about-area {
	background-color: #fff;
}

.about-area .sub-banner-area {
	width: 100vw;
	height: 550px;
	position: relative;
	overflow: hidden;
	background: -webkit-radial-gradient(center, #000046 0%, #000 60%);
}

.about-area .sub-banner-area * {
	position: absolute;
}

.about-area .sub-banner-area .title {
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 54px;
	font-weight: bold;
	transform: translate(-50%, -50%);
	text-shadow: 0 10px 10px rgba(0, 0, 0, 1);
	z-index: 3;
}

.about-area .sub-banner-area .sub-title {
	top: 50%;
	left: 50%;
	color: #fff;
	margin-top: 50px;
	font-size: 18px;
	opacity: 0.2;
	font-weight: normal;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	text-shadow: 0 10px 10px rgba(0, 0, 0, 1);
	z-index: 3;
	text-transform: uppercase;
}

.about-area .sub-banner-area .moon {
	color: #ffd;
	background: radial-gradient(circle at -30% 50%, rgba(0, 0, 0, 0) 175px, currentColor 100%);
	z-index: 999;
	border-radius: 50%;
	height: 200px;
	width: 200px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0 0 20px currentColor);
}

.about-area .sub-banner-area .sky {
	left: 0%;
	top: 0%;
	width: 100%;
	height: 100%;
	animation: rotate 400s infinite linear;
}

.about-area .sub-banner-area .star {
	width: 3px;
	height: 3px;
	background-color: white;
	border-radius: 50%;
	animation: shine 800s infinite linear;
}

.about-area .sub-banner-area .star.scale1 {
	transform: scale(1);
}

.about-area .sub-banner-area .star.scale2 {
	transform: scale(0.5);
}

.about-area .sub-banner-area .star.scale3 {
	transform: scale(1.3);
}

.about-area .sub-banner-area .star.animate1 {
	animation-duration: 0.5s;
}

.about-area .sub-banner-area .star.animate2 {
	animation-duration: 1s;
}

.about-area .sub-banner-area .star.animate3 {
	animation-duration: 1.5s;
}

.about-area .sub-banner-area .star.animate4 {
	animation-duration: 2s;
}

.about-area .sub-banner-area .star.opacity1 {
	opacity: 1;
}

.about-area .sub-banner-area .star.opacity2 {
	opacity: 0.5;
}

.about-area .sub-banner-area .star.opacity3 {
	opacity: 0.2;
}

.about-area .sub-banner-area .asteroid {
	top: -200px;
	left: -200px;
	width: 200px;
	height: 200px;
	opacity: 0.8;
	animation-name: assteroid;
	animation-timing-function: linease-inear;
	animation-iteration-count: infinite;
	animation-duration: 7s;
	animation-delay: 2s;
}

.about-area .sub-banner-area .asteroid:before {
	position: absolute;
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	background: #fff;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-moz-background-clip: padding;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	-webkit-box-shadow: 0px 0px 7px 2px #fff;
	-moz-box-shadow: 0px 0px 7px 2px #fff;
	box-shadow: 0px 0px 7px 2px #fff;
	bottom: 0;
	right: 0;
}

.about-area .sub-banner-area .asteroid:after {
	position: absolute;
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 3px solid transparent;
	border-bottom: 200px solid #fff;
	border-right: 3px solid transparent;
	bottom: -22px;
	right: 75px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-1deg);
}

.about-area .sub-banner-area .earth {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 3;
	left: 0;
}

.about-area .sub-banner-area .earth img {
	display: block;
	width: 100%;
	position: unset;
}

@keyframes shine {
	0% {
		box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.05);
	}

	50% {
		box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.4);
	}

	100% {
		box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.05);
	}
}

@-webkit-keyframes shine {
	0% {
		box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.05);
	}

	50% {
		box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.4);
	}

	100% {
		box-shadow: 0 0 15px 0px rgba(255, 255, 255, 0.05);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes rotate {
	0% {
		-webkit-transform: rotate(0deg);
	}

	100% {
		-webkit-transform: rotate(360deg);
	}
}

@keyframes assteroid {
	0% {
		top: -200px;
		left: -200px;
		filter: alpha(opacity=80);
		opacity: 0.8;
	}

	10% {
		top: 200px;
		left: 200px;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		filter: alpha(opacity=0);
		opacity: 0;
	}
}

@-webkit-keyframes assteroid {
	0% {
		top: -200px;
		left: -200px;
		filter: alpha(opacity=80);
		opacity: 0.8;
	}

	10% {
		top: 200px;
		left: 200px;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	100% {
		filter: alpha(opacity=0);
		opacity: 0;
	}
}


.about-area .slogan {
	width: 1200px;
	margin: 0 auto;
}

.about-area .slogan ul {
	display: flex;
	padding: 130px 0;
	margin: 0;
	list-style: none;
}

.about-area .slogan ul li {
	width: 25%;
	text-align: center;
	align-items: center;
	list-style: none;
	border-right: solid 1px #eee;
}

.about-area .slogan ul li:last-child {
	border-right: none;
}

.about-area .slogan ul li h4 {
	margin-top: 0;
	font-size: 42px;
	font-weight: normal;
	margin-bottom: 14px;
	color: #333;
}

.about-area .slogan ul li span {
	color: #666666;
}



.about-area .intro-area {
	background: #f8f8f8;
	position: relative;
}

.about-area .intro-area .intro {
	display: flex;
}

.about-area .intro-area .image {
	width: 45%;
	left: 0;
	min-width: 500px;
	transition: ease-in-out 0.2s;
}


.about-area .intro-area .image img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.about-area .intro-area .text {
	flex: 1;
	padding: 80px;
	box-sizing: border-box;
}

.about-area .intro-area .text h4 {
	font-size: 28px;
	font-weight: normal;
	margin-bottom: 60px;
	color: #333333;
}

.about-area .intro-area .text div {
	color: #333;
}

.about-area .intro-area .text div p {
	line-height: 36px;
	padding-bottom: 36px;
}


.about-area .block {
	width: 1200px;
	margin: 0 auto;
}

.about-area .block ul {
	padding: 130px 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.about-area .block ul li {
	width: 595px;
	height: 340px;
	margin-bottom: 10px;
	position: relative;
	overflow: hidden;
	transition: ease-in-out 0.2s;
}


.about-area .block ul li div {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	color: #fff;
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	background: #20386450;
	transition: ease-in-out 0.2s;
}

.about-area .block ul li:hover div {
	background: #20386490;
	transform: scale(1.2);
}

.about-area .block ul li div h4 {
	flex: 1;
	width: 100%;
	text-align: center;
	font-size: 32px;
	font-weight: normal;
	margin-bottom: 10px;
	transition: ease-in-out 0.1s;
	margin: 0;
}

.about-area .block ul li div span {
	width: 100%;
	text-align: center;
	font-size: 16px;
	transition: ease-in-out 0.1s;
}

.about-area .block ul li img {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.about-area .partner * {
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-area .partner {
	background: #f8f8f8;
	height: 550px;
	position: relative;
}

.about-area .partner h4 {
	padding-top: 100px;
	text-align: center;
	font-weight: normal;
	color: #333333;
	font-size: 30px;
}

.about-area .partner ul {
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	position: absolute;
}

.about-area .partner ul li {
	position: absolute;
	width: 210px;
	height: 210px;
	border-radius: 100px;
	overflow: hidden;
	box-shadow: 4px 8px 10px rgb(0 0 0 / 5%);
	transition: ease-in-out 0.2s;
}

.about-area .partner ul li:hover {
	box-shadow: 0 20px 20px rgb(0 0 0 / 10%);
}

.about-area .partner ul li img {
	display: block;
	width: 100%;
	height: 100%;
}

.about-area .partner ul li:nth-child(1) {
	left: 10%;
	top: 19%;
	width: 107px;
	height: 107px;
	animation: xb1 6.2s linear infinite;
}

.about-area .partner ul li:nth-child(2) {
	left: 26%;
	top: 17%;
	width: 171px;
	height: 171px;
	animation: xb1 5.3s linear infinite;
}

.about-area .partner ul li:nth-child(3) {
	left: 70%;
	top: 12%;
	width: 144px;
	height: 144px;
	animation: xb1 5.9s linear infinite;
}

.about-area .partner ul li:nth-child(4) {
	left: 3%;
	top: 72%;
	width: 112px;
	height: 112px;
	animation: xb1 6s linear infinite;
}

.about-area .partner ul li:nth-child(5) {
	left: 12%;
	top: 46%;
	width: 144px;
	height: 144px;
	animation: xb1 5.3s linear infinite;
}

.about-area .partner ul li:nth-child(6) {
	left: 23%;
	top: 73%;
	width: 97px;
	height: 97px;
	animation: xb1 5.9s linear infinite;
}

.about-area .partner ul li:nth-child(7) {
	left: 33%;
	top: 53%;
	width: 112px;
	height: 112px;
	animation: xb1 6.2s linear infinite;
}

.about-area .partner ul li:nth-child(8) {
	left: 45%;
	top: 42%;
	width: 210px;
	height: 210px;
	animation: xb1 5.3s linear infinite;
}


.about-area .partner ul li:nth-child(9) {
	left: 64%;
	top: 63%;
	width: 144px;
	height: 144px;
	animation: xb1 6s linear infinite;
}


.about-area .partner ul li:nth-child(10) {
	left: 77%;
	top: 46%;
	width: 115px;
	height: 115px;
	animation: xb1 6.6s linear infinite;
}


.about-area .partner ul li:nth-child(11) {
	left: 86%;
	top: 66%;
	width: 141px;
	height: 141px;
	animation: xb1 5s linear infinite;
}

@keyframes xb1 {
	0% {
		/* transform: translate(0%,0%); */
	}

	25% {
		transform: translate(7%, -7%);
	}

	50% {
		transform: translate(14%, 0%);
	}

	75% {
		transform: translate(7%, 7%);
	}

	100% {
		transform: translate(0%, 0%);
	}
}

.news-area {}

.news-area .sub-banner-area {
	position: relative;
	display: block;
	width: 100%;
	height: 550px;
	background-image: url(https://res.cloudinary.com/recreatorus/image/upload/v1599070167/img/3-0_vwa7b9.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.news-area .waves {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 39%;
	z-index: 4;
}

.news-area .waves .waves-img-2 {
	width: 101%;
	height: 101%;
	position: absolute;
	top: -1%;
	left: -1%;
	-o-object-fit: cover;
	object-fit: cover;
	filter: url(#water);
	-o-object-position: center;
	object-position: center;
}


.news-area .sub-banner-area .waves-img {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	left: 0;
}

.news-area .sub-banner-area .waves-img {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	left: 0;
}

.news-area .sub-banner-area .waves-img img {
	display: block;
	width: 100%;
	height: 100%;
	position: unset;
	object-fit: cover;
}

.news-area .sub-banner-area .waves-img-3 {
	display: block;
	position: absolute;
	z-index: 5;
	width: 340px;
	left: 50%;
	top: 50%;
	transform: translate(330px, 10px);
}

.news-area .sub-banner-area .title {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	font-size: 54px;
	font-weight: bold;
	transform: translate(-50%, -50%);
	text-shadow: 0 10px 10px rgba(46, 15, 200, 0.2);
	z-index: 6;
}

.news-area .sub-banner-area .sub-title {
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
	margin-top: 50px;
	font-size: 18px;
	opacity: 0.2;
	font-weight: normal;
	white-space: nowrap;
	transform: translate(-50%, -50%);
	text-shadow: 0 10px 10px rgba(46, 15, 200, 0.2);
	z-index: 6;
	text-transform: uppercase;
}

.news-area .news-detail {
	padding: 100px 0;
	overflow: hidden;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.news-area .news-detail {}

.news-area .news-detail .detail-title {
	text-align: center;
	line-height: 3;
	font-size: 30px;
}

.news-area .news-detail .detail-time {
	text-align: center;
	font-size: 20px;
	margin-bottom: 100px;
}

.news-area .news-detail .detail-detail {
	font-size: 16px;
}
.news-area .news-detail .detail-detail img{
	max-width: 100%;
}

.news-area .news-list {
	padding: 100px 0;
	overflow: hidden;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, 420px);
	grid-row-gap: 30px;
	grid-column-gap: 30px;
}

.news-area .news-item {
	background-color: #f8f8f8;
}

.news-area .news-img {
	overflow: hidden;
}

.news-area .news-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	transition: ease-in-out 0.5s;
}

.news-area .news-item:hover img {
	transform: scale(1.1);
}

.news-area .news-text {
	height: 125px;
	padding: 15px 20px 0 20px;
	box-sizing: border-box;
	color: #333;
}

.news-area .news-title {
	font-size: 16px;
	line-height: 30px;
	height: 60px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-area .news-time {
	margin-top: 10px;
}



/* 111 */

.news-area .search-list {
	padding: 100px 0;
	overflow: hidden;
	width: 100%;
	max-width: 1320px;
	margin: 0 auto;
}

.news-area .search-item {
	background-color: #f8f8f8;
	display: flex;
	margin-bottom: 20px;
}

.news-area .search-img {
	overflow: hidden;
}

.new-area .search-img.__flex {
	display: flex;
	align-items: center;
}

.news-area .search-img img {
	<!--width: 80px;-->
	<!--height: 80px;-->
	<!--display: block;-->
	<!--object-fit: cover;-->
	<!--transition: ease-in-out 0.5s;-->
	width: 30px;
    height: 30px;
    margin: 25px;
    display: block;
    object-fit: contain;
    transition: ease-in-out 0.5s;
}

.news-area .search-item:hover img {
	transform: scale(1.1);
}

.news-area .search-text {
	box-sizing: border-box;
	color: #333;
	flex: 1;
	display: flex;
	justify-content: space-between;
	padding: 10px 30px;
	align-items: center;
}

.news-area .search-text.__block {
	display: block;
}

.news-area .search-title {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-area .search-sub_title {
	font-size: 13px;
	padding-top: 10px;
	color: #666;
	line-height: 1.4;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.news-area .search-time {}

/* 1111 */

.page-area {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 200px;
}

.page-area a {
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	font-size: 16px;
	color: #666;
	border: solid 1px #999;
	background-color: #fff;
	transition: ease-in-out 0.2s;
	margin: 0 5px;
	border-radius: 5px;
}

.page-area a:hover,
.page-area a.active {
	color: #fff;
	background: #003b83;
	border: solid 1px #003b83;

}

.page-area .dreamer-ul {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 200px;
}

.page-area .dreamer-ul a {
	display: inline-block;
	height: 40px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	font-size: 16px;
	color: #666;
	border: solid 1px #999;
	background-color: #fff;
	transition: ease-in-out 0.2s;
	margin: 0 5px;
	border-radius: 5px;
}

.page-area .dreamer-ul a:hover,
.page-area .dreamer-ul .active a,
.page-area .dreamer-ul a.active {
	color: #fff;
	background: #003b83;
	border: solid 1px #003b83;

}
.dreamer-location{display:flex;margin-top:30px}
.dreamer-location li:before{content:'>';margin:0 5px}
.dreamer-location li:first-child:before{content:'';margin:0}
ol,ul,li{list-style:none}
.dreamer-location li:first-child:before{content:'';margin:0}
