html,
body {
	position: relative;
	height: 100%;
}

body {
	background: #eee;
	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;
}

.top-nav-area {
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: #fff;
	position: relative;
	z-index: 22;
}

.top-nav-area .logo {
	height: auto;
	width: 100%;
}

.top-nav-area .logo img {
	display: block;
	width: 120px;
	margin: auto;
	padding: 20px 0;
}

.top-nav-area .language {
	margin-right: 10px;
	border-radius: 100px;
	width: 90px;
	height: 40px;
	line-height: 40px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.top-nav-area .language>span {
	color: #0a5ca3;
	font-size: 16px;
}

.top-nav-area .language>b {
	color: #333;
	font-size: 16px;
}

.top-nav-area .search {
	margin-right: 20px;
	border-radius: 100px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	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: 40px;
	line-height: 40px;
	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: 40px;
	display: block;
	float: right;
	font-size: 16px;
	display: block;
}

.top-nav-area .nav {
    clear: both;
    width: 100%;
    overflow: hidden;
    padding: 0 10px;
}

.top-nav-area .nav .list {
	display: flex;
	justify-content: space-between;
}

.top-nav-area .nav .list .item {
	color: #333;
	position: relative;
	transition: ease-in-out 0.2s;
	line-height: 20px;
	text-align: center;
	padding: 10px;
	width: 30px;
}

.top-nav-area .nav .list .item:hover {
	color: #003b83;
}

.top-nav-area .nav .list .item:before {
	content: '';
	display: block;
	position: absolute;
	left: 50%;
	height: 2px;
	right: 50%;
	background-color: #333;
	transition: ease-in-out 0.2s;
	bottom: 0;
}


.top-nav-area .nav .list .item:hover:before {
	left: 25px;
	right: 25px;
	background-color: #003b83;
}


.top-nav-area .list .item .block {
	position: fixed;
	padding: 10px;
	box-sizing: border-box;
	line-height: normal;
	left: 0;
	height: 0;
	width: 100%;
	opacity: 0;
	transition: ease-in-out 0.2s;
	z-index: 99999999999999994;
	display: none;
}

.top-nav-area .list .item:hover .block {
	background: #fff;
	height: 50vh;
	opacity: 1;
	display: block;
}

.top-nav-area .subcategory {
	width: 100px;
	line-height: 50px;
	transition: ease-in-out 0.2s;
	border-left: solid 0px #ccc;
}

.top-nav-area .subcategory:hover

/* ,.subcategory:first-child */
	{
	background-color: #fdfdfd;
	border-left: solid 2px #003b83;
	padding-left: 13px;
}

.top-nav-area .subcategory .subcategory-list {
	transform: translateX(100%);
	padding: 10px;
	box-sizing: border-box;
	position: fixed;
	left: 120px;
	top: 155px;
	right: 0;
	opacity: 0;
	transition: ease-in-out 0.3s;
	overflow: auto;
}
.top-nav-area .item .block:first-child .subcategory:first-child .subcategory-list {
    transform: translateX(0%);
    opacity: 1;
    z-index: 2;
}
.top-nav-area .subcategory:hover .subcategory-list

/* ,.subcategory .subcategory-list:first-child */
	{
	transform: translateX(0%);
	opacity: 1;
}

.top-nav-area .subcategory .subcategory-list .subcategory-item {
	padding: 0 10px;
	margin-bottom: 10px;
	border-radius: 10px;
	transition: ease-in-out 0.2s;
	box-shadow: 0 0 0px rgba(0, 0, 0, 0);
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	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;
	float: left;
}

.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;
	float: left;
	padding: 0 10px;
	flex: 1;
	text-align: left;
	white-space: nowrap;
}

.top-nav-area .subcategory .subcategory-item .intro {
	font-size: 14px;
	color: #ccc;
	white-space: nowrap;
	text-overflow: ellipsis;
	line-height: 2;
	overflow: hidden;
}

.full-swiper {
	width: 100%;
	height: calc(100% - 164px);
	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: absolute;
	z-index: 3;
	color: #fff;
	top: 20%;
}

.banner-swiper .banner-item .sub-title {
	font-size: 30px;
	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: 40px;
	font-weight: bold;
	margin-bottom: 20px;
	transform: translateX(-200px);
	opacity: 0;
	transition: all .3s;
}

.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: 130px;
	margin: 0 auto;
	line-height: 40px;
	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: 30px;
	left: 30px;
	right: 30px;
	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: 20px;
	text-align: left;
	box-sizing: border-box;
	overflow: hidden;
	transition: ease-in-out 0.2s;
}

.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 {
	height: 100%;
	flex-wrap: wrap;
}

.service-area .list .item {
	height: 20%;
	color: #fff;
	flex: 1;
	width: 20%;
	position: relative;
	box-sizing: border-box;
	transition: ease-in-out 0.2s;
	transform: translateY(-200px);
	opacity: 0;
	overflow: hidden;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 0 50px 0 10px;
}


.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;
	width: 100%;
}

.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: 18px;
	font-weight: bold;
	margin: 0 auto;
	line-height: 40px;
}

.service-area .intro {
	font-size: 13px;
	width: 160px;
	line-height: 20px;
	margin: 0 auto;
}

.service-area .more {
	border: solid 2px #fff;
	margin: 80px auto;
	width: 40px;
	height: 40px;
	line-height: 38px;
	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: auto;
	font-size: 60px;
	right: -60px;
	font-family: fantasy;
	transform: translateX(-50%) rotate(-90deg);
	opacity: 0.2;
}

.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;
}

.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% - 40px);
	left: 20px;
	height: 120px;
	box-sizing: border-box;
	z-index: 2;
	border-bottom: solid 2px #fff;
}

.product-area .product-swiper-small .title {
	font-size: 20px;
	color: #fff;
	position: relative;
	padding: 0 10px;
	width: 60px;
	height: 100%;
	line-height: 30px;
	cursor: pointer;
	padding-top: 10px;
	font-weight: bold;
	box-sizing: border-box;
}

.product-area .product-swiper-small .title span {
	margin: 0 auto;
	display: block;
}

.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: 20px;
	top: 40%;
	padding: 0 30px;
	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: 180px;
	line-height: 50px;
}

.product-area .product-swiper-large .item .img {
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
}

.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: 80%;
	min-width: 80%;
}

.enable-area .list {
	display: grid;
	grid-row-gap: 20px;
	grid-column-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 145px);
}

.enable-area .list .item {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.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;
	font-size: 14px;
}

.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: 20px;

display: flex;

flex-wrap: wrap;
}

.footer-area .footer .company {
    width: 100%;
}

.footer-area .footer .company .logo {
	margin-bottom: 20px;
}

.footer-area .footer .company .logo img {
	display: block;
	margin: 0 auto;
}

.footer-area .footer .company .list {
	line-height: 40px;
	font-size: 14px;
	text-align: center;
}

.footer-area .footer .links {
	flex: 1;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.footer-area .footer .links .block {padding: 15px;flex: 1;}

.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: 80px;
}

.footer-area .footer .qr-code {
    width: 100%;
}

.footer-area .footer .qr-code img {
	width: 220px;
	height: 220px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.footer-area .copyright {
	border-top: solid 1px #797979;
	background: #636363;
	padding: 10px;
	line-height: 40px;
	text-align: center;
	margin: 0 50px;
}
