@charset "utf-8";
/* CSS Document */

/* 共通 css開始  */
*{
	box-sizing: border-box;
	position: relative;
}
html {
	scroll-behavior: smooth;
}
body{
	font-family: "微軟正黑體";
	line-height: 1.5em;
	margin:0;
	background-color: #FBFBFB;
}
a{
	text-decoration:none;
	outline: none;
	/* hlbr:expression(this.onFocus=this.blur());		 */
	transition: all 0.3s;
}
a img{
	border:none;
}
a:hover,a:focus{
	text-decoration: none;
}
:focus,button:focus{
    outline: none;
}
/* Heading styles */
h1,h2,h3,h4,h5,h6,p,.h1,.h2,.h3,.h4,.h5,.h6{
	margin: 0;
	padding: 0;
}
/* List style */
ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
/*------------------------------------*\
    Global
\*------------------------------------*/
.gs-container{
	width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 576px){
	.gs-container{
		max-width: 540px;
	}
}
@media (min-width: 768px){ 
	.gs-container{
		max-width: 860px;
	}
}
@media (min-width: 992px){ 
	.gs-container{
		max-width: 1050px;
	}
}
@media (min-width: 1200px){
	.gs-container{
		max-width: 1140px;
	}
}
@media (min-width: 1400px){
	.gs-container{
		max-width: 1320px;
	}
}
@media (min-width: 1500px){
	.gs-container{
		max-width: 1480px;
	}
}
@media (min-width: 1700px){
	.gs-container{
		max-width: 1610px;
	}
}
/* ========== 麵包屑 ========== */
.breadcrumb_wrap{
	margin-left: 130px;
	margin-bottom: 40px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #707070;
}
@media (max-width: 991px){
	.breadcrumb_wrap{
		display: none;
	}
}
.breadcrumb{
	background-color: transparent;
	font-size: 18px;
	margin-bottom: 8px;
}
.breadcrumb_desk_wrap .breadcrumb{
	padding-right: 0;
}
@media (max-width: 991px){
	.breadcrumb_desk_wrap{
		display: none;
	}
}
.breadcrumb_mobile_wrap .breadcrumb{
	padding-left: 0;
}
.breadcrumb_mobile_wrap{
	display: none;
}
@media (max-width: 991px){
	.breadcrumb_mobile_wrap{
		display: block;
		margin-bottom: 20px;
	}
}
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #959595;
    content: ">";
}
@media (max-width:991px){
	.breadcrumb{
		margin: 15px 0;
	}
}
.breadcrumb-item a{
	color: #959595;
	font-weight: 500;
}
.breadcrumb-item a:hover{
	opacity: 0.7;
}
.page_location{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	font-size: 25px;
	color: #523F90;
}
.page_location-item+.page_location-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    color: #707070;
    content: "|";
}
.page_location-item+.page_location-item {
    padding-left: 0.5rem;
}
ol{
	margin-bottom: 0;
}
/* ========== 主要按鈕 ========== */
.main_btn{
    /* structure */
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 10px 40px;
	
	/* style */
	font-size: 22px;
	text-align: center;
	
	letter-spacing: 0;
	text-decoration: none;
    /* optional */
	color: #FFFFFF;
	background-color: #523F90;
	border: 0px;
	border-radius: 9px;
	outline: none;
    transition: all 0.3s;
}
@media (max-width: 767px){
	.main_btn{
		font-size: 20px;
		padding: 8px 35px;
	}
}
.main_btn:hover{
	color: #FFFFFF;
	background-color: #76779C;
}
.home_btn{
    /* structure */
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 10px 40px;
	
	/* style */
	font-size: 22px;
	text-align: center;
	
	letter-spacing: 0;
	text-decoration: none;
    /* optional */
	color: #706BA4;
	background-color: #FFFFFF;
	border: 1px solid #523F90;
	border-radius: 9px;
	outline: none;
    transition: all 0.3s;
}
@media (max-width: 767px){
	.home_btn{
		font-size: 20px;
		padding: 8px 35px;
	}
}
.home_btn:hover{
	color: #FFFFFF;
	background-color: #523F90;
}
/* ========== 圖片比例 ========== */
.outter{
    width: 100%;
}
.image-container{
    width: 100%;
}
.image-container::before{
    content: '';
    display: block;
    width: 100%;
    padding-top: 100%;
}
.image-container .image{
	object-fit: cover;
	object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: all 0.5s ease;
}
/* ========== 分頁 ========== */
.gs_pagination{
	width: 100%;
	padding: 10px 0;
	clear: both;
	text-align: center;
	background: none;
	box-shadow: none;
	margin: 0;
	margin-bottom: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gs_pagination a.pag_btn{
	width: 46px;
	height: 46px;
	line-height: 46px;
	text-align: center;
	margin: 0;
	font-size: 30px;
	color: #523F90;
	font-weight: bolder;
	transition: all 0.5s ease;
	margin-right: 10px;
}
.gs_pagination a.pag_btn2 {
	-moz-transform:scaleX(-1);
	-webkit-transform:scaleX(-1);
	-o-transform:scaleX(-1);
	transform:scaleX(-1);
}
.gs_pagination a.pag_btn:hover {
	opacity: 0.5;
}
.gs_pagination a.other_page {
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #523F90;
	/* border-radius: 50%; */
	font-size:20px;
	margin: 0;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	font-weight: bold;
	background-color: transparent;
	border: 1px solid #523F90;
	/* margin: 0 0.8em; */
	margin: 10px;
}
.gs_pagination strong{
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	background-color: #523F90;
	/* border-radius: 50%; */
	color: #FFFFFF;
	font-size: 20px;
	margin: 0;
	transition: all 0.2s ease-in-out;
	display: inline-block;
	font-weight: bold;
	margin: 10px;
}
.gs_pagination a.other_page:hover, 
.gs_pagination strong:hover{
	background-color: #523F90;
	color: #FFFFFF;
}
@media (max-width: 991px) {
	.gs_pagination strong, 
	.gs_pagination a.other_page{
		font-size: 18px;
	}
	.gs_pagination a.pag_btn {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.gs_pagination {
		margin-top: 30px;
	}
	.gs_pagination a.pag_btn, 
	.gs_pagination a.other_page, 
	.gs_pagination strong{
		width: 35px;
		height: 35px;
		line-height: 35px;
		margin-right: 5px;
	}
}
.gs_pagination_icon{
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
	color: #523F90;
	font-size: 25px;
	transition: all 0.2s ease-in-out;
	display: inline-block;
}
.gs_pagination_icon:hover{
	opacity: 0.7;
}
/*導航欄漢堡特效*/
.ham {
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	transition: transform 400ms;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.hamRotate.active {
	transform: rotate(45deg);
}
.hamRotate180.active {
	transform: rotate(180deg);
}
.line {
	fill:none;
	transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
	stroke:#76779C;
	stroke-width: 4;
	stroke-linecap:square;
}
.ham1 .top {
	stroke-dasharray: 40 139;
}
.ham1 .bottom {
	stroke-dasharray: 40 180;
}
.ham1.active .top {
	stroke-dashoffset: -98px;
}
.ham1.active .bottom {
	stroke-dashoffset: -138px;
}
.top_nav_bar{
	display: none;
}
@media (max-width: 991px){
	.top_nav_bar{
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #FFFFFF;
		padding-left: 20px;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 50;
	}
	.top_nav_bar.active{
		box-shadow: 0 2px 8px 5px rgba(0,0,0,.2);
	}
}
.dropdown{
	display: inline-block;
}
.dropdown_control{
	/* position: fixed;
	top: 0;
	right: 0; */
	cursor: pointer;
	z-index: 50;
	display: none;
}
@media (max-width: 991px){
	.dropdown_control{
		display: block;
	}	
}
.dropdown .dropbtn{
    font-size: 20px;  
    border: 1px solid #A5020E;
    outline: none;
    color: #A5020E;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    transition: all 0.3s;
    padding: 6px 30px;
    display: flex;
    align-items: center;
}
@media (max-width: 767px){
	.dropdown .dropbtn{
		font-size: 16px;
	}
}
.dropbtn i{
    font-size: 10px;
    margin-left: 20px;
	transform: rotate(180deg);
}
.dropbtn_rwd{
	display: none;
}
.dropbtn_rwd_wrap{
	display: flex;
	justify-content: end;
	padding-right: 17px;
}
.dropbtn_rwd i{
	font-size: 10px;
    margin-left: 20px;
	transform: rotate(180deg);
}
@media (max-width: 991px){
	.dropbtn_rwd{
		font-size: 20px;  
		border: 0;
		outline: none;
		color: #A5020E;
		background-color: inherit;
		font-family: inherit;
		margin: 0;
		transition: all 0.3s;
		padding: 0;
		display: flex;
		align-items: center;
	}
}
.dropdown-content{
    display: none;
    position: absolute;
    background-color: #ffffff;
	width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 55;
}
.dropdown-content .nav-link{
	color: #A5020E;
}
.dropdown-content .nav-link:hover::after,
.dropdown-content .nav-link.active::after{
    display: none;
}
.dropdown.active .dropdown-content {
    display: block;
}
.head_bar_mobile{
	padding-top: 80px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	max-height: 100%;
	background-color: #605584;
	overflow-y: auto;
	display: none;
}
@media (max-width:767px){
	.head_bar_mobile{
		/* padding-top: 104px; */
	}
}
@media (max-width:575px){
	.head_bar_mobile{
		/* padding-top: 94px; */
	}
}
@media (min-width: 992px){
	.head_bar_mobile{
		display: none !important;
	}
}
.nav_item_mobile{
	padding: 0 45px;
	width: 100%;
	border-bottom: 1px solid #E4E4E4;
	color: #FFFFFF;
	font-size: 20px;
}
.head_bar_mobile .nav_item_mobile:last-child{
	border-bottom: 0;
}
.nav_item_mobile_title{
	padding: 15px 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav_link_mobile{
	color: #FFFFFF;
}
.nav_link_mobile:hover{
	color: #FFFFFF;
}
.nav_item_mobile_title i{
	transition: all .3s;
}
.nav_item_mobile_title.active i{
	transform: rotate(90deg);
}
.nav_item_classification_wrap{
	padding: 0 20px;
	display: none;
}
.nav_item_classification{
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid #5E1919;
}
.nav_item_classification_wrap .nav_item_classification:last-child{
	border-bottom: 0;
}
.nav_item_classification_link{
	color: #F0E8D4;
}
.nav_item_classification_link:hover{
	color: #F0E8D4;
}
/* html 編輯器 */
.page_content_html{
	width: 100%;
}
.page_content_html img{
	max-width: 100%;
	height: auto !important;
}
.page_content_html iframe{
	max-width: 100%;
}
.page_html_edit{
	margin-bottom: 100px;
}
@media (max-width:991px){
	.page_html_edit{
		margin-bottom: 50px;
	}
}

@media (max-width:991px){
	.page_title_wrap_desk{
		display: none;
	}
}
.top_block{
	height: 105px;
}
@media (max-width:991px){
	.top_block{
		height: 70px;
	}
}
.page_top_content{
	display: flex;
	flex-wrap: wrap;
	padding: 100px 0;
}
@media (max-width:1499px){
	.page_top_content{
		padding: 80px 0;
	}
}
@media (max-width:1199px){
	.page_top_content{
		padding: 50px 0;
	}
}
@media (max-width:991px){
	.page_top_content{
		padding: 0;
	}
}
.page_top_pic{
	width: 55%;
}
@media (max-width:991px){
	.page_top_pic{
		width: 100%;
	}
}
.page_top_img{
	width: 100%;
	height: 400px;
	object-fit: cover;
}
@media (max-width:1699px){
	.page_top_img{
		height: 366.67px;
	}
}
@media (max-width:1499px){
	.page_top_img{
		height: 326.21px;
	}
}
@media (max-width:1399px){
	.page_top_img{
		height: 280.69px;
	}
}
@media (max-width:1199px){
	.page_top_img{
		height: 257.93px;
	}
}
@media (max-width:991px){
	.page_top_img{
		height: calc(90vw / 870 * 400);
	}
}
.page_top_text{
	width: 45%;
	display: flex;
	align-items: center;
	justify-content: center;
}
@media (max-width:991px){
	.page_top_text{
		width: 100%;
	}
}
.top_content{
	font-size: 24px;
	text-align: center;
	line-height: 1.5;
	max-height: 400px;
	overflow: auto;
}
@media (max-width:1699px){
	.top_content{
		max-height: 366.67px;
	}
}
@media (max-width:1499px){
	.top_content{
		max-height: 326.21px;
	}
}
@media (max-width:1399px){
	.top_content{
		max-height: 280.69px;
	}
}
@media (max-width:1199px){
	.top_content{
		max-height: 257.93px;
	}
}
@media (max-width:767px){
	.top_content{
		max-height: 100%;
		font-size: 18px;
	}
}
.top_content::-webkit-scrollbar{
	width: 5px;
}
.top_content::-webkit-scrollbar-track{
	background: #ddd;
}
.top_content::-webkit-scrollbar-thumb{
	background: #76779C; 
}
  
.btn_wrap{
	text-align: center;
}

.page_bar_warp_mobile{
	display: none;
}
@media (max-width: 991px){
	.page_bar_warp_mobile{
		display: block;
		margin-bottom: 20px;
	}
}
.page_bar_mobile{
	width: 100%;
	text-align: center;
	white-space: nowrap;
	overflow-x: auto;
	margin: 0 auto;
	padding: 10px 0;
}
.page_bar_mobile::-webkit-scrollbar{
	width: 5px;
	height: 5px;
}
.page_bar_mobile::-webkit-scrollbar-track{
	background: #ddd;
}
.page_bar_mobile::-webkit-scrollbar-thumb{
	background: #6667AB; 
}
.classification_link{
	/* structure */
	display: inline-block;
	vertical-align: middle;
	margin: 0 15px;
	padding: 10px 20px;
	/* style */
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0;
	text-decoration: none;
	/* optional */
	background-color: #6667AB;
	color: #FFFFFF;
	border: 2px solid #6667AB;
	z-index: 1;
	overflow: hidden;
	outline: none;
	transition: all 0.3s;
}
@media (max-width: 767px){
	.classification_link{
		margin: 0 10px;
		padding: 10px 20px;
	}
}
.classification_link.active{
	background-color: #FFFFFF;
	color: #6667AB;
}
/*****************************************************************************/
/*-----------------------------------start-----------------------------------*/
/*****************************************************************************/

/****************************head****************************/
.header{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 5;
	background-color: #FFFFFF;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.header_line{
	width: 100%;
	height: 10px;
	background-color: #76779C;
}
.head_main_wrap{
	margin: 20px 0;
}
@media (max-width:991px){
	.head_main_wrap{
		margin: 0;
	}
}
.head_bar{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.nav_item_wrap {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
@media (max-width:991px){
	.head_bar{
		justify-content: space-between;
	}
	.nav_item_wrap, .nav_item{
		display: none;
	}
}
.nav_item {
	padding-left: 130px;
}
@media (max-width:1400px){
	.nav_item {
		padding-left: 90px;
	}
}
@media (max-width:1200px){
	.nav_item {
		padding-left: 80px;
	}
}
.nav_link{
	font-size: 20px;
	color: #6667AB;
	transition: all .3s;
}
.nav_link::after{
	content: '';
	position: absolute;
	bottom: -10px;
	right: 50%;
	height: 1px;
	width: 0;
	transform: translate(50%, -50%);
	background-color: #6667AB;
	display: none;
	transition: all .3s;
}
.nav_link::before{
	content: '';
	position: absolute;
	right: -10%;
	height: 5px;
	width: 5px;
	background-color: #6667AB;
	bottom: -11px;
	display: none;
	transition: all .3s;
}
.nav_link:hover {
	color: #6667AB;
}
.nav_link.active::after,
.nav_link:hover:after{
	width: 120%;
	color: #6667AB;
	display: block;
}

.nav_link.active::before,
.nav_link:hover:before{
	color: #6667AB;
	display: block;
}

.top_logo{
	width: 172px;
	height: 55px;
	object-fit: contain;
	transition: all .3s;
}
@media (max-width:991px){
	.top_logo{
		width: 156px;
		height: 50px;
	}
}
.header.active .top_logo{
	width: 95px;
	height: 30px;
} 
@media (max-width:991px){
	.header.active .top_logo{
		width: 156px;
		height: 50px;
	} 
}
/****************************head****************************/

/***************************welcome**************************/
/*電腦版 main slider*/
.main_slider_item{
	height: calc(100vw / 1920 * 660);
}
.main_slider .slick-active button:before{
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #707070;
	background-color: #6667AB;
	transition: all .3s;
}
.main_slider li button:before{
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #6667AB;
	background-color: transparent;
	opacity: 1;
	transition: all .3s;
}
.main_slider a{
	display: block;
	width: 100%;
	height: 100%;
}
.main_slider_item img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 575px){
	#main_slider_section {
		display: none;
	}
}
#main_slider_section .slick-dotted.slick-slider{
	margin-bottom: 0;
}
#main_slider_section .slick-dots{
	bottom: 30px;
	text-align: end;
	padding-right: 160px;
}
/*手機版(575) main slider*/
#mobile_main_slider_section{
	display: none;
}
.mobile_main_slider .slick-dots li button:before{
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #6667AB;
	background-color: transparent;
	opacity: 1;
	transition: all .3s;
}
.mobile_main_slider .slick-active button:before{
	content: '';
	width: 20px;
	height: 20px;
	border: 2px solid #707070 !important;
	background-color: #6667AB !important;
	transition: all .3s;
}
.mobile_main_slider_item{
	/*575*445*/
	width: 100%;
	height: calc(100vw / 575 * 445);
	display: block;
}
.mobile_main_slider_item a{
	display: block;
	width: 100%;
	height: 100%;
}
.mobile_main_slider_item img { 
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (max-width: 575px){
	#mobile_main_slider_section{
		display: block;
	}
}

/* ========== 首頁關於舒密品 ========== */
.welcome_about_wrap{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
}
.welcome_about_content_wrap{
	padding: 2% 0;
	width: 50%;
	height: calc(50vw / 950 * 550);
	background-image: url('../img/Rectangle 5052.png');
	background-position: left center;
}
@media (max-width: 575px){
	.welcome_about_content_wrap{
		padding: 20px 0;
	}
}
@media (max-width: 991px){
	.welcome_about_content_wrap{
		width: 100%;
		height: auto;
	}
}
.welcome_about_title_wrap{
	color: #FFFFFF;
	padding-left: 18%;
	margin-bottom: 2%;
}
.welcome_about_title_wrap.animation{
	animation-name: ani_slideBottom;
	animation-duration: 2s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
@media (max-width: 1199px){
	.welcome_about_title_wrap{
		/* padding-left: 100px; */
	}
}
@media (max-width: 575px){
	.welcome_about_title_wrap{
		padding-left: 20px;
	}
}
.welcome_about_title_zh{
	font-size: 26px;
}
.welcome_about_title_en_wrap{
	padding-left: 25%;
	display: flex;
	align-items: center;
}
@media (max-width: 1199px){
	.welcome_about_title_en_wrap{
		/* padding-left: 150px; */
	}
}
@media (max-width: 575px){
	.welcome_about_title_en_wrap{
		padding-left: 20px;
	}
}
.welcome_about_title_en{
	font-size: 26px;
	margin-right: 20px;
}
.welcome_about_title_line{
	flex-grow: 1;
	height: 2px;
	background-color: #FFFFFF;
}
.welcome_about_pic_wrap{
	width: 50%;
}
@media (max-width: 991px){
	.welcome_about_pic_wrap{
		/* display: none; */
		width: 100%;
	}
}
.welcome_about_img{
	width: 100%;
	/* height: 550px; */
	vertical-align: top;
	height: calc(50vw / 950 * 550);
	object-fit: cover;
}
@media (max-width: 991px){
	.welcome_about_img{
		height: calc(100vw / 950 * 550);
	}
}
.welcome_about_box{
	height: 75%;
	border-top: 3px solid #FFFFFF;
	border-left: 3px solid #FFFFFF;
	border-bottom: 3px solid #FFFFFF;
	border-top-left-radius: 14px;
	border-bottom-left-radius: 14px;
	margin-left: 20%;
	padding: 2% 0;
}
.welcome_about_box.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-delay: .5s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
@media (max-width: 1199px){
	.welcome_about_box{
		/* margin-left: 80px; */
		/* height: 250px; */
	}
}
@media (max-width: 575px){
	.welcome_about_box{
		margin-left: 40px;
		height: 200px;
	}
}
.welcome_about_box_text{
	padding-left: 8%;
	height: 100%;
	width: 110%;
	border-top-left-radius: 14px;
	border-bottom-left-radius: 14px;
	background-color: #FFFFFF;
	left: -30px;
	opacity: 0.5;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 22px;
	line-height: 1.5;
}
@media (max-width: 1250px){
	.welcome_about_box_text{
		font-size: 20px;
	}
}
@media (max-width: 575px){
	.welcome_about_box_text{
		font-size: 18px;
		padding-left: 50px;
	}
}
.welcome_about_box_content{
	width: 80%;
}
@media (max-width: 575px){
	.welcome_about_box_content{
		width: 90%;
	}
}
.welcome_about_text{
	height: 165px;
	color: #000000;
	overflow: auto;
}
@media (max-width: 1199px){
	.welcome_about_text{
		height: 125px;
	}
}
@media (max-width: 991px){
	.welcome_about_text{
		height: 165px;
	}
}
@media (max-width: 575px){
	.welcome_about_text{
		height: 135px;
	}
}
.welcome_about_text::-webkit-scrollbar {
	width: 5px;
}  
.welcome_about_text::-webkit-scrollbar-track {
	background: #ddd;
}  
.welcome_about_text::-webkit-scrollbar-thumb {
	background: #76779C; 
}
.welcome_about_btn_wrap{
	text-align: end;
}
.welcome_about_btn{
	color: #000000;
	border-bottom: 1px solid #000000;
}
.welcome_about_btn:hover{
	color: #000000;
	opacity: 0.7;
}
/* ========== 首頁產品專區 ========== */
.welcome_product_wrap{
	padding: 70px 0;
}
@media (max-width: 767px){
	.welcome_product_wrap{
		padding: 50px 0;
	}
}
.welcome_product_title_wrap{
	display: flex;
	align-items: center;
	margin-bottom: 80px;
}
.welcome_product_title_wrap.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
.welcome_product_title_line{
	flex-grow: 1;
	height: 2px;
	background-color: #6667AB;
}
.welcome_product_title{
	color: #6667AB;
	text-align: center;
	margin: 0 20px;
}
.welcome_product_title_zh{
	font-size: 26px;
}
.welcome_product_title_en{
	font-size: 26px;
}
.welcome_product_pic_wrap{
	width: 100%;
	margin-bottom: 20px;
	overflow: hidden;
}
.welcome_product_img{
	/* 497 * 315 */
	width: 100%;
	height: 315px;
	object-fit: cover;
	transition: all .3s;
}
@media (max-width: 1699px){
	.welcome_product_img{
		height: 287.9px;
	}
}
@media (max-width: 1499px){
	.welcome_product_img{
		height: 253.66px;
	}
}
@media (max-width: 1399px){
	.welcome_product_img{
		height: 215.61px;
	}
}
@media (max-width: 1199px){
	.welcome_product_img{
		height: 196.59px;
	}
}
@media (max-width: 991px){
	.welcome_product_img{
		height: 156.63px;
	}
}
@media (max-width: 767px){
	.welcome_product_img{
		height: 142.68px;
	}
}
@media (max-width: 575px){
	.welcome_product_img{
		height: calc(((100vw - 70px) / 2) * 0.634146);
	}
}
.welcome_product_slick.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-delay: .5s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
.welcome_product_slick_item:hover .welcome_product_img{
	transform: scale(1.2);
}
@media (max-width: 767px){
	.welcome_product_slick_item:hover .welcome_product_img{
		transform: scale(1);
	}
}
.welcome_product_name{
	text-align: center;
	font-size: 22px;
	color: #000000;
}
.welcome_product_slick_item{
	padding: 30px 15px;
}
@media (max-width: 767px){
	.welcome_product_slick_item{
		padding: 15px;
	}
}
@media (max-width: 575px){
	.welcome_product_slick_item{
		padding: 10px;
	}
}
.slick-slide.lt1.welcome_product_slick_item{
	transform: translate(-15%, 0);
	margin-top: 40px;
}
.slick-slide.gt1.welcome_product_slick_item{
	transform: translate(15%, 0);
	margin-top: 40px;
}
.slick-slide.lt2.welcome_product_slick_item{
	transform: translate(-25%, 0);
	margin-top: 40px;
}
.slick-slide.gt2.welcome_product_slick_item{
	transform: translate(25%, 0);
	margin-top: 40px;
}
@media (max-width: 1699px){
	.slick-slide.lt1.welcome_product_slick_item{
		transform: translate(-15%, 0);
		margin-top: 36px;
	}
	.slick-slide.gt1.welcome_product_slick_item{
		transform: translate(15%, 0);
		margin-top: 36px;
	}
	.slick-slide.lt2.welcome_product_slick_item{
		transform: translate(-25%, 0);
		margin-top: 36px;
	}
	.slick-slide.gt2.welcome_product_slick_item{
		transform: translate(25%, 0);
		margin-top: 36px;
	}
}
@media (max-width: 1499px){
	.slick-slide.lt1.welcome_product_slick_item{
		transform: translate(-15%, 0);
		margin-top: 32px;
	}
	.slick-slide.gt1.welcome_product_slick_item{
		transform: translate(15%, 0);
		margin-top: 32px;
	}
	.slick-slide.lt2.welcome_product_slick_item{
		transform: translate(-25%, 0);
		margin-top: 32px;
	}
	.slick-slide.gt2.welcome_product_slick_item{
		transform: translate(25%, 0);
		margin-top: 32px;
	}
}
@media (max-width: 1399px){
	.slick-slide.lt1.welcome_product_slick_item{
		transform: translate(-15%, 0);
		margin-top: 25px;
	}
	.slick-slide.gt1.welcome_product_slick_item{
		transform: translate(15%, 0);
		margin-top: 25px;
	}
	.slick-slide.lt2.welcome_product_slick_item{
		transform: translate(-25%, 0);
		margin-top: 25px;
	}
	.slick-slide.gt2.welcome_product_slick_item{
		transform: translate(25%, 0);
		margin-top: 25px;
	}
}
@media (max-width: 767px){
	.slick-slide.lt1.welcome_product_slick_item{
		transform: translate(0);
		margin-top: 0;
	}
	.slick-slide.gt1.welcome_product_slick_item{
		transform: translate(0);
		margin-top: 0;
	}
	.slick-slide.lt2.welcome_product_slick_item{
		transform: translate(0);
		margin-top: 0;
	}
	.slick-slide.gt2.welcome_product_slick_item{
		transform: translate(0);
		margin-top: 0;
	}
}
.slick-slide.lt1.welcome_product_slick_item .welcome_product_pic_wrap,
.slick-slide.gt1.welcome_product_slick_item .welcome_product_pic_wrap,
.slick-slide.lt2.welcome_product_slick_item .welcome_product_pic_wrap,
.slick-slide.gt2.welcome_product_slick_item .welcome_product_pic_wrap{
	transform: scale(.9);
	margin-bottom: 0;
}
.slick-slide.slick-center.welcome_product_slick_item{
	transform: scale(1.2);
}
@media (max-width: 767px){
	.slick-slide.slick-center.welcome_product_slick_item{
		transform: scale(1);
	}
}
.slick-slide.slick-center.welcome_product_slick_item .welcome_product_name{
	color: #706BA4;
}
/* ========== 首頁中間icon圖片 ========== */
.middle_icon_pic_wrap{
	width: 100%;
	height: calc(100vw / 1920 * 200);
	display: flex;
	align-items: center;
}
.middle_icon_pic_wrap.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-delay: 0.5s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
@media (max-width: 767px){
	.middle_icon_pic_wrap{
		height: calc(100vw / 430 * 300);
	}
}
.middle_icon_pic_mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #cdcadb;
	z-index: 1;
	opacity: 0.3;
}
.middle_pic_wrap{
	width: 100%;
}
.middle_img{
	width: 100%;
	height: calc(100vw / 1920 * 200);
	object-fit: cover;
}
@media (max-width: 767px){
	.middle_img{
		display: none;
	}
}
.middle_img_mobile{
	width: 100%;
	height: calc(100vw / 430 * 300);
	object-fit: cover;
	display: none;
}
@media (max-width: 767px){
	.middle_img_mobile{
		display: block;
	}
}
.middle_icon_wrap{
	width: 100%;
	color: #FFFFFF;
	position: absolute;
	z-index: 2;
}
@media (max-width: 767px){
	.middle_icon_wrap{
		/* height: 100%;
		display: flex;
		align-items: center; */
	}
}
.middle_icon_list{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}
@media (max-width: 767px){
	.middle_icon_list{
		height: 100%;
	}
}
.middle_icon_item{
	text-align: center;
}
@media (max-width: 767px){
	.middle_icon_item{
		width: 50%;
	}
	.middle_icon_list .middle_icon_item:first-child{
		margin-bottom: 25px;
	}
	.middle_icon_list .middle_icon_item:nth-child(2){
		margin-bottom: 25px;
	}
}
.middle_icon{
	margin-bottom: 30px;
}
@media (max-width: 1399px){
	.middle_icon{
		margin-bottom: 25px;
	}
}
@media (max-width: 1199px){
	.middle_icon{
		margin-bottom: 15px;
	}
}
.middle_icon i{
	font-size: 75px;
}
@media (max-width: 1399px){
	.middle_icon i{
		font-size: 65px;
	}
}
@media (max-width: 1199px){
	.middle_icon i{
		font-size: 50px;
	}
}
.middle_text{
	font-size: 24px;
}
.welcome_product_prev_btn,
.welcome_product_next_btn{
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	color: #9D9BB0;
	font-size: 80px;
	opacity: 0.7;
	transition: all .3s;
	z-index: 3;
}
@media (max-width: 1977px){
	.welcome_product_prev_btn,
	.welcome_product_next_btn{
		font-size: 70px;
	}
}
@media (max-width: 1399px){
	.welcome_product_prev_btn,
	.welcome_product_next_btn{
		font-size: 60px;
	}
}
@media (max-width: 767px){
	.welcome_product_prev_btn,
	.welcome_product_next_btn{
		top: auto;
		bottom: -50px;
		font-size: 50px;
	}
}
.welcome_product_prev_btn:hover,
.welcome_product_next_btn:hover{
	opacity: 1;
}
.welcome_product_prev_btn{
	left: -5%;
}
.welcome_product_next_btn{
	right: -5%;
}
@media (max-width: 1750px){
	.welcome_product_prev_btn{
		left: -2%;
	}
	.welcome_product_next_btn{
		right: -2%;
	}
}
@media (max-width: 767px){
	.welcome_product_prev_btn{
		left: 0;
	}
	.welcome_product_next_btn{
		right: 0;
	}
}
.welcome_product_slick{
}

/* ========== 首頁最新消息 ========== */
.welcome_news_wrap{
	padding: 100px 0;
}
@media (max-width: 575px){
	.welcome_news_wrap{
		padding: 50px 0;		
	}
}
.welcome_news_title{
	color: #605584;
	margin-bottom: 75px;
}
.welcome_news_title.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
@media (max-width: 991px){
	.welcome_news_title{
		margin-bottom: 40px;
	}
}
@media (max-width: 767px){
	.welcome_news_title{
		margin-bottom: 25px;
	}
}
.welcome_news_title_zh{
	font-size: 30px;
}
.welcome_news_title_en{
	font-size: 26px;
}
.welcome_news_title_en_wrap{
	display: flex;
	align-items: center;
}
.welcome_news_title_en{
	margin-right: 10px;
}
.welcome_news_title_line{
	flex-grow: 1;
	height: 3px;
	background-color: #605584;
}
.welcome_news_list_wrap{
	display: flex;
	flex-wrap: wrap;
}
.welcome_news_list_wrap.animation{
	animation-name: ani_slideBottom;
	animation-duration: 1s;
	animation-delay: .5s;
	animation-fill-mode: both;
	animation-timing-function: ease-out;
}
.welcome_news_left{
	width: 50%;
}
@media (max-width: 991px){
	.welcome_news_left{
		width: 100%;
	}
}
.welcome_news_right{
	width: 50%;
	display: flex;
	flex-wrap: wrap;
}
@media (max-width: 991px){
	.welcome_news_right{
		width: 100%;
	}
}
.welcome_news_item{
	display: block;
	padding: 25px 30px;
}
@media (max-width: 1399px){
	.welcome_news_item{
		padding: 15px;
	}
}
@media (max-width: 575px){
	.welcome_news_item{
		padding: 10px;
	}
}
.welcome_news_right .welcome_news_item{
	padding: 25px;
	padding-bottom: 5px;
}
@media (max-width: 1399px){
	.welcome_news_right .welcome_news_item{
		padding: 15px;
		padding-bottom: 5px;
	}
}
@media (max-width: 575px){
	.welcome_news_right .welcome_news_item{
		padding: 10px;
	}
}
.welcome_news_item:hover{
	background-color: #76779C;
}
.welcome_news_img{
	width: 100%;
	height: 485px;
	object-fit: cover;
}
@media (max-width: 1699px){
	.welcome_news_img{
		height: 441.82px;
	}
}
@media (max-width: 1499px){
	.welcome_news_img{
		height: 388.66px;
	}
}
@media (max-width: 1399px){
	.welcome_news_img{
		height: 348.8px;
	}
}
@media (max-width: 1199px){
	.welcome_news_img{
		height: 318.9px;
	}
}
@media (max-width: 991px){
	.welcome_news_img{
		height: calc(81vw / 730 * 485);
	}
}
@media (max-width: 767px){
	.welcome_news_img{
		height: 318.9px;
	}
}
@media (max-width: 575px){
	.welcome_news_img{
		height: calc(91vw / 730 * 485);
	}
}
.welcome_news_item:hover .news_text{
	color: #FFFFFF;
}
.welcome_news_item .news_title{
	margin-bottom: 15px;
}
.welcome_news_intro{
	height: 50px;
	padding-left: 32px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	white-space: normal;
	overflow: hidden;
	font-size: 20px;
	margin-bottom: 10px;
}
@media (max-width: 575px){
	.welcome_news_intro{
		padding-left: 23px;
	}
}
.welcome_news_mask{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #787878;
	z-index: 2;
	opacity: 0;
	transition: all .3s;
}
.welcome_news_item:hover .welcome_news_mask{
	opacity: 0.3;
}
.welcome_news_btn{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	color: #FFFFFF;
	font-size: 20px;
	padding: 25px 80px;
	border: 2px solid #FFFFFF;
	border-radius: 22px;
	z-index: 3;
	opacity: 0;
	transition: all .3s;
}
.welcome_news_right .welcome_news_btn{
	padding: 15px 50px;
}
.welcome_news_btn:hover{
	background-color: #76779C;
}
.welcome_news_item:hover .welcome_news_btn{
	opacity: 1;
}
.welcome_news_img_right{
	width: 100%;
	height: 230px;
	object-fit: cover;
}
@media (max-width: 1699px){
	.welcome_news_img_right{
		height: 208.33px;
	}
}
@media (max-width: 1499px){
	.welcome_news_img_right{
		height: 181.67px;
	}
}
@media (max-width: 1399px){
	.welcome_news_img_right{
		height: 165px;
	}
}
@media (max-width: 1199px){
	.welcome_news_img_right{
		height: 150px;
	}
}
@media (max-width: 991px){
	.welcome_news_img_right{
		height: calc(39vw / 345 * 230);
	}
}
@media (max-width: 767px){
	.welcome_news_img_right{
		height: 150px;
	}
}
@media (max-width: 575px){
	.welcome_news_img_right{
		height: calc(44vw / 345 * 230);
	}
}
.welcome_news_right .news_title{
	font-size: 18px;
	margin-bottom: 8px;
}
.welcome_news_right .news_intro{
	font-size: 16px;
	height: 24px;
}
/**************************welcome**************************/

/**************************about**************************/
.about_page_wrap{
	border-top: 2px solid #523F90;
	padding-top: 90px;
}
@media (max-width: 991px){
	.about_page_wrap{
		padding-top: 50px;
	}
}
.about_btn_wrap{
	margin: 150px 0;
}
@media (max-width: 991px){
	.about_btn_wrap{
		margin: 100px 0;
	}
}
@media (max-width: 767px){
	.about_btn_wrap{
		margin: 50px 0;
	}
}
/**************************about**************************/

/**************************news list**************************/
.news_page_wrap{
	border-top: 2px solid #523F90;
	padding-top: 40px;
}
@media (max-width: 767px){
	.news_page_wrap{
		padding-top: 25px;
	}
}
.news_list_warp{
	display: flex;
}
.news_item{
	display: block;
	margin-bottom: 70px;
	padding: 25px;
}
@media (max-width: 1699px){
	.news_item{
		padding: 20px;
	}
}
@media (max-width: 1199px){
	.news_item{
		padding: 10px;
		margin-bottom: 50px;
	}
}
@media (max-width: 991px){
	.news_item{
		padding: 15px;
		margin-bottom: 50px;
	}
}
@media (max-width: 767px){
	.news_item{
		padding: 0;
		margin-bottom: 25px;
	}
}
.news_item:hover{
	background-color: #76779C;
}
.news_pic_warp{
	margin-bottom: 10px;
	box-shadow: 5px 3px 6px rgba(0, 0, 0, 0.16);
}
.news_date{
	position: absolute;
	top: 20px;
	left: 0;
	z-index: 2;
	font-size: 20px;
	color: #FFFFFF;
	background-color: #523F90;
	padding: 8px 25px;
}
@media (max-width: 575px){
	.news_date{
		top: 0;
		font-size: 16px;
		padding: 3px 10px;
	}
}
.news_img{
	width: 100%;
	height: 310px;
	object-fit: cover;
}
@media (max-width: 1699px){
	.news_img{
		height: 287.57px;
	}
}
@media (max-width: 1499px){
	.news_img{
		height: 251.68px;
	}
}
@media (max-width: 1399px){
	.news_img{
		height: 211.31px;
	}
}
@media (max-width: 1199px){
	.news_img{
		height: 204.58px;
	}
}
@media (max-width: 991px){
	.news_img{
		height: calc(39vw / 460 * 310);
	}
}
@media (max-width: 767px){
	.news_img{
		height: 163.53px;
	}
}
@media (max-width: 575px){
	.news_img{
		height: calc(45vw / 460 * 310);
	}
}
.news_text{
	color: #523F90;
}
.news_item:hover .news_text{
	color: #FFFFFF;
}
.news_title{
	font-size: 22px;
	font-weight: bold;
	overflow: hidden; 
	text-overflow:ellipsis;
	white-space: nowrap;
	margin-bottom: 5px;
}
@media (max-width: 575px){
	.news_title{
		font-size: 18px;
	}
}
.news_title span{
	margin-right: 10px;
}
@media (max-width: 575px){
	.news_title span{
		margin-right: 5px;
	}
}
.news_intro{
	padding-left: 32px;
	font-size: 20px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	white-space: normal;
	overflow: hidden;
}
@media (max-width: 575px){
	.news_intro{
		padding-left: 23px;
		font-size: 16px;
	}
}
.home_btn_wrap{
	margin-top: 100px;
	text-align: center;
}
@media (max-width: 767px){
	.home_btn_wrap{
		margin-top: 50px;
	}
}
@media (max-width: 575px){
	.home_btn_wrap{
		margin-top: 30px;
	}
}
/**************************news list**************************/

/**************************news content**************************/
.news_content_title{
	font-size: 30px;
	text-align: center;
	font-weight: bold;
	color: #523F90;
	margin-bottom: 40px;
}
@media (max-width: 991px){
	.news_content_title{
		margin-bottom: 25px;
	}
}
@media (max-width: 767px){
	.news_content_title{
		font-size: 25px;
	}
}
.news_content_date{
	font-size: 24px;
	text-align: center;
	color: #7C7497;
	margin-bottom: 60px;
}
@media (max-width: 991px){
	.news_content_date{
		margin-bottom: 40px;
	}
}
@media (max-width: 767px){
	.news_content_date{
		font-size: 20px;
		margin-bottom: 40px;
	}
}
/**************************news content**************************/

/**************************product list**************************/
.product_page_wrap{
	
}
.product_navbar_wrap{
	width: 20%;
}
@media (max-width: 991px){
	.product_navbar_wrap{
		width: 100%;
	}
}
.product_navbar{
	position: sticky;
	top: 110px;
	left: 0;
}
@media (max-width: 991px){
	.product_navbar{
		display: none;
	}
}
.product_list{
	padding: 0;
	padding-top: 60px;
	border-top: 2px solid #523F90;
	width: 80%;
}
@media (max-width: 1199px){
	.product_list{
		padding-top: 40px;
	}
}
@media (max-width: 991px){
	.product_list{
		width: 100%;
		padding-right: calc(var(--bs-gutter-x) * .5);
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
}
@media (max-width: 575px){
	.product_list{
		padding-top: 20px;
	}
}
.product_item{
	display: block;
	margin-bottom: 60px;
}
@media (max-width: 991px){
	.product_item{
		margin-bottom: 50px;
	}
}
.product_pic_wrap{
	margin-bottom: 40px;
	overflow: hidden;
}
@media (max-width: 991px){
	.product_pic_wrap{
		margin-bottom: 20px;
	}
}
@media (max-width: 575px){
	.product_pic_wrap{
		margin-bottom: 15px;
	}
}
.product_pic_mask{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #8A8ABD;
	opacity: 0;
	z-index: 1;
	transition: all .3s;
}
.product_item:hover .product_pic_mask{
	opacity: 0.2;
}
.product_img{
	width: 100%;
	height: 260px;
	object-fit: cover;
	transition: all .3s;
}
@media (max-width: 1699px){
	.product_img{
		height: 238.11px;
	}
}
@media (max-width: 1499px){
	.product_img{
		height: 211.17px;
	}
}
@media (max-width: 1399px){
	.product_img{
		height: 180.85px;
	}
}
@media (max-width: 1199px){
	.product_img{
		height: 165.7px;
	}
}
@media (max-width: 991px){
	.product_img{
		height: 169.66px;
	}
}
@media (max-width: 767px){
	.product_img{
		height: 153.45px;
	}
}
@media (max-width: 575px){
	.product_img{
		height: calc(45vw / 410 * 260)
	}
}
.product_item:hover .product_img{
	transform: scale(1.2);
}
.product_name{
	font-size: 22px;
	font-weight: bold;
	color: #000000;
	text-align: center;
	transition: all .3s;
}
.product_item:hover .product_name{
	color: #6667AB;
} 

.page_navbar_link{
	display: block;
	margin-bottom: 30px;
	font-size: 24px;
	font-weight: bold;
	width: 70%;
	color: #000000;
	padding-bottom: 10px;
	border-bottom: 2px solid transparent;
}
@media (max-width: 1499px){
	.page_navbar_link{
		width: 90%;
	}
}
@media (max-width: 1399px){
	.page_navbar_link{
		width: 80%;
		font-size: 20px;
	}
}
.page_navbar_link::after{
	content: '';
	position: absolute;
	bottom: -4px;
	right: 0;
	width: 0;
	height: 0;
	background-color: #6667AB;
}
.page_navbar_link:hover,
.page_navbar_link.active{
	color: #6667AB;
	border-bottom: 2px solid #6667AB;
}
.page_navbar_link:hover::after,
.page_navbar_link.active::after{
	width: 6px;
	height: 6px;
}
/**************************product list**************************/

/**************************product content**************************/
.product_content_name{
	font-size: 30px;
	font-weight: bold;
	color: #6667AB;
	margin-bottom: 40px;
	text-align: center;
}
.product_btn_wrap{
	margin: 110px 0;
}
.product_pic_main_wrap{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 120px;
}
@media (max-width: 991px){
	.product_pic_main_wrap{
		margin-bottom: 80px;
	}
}
.product_pic_big{
	width: 72%;
	/* padding-top: calc(100% / 923.89 * 600); */
}
@media (max-width: 767px){
	.product_pic_big{
		display: none;
	}
}
.product_pic_img{
	width: 100%;
	height: 600px;
	object-fit: cover;
}
@media (max-width: 1699px){
	.product_pic_img{
		height: 551.36px;
	}
}
@media (max-width: 1499px){
	.product_pic_img{
		height: 491.51px;
	}
}
@media (max-width: 1399px){
	.product_pic_img{
		height: 424.19px;
	}
}
@media (max-width: 1199px){
	.product_pic_img{
		height: 390.52px;
	}
}
.product_slick_wrap{
	width: 28%;
	padding: 0 25px;
}
@media (max-width: 767px){
	.product_slick_wrap{
		width: 100%;
		padding: 0;
	}
}
.product_slick_pic{
	width: 100%;
	margin-bottom: 15px;
	cursor: pointer;
}
@media (max-width: 767px){
	.product_slick_pic{
		width: 100%;
		padding: 0 10px;
		margin-bottom: 0;
		cursor: pointer;
	}
}
.slick-slide div:last-child .product_slick_pic{
	margin-bottom: 0;
}
.product_slick_img{
	width: 100%;
	height: calc(570px / 3);
	object-fit: cover;
}
@media (max-width: 1699px){
	.product_slick_img{
		height: calc(521.36px / 3);
	}
}
@media (max-width: 1499px){
	.product_slick_img{
		height: calc(461.5px / 3);
	}
}
@media (max-width: 1399px){
	.product_slick_img{
		height: calc(394.19px / 3);
	}
}
@media (max-width: 1199px){
	.product_slick_img{
		height: calc(360.52px / 3);
	}
}
@media (max-width: 767px){
	.product_slick_img{
		height: 144.5px;
	}
}
@media (max-width: 575px){
	.product_slick_img{
		height: calc(((100vw - 15px) / 2 - 20px) / 309 * 190);
	}
}
.product_slick .slick-prev,
.product_slick .slick-next{
	background-color: #E1E1E1;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	top: auto;
	bottom: -70px;
	opacity: .7;
	transition: all 0.4s ease-in-out;
}
.product_slick .slick-prev:hover,
.product_slick .slick-next:hover{
	opacity: 1;
}
.product_slick .slick-prev{
	left: 0;
}
.product_slick .slick-next{
	right: 0;
}
.product_slick .slick-prev:before{
	content: '';
	position: absolute;
	top: 20px;
	left: 10px;
	width: 30px;
    height: 2px;
	transform: rotate(-45deg);
	transform-origin: left;
    background: #523F90;
	transition: all 0.4s ease-in-out;
}
.product_slick .slick-next:before{
	content: '';
	position: absolute;
	top: 20px;
	right: 10px;
	width: 30px;
    height: 2px;
	transform: rotate(45deg);
	transform-origin: right;
    background: #523F90;
	transition: all 0.4s ease-in-out;
}
.product_slick .slick-prev::after{
	content: '';
	position: absolute;
	top: 20px;
	left: 10px;
	height: 2px;
	width: 85px;
	background: #523F90;
	opacity: 0.75;
	transition: all 0.4s ease-in-out;
}
.product_slick .slick-next::after{
	content: '';
	position: absolute;
	top: 20px;
	right: 10px;
	height: 2px;
	width: 85px;
	background: #523F90;
	opacity: 0.75;
	transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px){
	.product_slick .slick-prev::after{
		content: '';
		position: absolute;
		top: 20px;
		left: 10px;
		height: 2px;
		width: 60px;
		background: #523F90;
		opacity: 0.75;
		transition: all 0.4s ease-in-out;
	}
	.product_slick .slick-next::after{
		content: '';
		position: absolute;
		top: 20px;
		right: 10px;
		height: 2px;
		width: 60px;
		background: #523F90;
		opacity: 0.75;
		transition: all 0.4s ease-in-out;
	}
}
.product_slick .slick-prev:hover::after,
.product_slick .slick-next:hover::after{
	opacity: 1;
}
/**************************product content**************************/

/**************************contact**************************/
.contact_top_content{
	padding: 55px 0;
	margin-bottom: 35px;
}
@media (max-width:991px){
	.contact_top_content{
		padding: 20px 0;
		margin-bottom: 35px;
	}
}
.contact_top_pic_wrap{
	margin-top: 50px;
}
@media (max-width:991px){
	.contact_top_pic_wrap{
		margin-top: 20px;
	}
}
.contact_top_img{
	width: 100%;
	height: 415px;
	object-fit: cover;
}
@media (max-width: 1699px){
	.contact_top_img{
		height: 380px;
	}
}
@media (max-width: 1499px){
	.contact_top_img{
		height: 340px;
	}
}
@media (max-width: 1399px){
	.contact_top_img{
		height: 290px;
	}
}
@media (max-width: 1199px){
	.contact_top_img{
		height: 270px;
	}
}
@media (max-width: 991px){
	.contact_top_img{
		height: 220px;
	}
}
@media (max-width: 767px){
	.contact_top_img{
		height: 133.96px;
	}
}
@media (max-width: 575px){
	.contact_top_img{
		height: calc(95vw / 1580 * 415);
	}
}
.contact_us_wrap{
	margin-bottom: 130px;
}
.contact_html_wrap{
	display: flex;
	align-items: center;
	height: 100%;
}
@media (max-width: 767px){
	.contact_html_wrap{
		padding-bottom: 30px;
	}
}
.form_adorn{
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}
.form_text{
	font-size: 24px;
	font-weight: bold;
	color: #6667AB;
	margin-right: 10px;
}
.form_line{
	flex-grow: 1;
	height: 1px;
	background-color: #6667AB;
}
.form_line::after{
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 5px;
	height: 5px;
	background-color: #6667AB;
	transform: translate(0, -50%);
}
.contact_us_form{
	/* padding: 0 20px; */
}
@media (max-width: 767px){
	.contact_us_form{
		margin-bottom: 20px;
	}
}
.input_group{
	margin-bottom: 15px;
}
.input_label{
	color: #6667AB;
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}
@media (max-width: 991px){
	.input_label{
		font-size: 20px;
	}
}
@media (max-width: 767px){
	.input_label{
		font-size: 18px;
	}
}
.input_style{
	font-size: 20px;
	background-color: #F3F3F3;
	border: 1px solid #6667AB;
	border-radius: 3px;
	padding: 10px 5px;
	width: 100%;
}
@media (max-width: 767px){
	.input_style{
		font-size: 18px;
		padding: 5px 5px;
	}
}
.g_recaptcha_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media (max-width: 991px){
	.g_recaptcha_wrapper{
		display: flex;
		align-items: center;
		flex-direction: column;
	}
	.g-recaptcha{
		margin-bottom: 10px;
	}
}
.contact_btn{
	/* structure */
	display: inline-block;
	vertical-align: middle;
	margin: 0;
	padding: 10px 40px;
	
	/* style */
	font-size: 22px;
	text-align: center;
	
	letter-spacing: 0;
	text-decoration: none;
    /* optional */
	color: #523F90;
	background-color: #FFFFFF;
	border: 1px solid #523F90;
	border-radius: 9px;
	outline: none;
    transition: all 0.3s;
}
.contact_btn:hover{
	color: #FFFFFF;
	background-color: #523F90;
}
.contact_submit{
	text-align: center;
	height: 100px;
}
/***************************contact**************************/

/****************************foot***************************/
.go_top{
	position: fixed;
	bottom: 10%;
	right: 3%;
	z-index: 2;
	display: none;
}
@media (max-width: 991px){
	.go_top:hover{
		
	}
}
@media (max-width: 1699px){
	.go_top{
		/* right: -50px; */
	}
}
@media (max-width: 767px){
	.go_top{
		/* padding: 8px 16px;
		font-size: 16px; */
		/* right: -30px; */
	}
}
@media (max-width: 575px){
	.go_top{
		bottom: 10%;
	}
}
.go_top.active{
	display: block;
}
.go_top i{
	font-size: 60px;
	color: #523F90;
	background-color: #FFFFFF;
	border-radius: 10px;
	transition: all .3s;
}
@media (max-width: 991px){
	.go_top i{
		font-size: 40px;
	}
}
.go_top:hover i{
	color: #FFFFFF;
	background-color: #523F90;
}

.footer{
	background-color: #76779C;
	font-size: 20px;
	padding-top: 30px;
}
@media (max-width: 991px){
	.footer{
		
	}
}
.foot_welcome_link_wrap{
	text-align: center;
	margin-bottom: 15px;
}
.foot_welcome_link{
}
@media (max-width: 991px){
	.foot_welcome_link{
		/* top: -100px; */
	}
}
@media (max-width: 575px){
	.foot_welcome_link{
		/* top: -70px; */
	}
}
.foot_logo{
	width: 200px;
	height: 100px;
	object-fit: contain;
}

.foot_info_warp{
	text-align: center;
	color: #FFFFFF;
}
@media (max-width: 767px){
	.foot_info_warp{
		font-size: 18px;
	}
}
.info_text{
	margin-bottom: 15px;
}
.foot_social_wrap{
	text-align: center;
	margin-bottom: 30px;
}
@media (max-width: 991px){
	.foot_social_wrap{
		margin-bottom: 15px;
	}
}
.foot_social_link{
	display: inline-block;
	margin: 0 10px;
	color: #FFFFFF;
	font-size: 35px;
}
.foot_social_link:hover{
	color: #FCD68D;
}
.foot_info_warp a{
	color: #FFFFFF;
}
.foot_info_warp a:hover{
	color: #FCD68D;
}
.foot_copyright{
	text-align: center;
	color: #FFFFFF;
	background-color: #605584;
	padding: 15px 0;
}
@media (max-width: 767px){
	.foot_copyright{
		font-size: 18px;
		display: flex;
		flex-direction: column;
	}
}
.foot_copyright a{
	color: #FFFFFF;
}
.foot_copyright a:hover{
	color: #FCD68D;
}
/****************************foot***************************/