@import url("layout.css");
@import url("font.css");

/*--== USER ==--*/
.user_editor {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: static !important;
}

.user_editor table {
  width: 100% !important;
}

.user_editor img {
  max-width: 100% !important;
}

/*--== GO TOP ==--*/
#gotop{
	width: 35px;
	height: 70px;
	float: left;
	position: fixed;
	bottom: 445px;
	right: 30px;
	background-image: url("../images/icon/top.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	border-radius: 0%;
	display: none;
	transition: all 0.3s ease-in-out;
	z-index: 9999;
}
/*--==MOBILE==--*/
.mobile-nav.show > ul > li > a.mobile_tit{
	width: calc( 100% - 40px );
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
}
.show {
	right:0%;
	opacity:1;
	transition: .3s ease;
  }
  
  .hide {
	opacity:0;
	right:100%;
	transition: .3s ease;
  }
.mobile-nav {
	background:rgba(255,255,255,1);
	position:fixed;
	top:0;
	width:100%;
	height:100%;
	text-align:center;
	overflow-y: auto;
	transition: .3s ease;
	z-index: 99;
	padding-top: 50px;
	/*  transition: opacity .5s ease;
	-moz-transition: opacity .5s ease;
	-webkit-transition: opacity .5s ease;
	transition:left .5s ease-in-out;*/
  }
  .mobile-nav > ul{
	position:relative;
	list-style:none;
	width: 100%;
	float: left;
  }
  .mobile-nav > ul > li{
	  width: 100%;
	  float: left;
	  position: relative; 
	  display: flex;
	  align-items: center;
	  flex-wrap: wrap;
  }
  .mobile-nav > ul > li > a {
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	color: #555555;
	opacity: 0;
	width: 100%;
	float: left;
	transition:opacity .9s ease-in-out;
  }
  
  .mobile-nav.show > ul > li > a,.mobile-nav.hide > ul > li > a {
	text-align:left;
	font-size: 16px;
	font-weight: 600;
	color: #555555;
	width: 100%;
	float: left;
	padding: 18px 20px;
	border-bottom: 1px solid #f1f1f1;
	opacity:1;
  }
  .mobile{ display: none;}
  .mobile_link{
	  width: 100%;
	  float: left;
	  position: relative;
	  top: 20%;
	  margin: 20px 0;
	  padding: 30px 0;
  }
  .mobile_link > ul{
	  width: 100%;
	  float: left;
	  display: flex;
	  justify-content: center;
	  align-items: center;
  }
  .mobile_link > ul a{
	  width: 25px;
	  height: 25px;
	  font-size: 24px;
	  line-height: 30px;
	  font-weight: 600;
	  font-family: "Microsoft JhengHei";
	  color: #333333;
	  margin: 0 15px;
	  float: left;
  }

/*hamburger menu*/
.hamburger-menu {
	z-index: 99999999;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
	cursor: pointer;
	background-color: rgba( 255,255,255,0.6 );
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: inherit;
}

.bar,
.bar:after,
.bar:before {
	width: 20px;
    height: 2px;
    float: left;;
}

.bar {
	position: relative;
    transform: translateY(25px);
    background-color: #00727c;
    transition: all 0ms 300ms;
    top: -5px;
}

.bar.animate {
  background: rgba(255, 255, 255, 0); 
}

.bar:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 6px;
	background-color: #00727c;
	transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	background-color: #00727c;
	transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
	top: 0;
	transform: rotate(45deg);
	transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}

.bar.animate:before {
	bottom: 0;
	transform: rotate(-45deg);
	transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}

/*--==UNIT==--*/
.unit_banner_all{
	width: 100%;
	float: left;
}
.unit_banner, .unit_banner > img{
	width: 100%;
	float: left;
}
.unit_all{
	width: 100%;
	float: left;
	background-color: #32a99c;
	box-shadow: 0px 3px 5px rgba( 0,0,0,0.2 );
}
.unit_all2{
	width: 100%;
	float: left;
}
.unit_main{
	width: 100%;
	display: inline-flex;
	justify-content: space-between;
	padding: 20px 0;
}
.unit_main > .title{
	width: auto;
	font-size: 28px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 600;
}
.unit_main > ul{ 
	width: 50%; 
	float: left;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
.unit_main > ul > li{
	width: auto;
	float: left;
	font-size: 13px;
	line-height: 18px;
	color: #ffffff;
}
.ma{ margin: 0 5px;}
.unit_main > ul > li >a{ color: #ffffff; transition: all 0.3s ease-out;}
.unit_main > ul > li >a:hover{color: #00727c; transition: all 0.3s ease-out;}
.unit_main2{
	width: 100%;
	display: inline-flex;
	justify-content: flex-end;
	padding: 26px 0;
}

.unit_main2 > ul{ 
	width: 50%; 
	float: left;
	display: inline-flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: wrap;
}
.unit_main2 > ul > li{
	width: auto;
	float: left;
	font-size: 13px;
	line-height: 18px;
	color: #ffffff;
}
.ma{ margin: 0 5px;}
.unit_main2 > ul > li >a{ color: #ffffff; transition: all 0.3s ease-out;}
.unit_main2 > ul > li >a:hover{color: #00727c; transition: all 0.3s ease-out;}
.unit_page_box {
	width: 100%;
	float: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin-bottom: 60px;
}
  .unit_page_box > a, .unit_page_box .page_box {
	padding: 6px 12px;
	margin: 0 4px;
	background-color: #fff;
	color: #222222;
	font-size: 15px;
	font-weight: 600;
	line-height: 20px;
	border-radius: 50%;
  }
  
  .unit_page_box > a:hover, .unit_page_box .page_box:hover {
	background-color: #fec04b;
  }
  
  .unit_page_box .page_box {
	background-color: #fec04b;
  }
  .unit_page_box > a.tt{ padding: 6px 11px;}

  .page02{
	width: auto;
	height: 36px;
	position: relative;
	margin-left: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;

  }
  .page02::before{
	content: "";
	width: 5px;
	height: 36px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #fec04b;
  }
  .page02 span{
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	color: #555;
	padding: 0 8px 0 15px;
  }
  .input-style{
	width: 50px;
	height: 36px;
	color: #222;
	background-color: #e1e1e1;
	border-radius: 5px;
	border: none;
	padding: 5px 10px;
  }
  .unit_back_box {
	width: 100%;
	float: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
		-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
		-ms-flex-pack: center;
			justify-content: center;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	margin: 30px 0 60px 0;
  }
  
  .unit_back_box > a {
	padding: 8px 20px;
	margin: 0 3px;
	background-color: #555555;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 1px;
  }
  
  .unit_back_box > a:hover {
	background-color: #32a99c;
  }

/*--== HEADER ==--*/
.header{
	width: 100%;
	height: auto;
	position: absolute;
	top:0;
	left: 0;
	z-index: 999;
}
.header_main{
	width: 100%;
	height: auto;
	display:inline-flex;
	justify-content:space-between;
	padding: 25px 95px 0 95px;
}
.hea_logo{
	width: 130px;
	height: 55px;
	float: left;
}
.hea_logo > img{ width: 100%; height: auto; float: left; }
.hea_nav{
	width: auto;
	height: auto;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
}
.hea_nav > a{
	width: auto;
	height: auto;
	padding: 8px 25px;
	font-size: 18px;
	color: #ffffff;
	margin: 10px 5px;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}
.hea_nav > a:hover{
	background-color: #00727c;
	transition: all 0.4s ease-in-out;
}
/*--==INDEX==--*/
.ind_banner_all{
	width: 100%;
}
.ind_banner_box, .ind_banner, .ind_banner img{
	width: 100%;
	float: left;
}
.hea_about{
	width: 100%;
	height: auto;
	float: left;
	background-color: #f0f0f0;
	padding: 105px 0 90px;
}
.ind_ab_all{
	width: 100%;
	height: auto;
	position: relative;
}
.ind_ab_main{
	width: 100%;
	height: auto;
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}
.ind_ab_icon{
	width: 294px;
	height: auto;
	position: absolute;
	left: -73px;
	top:-20px;
}
.ind_ab_icon > img{ width: 100%; height: auto; float: left;}
.ind_ab_little{
	width: 155px;
	height: auto;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
	flex-wrap: wrap;
	margin-top: 65px;
}
.ind_ab_little > .en{
	width: auto;
	height: auto;
	font-size: 18px;
	line-height: 18px;
	font-family: "Verdana";
	color: #32a99c;
	font-weight: 300;
	margin: 20px 0 14px 0;
}
.ind_ab_little > .ch{
	width: auto;
	height: auto;
	position: relative;
	font-size: 36px;
	line-height: 36px;
	color: #00727c;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 40px;
}
.ind_ab_little > .ch::after{
	content: "";
	width: 65px;
	height: 2px;
	position: absolute;
	bottom: 0;
	right: 40px;
	background-color: #00727c;
}
.ind_ab_cont{
	width: 100%;
	height: auto;
	font-size: 18px;
	line-height: 28px;
	font-weight: 600;
	color: #666666;
	padding: 0 200px;
}
.ind_pro_all{
	width: 100%;
	height: auto;
	float: left;
}
.ind_pro_box{
	width: 100%;
	height: auto;
	float: left;
	position: absolute;
}
.ind_pro_bg{
	width: 100%;
	height: auto;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}
.ind_pro_bg::before{
	content: "";
	width: 100%;
	height: 134px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #f0f0f0;
	clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.ind_pro_bg::after{
	content: "";
	width: 100%;
	height: 134px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #ffffff;
	clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.ind_pro_main{
	width: 100%;
	height: auto;
	display: inline-flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 130px;
	margin-bottom: 215px;
}
.ind_pro_little{
	width: 155px;
	height: auto;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
	flex-wrap: wrap;
}
.ind_pro_little > .en{
	width: 100%;
	height: auto;
	font-size: 18px;
	line-height: 18px;
	font-family: "Verdana";
	color: #32a99c;
	font-weight: 300;
	margin: 20px 0 14px 0;
	text-align: center;
}
.ind_pro_little > .ch{
	width: auto;
	height: auto;
	position: relative;
	font-size: 36px;
	line-height: 36px;
	color: #00727c;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 40px;
}
.ind_pro_little > .ch::after{
	content: "";
	width: 65px;
	height: 2px;
	position: absolute;
	bottom: 0;
	right: 40px;
	background-color: #00727c;
}
.ind_pro_box2{
	width: 100%;
	height: auto;
	float: left;
}
.ind_acti_j {
	width: 100%;
	float: left;
}
.ind_acti_box{
	width: 100%;
	float: left;
}
.ind_acti{
	width: calc( 100% / 3 );
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_acti::before{
	content: "";
	width: 100%;
	height: 50px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: #00727c;
	opacity: 0.9;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_acti:nth-child(even){
	margin-top: 50px;
}
.ind_acti:hover.ind_acti::before{
	height: 100%;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_act_poto, .ind_act_poto >img{
	width: 100%;
	float: left;
}
.ind_act_poto, .ind_act_poto >img{
	width: 100%;
	float: left;
}
.ind_acti_type{
	width: 100%;
	position: absolute;
	top: 88%;
	left: 20px;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_acti:hover>.ind_acti_type{
	top: 55%;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_acti_type > .title{
	width: 100%;
	float: left;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 15px;
}
.ind_acti_type > .type{
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 24px;
	color: #ffffff;
}
.ind_mont_all{
	width: 100%;
	float: left;
	display: inline-flex;
	justify-content: center;
	justify-self: center;
	background: url("../images/bg/ind_bg2.jpg") no-repeat bottom left;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-attachment: fixed;
    padding: 110px 0 120px 0;
}
.ind_mont_main{
	width: 160px;
	height: auto;
	display: inline-flex;
	justify-content: center;
	justify-self: center;
	flex-wrap: wrap;
}
.ind_mont_main > .title{
	width: auto;
	font-size: 36px;
	line-height: 36px;
	margin-bottom: 18px;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 1px;
}
.ind_mont_main > a{
	width: 100%;
	height: auto;
	font-size: 18px;
	line-height: 50px;
	border-radius: 50px;
	color: #ffffff;
	font-family: "Verdana";
	background-color: #32a99c;
	text-align: center;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ind_mont_main > a:hover{
	background-color: #fec04b;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}

/*--==ABOUT==--*/
.ab_con{
	width: 100%;
	display: inline-flex;
	justify-content: center;
	justify-self: center;
	flex-wrap: wrap;
	padding: 25px 0;
	margin-bottom: 45px;
}
.tit_box{
	width: 100%;
	display: inline-flex;
	justify-content: center;
	justify-self: center;
	flex-wrap: wrap;
	margin: 40px 0 20px 0;
}
.tit_box > .title, .tit_box > .title2{
	width: auto;
	font-size: 18px;
	font-weight: 600;
	padding: 8px 30px;
	border-radius: 30px;
	background-color: #f1f1f1;
	color: #555555;
	margin: 0 5px;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.tit_box > .title{
	color: #fff;
	background-color:#00727c;
}
.tit_box > a:hover.title2{
	color: #fff;
	background-color:#00727c;
	transition: 0.3s ease;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
}
.ab_little{
	width: 300px;
	height: auto;
	float: left;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
	flex-wrap: wrap;
	margin-top: 65px;
}
.ab_little > .en{
	width: auto;
	height: auto;
	font-size: 18px;
	line-height: 18px;
	font-family: "Verdana";
	color: #32a99c;
	font-weight: 300;
	margin: 20px 0 14px 0;
}
.ab_little > .ch{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 36px;
	line-height: 36px;
	color: #00727c;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 40px;
	text-align: center;
}
.ab_little > .ch::after{
	content: "";
	width: 100px;
	height: 2px;
	position: absolute;
	bottom: 0;
	right: calc( 50% - 50px );
	background-color: #00727c;
}
.ab_little2{
	width: 100%;
	height: auto;
	float: left;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
	flex-wrap: wrap;
}
.ab_little2 > .en{
	width: auto;
	height: auto;
	font-size: 18px;
	line-height: 18px;
	font-family: "Verdana";
	color: #32a99c;
	font-weight: 300;
	margin: 20px 0 14px 0;
}
.ab_little2 > .ch{
	width: 100%;
	height: auto;
	position: relative;
	font-size: 36px;
	line-height: 36px;
	color: #00727c;
	font-weight: 600;
	padding-bottom: 15px;
	margin-bottom: 40px;
	text-align: center;
}
.ab_little2 > .ch::after{
	content: "";
	width: 100px;
	height: 2px;
	position: absolute;
	bottom: 0;
	right: calc( 50% - 50px );
	background-color: #00727c;
}

/*--==ACHIEVEMENT==--*/
.achi_main{
	width: 100%;
	display: inline-flex;
	justify-content: flex-start;
	justify-self: center;
	flex-wrap: wrap;
	padding: 40px 0 25px 0;
	margin-bottom: 45px;
}
.ser_box{
	width: 100%;
	display: inline-flex;
	justify-content: flex-end;
	justify-items: center;
	justify-self: center;
	align-items:center;
	flex-wrap: wrap;
	margin-bottom: 35px;
}
.ser_box > .text{
	width: 60px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #555;
	margin-right: 8px;
}
.ser_box > .text2{
	width: 100px;
	font-size: 20px;
	line-height: 20px;
	font-weight: 600;
	color: #555;
	margin-right: 8px;
}
  .sele_all{
	width: 250px;
	float: left;
	padding: 10px 16px;
	color: #222222;
	font-size: 16px;
	line-height: 20px;
	border: none;
	background-color: #f1f1f1;
	border-radius: 5px 0 0 5px;
  }
.sele_all2{
	width: 250px;
	float: left;
	padding: 10px 16px;
	color: #222222;
	font-size: 16px;
	line-height: 20px;
	border: none;
	background-color: #f1f1f1;
	border-radius: 5px 0 0 5px;
  }

.achi_main > ul{
	width: calc( 100% / 3 - 10px );
	float: left;
	margin: 0 5px 30px 5px;
}
.achi_poto{
	width: 100%;
	height: 255px;
	position: relative;
  	background: none;
  	text-transform: uppercase;
  	text-decoration: none;
	overflow: hidden;
	padding: 5px;
  	border: 2px solid rgba( 0,0,0,0.0 );
}
.achi_poto > .line{
	width: 100%;
	position: relative;
}
.achi_poto::before {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    background: #fec04b;
    height: 5px;
    right: 0;
    top: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.achi_poto::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    background: #fec04b;
    height: 5px;
    left: 0;
    bottom: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.achi_poto:hover.achi_poto::before {
    width: 100%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.achi_poto:hover.achi_poto::after {
	width: 100%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.achi_poto > .line::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    background: #fec04b;
    height: 0;
    right: -5px;
    top: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
  .achi_poto > .line::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    background: #fec04b;
    height: 0;
    left: -5px;
    bottom: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.achi_poto:hover.achi_poto > .line::before {
    height: 103%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.achi_poto:hover.achi_poto > .line::after {
	height: 103%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.achi_poto > .pic, .achi_poto > .pic > img{
	width: 100%;
	height: auto;
	float: left;
}
.achi_cont{
	width: 100%;
	float: left;
	padding: 15px;
}
.achi_cont > .title{
	width: 100%;
	float: left;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #00727c;
	padding-bottom: 8px;
	margin-bottom: 15px;
	border-bottom: 1px solid #fec04b;
}
.achi_cont > .type{
	width: 100%;
	float: left;
	font-size: 16px;
	line-height: 28px;
	color: #333333;
}

/*--==MONTHLY==--*/
.mont_main{
	width: calc( 100% / 3 - 10px );
	float: left;
	margin: 0 5px 50px 5px;
}
.mont_poto{
	width: 100%;
	height: auto;
	position: relative;
  	background: none;
  	text-transform: uppercase;
  	text-decoration: none;
	overflow: hidden;
	padding: 5px;
  	border: 2px solid rgba( 0,0,0,0.0 );
}
.mont_poto > .line{
	width: 100%;
	position: relative;
}
.mont_poto::before {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    background: #00727c;
    height: 5px;
    right: 0;
    top: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.mont_poto::after {
    content: "";
    display: block;
    position: absolute;
    width: 0px;
    background: #00727c;
    height: 5px;
    left: 0;
    bottom: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.mont_poto:hover.mont_poto::before {
    width: 100%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.mont_poto:hover.mont_poto::after {
	width: 100%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.mont_poto > .line::before {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    background: #00727c;
    height: 0;
    right: -5px;
    top: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
  .mont_poto > .line::after {
    content: "";
    display: block;
    position: absolute;
    width: 5px;
    background: #00727c;
    height: 0;
    left: -5px;
    bottom: 0;
	-moz-transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	transition: 0.3s ease;
  }
.mont_poto:hover.mont_poto > .line::before {
    height: 103%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.mont_poto:hover.mont_poto > .line::after {
	height: 103%;
	-moz-transition: 0.3s ease;
  	-webkit-transition: 0.3s ease;
  	-o-transition: 0.3s ease;
	  transition: 0.3s ease;
}
.mont_poto > .pic, .mont_poto > .pic > img{
	width: 100%;
	height: auto;
	float: left;
}
.mont_title{ 
	width: 100%;
	display: inline-flex;
	font-size: 20px;
	line-height: 28px;
	font-weight: 600;
	color: #ffffff;
	background-color: #00727c;
	padding: 8px 16px;
}
.mont_pic, .mont_pic > img{ width: 100%; height: auto; float: left;}
.mont_box_all{
	width: 100%;
	float: left;
}
.mont_box{
	width: 100%;
	display: inline-flex;
	justify-content: flex-start;
	align-items: center;
	padding: 20px;
	border-bottom: 1px dashed #c5c5c5;
}
.mont_box:hover{
	border-bottom: 1px dashed #00727c;
}
.mont_box > .data{
	width: 100px;
	font-size: 18px;
	line-height: 24px;
	color: #00727c;
}
.mont_box > .title{
	width: calc( 100% - 160px );
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	padding-right: 20px;
	color: #333;
}
.mont_box > .download{
	width: 60px;
	height: 30px;
	float: left;
	padding: 0 15px;
}
.mont_box > .download > a{
	width: 100%;
	height: 30px;
	float: left;
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transition: 0.3s ease;
}
.mont_box > .download > a{ background-image: url("../images/icon/download.svg");}
.mont_box > .download > a:hover{ background-image: url("../images/icon/download_h.svg");transition: 0.3s ease;}

/*--== FOOTER ==--*/
.footer{
	width: 100%;
	height: auto;
	display: inline-flex;
	justify-content: center;
	justify-items: center;
	flex-wrap: wrap;
	padding: 30px 0 40px 0;
	background-color: #00727c;
}
.foot_cont{
	width: auto;
	height: auto;
	display: inline-flex;
	justify-content: start;
	margin-bottom: 15px;
}
.foot_cont > a , .foot_cont > .mail , .foot_cont > .mail > a{
	width: auto;
	height: auto;
	position: relative;
	font-size: 16px;
	line-height: 16px;
	padding: 0 20px 0 20px;
	color: #ffffff;
	transition: color 0.4s ease-in-out;
}
.foot_cont > .mail > a{ padding: 0 ; letter-spacing: 1px;}
.foot_cont > a::after{
	content: "";
	display: block;
	width: 1px;
	height: 16px;
	position: absolute;
	background-color: #ffffff;
	right: 0;
	top: 3px;
	transform: rotate(30deg);
}
.foot_cont > a:hover, .foot_cont > .mail > a:hover{
	color: #bcebef;
	transition: color 0.4s ease-in-out;
}
.copyright{
	width: 100%;
	height: auto;
	font-size: 15px;
	line-height: 15px;
	color: #a3c1c5;
	text-align: center;
}
@media only screen and (max-width: 1440px) {
	.swiper-button-next, .swiper-button-prev,.swiper-button-prev:after,.swiper-button-next:after{ top: 38%; width: 38px; height: 38px;}
	.swiper-button-next{ right: -48px;}
	.swiper-button-prev{ left: -48px;}
	.hea_about{ padding: 85px 0 70px 0;}
	.ind_pro_main{ margin-bottom: 150px;}
}
@media only screen and (max-width: 1280px) {
	.header_main{ padding: 25px 45px 0 45px;}
	.hea_about{ padding: 65px 0 50px 0;}
	.ind_pro_main{ margin-bottom: 90px;}
	.ind_acti{ height: 100%;}
	.ind_mont_all{ padding: 85px 0 75px 0;}
	.ind_pro_box2{ padding: 0 50px;}
	.ind_acti_type{  top: 86%;}
	.unit_all, .unit_all2{padding: 0px 45px;}
	.achi_poto{ height: auto;}
	.mont_poto{ height: auto;}
	.mont_main, .achi_main > ul{ width: calc( 100% / 2 - 10px );}
	.mont_box > .download > a{ background-image: url(../images/icon/download_h.svg);}
}
@media only screen and (max-width: 1200px) {
	.ind_acti{ height: 100%;}
	.ind_mont_all{background-size: 150%;}
}
@media only screen and (max-width: 1024px) {
	.ind_mont_all{background-size: 150%;}
	.ind_acti:hover>.ind_acti_type{ top: 44%;}
}
@media only screen and (max-width: 940px) {
	.hea_about{padding-top: 0;}
	.ind_pro_main{ margin-top: 70px;}
	.ind_ab_cont{ padding: 0 90px;}
	.ind_ab_main{ position: relative; z-index: 9;}
	.unit_all, .unit_all2{padding: 0px 25px;}
	.ind_pro_main{margin-bottom: 45px;}
	.header_main{ padding: 15px 25px 0 25px;}
	.ind_ab_little > .en, .ind_pro_little > .en{ font-size: 16px; line-height: 16px;}
	.ind_ab_little > .ch, .ind_pro_little > .ch{ font-size: 24px; line-height: 24px;}
	.ind_ab_little > .ch::after, .ind_pro_little > .ch::after{ width: 50px; right: 20px;}
	.ind_mont_all{ padding: 45px 0;}
	.ind_mont_main > .title{ font-size: 24px;}
	.ind_mont_main > a{line-height: 40px;}
	.ind_pro_bg::before, .ind_pro_bg::after{height: 50px;}
	.ind_pro_main{margin-top: 40px;}
	.ind_pro_bg{ height: 360px;}
	.ind_acti_type{top: 87.5%;}
	.swiper-button-next, .swiper-button-prev, .swiper-button-prev:after, .swiper-button-next:after{ top: 35%;}
}
@media only screen and (max-width: 760px) {
	.mobile{ display: block;}
	.hea_nav{ display: none;}
	.ind_ab_cont{ padding: 0 10px;}
	.hea_about{padding-bottom: 30px;}
	.ind_acti{ height: 100%; margin-bottom: 40px;}
	.ind_acti_type{ top: 88%;}
	.ind_pro_main{ padding: 0 10px;}
	.unit_banner_all{overflow: hidden;}
	.unit_banner, .unit_banner > img {width: auto; height: 150px;}
	.ind_mont_main > .title{ margin-bottom: 5px;}
	.ind_mont_main > a{ font-size: 16px; line-height: 36px;}
	.foot_cont{flex-wrap: wrap;}
	.foot_cont > .mail{margin-top: 15px;}
	.foot_cont{ justify-content: center;}
	.unit_main > .title{ font-size: 22px; line-height: 28px;}
	.sele_all{ width: calc( 100% - 70px );}
	.sele_all2{ width: calc( 100% - 108px );}
	.unit_page_box > a.tt{ padding: 6px 12px;}
	.ser_box{ padding-right: 0;}
	.achi_main > ul,.mont_main{ width: calc( 100% - 10px ); margin-bottom: 15px;}
	.achi_poto{ height: auto;}
	.achi_main{ padding-bottom: 0;}
	.unit_page_box{margin-bottom: 30px; flex-wrap: wrap;}
	.ind_pro_box2{ padding: 0 5px;}
	.ind_pro_little > .ch{ margin-bottom: 20px;}
	.ind_acti:hover>.ind_acti_type{ top: 40%;}
	.ind_mont_all{ background-size: cover; background-position: bottom; }
	.swiper-button-next, .swiper-button-prev, .swiper-pagination-bullet{ display: none;}
	.hea_logo{ width: 90px; height: auto;}
	.hamburger-menu{ top: 10px; right: 15px;}
	.unit_main{ padding: 10px 0;}
	.unit_main2{ padding: 15px 0;}
	.unit_all{ padding: 0 10px;}
	.unit_all2{ padding: 0;}
	.ser_box{padding: 0px 10px;}
	.unit_page_box > a, .unit_page_box .page_box{margin-bottom: 8px;}
	.mont_box{ justify-content: center; flex-wrap: wrap;}
	.mont_box > .data{ margin-bottom: 10px; width: auto;}
	.ind_acti::before{ bottom: 0;}
	.mont_box > .title{ width: 100%; text-align: center;margin-bottom: 20px;}
	.tit_box{margin: 20px 0; padding: 0 10px;}
	.tit_box > .title, .tit_box > .title2{ margin-bottom: 8px;}
	.ab_little{ margin: 0;}
	.ab_little{ width: 100%;}
	.ab_little > .en{ width: 100%; text-align: center;}
	.ab_little > .ch{margin-bottom: 10px;}
	.ind_acti:nth-child(even){ margin-top: 0;}
}
@media only screen and (max-width: 550px) {
	.ind_acti_type{  top: 89%;}
}
@media only screen and (max-width: 420px) {
	.ind_acti_type{  top: 85%;}
}