.popWin .close::before, .popWin .close::after, .popWin .close {
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.popWin {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 500;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	font-size: 15px;
	line-height: 1.8;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
}
.popWin .mask {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	background-color: rgba(0, 0, 0, 0.7);
	opacity: 0;
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
}
.popWin .inner {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, 50%);
	        transform: translate(-50%, 50%);
	width: 800px;
	max-width: 90%;
	max-height: 85vh;
	opacity: 0;
	background-color: #fff;
	-webkit-transition: all 0.7s;
	transition: all 0.7s;
}
.popWin .popContent {
	max-height: 88vh;
	overflow-y: auto;
}
.popWin img {
	display: block;
	max-width: 100%;
	height: auto;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.popWin .Txt {
	padding: 30px;
}
.popWin .Txt .popTitle {
	font-size: 25px;
	margin-bottom: 25px;
}
.popWin .close {
	width: 46px;
	height: 46px;
	background-color: #003057;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}
.popWin .close::before, .popWin .close::after {
	content: "";
	position: absolute;
	left: 11px;
	top: 23px;
	width: 25px;
	height: 1px;
	background-color: #fff;
}
.popWin .close::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.popWin .close::after {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
@media (min-width: 1181px) {
	.popWin .close:hover {
		background-color: #42BBD8;
	}
	.popWin .close:hover::before {
		-webkit-transform: rotate(-30deg);
		        transform: rotate(-30deg);
	}
	.popWin .close:hover::after {
		-webkit-transform: rotate(30deg);
		        transform: rotate(30deg);
	}
}
.popWin.show {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.popWin.show .mask,
.popWin.show .inner {
	opacity: 1;
}
.popWin.show .inner {
	-webkit-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
}
@media (max-width: 1180px) {
	.popWin .popContent {
		max-height: calc(100vh - 150px);
		max-height: calc(100dvh - 150px);
	}
}

.mainArea {
	padding: 0;
}

.control {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}
.control .numBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	font-size: 14px;
	font-weight: 400;
	font-family: "Poppins", "Microsoft JhengHei", sans-serif;
	color: #000;
	letter-spacing: -0.28px;
	line-height: 1;
}
.control .numBox .separate {
	width: 2px;
	height: 15px;
	background-color: #424242;
	margin: 0 15px;
}
.control .lineBox {
	width: 175px;
	height: 1px;
	background-color: #e0e0e0;
}
.control .lineBox .line {
	width: 120px;
	height: 2px;
	background-color: #000;
	position: absolute;
	left: 0;
	bottom: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
@media (max-width: 480px) {
	.control .numBox {
		display: none;
	}
}

.arrowBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 20px;
}

.arrow {
	cursor: pointer;
	padding: 3px;
	display: inline-block;
}
.arrow::before {
	content: "";
	width: 25px;
	height: 25px;
	border-bottom: 2px solid #e0e0e0;
	border-right: 2px solid #e0e0e0;
	display: inline-block;
}
.arrow.prev::before {
	-webkit-transform: rotate(135deg);
	        transform: rotate(135deg);
}
.arrow.next::before {
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}

.moreBtn {
	margin-top: 60px;
	font-size: 14px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #000;
	letter-spacing: 1.12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 15px;
}
.moreBtn::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #000;
	border-bottom: 2px solid #000;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	display: inline-block;
}

/* bannerArea */
.bannerArea .bannerBox {
	position: relative;
}
.bannerArea .Img img {
	width: 100%;
	height: auto;
}
.bannerArea .bannerList .slick-current .Txt .textBox {
	-webkit-animation: slideLeftAnimation 0.8s ease-in-out forwards;
	        animation: slideLeftAnimation 0.8s ease-in-out forwards;
}
.bannerArea .bannerList .slick-current .Txt .btnBox {
	-webkit-animation: slideLeftAnimation 0.8s 0.3s ease-in-out forwards;
	        animation: slideLeftAnimation 0.8s 0.3s ease-in-out forwards;
}
.bannerArea .bannerList .slick-current .Txt .mainImg {
	-webkit-animation: slideLeftAnimation 0.8s 0.6s ease-in-out forwards;
	        animation: slideLeftAnimation 0.8s 0.6s ease-in-out forwards;
}
.bannerArea .Txt {
	max-width: 1290px;
	padding: 50px 0;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.bannerArea .Txt .content {
	width: 50%;
	padding-left: 10px;
	padding-bottom: 90px;
}
.bannerArea .Txt .textBox {
	opacity: 0;
}
.bannerArea .Txt .btnBox {
	opacity: 0;
	margin-top: 55px;
}
.bannerArea .Txt .mainImg {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	height: 100%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	opacity: 0;
}
.bannerArea .Txt .mainImg img {
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: contain;
	   object-fit: contain;
}
.bannerArea .Txt .textBox .bannerTextBox {
	color: #fff;
}
.bannerArea .Txt .textBox .bannerEn {
	color: #fff;
}
.bannerArea .control {
	position: absolute;
	bottom: 110px;
	left: calc(50% - 635px);
	z-index: 10;
}
.bannerArea .control .numBox {
	color: #fff;
}
.bannerArea .control .numBox .separate {
	background-color: #bcbdbe;
}
.bannerArea .control .numBox .total {
	color: #bcbdbe;
}
.bannerArea .control .lineBox {
	background-color: #cacaca;
}
.bannerArea .control .lineBox .line {
	background-color: #fff;
}
.bannerArea .control .arrow::before {
	content: "";
	width: 10px;
	height: 10px;
}
.bannerArea .cloud {
	position: absolute;
	pointer-events: none;
}
.bannerArea .cloud.cloudL {
	left: -50px;
	bottom: -150px;
	-webkit-animation: cloudMove 15s infinite linear;
	        animation: cloudMove 15s infinite linear;
}
.bannerArea .cloud.cloudC {
	left: 200px;
	bottom: -200px;
	-webkit-animation: cloudMove 20s 1s infinite linear;
	        animation: cloudMove 20s 1s infinite linear;
	opacity: 0;
}
.bannerArea .cloud.cloudR {
	right: 0;
	bottom: -120px;
	-webkit-animation: cloudMove 12s 2s infinite linear;
	        animation: cloudMove 12s 2s infinite linear;
	opacity: 0;
}
@media (max-width: 1400px) {
	.bannerArea .control {
		bottom: 30px;
		left: 50px;
	}
	.bannerArea .Txt {
		margin: 0;
		padding: 30px 50px;
	}
	.bannerArea .Txt .content {
		width: 60%;
		padding-bottom: 10px;
	}
	.bannerArea .Img img {
		min-height: 600px;
		-o-object-fit: cover;
		   object-fit: cover;
	}
}
@media (max-width: 840px) {
	.bannerArea .Img {
		width: 100%;
		height: 100%;
		margin: auto;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
	}
	.bannerArea .Img picture {
		width: 100%;
		height: 100%;
	}
	.bannerArea .Img img {
		height: 100%;
		min-height: auto;
	}
	.bannerArea .Txt {
		position: relative;
		left: 0;
		top: 0;
		-webkit-transform: translate(0, 0);
		        transform: translate(0, 0);
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 30px 25px;
	}
	.bannerArea .Txt .content {
		width: 100%;
		padding: 0;
	}
	.bannerArea .Txt .textBox {
		height: 240px;
		overflow: hidden;
	}
	.bannerArea .Txt .mainImg {
		-webkit-box-flex: 1;
		    -ms-flex: auto;
		        flex: auto;
		width: 270px;
		margin-left: auto;
		margin-top: -70px;
	}
	.bannerArea .control {
		bottom: 20px;
	}
}
@media (max-width: 480px) {
	.bannerArea .Txt {
		padding: 30px 15px;
	}
	.bannerArea .Txt .btnBox {
		margin-top: 20px;
	}
	.bannerArea .Txt .mainImg {
		margin-top: -20px;
	}
}

/* newsArea */
.newsArea {
	padding: 115px 0 60px 0;
}
.newsArea .content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: flex-end;
}
.newsArea .content .leftBox {
	width: 505px;
}
.newsArea .content .rightBox {
	width: calc(100% - 505px);
}
.newsArea .titleBox {
	text-align: left;
	padding-left: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.newsArea .control {
	margin-top: 35px;
	gap: 45px;
}
.newsArea .control .lineBox {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
}
.newsArea .btnBox.phone {
	display: none;
}
.newsArea::before {
	content: "";
	width: 75%;
	height: 100%;
	background-color: #f8f8f8;
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	pointer-events: none;
}
@media (max-width: 1400px) {
	.newsArea .titleBox {
		padding-left: 20px;
	}
	.newsArea .content {
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
	}
	.newsArea .content .leftBox {
		width: 480px;
	}
	.newsArea .content .rightBox {
		width: calc(100% - 480px);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: stretch;
		    -ms-flex-align: stretch;
		        align-items: stretch;
	}
	.newsArea .content .rightBox .newsBox {
		width: 100%;
	}
}
@media (max-width: 1180px) {
	.newsArea {
		padding: 60px 0;
	}
	.newsArea::before {
		width: 100%;
	}
	.newsArea .titleBox {
		text-align: center;
		padding: 0;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	.newsArea .titleBox .btnBox {
		display: none;
	}
	.newsArea .content {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.newsArea .content .leftBox {
		width: 100%;
	}
	.newsArea .content .rightBox {
		width: 100%;
	}
	.newsArea .btnBox {
		margin-top: 40px;
	}
	.newsArea .btnBox.phone {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
}
@media (max-width: 480px) {
	.newsArea .arrowBox {
		display: none;
	}
}

.newsList {
	width: 100%;
}
.newsList.newsMainList .slick-list {
	margin-left: -38px;
}
.newsList.newsMainList .Txt {
	padding: 35px 25px;
}
.newsList.newsSubList .slick-list {
	margin-right: -38px;
}
.newsList.newsSubList .Txt {
	padding: 20px;
}
.newsList.newsSubList .Txt .title {
	font-size: 16px;
}
.newsList .newsItem {
	padding: 0 38px 20px 38px;
}
.newsList .item {
	-webkit-box-shadow: 5px 5px 20px 0px rgba(140, 140, 140, 0.2);
	        box-shadow: 5px 5px 20px 0px rgba(140, 140, 140, 0.2);
}
.newsList .Img {
	width: 100%;
}
.newsList .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.newsList .classTitle {
	width: 70px;
	background-color: #003057;
	font-size: 15px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #fff;
	letter-spacing: 1.2px;
	line-height: 23px;
	padding: 12px 15px;
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
}
.newsList .Txt {
	background-color: #fff;
}
.newsList .Txt .dateBox {
	font-size: 15px;
	font-weight: 400;
	font-family: "Poppins", "Microsoft JhengHei", sans-serif;
	color: #5e5e5e;
	letter-spacing: 0px;
}
.newsList .Txt .title {
	font-size: 18px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #000;
	letter-spacing: 1.08px;
	height: 26px;
	overflow: hidden;
}
.newsList .Txt .text {
	font-size: 15px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #5e5e5e;
	letter-spacing: 0.9px;
	padding-top: 15px;
	line-height: 1.5;
	height: 60px;
	overflow: hidden;
}
@media (max-width: 1400px) {
	.newsList.newsMainList .slick-list {
		margin-left: -20px;
	}
	.newsList.newsSubList .slick-list {
		margin-right: -20px;
	}
	.newsList .newsItem {
		padding: 0 20px 20px 20px;
	}
}
@media (max-width: 1180px) {
	.newsList.newsMainList .slick-list {
		margin: 0 -20px;
	}
	.newsList.newsSubList {
		display: none;
	}
}
@media (max-width: 840px) {
	.newsList.newsMainList .Txt {
		padding: 20px 25px;
	}
	.newsList.newsMainList .Txt .text {
		padding-top: 5px;
	}
}

/* appArea */
.appArea {
	padding-top: 210px;
}
.appArea .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.appArea .titleBox {
	text-align: left;
	margin-bottom: 70px;
}
.appArea .titleBox.phone {
	display: none;
}
.appArea .btnBox {
	margin-top: 35px;
}
.appArea .left {
	-ms-flex-negative: 0;
	    flex-shrink: 0;
}
.appArea .right {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-top: 45px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
@media (max-width: 1180px) {
	.appArea {
		padding-top: 80px;
	}
	.appArea .titleBox {
		width: 100%;
		text-align: center;
	}
	.appArea .titleBox.phone {
		display: block;
		padding-bottom: 100px;
	}
	.appArea .wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		    -ms-flex-direction: column-reverse;
		        flex-direction: column-reverse;
	}
	.appArea .left {
		width: 100%;
	}
	.appArea .left .titleBox {
		display: none;
	}
	.appArea .right {
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
	}
	.appArea .right .titleBox {
		display: block;
	}
}

.appTxtBox {
	width: 470px;
}
.appTxtBox .appTxtList {
	width: 100%;
}
.appTxtBox .appTxtList .slick-list {
	overflow: visible;
}
.appTxtBox .item {
	padding: 40px 30px;
	background-color: #f8f8f8;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.appTxtBox .item .index {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	font-family: "Poppins", "Microsoft JhengHei", sans-serif;
	color: #42BBD8;
	letter-spacing: 0px;
	margin-bottom: 20px;
	padding-right: 25px;
}
.appTxtBox .item .index::after {
	content: "";
	width: 0;
	height: 1px;
	background-color: #003057;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: translate(100%, -50%);
	        transform: translate(100%, -50%);
	-webkit-transition: all 0.5s 0.3s;
	transition: all 0.5s 0.3s;
}
.appTxtBox .item .title {
	font-size: 28px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #000;
	letter-spacing: 1.68px;
}
.appTxtBox .item .text {
	margin-top: 30px;
	font-size: 15px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #5e5e5e;
	letter-spacing: 1.2px;
	line-height: 1.6;
}
.appTxtBox .item.current .index::after {
	width: 500px;
}
@media (max-width: 1400px) {
	.appTxtBox {
		width: 400px;
	}
}
@media (max-width: 1180px) {
	.appTxtBox {
		width: 100%;
	}
	.appTxtBox .item .index::after {
		display: none;
	}
}

.appImgBox {
	padding: 20px;
	border: 1px solid #003057;
	background-color: #fff;
	border-radius: 50%;
	display: inline-block;
}
.appImgBox .appImgList {
	width: 500px;
}
.appImgBox .Img {
	width: 100%;
	height: 500px;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform: rotateY(90deg);
	        transform: rotateY(90deg);
}
.appImgBox .Img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	display: block;
}
.appImgBox .Img.current {
	-webkit-transform: rotateY(0deg);
	        transform: rotateY(0deg);
}
.appImgBox .decoImg {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translate(-47%, -69%);
	        transform: translate(-47%, -69%);
	z-index: -1;
}
@media (max-width: 1400px) {
	.appImgBox .appImgList {
		width: 400px;
	}
	.appImgBox .Img {
		height: 400px;
	}
	.appImgBox .decoImg {
		width: 360px;
		-webkit-transform: translate(0, -98%) rotate(30deg);
		        transform: translate(0, -98%) rotate(30deg);
	}
	.appImgBox .decoImg img {
		width: 100%;
	}
}
@media (max-width: 480px) {
	.appImgBox {
		padding: 5px;
	}
	.appImgBox .appImgList {
		width: 300px;
	}
	.appImgBox .Img {
		height: 300px;
	}
	.appImgBox .decoImg {
		width: 240px;
		-webkit-transform: translate(0, -98%) rotate(30deg);
		        transform: translate(0, -98%) rotate(30deg);
	}
}

.appTitleBox {
	width: 300px;
	height: 480px;
	margin-left: -30px;
	padding-left: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.appTitleBox svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 480px;
}
.appTitleBox .appTitleItem {
	padding: 25px 0;
	width: 50%;
	opacity: 1;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.appTitleBox .appTitleItem.active {
	padding-left: 28px;
}
.appTitleBox .appTitleItem.current {
	padding-left: 38px;
}
.appTitleBox .appTitleItem.current .circle {
	border: 1px solid #003057;
}
.appTitleBox .appTitleItem.current .circle::before {
	background-color: #003057;
}
.appTitleBox .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 35px;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.appTitleBox .item .circle {
	padding: 5px;
	border: 1px solid #d3d3d3;
	border-radius: 50%;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
.appTitleBox .item .circle::before {
	content: "";
	width: 10px;
	height: 10px;
	background-color: #d3d3d3;
	border-radius: 50%;
	display: block;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}
@media (min-width: 1181px) {
	.appTitleBox .item:hover {
		cursor: pointer;
		color: #42BBD8;
	}
	.appTitleBox .item:hover .circle {
		border: 1px solid #003057;
	}
	.appTitleBox .item:hover .circle::before {
		background-color: #003057;
	}
}
.appTitleBox .slick-slide.hide .appTitleItem {
	opacity: 0;
}
.appTitleBox .arrow {
	margin-left: 40px;
}
.appTitleBox .arrow.prev::before {
	-webkit-transform: rotate(-135deg);
	        transform: rotate(-135deg);
}
.appTitleBox .arrow.next::before {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
@media (max-width: 1180px) {
	.appTitleBox {
		width: 480px;
		height: auto;
		margin: 0;
		padding: 20px;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		    -ms-flex-direction: row;
		        flex-direction: row;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
	}
	.appTitleBox svg {
		display: none;
	}
	.appTitleBox .appTitleList {
		width: 100%;
	}
	.appTitleBox .appTitleItem {
		padding: 20px;
	}
	.appTitleBox .appTitleItem.active {
		padding: 20px;
	}
	.appTitleBox .appTitleItem.current {
		padding: 20px;
	}
	.appTitleBox .arrow {
		margin: 0;
		position: absolute;
		top: 50%;
		-webkit-transform: translateY(-50%);
		        transform: translateY(-50%);
	}
	.appTitleBox .arrow.prev {
		left: 0;
	}
	.appTitleBox .arrow.prev::before {
		-webkit-transform: rotate(135deg);
		        transform: rotate(135deg);
	}
	.appTitleBox .arrow.next {
		right: 0;
	}
	.appTitleBox .arrow.next::before {
		-webkit-transform: rotate(-45deg);
		        transform: rotate(-45deg);
	}
	.appTitleBox .item {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
		font-size: 18px;
		font-weight: 500;
		font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
		color: #003057;
		letter-spacing: 1.08px;
	}
	.appTitleBox .item .circle {
		display: none;
	}
}
@media (max-width: 480px) {
	.appTitleBox {
		width: 280px;
	}
	.appTitleBox .appTitleItem {
		padding: 0 15px;
	}
	.appTitleBox .appTitleItem.active {
		padding: 0 15px;
	}
	.appTitleBox .appTitleItem.current {
		padding: 0 15px;
	}
}

/* catalogArea */
.catalogArea {
	padding: 100px 0;
}
.catalogArea .wrap {
	max-width: 100%;
	padding: 0;
}
.catalogArea .titleBox {
	max-width: 1200px;
	margin: 0 auto 40px auto;
}
.catalogArea .catalogBox {
	margin: 0 auto;
	width: calc(100% - 360px);
}
.catalogArea .catalogBox .arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 5;
}
.catalogArea .catalogBox .arrow::before {
	border-color: #003057;
}
.catalogArea .catalogBox .arrow.prev {
	left: 20px;
}
.catalogArea .catalogBox .arrow.next {
	right: 20px;
}
@media (max-width: 1400px) {
	.catalogArea .catalogBox {
		width: calc(100% - 240px);
	}
	.catalogArea .catalogBox .arrow.prev {
		left: 0;
	}
	.catalogArea .catalogBox .arrow.next {
		right: 0;
	}
}
@media (max-width: 840px) {
	.catalogArea {
		padding: 80px 0;
	}
	.catalogArea .wrap {
		padding: 0 20px;
	}
	.catalogArea .catalogBox {
		margin: 0;
		width: 100%;
	}
}
@media (max-width: 840px) {
	.catalogArea .catalogBox .arrow {
		display: none;
	}
}

.catalogList {
	width: 100%;
}
.catalogList .slick-list {
	overflow: visible;
}
.catalogList .item {
	width: 100%;
	max-width: 1370px;
	background-color: #f8f8f8;
	padding: 75px 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 auto;
}
.catalogList .Img {
	width: 50%;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.catalogList .Img img {
	max-width: 315px;
	width: 100%;
	height: 100%;
	display: block;
	-o-object-fit: contain;
	   object-fit: contain;
}
.catalogList .Txt {
	-webkit-box-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	padding-left: 20px;
}
.catalogList .Txt .index {
	font-size: 15px;
	font-weight: 400;
	font-family: "Poppins", "Microsoft JhengHei", sans-serif;
	color: #42BBD8;
	letter-spacing: 0px;
	margin-bottom: 10px;
}
.catalogList .Txt .title {
	font-size: 36px;
	font-weight: 400;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #000;
	letter-spacing: 1.44px;
}
.catalogList .Txt .text {
	font-size: 15px;
	font-weight: 400;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #5e5e5e;
	letter-spacing: 1.2px;
	line-height: 1.6;
	margin-top: 25px;
	height: 72px;
	overflow: hidden;
}
.catalogList .Txt .moreBtn {
	margin-top: 50px;
}
.catalogList .relation {
	margin-top: 20px;
}
.catalogList .relation .subtitle {
	font-size: 20px;
	font-weight: 400;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #000;
	letter-spacing: 1.2px;
	margin-bottom: 15px;
}
.catalogList .relation .relationList {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px;
	width: 100%;
	max-width: 400px;
}
.catalogList .relation .relationItem {
	padding: 5px 15px;
	border: 1px solid #003057;
	font-size: 14px;
	font-weight: 500;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #003057;
	letter-spacing: 0.84px;
}
@media (max-width: 1800px) {
	.catalogList .catalogItem {
		padding: 0 50px;
	}
	.catalogList .Img {
		width: 35%;
	}
}
@media (max-width: 1400px) {
	.catalogList .catalogItem {
		padding: 0 25px;
	}
	.catalogList .item {
		padding: 50px;
	}
	.catalogList .Txt .title {
		font-size: 32px;
	}
}
@media (max-width: 1180px) {
	.catalogList .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 40px 30px;
	}
	.catalogList .Txt {
		padding-left: 0;
	}
	.catalogList .Img {
		width: 100%;
		margin-bottom: 40px;
	}
}
@media (max-width: 840px) {
	.catalogList .catalogItem {
		padding: 0;
	}
	.catalogList .slick-list {
		overflow: hidden;
	}
}
@media (max-width: 480px) {
	.catalogList .item {
		padding: 30px 20px;
	}
	.catalogList .Txt .title {
		font-size: 24px;
	}
	.catalogList .Txt .text {
		margin-top: 10px;
	}
	.catalogList .Txt .moreBtn {
		margin-top: 20px;
	}
}

/* esgArea */
.esgArea .wrap {
	max-width: 100%;
	padding: 0;
}
.esgArea .Img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.esgArea .Img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
}
.esgArea .esgBox {
	padding: 0 50px;
	max-width: 1470px;
	min-height: 670px;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.esgArea .esgBox .Txt {
	width: 100%;
	max-width: 400px;
	padding: 20px 0;
}
.esgArea .esgBox .titleBox {
	text-align: left;
}
.esgArea .esgBox .titleBox .decoTitle {
	color: #fff;
}
.esgArea .esgBox .titleBox .text {
	color: #fff;
}
@media (max-width: 1400px) {
	.esgArea .esgBox {
		min-height: 540px;
	}
}
@media (max-width: 1180px) {
	.esgArea .esgBox {
		padding: 0 30px;
	}
}
@media (max-width: 840px) {
	.esgArea .esgBox {
		padding: 0 20px;
	}
}
@media (max-width: 480px) {
	.esgArea .esgBox {
		min-height: 480px;
	}
	.esgArea .esgBox .titleBox {
		margin-bottom: 0;
	}
}

/* linkArea */
.linkArea {
	padding: 90px 0 70px 0;
}
.linkArea::before {
	content: "";
	width: 50%;
	height: 100%;
	background-color: #f8f8f8;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.linkArea .wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.linkArea .linkBox {
	width: 50%;
}
.linkArea .linkBox .control {
	margin-top: 20px;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
}
.linkArea .titleBox {
	width: 50%;
	text-align: left;
	padding-left: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.linkArea .titleBox .text {
	margin-top: 40px;
}
.linkArea .titleBox .btnBox {
	margin-top: 40px;
}
.linkArea .control .arrow::before {
	content: "";
	width: 10px;
	height: 10px;
}
@media (max-width: 1400px) {
	.linkArea .titleBox {
		padding-left: 50px;
	}
}
@media (max-width: 1180px) {
	.linkArea {
		padding: 0;
	}
	.linkArea::before {
		display: none;
	}
	.linkArea .wrap {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		padding: 0;
	}
	.linkArea .linkBox {
		width: 100%;
		background-color: #f8f8f8;
		padding: 50px;
	}
	.linkArea .titleBox {
		width: 100%;
		padding: 50px;
	}
}
@media (max-width: 640px) {
	.linkArea .linkBox {
		padding: 50px 20px;
	}
	.linkArea .titleBox {
		padding: 50px 20px;
	}
}

.linkList .item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	gap: 10px 50px;
	padding-right: 90px;
}
.linkList .item .Img {
	width: 100px;
	height: 100px;
}
.linkList .item .Img img {
	width: 100%;
	height: auto;
	display: block;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
@media (max-width: 1400px) {
	.linkList .item {
		gap: 20px;
		padding-right: 50px;
	}
}
@media (max-width: 1180px) {
	.linkList .item {
		padding-right: 0;
	}
}

/* aboutArea */
.aboutArea {
	padding: 120px 0 135px 0;
	background-size: cover;
}
.aboutArea .titleBox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-bottom: 0;
}
.aboutArea .titleBox .decoTitle {
	color: #fff;
}
.aboutArea .titleBox .text {
	color: #fff;
	width: 100%;
	max-width: 600px;
	margin-top: 20px;
}
.aboutArea .aboutBox {
	margin-top: 80px;
}
.aboutArea .aboutBox .arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 5;
}
.aboutArea .aboutBox .arrow.prev {
	left: 0;
}
.aboutArea .aboutBox .arrow.next {
	right: 0;
}
.aboutArea .btnBox {
	margin-top: 80px;
}

.aboutList {
	padding: 0 80px;
}
.aboutList .item {
	padding: 0 30px;
	border-left: 1px solid #fff;
	border-right: 1px solid #fff;
}
.aboutList .num {
	font-size: 47px;
	font-weight: 400;
	font-family: "Poppins", "Microsoft JhengHei", sans-serif;
	color: #fff;
	letter-spacing: -0.94px;
	line-height: 1;
}
.aboutList .title {
	margin-top: 30px;
	font-size: 18px;
	font-weight: 400;
	font-family: "Noto Sans TC", "Microsoft JhengHei, sans-serif";
	color: #c7c7c7;
	letter-spacing: 1.08px;
}
@media (max-width: 1180px) {
	.aboutList {
		padding: 0 50px;
	}
}
@media (max-width: 840px) {
	.aboutList {
		padding: 0 30px;
	}
	.aboutList .item {
		padding: 0 15px;
	}
}
/*# sourceMappingURL=home.css.map */