
/*
 * ================================================
 *
 * 共用UI元件樣式設定
 * 
 * ================================================ 
*/
body,*{
	font-family: "微軟正黑體","Montserrat", "Noto Sans TC";
}
h1{
	font-size: 3.8rem;
	font-weight: normal;
	letter-spacing: 1px;
	margin:0px;
	padding:20px 0px;
}
h2{
	font-size: 2.8rem;
	font-weight: normal;
	letter-spacing: 1px;
	margin:0px;
	padding:15px 0px;
}
h3{
	font-size: 2rem;
	font-weight: normal;
	letter-spacing: 1px;
	margin:0px;
	padding:10px 0px;
}
h4{
	font-size:1.4rem;
	font-weight: normal;
	letter-spacing: 1px;
	margin:0px;
	padding:5px 0px;
}
.button{
	background-color: #2CA5E0;
	padding:15px 50px;
	font-size:1.4rem;
	color:#fff;
	border: none;
	font-weight: normal;
	display: inline-block;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in; 
}

.button:hover{
  background-color: #1C91C9;
}

.description{
	font-size: 1.5rem;
	line-height: 1.5;
	letter-spacing: 2px;
}

.section-content-text{
	color: #000000;
	padding:0px 20px;
	text-align: center;/*文字區塊對齊方式*/
}

.figure-caption:before{
	content:"";
	background-image:  url('https://www.horinglih.com/images/icon_arrow_photo_ex.svg');
	background-repeat: no-repeat;
	background-size:15px 11px;
	background-position: center center;
	width: 40px;
	height: 11px;
	display: inline-block;
}
@media (max-width: 1020px) {
	h1{
		font-size: 3rem;
	}
	h2{
		font-size: 2.3rem;
	}	
	h3{
		font-size: 1.8rem;
	}	
	.description{
		font-size: 1.4rem;
	}
  .button{
    padding:12px 45px;
    font-size:1.3rem;
    margin-top: 25px;
  }

}

.share-icon a{
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	display: inline-block;
	width: 35px;
	height: 35px;
	margin-right: 16px;
	border-radius: 100%;
}
.share-icon a.fb{
	background-color: #0E4993;
	background-image: url('https://www.horinglih.com/images/icon_share_fb.svg');
}
.share-icon a.twitter{
	background-color: #00A3EB;
	background-image: url('https://www.horinglih.com/images/icon_share_tiwtter.svg');
}
.share-icon a.line{
	background-color: #21CD5B;
	background-image: url('https://www.horinglih.com/images/icon_share_line.svg');
}
@media (max-width: 760px) {
	h1{
		font-size: 2.8rem;
	}
	h2{
		font-size: 2.2rem;
	}	
	h3{
		font-size: 1.6rem;
	}	
	.description{
		font-size: 1.4rem;
	}
  .button{
    padding:12px 30px;
    font-size:1.2rem;
    margin-top: 15px;
  }
}
@media (max-width: 576px) {
	h1{
		font-size: 2.5rem;
	}
	h2{
		font-size: 2rem;
	}	
	h3{
		font-size: 1.6rem;
	}	
	.description{
		font-size: 1.3rem;
	}
  .button{
    padding:10px 25px;
    font-size:1.2rem;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
	h1{
		font-size: 2.2rem;
	}
	h2{
		font-size: 1.8rem;
	}	
	h3{
		font-size: 1.5rem;
	}	
	.description{
		font-size: 1.3rem;
	}
  .button{
    padding:8px 30px;
    font-size:1.1rem;
    margin-top: 15px;
  }
}


@media (max-width: 1020px) {
	.section-il-tr-slick .section-content-text{
		width:60vw;
	}			
}		
@media (max-width: 760px) {
	.section-il-tr-slick .section-content-text{
		width:80vw;
	}			
}
@media (max-width: 480px) {

	.section-il-tr-slick .section-content-text{
		width:85vw;
	}			
}


.slick-prev:before
{
	visibility: hidden;
    content: '';
}
[dir='rtl'] .slick-prev:before
{
	visibility: hidden;
    content: '';
}


.slick-next:before
{
	visibility: hidden;
    content: '';
}
[dir='rtl'] .slick-next:before
{
	visibility: hidden;
    content: '';
}



/*
 * ================================================
 *
 * 共用FORM UI元件樣式設定
 * 
 * ================================================ 
*/
.text-input{
	font-size: 1.2rem;
	margin:15px 0px;
}
.text-input .input-title{

}
.text-input input[type="text"]{
	border:1px solid #D4DADD;
	width:100%;
	padding:5px 15px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in; 
}
.text-input input[type="text"]:focus{
	border:1px solid #259BDA;
	background-color: #e7f3ff;
}
.text-input .input-vaild-text{
	background-color: #FFE4E7;
	color:#C30000;
	width:100%;
	padding:0px 15px;
	display: none;
}
.text-input textarea{
	width:100%;
	border:1px solid #D4DADD;
	padding:5px 15px;
	min-height: 160px;
	transition: all 250ms ease-in;
	-webkit-transition: all 250ms ease-in;
	-o-transition: all 250ms ease-in;
	-moz-transition: all 250ms ease-in; 
}
.text-input textarea:focus{
	width:100%;
	border:1px solid #259BDA;
	background-color: #e7f3ff;
}

.text-input input.code-validation{
	width:160px;
	margin-right:25px;
	margin-bottom:15px;
}
.text-input .refresh-code{
	display: inline-block;
	width: 29px;
	height: 29px;
	background: url(https://www.horinglih.com/images/icon_contact_refresh.svg) no-repeat;
	background-position: center center;
	background-size: 25px 25px;
	vertical-align: middle;
}
.text-input .validation-img{
	background-color: #eee;
	width:150px;
	height:50px;
	display: inline-block;	
}




.inputGroup {
	font-size: 1.4rem;
	background-color: #fff;
	display: block;
	margin: 10px 0;
	position: relative;
}
@media (max-width:560px){
	.inputGroup {
		font-size: 1.3rem;
	}
}
.inputGroup  label {
	padding: 20px 30px 20px 103px;
	width: 100%;
	display: block;
	text-align: left;
	color: #3C454C;
	cursor: pointer;
	position: relative;
	z-index: 2;
	transition: color 200ms ease-in;
	overflow: hidden;
	border: 1px solid #D4DADD;
	background-size: 45px 45px;
	background-position: 32px center;
	background-repeat: no-repeat;
}
.inputGroup label::before {
	width: 100%;
	height: 10px;
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale3d(1, 1, 1);
	transition: all 300ms cubic-bezier(0.4, 0.0, 0.2, 1);
	opacity: 0;
	z-index: -1;
}
.inputGroup label:after {
	width: 26px;
	height: 26px;
	content: '';
	background-color: #F2F3F8;
	background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23F2F3F8' fill-rule='nonzero'/%3E%3C/svg%3E ");
	background-repeat: no-repeat;
	background-position: 2px 3px;
	z-index: 2;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	transition: all 200ms ease-in;

}
.inputGroup input:checked ~ label {
	color: #259BDA;
	border: 1px solid #259BDA;
}
.inputGroup input:checked ~ label::before {
	transform: translate(-50%, -50%) scale3d(56, 56, 1);
	opacity: 1;
}
.inputGroup input:checked ~ label::after {
	background-color: #259BDA;
	border-color: #54E0C7;

}
.inputGroup input {
	width: 32px;
	height: 32px;
	order: 1;
	z-index: 2;
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	visibility: hidden;
}
/*
 * ================================================
 *
 * 兩種List的樣式
 * 
 * ================================================ 
*/
ul.list-item-style{
	list-style-type: none;
	position: relative;

}
ul.list-item-style li{
	margin-left: 30px;
}
ul.list-item-style li:before, ul.list-item-style li::before{
	position: absolute;
    content: " ";
    width: 20px;
    height: 20px;
    vertical-align: top;
    left:0;
    text-align:right;
}
/*數字列表設定*/
ul.number-list{
    counter-reset:paragraph;
}

ul.number-list li:before, ul.number-list li::before{
	color: #0E93CD;
    counter-increment:paragraph;
    content: counter(paragraph) ".";
}

/*icon列表設定*/
ul.dot-list li::before{
    content: " ";
    /*更換列表icon圖片*/
 	background: url(https://www.horinglih.com/images/blue_circle.svg) no-repeat;
    background-size: 13px 13px;
    background-position: center center;
}

ul.pic-list{

}
ul.pic-list li:before, ul.pic-list li::before{
    width: 80px;
    height: 80px;
    vertical-align: top;
    left:-60px;
    text-align:left;
}
/*icon列表設定*/
ul.pic-list li::before{
    content: " ";
    /*更換列表icon圖片*/
 	background: url(https://www.horinglih.com/) no-repeat;
    background-size: 71px 71px;
    background-position: center center;

}
/*
 * ================================================
 *
 * 標記文字為藍色強調色
 * 
 * ================================================ 
*/
emp{
	color:#0E93CD;
	display: inline;
}

/* Portrait */
@media screen and (orientation:portrait) {
   /* Portrait styles here */
}
/* Landscape */
@media screen and (orientation:landscape) {
   /* Landscape styles here */
}




ul{
    padding-inline-start: 0px;
}
a,  a:hover{
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  text-decoration: none;
  color: #000;
}

.page-body.curve-bg{
	background-position: top;
	background-size: 100%;
	background-repeat: no-repeat;
}
/*
 * Product Category
 */

.product_category{
	margin:35px auto;
}
.product_category .product_item_content {
	text-align: center;
}
.product_category .product_item{

}
.product_category .product_item a:hover {
	text-decoration: none;
	outline: none;
}
.product_category .product_item a:hover  .product_item_content .image{
	transform: scale(1.1);
}
.product_category .product_item_content .image{
	height: 50px;
	width: 100%;
	background-position: center;
	background-size: 65px;
	background-repeat: no-repeat;
	padding:35px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
	max-height: 100%;
}
.product_category .product_item .fTitle{
	font-size: 1.8rem;
	font-weight: 400;
	padding:0px 20px;
	border-left: 1px solid #ccc;
	color:#000;
	  -webkit-transition: color 300ms ease-in;
	  -ms-transition: color 300ms ease-in;
	  transition: color 300ms ease-in;
}
.product_category .slick_item .product_item:first-child .fTitle{
	border-left: unset;
}
.product_category .product_item_content:hover .fTitle{
	color:#1597A3;
}
.product_category .content{
	text-align: center;
}
.product_category .slick-arrow {
	width: 60px;
	height: 60px;
	z-index: 100;
	border-radius: 100px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	transition:all 0.5s ease;
}
.product_category .slick-next{
	right: -60px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_right.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	color:unset;
}
.product_category .slick-next:before,  .product_category .slick-prev:before{
    content: '';
}
.product_category .slick-next:hover{
	right: -70px;
	background-position: center;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_right.svg');
	background-repeat: no-repeat;
	background-size: 20px 20px;
}
.product_category .slick-prev {
	color:unset;
	left: -60px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_left.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}
.product_category .slick-prev:hover {
	left: -70px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_left.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}

.product_item_list .product_item{
	max-width: 280px;
	margin-top:45px;
	width: 100%;
}
.product_item_list .row{
	margin:0 auto;
}
.product_item_list .product_item_content .image{
	height: 224px;
	width: 100%;
	background-position: left top;
	background-size: contain;
	background-repeat: no-repeat;
	padding:35px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
	max-height: 100%;
}

.product_item_list .product_item_content .header .fTitle{
	font-size: 2.2rem;
	color: #000;
	font-weight: 500;
 -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.product_item_list .product_item_content .header .subTitle{
	font-size: 2.2rem;
	color:#1597A3;
	font-weight: 300;
}
.product_item_list .product_item a:hover{
	text-decoration: none;

}
.product_item_list .product_item a:hover  .product_item_content .image{
	transform: scale(1.1);
}
.product_item_list .product_item a:hover .product_item_content .header .fTitle{
	color: #1597A3;
}
.product_category .slick_item .product_item .focus{
	display: none;
}
.product_category .slick_item .product_item .focus.active{
	display: block;
	width: 20px;
	height: 20px;
	margin:0 auto;
	margin-top: 29px;
	background:url('https://www.horinglih.com/images/icon_arrow_3_down.svg') no-repeat center;
	background-size: 14px 8px;
}
@media (max-width: 1360px){
	.product_item_list .product_item{
		max-width: 218px;
		margin-top:45px;
	}
	.product_item_list .product_item_content .header .fTitle{
		font-size: 2.0rem;
	}
	.product_item_list .product_item_content .header .subTitle{
		font-size: 2.0rem;
	}
	.product_item_list .product_item_content .image{
		height: 218px;
	}
}
@media (max-width: 768px){
	.product_category .slick_item .product_item .focus{
		display: none;
	}
	.product_category .product_item .fTitle{
		border-left: unset;
	}
}


/*
 * Product Detail
 */
 .page-banner .no-banner{
 	height:120px;
 }
 .product_item_detail{
 	margin-top: 50px;
 }
.product_item_detail .row{
		margin:0 auto;
}
.product_item_detail .product_item_detail_content{
	padding-bottom:193px;
	background:url('https://www.horinglih.com/images/shape_block_top_1.svg') no-repeat left bottom;
	background-size: contain;
}
.product_item_detail .product_item_detail_content .product_item_detail_images{
	position: sticky;
    position: -webkit-sticky;
    top: 70px;
}
.product_item_detail .product_slick_images{
	padding:0 50px;
	max-width: 592px;
	margin:20px auto;
}
.product_item_detail .product_item_detail_images #product_slide_image{
	background-size:contain;
	width:100%;
	height:466px;
	background-repeat:no-repeat;
	background-position: center;
	background-size: contain;
}
.product_item_detail .product_item_detail_images  .product_item_thumb{
	width: 100%;
	height: 105px;
	cursor: pointer;
}
.product_item_detail .product_item_detail_images  .product_item_thumb picture{
	width:100%;height:100%;
	background-repeat:no-repeat;
	background-position: center;
	background-size: 80%;
}
.product_item_detail .product_item_detail_images  .product_item_thumb picture.active{
	border: 2px solid #1597A3;
	border-radius: 10px;
}

.product_item_detail .product_item_detail_images  .slick-arrow {
	width: 60px;
	height: 60px;
	z-index: 100;
	border-radius: 100px;
	background-size: 20px 20px;
	background-repeat: no-repeat;
	transition:all 0.5s ease;
}
.product_item_detail .product_item_detail_images .slick-next{
	right: -50px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_right.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	color:unset;
}
.product_item_detail .product_item_detail_images .slick-next:before,  .product_item_detail .product_item_detail_images  .slick-prev:before{
    content: '';
}
.product_item_detail .product_item_detail_images .slick-next:hover{
	right: -60px;
	background-position: center;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_right.svg');
	background-repeat: no-repeat;
	background-size: 20px 20px;
}
.product_item_detail .product_item_detail_images .slick-prev {
	color:unset;
	left: -50px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_left.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}
.product_item_detail .product_item_detail_images .slick-prev:hover {
	left: -60px;
	background-image:url('https://www.horinglih.com/images/icon_arrow_1_left.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 20px 20px;
}
.product_item_detail .product_item_detail_description{
	padding:0px 30px;
}
.product_item_detail .product_item_detail_description header h3{
	color: #1597A3;
	font-size: 6.0rem;
	font-weight: 100;
}
.product_item_detail .product_item_detail_description header h2{
	color: #000000;
	font-size: 4.8rem;
	font-weight: 700;
	margin-top:15px;
	line-height: 1.2;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list h4{
	font-size: 3.0rem;
	color: #1597A3;
	margin:20px 0px;
	font-weight: 700;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list ul{
	margin:0px;
	padding-inline-start: 30px;
	list-style: none;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list ul li{
	font-size: 1.7rem;
	margin-bottom: 15px;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list ul strong{
	font-size: 1.7rem;
	font-weight: 700;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list ul li::before{
    content: "\2B24";
    color: #1C1C8A;
	font-size: 1rem;
	position: absolute;
    vertical-align: middle;
    left: 30px;
    margin-top: 5px;
}
.product_item_detail .product_item_detail_description .product_item_detail_description_list img{
	margin-right:20px;
	height: 80px;
}
@media (max-width: 992px){
	.product_item_detail .product_slick_images{
		padding:0 50px;
		max-width: 417px;
	}
	.product_item_detail .product_item_detail_images #product_slide_image{
		background-size:contain;
		width:305px;
		height:267px;
		background-repeat:no-repeat;
		background-position: center;
		background-size: contain;
		margin: 0 auto;
	}
	.product_item_detail .product_item_detail_images  .product_item_thumb{
		height: 73px;
		padding: 0px 10px;
	}
	.product_item_detail .product_item_detail_description {
		margin-top:30px;
	}
	.product_item_detail .product_item_detail_description header h3{
		font-size: 5.0rem;
	}
	.product_item_detail .product_item_detail_description header h2{
		font-size: 3.5rem;
		line-height: 1.1;
	}
	.product_item_detail .product_item_detail_description .product_item_detail_description_list h4{
		font-size: 2.2rem;
	}
	.product_item_detail .product_item_detail_description .product_item_detail_description_list ul{
		margin:0px;
		padding-inline-start: 30px;
		list-style: none;
	}
	.product_item_detail .product_item_detail_description .product_item_detail_description_list ul li{
		font-size: 1.6rem;
	}
	.product_item_detail .product_item_detail_description .product_item_detail_description_list ul strong{
		font-size: 1.6rem;
	}
}
@media (max-width: 576px){
	.product_item_detail .product_slick_images{
		padding:0 20px;
		max-width: 320px;
	}
	.product_item_detail .product_item_detail_images #product_slide_image{
		background-size:contain;
		width:239px;
		height:209px;
		background-repeat:no-repeat;
		background-position: center;
		background-size: contain;
		margin: 0 auto;
	}
	.product_item_detail .product_item_detail_images  .product_item_thumb{
		height: 73px;
		padding: 0px 10px;
	}

}

/*
 * Case List
 *
 */

 .case_item_list .case_item{
	min-width: 90%;
	margin-top:45px;
	margin:45px 15px 0px 15px;
	background-color: #ffffff;
	-webkit-box-shadow: -1px 2px 7px -2px rgba(0,0,0,0.75);
	-moz-box-shadow: -1px 2px 7px -2px rgba(0,0,0,0.75);
	box-shadow: -1px 2px 7px -2px rgba(0,0,0,0.75);
}

.case_item_list .case_item_zh{
 	min-width: 95%;
	margin:15px 15px 0px 15px;
	border-radius: 10px;
}
.case_item_list .case_item_content_zh .header .fTitle{
	text-align: center;
	font-size: 2.2rem;
	color: #000;
	font-weight: 300;
	padding:17px 25px;
}


.case_item_list .row{
	margin:0 auto;
}
.case_item_list .case_item_content .image{
	height: 224px;
	width: 100%;
	background-position: top center;
	background-size: cover;
	background-repeat: no-repeat;
	padding:35px;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
	max-height: 100%;
}

.case_item_list .case_item_content .header .fTitle{
	text-align: center;
	font-size: 2.5rem;
	color: #000;
	font-weight: 700;
	padding:10px 25px;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
.case_item_list .case_item a:hover{
	text-decoration: none;

}
.case_item_list .case_item a:hover  .case_item_content .image{
/*		background-size: 110%;
*/
}
.case_item_list .case_item a:hover .case_item_content .header .fTitle{
	color: #1597A3;
}
.case_item_list .case_item_content .image .mask-thumb{
	position: absolute;
	z-index: 100;
	bottom: -1px;
	left: 0px;
	right: 0px;
	height: auto;
	overflow: hidden;

}
.case_item_list .case_item_content .image .mask-thumb img{
	width: 100%;
}
@media (max-width: 1360px){
	.case_item_list .case_item{
/*		max-width: 218px;
*/		margin:45px 15px 0px 15px;
	}
	.case_item_list .case_item_content .header .fTitle{
		font-size: 2.0rem;
	}
	.case_item_list .case_item_content .header .subTitle{
		font-size: 2.0rem;
	}
	.case_item_list .case_item_content .image{
		height: 218px;
	}
}
@media (max-width: 768px){
	.case_item_list .case_item{
/*		max-width: 258px;
*/		margin:45px 15px 0px 15px;
	}
	.case_category .slick_item .case_item .focus{
		display: none;
	}
	.case_category .case_item .fTitle{
		border-left: unset;
	}
	.case_item_list .case_item_content .image{
		height: 180px;
		width: 100%;
		background-position: top center;
		background-size: cover;
		background-repeat: no-repeat;
		padding:35px;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
		-moz-transition: all 0.5s;
		transition: all 0.5s;
		max-width: 100%;
		max-height: 100%;
	}
}





/*
 * Case Detail
 *
 */
.case_detail_content header{
	margin: 30px auto;
}
.case_detail_content header .case_date{
	font-size: 2.0rem;
	color: #6F6F6F;
	font-weight: 100;
}
.case_detail_content header .fTitle{
	font-size: 4.0rem;
	color: #000000;
	font-weight: 700;
}
.case_detail_content  .social_share{
	margin: 50px auto;
}
.case_detail_content .social_share ul{
	list-style: none;
	padding-inline-start: 0px;
}
.case_detail_content .social_share ul li{
	width: 40px;
	height: 40px;
	margin:0px 7.5px;
	position: relative;
	border-radius: 100px;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: center;
  -webkit-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
}
.case_detail_content .social_share ul li a{
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.case_detail_content .social_share ul li.FB_share{
	background-color: #3A5999;
	background-image: url('https://www.horinglih.com/images/icon_community_fb_white.svg');
}
.case_detail_content .social_share ul li.TWITTER_share{
	background-color: #55ACEF;
	background-image: url('https://www.horinglih.com/images/icon_community_twitter_white.svg');
}
.case_detail_content .social_share ul li.PIN_share{
	background-color: #CB2128;
	background-image: url('https://www.horinglih.com/images/icon_community_pinterest_white.svg');
}

.case_detail_content .social_share ul li:hover{
	opacity: 0.8;
}
.case_detail_content .case_item_control{
	border-top:1px solid #E2E2E2;
	padding:30px 0px;
}
.case_detail_content .case_item_control .case_next{
	text-align: right;
}
.case_detail_content .case_item_control .case_btn{
	display: inline-flex;
	width: 60px;
	height: 60px;
	background-repeat: no-repeat;
	background-size: 25px 25px;
	background-position: center;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
	background-color: #D4D4D4;
	border-radius: 100px;
}
.case_detail_content .case_item_control .case_prev .case_btn{
	background-image: url('https://www.horinglih.com/images/icon_arrow_1_left_white.svg');
}
.case_detail_content .case_item_control .case_next .case_btn{
	background-image: url('https://www.horinglih.com/images/icon_arrow_1_right_white.svg');
}
.case_detail_content .case_item_control .case_back_list a{
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.case_detail_content .case_item_control .case_back_list{
	font-size: 1.9rem;
	color:#1597A3;
}
.case_item_control label{
	font-size: 1.9rem;
	font-weight: 500;
	color: #000000;
	margin: 0px 15px;
	max-width: 70%;
}
@media (max-width: 1360px){
	.case_item_control label{
		font-size: 1.7rem;
	}
	.case_detail_content header .case_date{
		font-size: 1.8rem;
	}
	.case_detail_content header .fTitle{
		font-size: 3.5rem;
	}
}
@media (max-width: 960px){
	.case_item_control label{
		font-size: 1.5rem;
	}
}
@media (max-width: 768px){
	.case_item_control label{
		font-size: 1.5rem;
	}
	.case_detail_content header .case_date{
		font-size: 1.6rem;
	}
	.case_detail_content header .fTitle{
		font-size: 3.0rem;
	}
}

/*
 * News List
 *
 */

.page-title.bg-img{
	display: flex;
	height: 200px;
	margin: auto;
	align-items: center;
	background-repeat: no-repeat;
	background-size: 200px;
	background-position: 95% center;
	background-image: url('https://www.horinglih.com/images/img_news_global.svg');
}
.news_item_list{
}

.news_item_content{
	padding: 30px 0px;
	border-top:1px solid #E2E2E2;
}
.news_item_content a, .news_item_content a:hover{
	text-decoration: none;
}
.news_item_content .item_date {
	margin:0px 17px;
	color: #939393;
	width: 76px;
	display: inline-flex;
	flex-direction: column;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
.news_item_content .item_date .item_date_D{
	font-size: 5.6rem;
	font-weight: 700;
}
.news_item_content .item_date .item_date_YM{
	font-size: 2.0rem;
	font-weight: 300;
}


.news_item_content .item_content{
	width: calc(100% - 120px);
	display: inline-flex;
	flex-direction: column;
}
.news_item_content .data_item .ftitle{
	display: inline-flex;
	flex-direction: column;
	margin:17px 0px;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
}
.news_item_content .data_item .ftitle > * {
	font-size: 1.8rem;
	color: #000000;
	text-align: center;
}
.news_item_content .data_item .ftitle .item_mark{
	color:#00B3C1;
	font-size: 2.1rem;
	font-weight: 700;
}
.news_item_content .data_item .item_image{
	display: inline-flex;
	justify-content: center;
}
.news_item_content .data_item .item_image img{
	width:90%;
}
.news_item_content .data_item:hover .item_date,.news_item_content .data_item:hover .ftitle{
	color: #1597A3;
}


.news_item_content.news_inline_layout .item_content{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
}
.news_item_content.news_inline_layout .item_image{
	display: unset;
	max-width: 152px;
	margin-right:25px;
}
.news_item_content.news_inline_layout .item_image img{
	width: 100%;
}

.news_item_content.news_inline_layout .data_item .ftitle{
	width: 90%;
}
@media (max-width: 1360px) {

	.news_item_content .data_item .ftitle > * {
		font-size: 1.6rem;
		color: #000000;
	}
	.news_item_content .item_date .item_date_D{
		font-size: 4.6rem;
	}
	.news_item_content .item_date .item_date_YM{
		font-size: 1.7rem;
		font-weight: 300;
	}
}
@media (max-width: 768px) {
	.page-title.bg-img{
		background-image: unset;
	}
	.news_item_content .data_item .ftitle > * {
		font-size: 1.6rem;
		color: #000000;
	}
	.news_item_content.news_inline_layout .item_content{
		flex-direction: column;
		align-items: center;
	}
	.news_item_content.news_inline_layout .item_image{
		display: inline-flex;
		width: 100%;
		margin-right:unset;
		max-width: unset;
	}
	.news_item_content .item_date .item_date_D{
		font-size: 3.6rem;
	}
	.news_item_content .item_date .item_date_YM{
		font-size: 1.6rem;
		font-weight: 300;
	}
}
.case_detail_content .item_date{
	margin-bottom: 45px;
}
.case_detail_content .item_date_D{
	font-size: 5.6rem;
	font-weight: 700;
	color: #5D5D5D;
}
.case_detail_content .item_date_YM{
	font-size: 2.0rem;
	font-weight: 500;
	color: #5D5D5D;
}
.news_main_image{
	display: flex;
	margin: 0 auto;
}
.news_main_image img{
	max-width: 912px;
	width: 80%;
}


/*
 * tutorial list
*/


.tutorial_item_content{
	padding: 30px 0px;
	border-top:1px solid #E2E2E2;
}
.tutorial_item_content a, .tutorial_item_content a:hover{
	text-decoration: none;
}


.tutorial_item_content .data_item header{
	width: calc(100% - 125px);
}
.tutorial_item_content .item_content{
	width: 100%;
	display: inline-flex;
	flex-direction: column;
}
.tutorial_item_content .data_item .ftitle{
	display: inline-flex;
	flex-direction: column;
	margin:17px 0px;
	-webkit-transition: all 300ms ease-in;
	-ms-transition: all 300ms ease-in;
	transition: all 300ms ease-in;
	font-size: 1.8rem;
	color: #000000;
}

.tutorial_item_content a:hover .data_item .ftitle{
	color: #1597A3;
}


.tutorial_item_content .item_content{
	display: inline-flex;
	flex-direction: row;
	align-items: center;
}
.tutorial_item_content .item_image{
	width: 215px;
	margin-right:25px;
}
.tutorial_item_content .item_image img{
	width: 100%;
}

@media (max-width: 1360px) {

	.tutorial_item_content .data_item .ftitle > * {
		font-size: 1.6rem;
		color: #000000;
	}
}
@media (max-width: 768px) {
	.tutorial_item_content .data_item header{
		width: calc(100% - 100px);
	}
	.tutorial_item_content .data_item .ftitle {
		font-size: 1.6rem;
		color: #000000;
	}
	.tutorial_item_content .item_content{
		flex-direction: row;
		align-items: center;
	}
	.tutorial_item_content .item_image{
		display: inline-flex;
		width: 100px;
	}
}

/*
 * FAQ List
 */

.faq_list-item-category{
	cursor: pointer;
	font-size: 1.5rem;
    padding:18px 35px;
    align-items: center;

}
.faq_list-item-category .toggle-btn{
	background-color: #CDCDCD;
	border-radius: 100px;
	display: block;
	width: 30px;
	height: 30px;
	background-image: url('https://www.horinglih.com/images/icon_faq_plus.svg');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center;
}
.faq_list-item{
	border: 1px solid #E2E2E2;
	border-radius: 5px;
    margin-bottom: 15px;
}


.faq_list-item-category .faq_bu-title{
	font-size: 2.1rem;
	font-weight: 700;
	background-repeat: no-repeat;
	background-size: 45px 45px;
	background-position: left center;
	line-height: 1;
}
.faq_list-item-category-item{
	margin: 27px 35px 30px 35px;
	padding:0px 35px 30px 50px;
	background-repeat: no-repeat;
	background-size: 47px 47px;
	background-position: top left;
	background-image: url('https://www.horinglih.com/images/icon_faq_a.svg');
	min-height: 100px;
}
.faq_list-item-category-item .faq_block_content{
	padding: 20px;
}
@media (max-width: 480px){
	.faq_list-item-category .faq_bu-title{
		padding:10px 0px 10px 15px;
		font-size: 1.8rem;
	}
	.faq_list-item-category-item{
		padding:47px 35px 30px 0px;
	}
	.faq_list-item-category{
		cursor: pointer;
		font-size: 1.5rem;
	    padding:18px 15px;
	    align-items: center;

	}

}
.faq_bu-btn{
	padding:10px 30px 10px 0px;
	max-width: 23px;

}

/*
 * FAQ List
 */

.download_list-item-category{
	cursor: pointer;
	font-size: 1.5rem;
    padding:18px 35px;
    align-items: center;
    	background-color: #EDF7F8;


}
.download_list-item-category .toggle-btn{
	border-radius: 100px;
	display: inline-flex;
	width: 30px;
	height: 30px;
	background-image: url('https://www.horinglih.com/images/icon_arrow_2_down_green.svg');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center;
}
.download_list-item{
	border: 1px solid #E2E2E2;
	border-radius: 5px;
    margin-bottom: 15px;
}


.download_list-item-category .download_bu-title{
	font-size: 2.1rem;
	font-weight: 700;
	background-repeat: no-repeat;
	background-size: 80px;
	background-position: left center;
	line-height: 1;
    height:80px;
    padding-left:110px;
}
.download_list-item .download_bu-btn{
	flex-direction: row;
}

.download_list-item-category-item{

}
.download_list-item-category-item .download_block_content{
	padding: 20px;
}

.download_list-item-category .download-file-count{
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #ffffff;
    text-align: center;
    display: inline-flex;
    color:#1597A3;
    font-size: 2.1rem;
    font-weight: 700;
    margin-right: 10px;
}

.download_item_list .download_file_item{
    margin:0px 15px 30px 15px;
}
.download_item_list .header-btn{
	cursor: pointer;
    border-bottom:1px solid #E2E2E2;
    font-size: 2.1rem;
    color: #939393;
    font-weight: 700;
    padding:15px;
    position: relative;
}
.download_item_list .header-btn .file-toggle-btn{
	position: absolute;
	right: 10px;
	width: 30px;
	height: 30px;
	background-image: url('https://www.horinglih.com/images/icon_arrow_2_down_green.svg');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: center;
}
.download_item_list .download_block_content ul{
    padding-inline-start: 0px;
    list-style: none;
}
.download_item_list .download_block_content ul li{
    background-repeat: no-repeat;
    background-position: center left;
    margin:15px 0px;
    font-size: 1.6rem;
    padding-left:35px;
    position: relative;
}
.download_item_list ul li.pdf-icon{
	background-image: url('https://www.horinglih.com/images/icon_file_pdf.svg');
}
.download_item_list ul li.word-icon{
	background-image: url('https://www.horinglih.com/images/icon_file_word.svg');
}
.download_item_list ul li.excel-icon{
	background-image: url('https://www.horinglih.com/images/icon_file_excel.svg');
}
.download_item_list ul li.ppt-icon{
	background-image: url('https://www.horinglih.com/images/icon_file_ppt.svg');
}
.download_item_list ul li.image-icon{
	background-image: url('https://www.horinglih.com/images/icon_file_photo.svg');
}
.download_item_list .download_block_content ul li a{
	position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1200px){
	.download_list-item-category .download_bu-title{
		font-size: 1.9rem;
	}
	.download_item_list .header-btn{
	    font-size: 1.9rem;
	}
	.download_item_list .download_block_content ul li{
	    font-size: 1.8rem;
	}
}
@media (max-width: 768px){
	.download_list-item-category .download_bu-title{
		font-size: 1.8rem;
	}
	.download_item_list .header-btn{
	    font-size: 1.8rem;
	}
	.download_item_list .download_block_content ul li{
	    font-size: 1.7rem;
	}
}
@media (max-width: 480px){
	.download_list-item-category .download_bu-title{
		padding:10px 0px 10px 15px;
		font-size: 1.8rem;
	}
	.download_list-item-category-item{
		padding:47px 35px 30px 0px;
	}
	.download_list-item-category{
		cursor: pointer;
		font-size: 1.5rem;
	    padding:18px 15px;
	    align-items: center;

	}

}


/*
 * ================================================
 *
 * section-submenu-content 左邊有menu列表
 *
 * ================================================
*/
.section-submenu {
	position: sticky;
    position: -webkit-sticky;
    top: 90px;
}
.section-submenu-content{
	max-width: 1360px;
	margin:70px auto;
}
.submenu-list-title{
	max-width: 390px;
	color: #ffffff;
	padding:12px 33px;
	font-size: 3.0rem;
	font-weight: 700;
	border-radius: 5px 5px 0px 0px;
	background:url('https://www.horinglih.com/images/img_left_menu_category_title_bg_shape.svg') no-repeat left top;
	background-size: contain;
	background-color: #158189;

}
.section-submenu-list{
	list-style: none;
    padding-inline-start: 0px;
    background-color: #F9F9F9;
    display: block;
    max-width: 390px;
    padding: 0px 20px 130px 20px;

}
.section-submenu-item{
	max-width: 386px;
/*	background-color: #F1F3F6;
*/	padding:20px 40px 20px 20px;
/*	margin-bottom: 10px;
*/
	border-bottom: 1px solid #CDCDCD;
	cursor: pointer;
	transition: all 300ms ease-in;
	-webkit-transition: all 300ms ease-in;
	-o-transition: all 300ms ease-in;
	-moz-transition: all 300ms ease-in;
	margin: 0 auto;
	font-size: 1.9rem;
}
.section-submenu-item.focus{
	color: #1597A3;
}
.submenu-dropbtn{
	display: none;
}
.section-submenu-item:hover{
	color: #1597A3;
	text-decoration: none;
}
.section-submenu-list .activated{
	background:url(https://www.horinglih.com/images/icon_arrow_more_h22.svg) no-repeat;
	background-size: 10px 20px;
	background-position: 90% 50%;
	background-color: #C0D9E9;

}
.section-submenu-item a{
	display: block;
	color:#000000;
	font-size: 1.9rem;
}
.section-submenu-item a:hover{
	text-decoration: none;
	color:#1597A3;
}

.section-submenu-right{
	margin:  auto;
}
.section-submenu-right .section-submenu-right-content{
	padding:0px 25px;
}
.section-submenu-right .section-submenu-right-content h2{
	font-size: 2.5rem;
	color: #1597A3;
	padding-bottom: 30px;
}

.support-faq-list .section-submenu-right .section-content-text{
	padding:25px 35px;
	border-top:1px solid #DDE1E7;
	text-align: left;
}

.support-faq-list .section-submenu-right .section-content-text{
	background: url(https://www.horinglih.com/images/blue_circle.svg) no-repeat;
	background-size: 20px 20px;
	background-position: 0px 38px;
}
.section-submenu-right .label{
	padding:5px 14px;
	font-size: 1.2rem;
	background-color: #0E93CD;
	color:#ffffff;
	margin:20px 0px;
	display: inline-block;
}
.section-submenu-right h3 a{
	color:#000;
}
.section-submenu-right h3 a:hover{
	color:#000;
	text-decoration: none;
}
.section-submenu-right .description{
	color:#6A737F;
	font-size: 1.4rem;
	line-height: 2;
	margin-top:5px;
}


.section-submenu-right-content .page-controls{
	padding:45px 40px;
	border-top:1px solid #E2E2E2;
}
.section-submenu-right-content .page-controls ul{
	display: inline-flex;
	list-style: none;
	margin:0 auto;
	padding-inline-start: 0px;
}
.section-submenu-right-content .page-controls ul li{
	display: inline-flex;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	margin:0px 10px;
	color: #000000;
	justify-content: center;
	align-items: center;
	font-size: 1.8rem;
	position: relative;
}
.section-submenu-right-content .page-controls ul li.active{
	background-color: #1597A3;
	color: #ffffff;
}
.section-submenu-right-content .page-controls ul li a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.section-submenu-right-content .page-controls .btn{
	background-position: center;
	background-repeat: no-repeat;
	display: inline-flex;
	width: 60px;
	height: 60px;
	background-size: 12px 20px;
}
.section-submenu-right-content .page-controls .prev{
	background-image: url('https://www.horinglih.com/images/icon_arrow_1_left.svg');
}
.section-submenu-right-content .page-controls .next{
	background-image: url('https://www.horinglih.com/images/icon_arrow_1_right.svg');
}
@media (max-width: 1360px) {
	.section-submenu-right .section-content-text{
		width:100%;
	}
	.section-submenu-right .section-submenu-right-content h2{
		font-size: 2.2rem;
		text-align: center;
	}

	.submenu-list-title{
		display: none;
	}
	.section-submenu-list{
		text-align: left;
		position: relative;
		z-index: 8888;
		width:100%;
		display: none;

	}

	.section-submenu-list{
		list-style: none;
		max-height: 30vh;
	    padding-inline-start: 0px;
	    background-color: #ffffff;
	    display: block;
	    width: 327px;
	    max-width: 390px;
	    padding: 0px 20px 0px 20px;
	    border:1px solid #DEDEDE;
	    margin:0 auto;

	}

	.section-submenu-item{
		max-width: 327px;
	/*	background-color: #F1F3F6;
	*/	padding:15px 40px 15px 20px;
	/*	margin-bottom: 10px;
	*/
		border-bottom: unset;
		cursor: pointer;
		transition: all 300ms ease-in;
		-webkit-transition: all 300ms ease-in;
		-o-transition: all 300ms ease-in;
		-moz-transition: all 300ms ease-in;
		margin: 0 auto;

	}
	.section-submenu-item a{
		font-size: 1.6rem;
	}

	.section-submenu-list .activated{
		background-color: #C0D9E9;
		background-image: none;
	}
	.submenu-dropbtn{

		margin:0 auto;
		position: relative;
		display: block;
		background:url(https://www.horinglih.com/images/icon_arrow_drop_down.svg) no-repeat;
		background-size: 20px 10px;
		background-position: 90% 50%;
		width: 327px;
		padding:15px 40px 15px 20px;
		cursor: pointer;
		color:#000;
		font-size: 1.6rem;
		z-index: 8889;
		border-radius: 5px;
		border: 1px solid #DEDEDE;
	}
	.submenu-dropbtn:hover{
		color:#000;
		text-decoration: none;
	}
	.submenu-dropbtn-active{
		background:url(https://www.horinglih.com/images/icon_arrow_drop_up.svg) no-repeat;
		background-size: 20px 10px;
		background-position: 90% 50%;
	}
	.section-submenu-right{
		margin:30px auto;
	}
}

