﻿@charset "utf-8";
/*--- 項目區 ---*/
.app_item_block{
	/*padding: 120px 0 100px 0;*/
	padding-top: 25px;
}
/*tab*/
.tab_list{
	display: block;
	/*margin-bottom: 50px;*/
	margin-bottom: 10px;
}
.tab_list li{
	display: inline-block;
	background: #dcdcdc;
	color: #707070;
	padding: 3px 12px;
	height: 54px;
	overflow: hidden;
	border-radius: 3px;
	margin-right: 15px;
	margin-bottom: 10px;
	cursor: pointer;
	-webkit-transition: .3s linear;
	-moz-transition: .3s linear;
	-o-transition: .3s linear;
	transition: .3s linear;
}
.tab_list li span{
	height: 48px;
}
.tab_list li:hover,
.tab_list li.active{
	color: #fff;
}
.tab_list .common_btn.active:before, 
.tab_list .common_btn.active:after {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.tab_list .common_btn.active:after {
    -webkit-transition-delay: 0.175s;
    transition-delay: 0.175s;
} 
/*根據不同底色做修改*/
.tab_list .common_btn{
	/*hover before*/
	background: #dcdcdc;
}
.tab_list .common_btn:before {
	/*hover layer1*/
    background: #ACC9DD;
}
.tab_list .common_btn:after {
	/*hover layer2*/
	background: #68aedf;
}
.tab_content .tab_pane{
	display: none;
	padding-top: 60px;
}
.tab_content .tab_pane.active{
	display: block;
}
/*item list*/
.tab_content{
	overflow: hidden;
	margin-top: -60px;
}
.app_item_list,
.app_item_list li,
.app_item_list li a{
	display: block;
}
.app_item_list{
	margin-right: -30px;
}
.app_item_list li{
	width: 25%;
	float: left;
	padding-right: 30px;
	/*margin-bottom: 30px;*/
	margin-bottom: 15px;
}
.app_item_list li a{
	width: 100%;
	/*height: 450px;*/
	height: 290px;
	border: 1px solid #d2d2d2;
	border-top: 4px solid #ceaa79;
	text-decoration: none;
	/*padding: 10px;*/
	padding: 5px 10px;
	position: relative;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
}
.app_item_list li a:hover{
	-webkit-box-shadow: 2px 3px 13px rgba(6,0,1,0.3);
    box-shadow: 2px 3px 13px rgba(6,0,1,0.3);
}
/*191021 adjust border-top*/
.app_item_list li a:before {
    position:absolute; 
    width:100%; 
    outline: 1px solid #ceaa79;
    top:-3px;
    left:0;
    content: '';
    background:#ceaa79;
    height:2px;
}
/*.app_item_list li a:before,
.app_item_list li a:after{
    position: absolute;
    bottom: 15px;
    color: #8f9195;
    transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
	
}
.app_item_list li a:before{
	content: "More";
	right: 35px;
}
.app_item_list li a:after{
    right: 15px;	
	font-family: 'FontAwesome';
    content: "\f054";
    font-size: 14px;
}
.app_item_list li a:hover:before{
	text-decoration: underline;
}
*/
.app_item_list li .img_block{
	height: 140px;
	/*margin-bottom: 20px;*/
	margin-bottom: 10px;
}
.app_item_list li .img_block img{
	max-width: 245px;
}
.app_item_list li a h2{
	font-size: 20px;
	line-height: 30px;
	color: #000;
	/*max-height: 60px;*/
	max-height: 30px;
	overflow: hidden;
	/*margin-bottom: 10px;*/
	margin-bottom: 5px;
}
.app_item_list li a .sub_title{
	color: #939b4f;
	max-height: 24px;
	overflow: hidden;
	/*margin-bottom: 15px;*/
	margin-bottom: 5px;
}
.app_item_list li a .text_block{
	color: #000;
	/*max-height: 96px;*/
	font-size: 14px;
	line-height: 21px;
	max-height: 42px;
	overflow: hidden;
}

.tab_select_block{
	/*margin-bottom: 30px;*/
	margin-bottom: 20px;
}
.tab_select_note{
	font-size: 24px;
	line-height: 1.5em;
	/*margin-top: -2.5em;
	margin-bottom: 1em;*/
	margin-bottom: 20px;
}
.tab_select.common_sel{
	background-color: #68aedf;
	color: #fff;
}
/*邊框效果*/
.index-border-area {
    padding: 0;
    background: transparent;
    outline: none !important;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}
.index-border {
    padding: 0;
    border: none;
	top: 0;
	left: -1px;
	position: absolute;
    width: 100%;
    width: -webkit-calc(100% + 2px);
	width: -moz-calc(100% + 2px);
	width: calc(100% + 2px);
    height: 100%;
    height: -webkit-calc(100% + 1px);
	height: -moz-calc(100% + 1px);
	height: calc(100% + 1px);
    /*line-height: 42px;*/
}
/*左框*/
.index-border:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
	background: #ceaa79;
    height: 0%;
    width: 4px;
    /*move out*/
    transition: all 0.2s ease 0;
}
.app_item_list li a:hover .index-border:before {
    height: 100%;
    /*move in*/
    transition: all 0.2s ease 0.6s;
}
.index-border span {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.index-border span:before,
.index-border span:after {
    content: "";
    position: absolute;
    background: #ceaa79;
}
/*下框*/
.index-border span:after {
	width: 0%;
	height: 4px;
	right: 0;
    bottom: 0;
	/*move out*/
	transition: all 0.2s ease 0.2s;
}
.app_item_list li a:hover .index-border span:after {
    width: 100%;
    /*move in*/
    transition: all 0.2s ease 0.5s;
}
/*右框*/
.index-border span:before{
    width: 4px;
    height: 0%;
    right: 0;
    top: 0;
	/*move out*/
    transition: all 0.2s ease 0.4s;

}
.app_item_list li a:hover .index-border span:before {
    height: 100%;
    /*move in*/
    transition: all 0.1s ease 0;
}


@media screen and (max-width: 1100px){
	.app_item_list li{
		width: 33.33%;
	}
}
@media screen and (max-width: 768px){
	.app_item_list li{
		width: 50%;
	}
}
@media screen and (max-width: 600px){
	.app_item_list li{
		width: 100%;
	}
	.app_item_list li a{
		width: 280px;
		margin-right: auto;
		margin-left: auto;
	}
}



@media screen and (max-width: 1300px){
	
}
@media screen and (max-width: 768px){
	
}
