@charset "UTF-8";
.applicationArea .filedList .num, .applicationArea .filedCircleBox path, .bannerArea .scrollDown span {
	transition: all 0.5s;
}

@-webkit-keyframes bannerTxtAnimation {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

@keyframes bannerTxtAnimation {
	0% {
		opacity: 0;
		-webkit-transform: translateY(10px);
		        transform: translateY(10px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes bannerScrollAnimation {
	0% {
		height: 0;
	}
	50% {
		height: 100%;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}
@keyframes bannerScrollAnimation {
	0% {
		height: 0;
	}
	50% {
		height: 100%;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	100% {
		-webkit-transform: translateY(100%);
		        transform: translateY(100%);
	}
}
@-webkit-keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@keyframes rotate {
	from {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}
@-webkit-keyframes rotate2 {
	from {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@keyframes rotate2 {
	from {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}
}
@-webkit-keyframes upDown {
	0%, 100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-4px);
		        transform: translateY(-4px);
	}
}
@keyframes upDown {
	0%, 100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	50% {
		-webkit-transform: translateY(-4px);
		        transform: translateY(-4px);
	}
}
@-webkit-keyframes arrRight {
	0%, 100% {
		-webkit-transform: translate(0, 0%);
		        transform: translate(0, 0%);
	}
	50% {
		-webkit-transform: translate(5px, 0%);
		        transform: translate(5px, 0%);
	}
}
@keyframes arrRight {
	0%, 100% {
		-webkit-transform: translate(0, 0%);
		        transform: translate(0, 0%);
	}
	50% {
		-webkit-transform: translate(5px, 0%);
		        transform: translate(5px, 0%);
	}
}
@-webkit-keyframes dotAni {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	80% {
		opacity: 0.1;
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.4);
		        transform: scale(1.4);
	}
}
@keyframes dotAni {
	0% {
		opacity: 1;
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	80% {
		opacity: 0.1;
		-webkit-transform: scale(1.3);
		        transform: scale(1.3);
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(1.4);
		        transform: scale(1.4);
	}
}
@-webkit-keyframes squares {
	0% {
		opacity: 0.5;
		-webkit-transform: translateX(50vh);
		        transform: translateX(50vh);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0vh);
		        transform: translateX(0vh);
	}
}
@keyframes squares {
	0% {
		opacity: 0.5;
		-webkit-transform: translateX(50vh);
		        transform: translateX(50vh);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		-webkit-transform: translateX(0vh);
		        transform: translateX(0vh);
	}
}
.popWin {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 500;
	width: 100%;
	height: 100vh;
	font-size: 15px;
	line-height: 1.8;
	box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 0.7s;
}
.popWin .mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	transition: all 0.7s;
}
.popWin .inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 700px;
	max-width: 90%;
	max-height: 85vh;
	opacity: 0;
	background-color: #fff;
	transition: all 0.7s;
}
.popWin .popContent {
	max-height: 85vh;
	overflow-y: auto;
}
.popWin img {
	display: block;
	max-width: 100%;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.popWin .Txt {
	padding: 30px;
}
.popWin .Txt .popTitle {
	font-size: 25px;
	margin-bottom: 25px;
}
.popWin .close {
	position: absolute;
	right: -23px;
	top: -23px;
	z-index: 1;
	width: 46px;
	height: 46px;
	background-color: rgba(0, 0, 0, 0.7);
	/* background-color: #fff; */
	border-radius: 50%;
}
.popWin .close::before, .popWin .close::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 23px;
	width: 25px;
	height: 1px;
	background-color: #008cd6;
	/* border-radius:  50%; */
}
.popWin .close::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.popWin.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
	opacity: 1;
}
.popWin .close::after {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (max-width: 1180px) {
	.popWin .close {
		right: 0;
		top: 0;
		border-radius: 0;
	}
	.popWin .popContent {
		max-height: calc(100vh - 150px);
	}
}

.mainArea {
	padding: 0;
}

@media (max-width: 960px) {
	.bannerArea {
		background-color: #fff;
	}
}
.bannerArea .bannerBox {
	position: relative;
}
.bannerArea .Img {
	width: 50%;
	margin: 0 0 0 auto;
}
@media (max-width: 960px) {
	.bannerArea .Img {
		-ms-flex-order: 2;
		    order: 2;
		width: 100%;
		margin: 0;
	}
}
.bannerArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.bannerArea .bannerList {
	position: relative;
	z-index: 2;
}
.bannerArea .bannerList.slick-dotted {
	margin-bottom: 0;
}
.bannerArea .bannerItem {
	display: -ms-flexbox;
	display: flex;
	background-color: #fff;
}
@media (max-width: 960px) {
	.bannerArea .bannerItem {
		-ms-flex-direction: column;
		    flex-direction: column;
		display: -ms-flexbox !important;
		display: flex !important;
	}
}
.bannerArea .bannerItem .Txt {
	width: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: start;
	    align-items: flex-start;
	padding: 110px 0px 85px;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	max-width: 1400px;
}
@media (max-width: 1440px) {
	.bannerArea .bannerItem .Txt {
		padding: 110px 20px 85px;
	}
}
@media (max-width: 960px) {
	.bannerArea .bannerItem .Txt {
		-ms-flex-order: 1;
		    order: 1;
		width: 100%;
		position: unset;
		padding: 90px 20px 85px;
	}
}
@media (max-width: 640px) {
	.bannerArea .bannerItem .Txt {
		padding: 50px 20px 85px;
	}
}
.bannerArea .bannerItem .Txt .textBox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	max-width: 700px;
	width: 100%;
	padding: 0 200px 0 0;
}
@media (max-width: 640px) {
	.bannerArea .bannerItem .Txt .textBox {
		padding: 0 0px 0 0;
		max-width: 100%;
	}
}
.bannerArea .bannerItem .Txt .title {
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.5px;
	opacity: 0;
	font-family: "Outfit";
	color: transparent;
	background-image: linear-gradient(135deg, #004c8d 0%, #048bda 50%, #0597db 100%);
	-webkit-background-clip: text;
}
@media (max-width: 1180px) {
	.bannerArea .bannerItem .Txt .title {
		font-size: 50px;
	}
}
@media (max-width: 640px) {
	.bannerArea .bannerItem .Txt .title {
		font-size: 45px;
	}
}
.bannerArea .bannerItem .Txt .subtitle {
	color: #343434;
	font-size: 30px;
	line-height: 1.2;
	letter-spacing: 0.5px;
	margin: 20px 0;
	padding: 0 0 20px 0;
	opacity: 0;
	display: inline-block;
	position: relative;
}
.bannerArea .bannerItem .Txt .subtitle::before {
	content: "";
	position: absolute;
	background-color: #008cd6;
	width: 40%;
	height: 1px;
	bottom: 0;
	left: 0;
}
.bannerArea .bannerItem .Txt .text {
	color: #505050;
	display: block;
	line-height: 1.5;
	letter-spacing: 0.5px;
	margin-top: 10px;
	opacity: 0;
	font-size: 17px;
}
.bannerArea .bannerItem .Txt .bannerBtn {
	opacity: 0;
	margin: 30px 0 0 0;
}
.bannerArea .bannerItem.slick-current .Txt .title {
	-webkit-animation: bannerTxtAnimation 0.8s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .subtitle {
	-webkit-animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 0.4s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .text {
	-webkit-animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 0.8s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .bannerBtn {
	-webkit-animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
	        animation: bannerTxtAnimation 0.8s 1.2s ease-in-out forwards;
}
.bannerArea .bannerItem.slick-current .Txt .videoBtn::after {
	-webkit-animation: rotate 50s linear forwards;
	        animation: rotate 50s linear forwards;
}
.bannerArea .scrollDown {
	cursor: pointer;
	display: block;
	position: absolute;
	bottom: 50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	z-index: 2;
	width: 50px;
	height: 50px;
	border-radius: 50%;
}
.bannerArea .scrollDown span {
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: #b1b1b1;
	position: relative;
}
.bannerArea .scrollDown span:hover {
	background-color: #008cd6;
}
.bannerArea .scrollDown span:hover::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: -1;
	background-color: #008cd6;
	-webkit-animation: dotAni 1.2s infinite ease-out forwards;
	        animation: dotAni 1.2s infinite ease-out forwards;
}
.bannerArea .scrollDown span::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	        transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 1180px) {
	.bannerArea .Txt .bannerVideo,
.bannerArea .socialBox,
.bannerArea .scrollDown,
.bannerArea .slick-dots,
.bannerArea .arrowBox {
		display: none !important;
	}
}
.bannerArea .move_cube {
	width: 100%;
	z-index: 3;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
}
.bannerArea .move_cube .cub {
	position: absolute;
	opacity: 1;
	-webkit-animation: squares 6s linear;
	        animation: squares 6s linear;
	-ms-flex-item-align: end;
	    align-self: flex-end;
	-webkit-transform-style: preserve-3d;
	        transform-style: preserve-3d;
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub {
		-webkit-animation: unset;
		        animation: unset;
	}
}
.bannerArea .move_cube .cub.cube1 {
	right: 44%;
	top: 305px;
	width: 148px;
	height: 161px;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}
@media (max-width: 1680px) {
	.bannerArea .move_cube .cub.cube1 {
		right: 43%;
		top: 255px;
	}
}
@media (max-width: 1536px) {
	.bannerArea .move_cube .cub.cube1 {
		right: 44%;
		top: 234px;
	}
}
@media (max-width: 1440px) {
	.bannerArea .move_cube .cub.cube1 {
		right: 44%;
		top: 217px;
	}
}
@media (max-width: 1280px) {
	.bannerArea .move_cube .cub.cube1 {
		right: 44%;
		top: 160px;
	}
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub.cube1 {
		display: none;
	}
}
.bannerArea .move_cube .cub.cube2 {
	right: 55%;
	top: 500px;
	width: 106px;
	height: 115px;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}
@media (max-width: 1440px) {
	.bannerArea .move_cube .cub.cube2 {
		right: 55%;
		top: 440px;
	}
}
@media (max-width: 1280px) {
	.bannerArea .move_cube .cub.cube2 {
		right: 42%;
		top: 400px;
	}
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub.cube2 {
		top: 100px;
		right: -37px;
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
}
@media (max-width: 480px) {
	.bannerArea .move_cube .cub.cube2 {
		top: 153px;
		right: -23px;
		width: 88px;
	}
}
.bannerArea .move_cube .cub.cube3 {
	right: 41%;
	top: 540px;
	width: 50p;
	height: 54px;
	top: 540px;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}
@media (max-width: 1366px) {
	.bannerArea .move_cube .cub.cube3 {
		-webkit-animation-duration: 3s;
		        animation-duration: 3s;
	}
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub.cube3 {
		right: 85%;
		-webkit-transform: rotate(-35deg);
		        transform: rotate(-35deg);
	}
}
.bannerArea .move_cube .cub.cube4 {
	right: 49%;
	top: 600px;
	width: 49px;
	height: 53px;
	-webkit-animation-duration: 2s;
	        animation-duration: 2s;
}
@media (max-width: 1440px) {
	.bannerArea .move_cube .cub.cube4 {
		top: 500px;
	}
}
@media (max-width: 1280px) {
	.bannerArea .move_cube .cub.cube4 {
		right: 34%;
	}
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub.cube4 {
		right: 80%;
		top: 475px;
		-webkit-transform: rotate(15deg);
		        transform: rotate(15deg);
	}
}
.bannerArea .move_cube .cub.cube5 {
	right: 60%;
	top: 700px;
	width: 149px;
	height: 161px;
	-webkit-animation-duration: 3s;
	        animation-duration: 3s;
}
@media (max-width: 1536px) {
	.bannerArea .move_cube .cub.cube5 {
		right: 60%;
		top: 600px;
	}
}
@media (max-width: 1440px) {
	.bannerArea .move_cube .cub.cube5 {
		right: 60%;
		top: 540px;
	}
}
@media (max-width: 1280px) {
	.bannerArea .move_cube .cub.cube5 {
		top: 460px;
	}
}
@media (max-width: 1180px) {
	.bannerArea .move_cube .cub.cube5 {
		display: none;
	}
}

.productArea {
	padding: 150px 0;
	background-color: #f3f3f3;
	overflow: hidden;
	width: 100%;
	position: relative;
	/*頁籤*/
	/*頁籤內容*/
}
@media (max-width: 1180px) {
	.productArea {
		padding: 40px 0 90px;
	}
}
@media (max-width: 640px) {
	.productArea {
		padding: 40px 0 0px;
	}
}
@media (max-width: 1180px) {
	.productArea .wrap {
		padding: 0 20px;
	}
}
.productArea .wrap::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 600px;
	background-color: rgba(39, 39, 39, 0.2);
	top: 120px;
	left: 50%;
}
@media (max-width: 1366px) {
	.productArea .wrap::before {
		display: none;
	}
}
.productArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.productArea .productBox {
	transition: all 0.5s;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	width: 100%;
}
@media (max-width: 1180px) {
	.productArea .productBox {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.productArea .productLeft {
	max-width: 700px;
	width: 100%;
	margin: 100px auto 0 260px;
	padding: 0 60px 0 0;
}
@media (max-width: 1680px) {
	.productArea .productLeft {
		margin: 100px auto 0 130px;
	}
}
@media (max-width: 1536px) {
	.productArea .productLeft {
		margin: 100px auto 0 60px;
	}
}
@media (max-width: 1440px) {
	.productArea .productLeft {
		margin: 100px auto 0 30px;
	}
}
@media (max-width: 1180px) {
	.productArea .productLeft {
		margin: 0 auto;
		padding: 0;
	}
}
@media (max-width: 960px) {
	.productArea .productLeft {
		margin: 60px auto;
	}
}
@media (max-width: 640px) {
	.productArea .productLeft {
		max-width: 100%;
	}
}
.productArea .pd_pic_bg {
	width: 160px;
}
@media (min-width: 641px) {
	.productArea .pd_pic_bg.bg_mb {
		display: none;
	}
}
@media (max-width: 640px) {
	.productArea .pd_pic_bg.bg_pc {
		display: none;
	}
}
.productArea .productLeft {
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 5;
	width: 100%;
}
@media (max-width: 640px) {
	.productArea .productLeft {
		padding: 0 40px;
	}
}
.productArea .productLeft .tabItem {
	width: 100%;
}
.productArea .productLeft .item {
	width: 100%;
}
@media (max-width: 640px) {
	.productArea .productLeft .item {
		padding: 0 20px;
	}
}
.productArea .productLeft li {
	-ms-flex: 1;
	    flex: 1;
	margin: 0 10px;
	height: 370px;
}
@media (max-width: 640px) {
	.productArea .productLeft li {
		-ms-flex: unset;
		    flex: unset;
		width: 100%;
		height: 305px;
	}
}
.productArea .productLeft li .Img {
	max-width: 160px;
	width: 100%;
	position: absolute;
	-webkit-transform: translateY(100%);
	        transform: translateY(100%);
	top: -260px;
	-webkit-filter: grayscale(1) brightness(1.8);
	        filter: grayscale(1) brightness(1.8);
}
@media (max-width: 640px) {
	.productArea .productLeft li .Img {
		position: unset;
		max-width: 100%;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@media (max-width: 360px) {
	.productArea .productLeft li .Img {
		padding: 20px;
	}
}
.productArea .productLeft li:nth-child(1) .Img {
	left: 0;
	z-index: 6;
}
.productArea .productLeft li:nth-child(2) .Img {
	left: 100px;
	z-index: 5;
}
.productArea .productLeft li:nth-child(3) .Img {
	left: 200px;
	z-index: 4;
}
.productArea .productLeft li:nth-child(4) .Img {
	left: 300px;
	z-index: 3;
}
.productArea .productLeft li:nth-child(5) .Img {
	left: 400px;
	z-index: 2;
}
.productArea .productLeft li:nth-child(6) .Img {
	left: 500px;
}
.productArea .productLeft .title {
	color: #959595;
	display: block;
	line-height: 1;
	-ms-flex: 1;
	    flex: 1;
	padding: 8px 15px;
	z-index: 2;
	text-align: center;
	background-color: transparent;
	border-radius: 15px;
	position: absolute;
	bottom: 0;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
}
@media (max-width: 640px) {
	.productArea .productLeft .title {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
		position: unset;
		margin: 40px 0;
	}
}
.productArea .productLeft a.current .Img {
	top: -290px;
	-webkit-filter: unset;
	        filter: unset;
}
.productArea .productLeft a.current .title {
	color: #fff;
	background-color: #008cd6;
}
.productArea .productRight {
	padding: 20px 5px;
	position: absolute;
	top: 120px;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}
@media (max-width: 1180px) {
	.productArea .productRight {
		position: relative;
		top: 25px;
		padding: 0;
	}
}
@media (max-width: 1024px) {
	.productArea .productRight {
		position: relative;
		top: -50px;
	}
}
@media (max-width: 960px) {
	.productArea .productRight {
		position: relative;
		top: -160px;
	}
}
@media (max-width: 414px) {
	.productArea .productRight {
		top: -85px;
	}
}
@media (max-width: 360px) {
	.productArea .productRight {
		top: -100px;
	}
}
.productArea .productRight .prItem {
	display: none;
}
.productArea .productRight .item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	    align-items: center;
	width: 100%;
	height: 600px;
}
@media (max-width: 1198px) {
	.productArea .productRight .item {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
@media (max-width: 1180px) {
	.productArea .productRight .item {
		height: auto;
	}
}
.productArea .productRight .leftBg {
	width: 50%;
	position: relative;
}
@media (max-width: 1180px) {
	.productArea .productRight .leftBg {
		position: absolute;
		top: -20%;
		left: 60px;
		width: 100%;
	}
}
@media (max-width: 640px) {
	.productArea .productRight .leftBg {
		left: 40px;
	}
}
.productArea .productRight .leftBg .title {
	position: absolute;
	z-index: 3;
	top: -155px;
	-webkit-transform: translateY(-100%);
	        transform: translateY(-100%);
	left: 35px;
	color: #4f5050;
	font-size: 20px;
}
@media (max-width: 1440px) {
	.productArea .productRight .leftBg .title {
		left: 55px;
	}
}
@media (max-width: 1180px) {
	.productArea .productRight .leftBg .title {
		top: -265px;
		left: 0px;
	}
}
@media (max-width: 1024px) {
	.productArea .productRight .leftBg .title {
		top: -180px;
	}
}
@media (max-width: 768px) {
	.productArea .productRight .leftBg .title {
		top: -200px;
	}
}
.productArea .productRight .leftBg .Img {
	max-width: 660px;
	width: 100%;
	position: absolute;
	pointer-events: none;
	left: -70%;
	top: 325px;
	-webkit-transform: translate(0, -100%);
	        transform: translate(0, -100%);
}
@media (max-width: 1180px) {
	.productArea .productRight .leftBg .Img {
		left: -50%;
	}
}
@media (max-width: 960px) {
	.productArea .productRight .leftBg .Img {
		max-width: 525px;
		left: -30%;
	}
}
@media (max-width: 640px) {
	.productArea .productRight .leftBg .Img {
		max-width: 100%;
		top: 215px;
		left: -50%;
	}
}
@media (max-width: 375px) {
	.productArea .productRight .leftBg .Img {
		top: 180px;
	}
}
.productArea .productRight .right {
	width: 50%;
	margin: 0 0 0 auto;
	padding: 0 0 0 100px;
	position: relative;
	z-index: 3;
}
@media (max-width: 1180px) {
	.productArea .productRight .right {
		width: 100%;
		margin: 0;
		padding: 0px 20px 0;
	}
}
@media (max-width: 1180px) {
	.productArea .productRight .right {
		padding: 60px 20px 0;
	}
}
@media (max-width: 960px) {
	.productArea .productRight .right {
		top: 130px;
	}
}
@media (max-width: 640px) {
	.productArea .productRight .right {
		top: 50px;
	}
}
@media (max-width: 375px) {
	.productArea .productRight .right {
		top: 0px;
	}
}
.productArea .productRight .right .top {
	display: -ms-flexbox;
	display: flex;
	font-weight: 600;
	-ms-flex-align: end;
	    align-items: flex-end;
	margin: 0 0 30px 0;
}
.productArea .productRight .right .top .title {
	font-size: 25px;
	color: #4f5050;
	font-weight: 600;
	border-right: 2px solid rgba(52, 52, 52, 0.7);
	padding: 0 15px 0 0;
	line-height: 1;
}
.productArea .productRight .right .top .tit02 {
	font-size: 17px;
	color: #343434;
	margin: 0 0 0 10px;
	line-height: 1;
}
.productArea .productRight .right .top .tit02 span {
	font-size: 18px;
	margin: 0 5px;
}
.productArea .productRight .right .text {
	font-size: 16px;
	color: #656565;
	font-weight: 400;
	letter-spacing: 0.8px;
	height: 100px;
	margin: 0 0 15px 0;
}
.productArea .productRight .right .tip {
	font-size: 16px;
	color: #656565;
	font-weight: 400;
	letter-spacing: 0.8px;
	position: relative;
	padding: 0 0 0 30px;
	height: 50px;
}
.productArea .productRight .right .tip::before {
	content: "!";
	position: absolute;
	width: 22px;
	height: 22px;
	background-color: #797d81;
	color: #fff;
	border-radius: 50%;
	top: 0;
	left: 0;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
.productArea .productRight .right .Img {
	margin: 60px 0;
}
@media (max-width: 1180px) {
	.productArea .productRight .right .Img {
		width: 60%;
		margin: 60px auto;
	}
}
@media (max-width: 1024px) {
	.productArea .productRight .right .Img {
		width: 80%;
	}
}
@media (max-width: 960px) {
	.productArea .productRight .right .Img {
		width: 100%;
	}
}
.productArea .productRight .right .btnBox {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
@media (max-width: 640px) {
	.productArea .productRight .right .btnBox {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.productArea .productRight .right .btn {
	width: 200px;
	margin: 0 30px 0 0;
}
@media (max-width: 640px) {
	.productArea .productRight .right .btn {
		margin: 15px 0;
	}
}
.productArea .productRight .right .btn svg {
	width: 25px;
	height: 21px;
	margin: 0 15px 0 0;
}
.productArea .slick-arrow {
	width: 70px;
	height: 70px;
	cursor: pointer;
}
.productArea .slick-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 20px;
	height: 20px;
	border-left: 1px solid #5e6061;
	border-bottom: 1px solid #5e6061;
	opacity: 1 !important;
}
.productArea .slick-arrow.slick-prev {
	left: 0;
}
.productArea .slick-arrow.slick-prev::before {
	left: 46%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.productArea .slick-arrow.slick-next {
	right: 0;
}
.productArea .slick-arrow.slick-next::before {
	right: 46%;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}

.qualityArea {
	padding: 95px 0 0px;
	background-image: url("../images/quality_bg.jpg");
	background-position: center;
	background-size: auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 900px;
	position: relative;
}
@media (max-width: 640px) {
	.qualityArea {
		background-image: url("../images/quality_bg_mb.jpg");
		height: 100%;
		padding: 60px 0 100px;
		background-size: cover;
	}
}
.qualityArea .wrap {
	max-width: 1500px;
}
.qualityArea .titleBox2 {
	text-align: center;
}
.qualityArea .titleBox2 .titleTw {
	color: #555555;
}
.qualityArea .qualityList {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	width: 100%;
}
@media (max-width: 960px) {
	.qualityArea .qualityList {
		margin: 55% 0 0 0;
	}
}
.qualityArea .qualityList .qualityItem {
	width: 50%;
	margin: 100px 0 0px 0;
}
@media (max-width: 960px) {
	.qualityArea .qualityList .qualityItem {
		width: 100%;
		margin: 0;
		padding: 0 60px;
	}
}
@media (max-width: 640px) {
	.qualityArea .qualityList .qualityItem {
		padding: 0 30px;
	}
}
.qualityArea .qualityList .qualityItem:nth-child(odd) .item {
	-ms-flex-direction: row-reverse;
	    flex-direction: row-reverse;
}
@media (max-width: 960px) {
	.qualityArea .qualityList .qualityItem:nth-child(odd) .item {
		-ms-flex-direction: unset;
		    flex-direction: unset;
	}
}
.qualityArea .qualityList .qualityItem:nth-child(odd) .Txt {
	text-align: right;
}
@media (max-width: 960px) {
	.qualityArea .qualityList .qualityItem:nth-child(odd) .Txt {
		text-align: left;
	}
}
.qualityArea .qualityList .qualityItem:nth-child(even) {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: end;
	    justify-content: flex-end;
}
@media (max-width: 960px) {
	.qualityArea .qualityList .qualityItem:nth-child(even) {
		-ms-flex-pack: start;
		    justify-content: flex-start;
	}
}
.qualityArea .qualityList .item {
	max-width: 450px;
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
@media (max-width: 960px) {
	.qualityArea .qualityList .item {
		margin: 0 auto;
		max-width: 100%;
	}
}
.qualityArea .qualityList .Img {
	background-image: url("../images/quality_icon_bg.png");
	background-position: center;
	background-size: auto;
	background-repeat: no-repeat;
	width: 85px;
	height: 85px;
	border-radius: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
.qualityArea .qualityList .Txt {
	width: calc(100% - 85px);
	padding: 0 20px;
}
.qualityArea .qualityList .Txt .title {
	font-size: 18px;
	color: #383838;
	font-weight: 400;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.qualityArea .qualityList .Txt .text {
	font-size: 15px;
	color: #686868;
	height: 50px;
}
.qualityArea .bottom {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
	width: 100%;
	padding: 0 60px;
	max-width: 800px;
	margin: 0 auto 100px;
}
.qualityArea .bottom .text {
	width: 100%;
	text-align: center;
	font-size: 15px;
	color: #686868;
	height: 20px;
}
.qualityArea .bottom .brandBox {
	max-width: 440px;
	width: 100%;
	margin: 10px auto 30px;
}
@media (max-width: 640px) {
	.qualityArea .bottom .brandBox {
		margin: 30px auto;
	}
}
.qualityArea .bottom .albumList {
	width: 100%;
	display: -ms-flexbox;
	display: flex;
	padding: 0 70px;
}
.qualityArea .bottom .albumList .Img {
	width: 100%;
	padding: 0px 10px;
}
.qualityArea .bottom .albumList .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.qualityArea .slick-arrow {
	width: 70px;
	height: 70px;
	cursor: pointer;
}
@media (max-width: 640px) {
	.qualityArea .slick-arrow {
		width: 10px;
		height: 10px;
	}
}
.qualityArea .slick-arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 10px;
	height: 10px;
	border-left: 1px solid #5e6061;
	border-bottom: 1px solid #5e6061;
	opacity: 1 !important;
}
.qualityArea .slick-arrow.slick-prev {
	left: 0;
}
.qualityArea .slick-arrow.slick-prev::before {
	left: 46%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.qualityArea .slick-arrow.slick-next {
	right: 0;
}
.qualityArea .slick-arrow.slick-next::before {
	right: 46%;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}
.qualityArea .deco {
	position: absolute;
	top: 225px;
	left: 0;
	margin: 0 auto;
	right: 0;
	max-width: 260px;
	width: 100%;
	display: none;
}
.qualityArea .deco img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
	width: 50%;
	margin: 0 auto;
}

.applicationArea {
	padding: 90px 0;
}
@media (max-width: 1180px) {
	.applicationArea {
		padding: 90px 0 0;
	}
}
.applicationArea .applicationBox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	position: relative;
	-ms-flex-align: center;
	    align-items: center;
	width: 100%;
}
@media (max-width: 1440px) {
	.applicationArea .applicationBox {
		padding: 0 20px 0 0;
	}
}
@media (max-width: 1366px) {
	.applicationArea .applicationBox {
		padding: 0 40px 0 0;
	}
}
@media (max-width: 1180px) {
	.applicationArea .applicationBox {
		padding: 0;
	}
}
.applicationArea .leftBox {
	width: calc(100% - 690px);
}
@media (max-width: 1180px) {
	.applicationArea .leftBox {
		width: 100%;
	}
}
.applicationArea .filedLeftTxt {
	width: 100%;
	padding: 0 110px 0 0;
}
@media (max-width: 1180px) {
	.applicationArea .filedLeftTxt {
		padding: 0;
	}
}
.applicationArea .filedLeftTxt .Img {
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto;
	box-shadow: 0 0 8px rgba(39, 39, 39, 0.2);
}
@media (min-width: 1181px) {
	.applicationArea .filedLeftTxt .Img {
		display: none;
		margin: 30px auto;
	}
}
@media (max-width: 375px) {
	.applicationArea .filedLeftTxt .Img {
		width: 320px;
		height: 320px;
	}
}
@media (max-width: 360px) {
	.applicationArea .filedLeftTxt .Img {
		width: 280px;
		height: 280px;
	}
}
.applicationArea .filedLeftTxt .Img .Img {
	width: 100%;
}
.applicationArea .filedLeftTxt .Img .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.applicationArea .filedLeftTxt .top {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	    justify-content: flex-start;
	-ms-flex-align: center;
	    align-items: center;
}
.applicationArea .filedLeftTxt .top .num {
	font-family: "Outfit";
	font-size: 65px;
	color: #008cd6;
	margin: 0 10px 0 0;
}
.applicationArea .filedLeftTxt .top .right {
	color: #343434;
	font-weight: 600;
}
.applicationArea .filedLeftTxt .top .right .title {
	font-size: 25px;
}
.applicationArea .filedLeftTxt .top .right .entitle {
	font-size: 18px;
	font-family: "Outfit";
}
.applicationArea .filedLeftTxt .text {
	font-size: 16px;
	color: #656565;
	height: 160px;
}
.applicationArea .filedLeftTxt .bottom {
	margin: 20px 0;
}
.applicationArea .filedLeftTxt .bottom .text {
	height: 60px;
}
.applicationArea .filedLeftTxt .textBox {
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 10px 0;
}
@media (max-width: 640px) {
	.applicationArea .filedLeftTxt .textBox {
		-ms-flex-direction: column;
		    flex-direction: column;
	}
}
.applicationArea .filedLeftTxt .textBox .tit {
	color: #343434;
	font-size: 17px;
	font-weight: 500;
	white-space: nowrap;
}
.applicationArea .filedLeftTxt .btn_color1 {
	margin: 60px 0 0 0;
}
@media (max-width: 1180px) {
	.applicationArea .filedLeftTxt .btn_color1 {
		margin: 40px auto;
	}
}
.applicationArea .filedCircleBox {
	width: 690px;
	height: 690px;
	position: relative;
	padding: 27.5px;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
@media (max-width: 1180px) {
	.applicationArea .filedCircleBox {
		display: none;
	}
}
.applicationArea .filedCircleBox::before {
	content: "";
	position: absolute;
	background-image: url("../images/circle_deco01.png");
	width: 760px;
	height: 760px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: -1;
	-webkit-animation: rotate 50s linear forwards;
	        animation: rotate 50s linear forwards;
}
.applicationArea .filedCircleBox::after {
	content: "";
	position: absolute;
	background-image: url("../images/circle_deco02.png");
	width: 705px;
	height: 705px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	pointer-events: none;
	z-index: -1;
}
.applicationArea .filedCircleBox .filedCircle {
	width: 100%;
	height: 100%;
	position: relative;
}
.applicationArea .filedCircleBox path {
	color: #989898;
	cursor: pointer;
}
.applicationArea .filedCircleBox path.current {
	color: #008cd6;
}
.applicationArea .filedCircleBox .stroke {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -345px;
	margin-left: -345px;
	width: 100%;
	height: 100%;
	-webkit-transform-origin: center center;
	        transform-origin: center center;
	stroke: #008cd6;
	stroke-width: 1.5px;
	fill: none;
}
.applicationArea .filedList .filedItem {
	position: absolute;
	bottom: 50%;
	width: 100px;
	height: 40%;
	left: 50%;
	margin-left: -50px;
	-webkit-transform: rotate(0deg);
	        transform: rotate(0deg);
	-webkit-transform-origin: center bottom;
	        transform-origin: center bottom;
	pointer-events: none;
	z-index: 9;
}
.applicationArea .filedList .filedItem.current .num {
	opacity: 1;
}
.applicationArea .filedList .Img {
	width: 55px;
	height: 55px;
}
.applicationArea .filedList .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.applicationArea .filedList .item {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	    flex-direction: column;
	-ms-flex-pack: center;
	    justify-content: center;
	-ms-flex-align: center;
	    align-items: center;
}
.applicationArea .filedList .title {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	width: 120px;
	text-align: center;
}
.applicationArea .filedList .num {
	position: absolute;
	top: 30%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 75px;
	color: rgba(255, 255, 255, 0.1);
	font-family: "Outfit";
	font-weight: 400;
	opacity: 0;
}
.applicationArea .filedDot .filedItem {
	position: absolute;
	bottom: 50%;
	width: 10px;
	height: 50.5%;
	left: 50%;
	margin-left: -5px;
	-webkit-transform-origin: center bottom;
	        transform-origin: center bottom;
	background-color: transparent;
}
.applicationArea .filedDot .Img {
	width: 10px;
	height: 10px;
}
.applicationArea .filedDot .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.applicationArea .filedPic {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 350px;
	height: 350px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
.applicationArea .filedPic .Img {
	width: 100%;
}
.applicationArea .filedPic .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (max-width: 640px) {
	.applicationArea .btn_color1 {
		width: 220px;
	}
}
.applicationArea .arrowBox {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: justify;
	    justify-content: space-between;
	-ms-flex-align: center;
	    align-items: center;
	position: absolute;
	bottom: 0;
	display: -ms-inline-flexbox;
	display: inline-flex;
	z-index: 2;
	width: 100%;
}
@media (min-width: 1181px) {
	.applicationArea .arrowBox {
		display: none;
	}
}
@media (max-width: 960px) {
	.applicationArea .arrowBox {
		bottom: 35px;
	}
}
@media (max-width: 640px) {
	.applicationArea .arrowBox {
		bottom: 50px;
	}
}
@media (max-width: 360px) {
	.applicationArea .arrowBox {
		bottom: 10px;
	}
}
.applicationArea .arrowBox .arrow {
	position: absolute;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	cursor: pointer;
	background-color: #008cd6;
	bottom: 0;
}
@media (max-width: 640px) {
	.applicationArea .arrowBox .arrow {
		width: 35px;
		height: 35px;
	}
}
.applicationArea .arrowBox .arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	width: 8px;
	height: 8px;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
}
.applicationArea .arrowBox .arrowPrev {
	left: 0;
}
.applicationArea .arrowBox .arrowPrev::before {
	left: 46%;
	-webkit-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.applicationArea .arrowBox .arrowNext {
	right: 0;
}
.applicationArea .arrowBox .arrowNext::before {
	right: 46%;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}

.aboutArea {
	padding: 100px 0 0;
	background-color: #e9eaef;
	background-image: url("../images/home_about_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: auto;
	width: 100%;
}
@media (max-width: 1180px) {
	.aboutArea {
		background-size: cover;
		overflow: hidden;
		padding: 60px 0 0;
	}
}
@media (max-width: 640px) {
	.aboutArea {
		background-position: bottom;
	}
}
.aboutArea .aboutBox {
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 1180px) {
	.aboutArea .aboutBox {
		-ms-flex-direction: column;
		    flex-direction: column;
		padding: 0 20px;
	}
}
.aboutArea .left {
	width: 50%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: end;
	    align-items: flex-end;
	-ms-flex-pack: justify;
	    justify-content: space-between;
}
@media (max-width: 1180px) {
	.aboutArea .left {
		width: 100%;
		-ms-flex-order: 2;
		    order: 2;
	}
}
.aboutArea .left .text {
	width: 40%;
	color: #fff;
	font-size: 183px;
	font-weight: 400;
	line-height: 0.8;
	text-align: left;
	font-family: "Outfit";
	position: relative;
	bottom: -5px;
	left: -5px;
}
@media (max-width: 1536px) {
	.aboutArea .left .text {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.aboutArea .left .text {
		font-size: 99px;
		width: 45%;
	}
}
.aboutArea .left .text span {
	font-size: 45px;
	text-transform: uppercase;
}
@media (max-width: 640px) {
	.aboutArea .left .text span {
		font-size: 20px;
	}
}
.aboutArea .left .Img {
	width: 60%;
}
@media (max-width: 1536px) {
	.aboutArea .left .Img {
		width: 50%;
	}
}
@media (max-width: 640px) {
	.aboutArea .left .Img {
		width: 55%;
	}
}
.aboutArea .left .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.aboutArea .right {
	width: 50%;
	padding: 0 260px 0 80px;
	position: relative;
}
@media (max-width: 1680px) {
	.aboutArea .right {
		padding: 0 130px 0 80px;
	}
}
@media (max-width: 1536px) {
	.aboutArea .right {
		padding: 0 60px 80px 80px;
	}
}
@media (max-width: 1440px) {
	.aboutArea .right {
		padding: 0 30px 80px 80px;
	}
}
@media (max-width: 1180px) {
	.aboutArea .right {
		width: 100%;
		-ms-flex-order: 1;
		    order: 1;
		padding: 0;
	}
}
.aboutArea .right .text {
	font-size: 16px;
	color: #656565;
	line-height: 1.4;
	letter-spacing: 0.8px;
	height: 120px;
}
.aboutArea .advList {
	display: -ms-flexbox;
	display: flex;
	margin: 30px 0 70px 0;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
@media (max-width: 640px) {
	.aboutArea .advList {
		margin: 30px -15px 70px;
	}
}
.aboutArea .advList .advItem {
	padding: 0 0 0 30px;
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: start;
	    justify-content: flex-start;
	-ms-flex-align: center;
	    align-items: center;
	margin: 0 30px 0 0;
}
@media (max-width: 640px) {
	.aboutArea .advList .advItem {
		margin: 15px;
	}
}
.aboutArea .advList .advItem::before {
	content: "";
	position: absolute;
	background-image: url("../images/home_about_icon.png");
	width: 21px;
	height: 20px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	top: 5px;
	left: 0;
}
.aboutArea .advList .title {
	font-size: 17px;
	color: #00478b;
	font-weight: 500;
}
.aboutArea .deco {
	position: absolute;
	bottom: 30%;
	right: 260px;
	max-width: 150px;
	width: 100%;
	display: none;
}
.aboutArea .deco img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.roomArea {
	padding: 50px 0;
	background-color: #fafafa;
}
.roomArea .item {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.roomArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.roomArea .Txt {
	padding: 30px 20px;
	background-color: #fff;
}
.roomArea .Txt .classTitle {
	display: none;
}
.roomArea .Txt .title a {
	display: block;
	padding-bottom: 8px;
	margin-bottom: 12px;
	font-weight: 400;
	font-size: 20px;
	border-bottom: 1px solid #eaeaea;
}
.roomArea .Txt .text {
	height: 46px;
	font-size: 13px;
	color: #666;
	line-height: 1.8;
}

.adArea {
	padding: 50px 0;
}
.adArea .adItem {
	padding: 0;
}
.adArea .item {
	position: relative;
	overflow: hidden;
}
.adArea .item:hover .Txt {
	top: 0;
	opacity: 1;
}
.adArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.adArea .Txt {
	position: absolute;
	left: 0;
	top: 20%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	width: 100%;
	height: 100%;
	padding: 30px 20px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.65);
	opacity: 0;
	transition: all 0.5s;
}
.adArea .Txt .title {
	display: block;
	width: 100%;
}
.adArea .Txt .title a {
	display: block;
	padding-bottom: 8px;
	margin-bottom: 12px;
	font-weight: 400;
	font-size: 20px;
	border-bottom: 1px solid #838383;
	color: #fff;
}
.adArea .Txt .text {
	display: block;
	width: 100%;
	height: 46px;
	font-size: 13px;
	color: #fff;
	line-height: 1.8;
}

.facArea {
	padding: 50px 0;
}
.facArea .facItem {
	padding: 0;
}
.facArea .item {
	position: relative;
	overflow: hidden;
}
.facArea .item:hover .Txt {
	top: 0;
	opacity: 1;
}
.facArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.facArea .Txt {
	position: absolute;
	left: 0;
	top: 20%;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-ms-flex-line-pack: center;
	    align-content: center;
	width: 100%;
	height: 100%;
	padding: 30px 20px;
	text-align: center;
	background-color: rgba(0, 0, 0, 0.65);
	opacity: 0;
	transition: all 0.5s;
}
.facArea .Txt .title {
	display: block;
	width: 100%;
}
.facArea .Txt .title a {
	display: block;
	padding-bottom: 8px;
	margin-bottom: 12px;
	font-weight: 400;
	font-size: 20px;
	border-bottom: 1px solid #838383;
	color: #fff;
}
.facArea .Txt .text {
	display: block;
	width: 100%;
	height: 46px;
	font-size: 13px;
	color: #fff;
	line-height: 1.8;
}

.newsArea {
	padding: 50px 0;
	background-color: #fafafa;
}
.newsArea .newsBox {
	transition: all 0.5s;
}
.newsArea .newsBox.hide {
	opacity: 0;
	-webkit-transform: translateY(-20px);
	        transform: translateY(-20px);
}
.newsArea .item {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
}
.newsArea .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsArea .Txt {
	position: relative;
	padding: 30px 20px;
	background-color: #fff;
}
.newsArea .Txt .classTitle {
	position: absolute;
	right: 20px;
	top: 30px;
}
.newsArea .Txt .title a {
	display: block;
	padding-bottom: 8px;
	margin-bottom: 12px;
	font-weight: 400;
	font-size: 20px;
	border-bottom: 1px solid #eaeaea;
}
.newsArea .Txt .text {
	height: 46px;
	font-size: 13px;
	color: #666;
	line-height: 1.8;
}

.linkArea {
	padding: 30px 0;
	text-align: center;
}
.linkArea .linkList .Img img {
	width: 100%;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.linkArea .linkList .Txt .title {
	display: none;
}