@charset "UTF-8";


.top-banner{
	background:url('../../img/press/press-top.png');
}
#container{
	background:#fdfdfd;
	padding:0 0 120px;
}
.title-wrap{
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 30px;
}
.title-wrap .title{
	font-size:25px;
	width:90%;
	max-width:1300px;
	color:#222831;
	font-weight:700;
	margin: 0 auto;
	padding-bottom: 30px;
	position:relative;
}
.title-wrap .title::after{
	content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    background:#06fe02;
    height:3px;
    width:7%;
}
.tab-wrap{
    max-width: 600px;
    width: 90%;
    margin: 50px auto;
    
}
.tab-wrap ul{
	text-align: center;
	width:100%;
}
.tab-wrap ul li{
    display: inline-block;
    width: 22%;
    text-align: center;
    background-color: #fff;
    color: #999;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 0;
    border-radius: 5px;
    margin-right: 2%;
    margin-bottom: 2%;
    cursor: pointer;
    border: 1px solid #dcdcdc;
}
.tab-wrap ul li:nth-last-child(1){
	margin-right:0;
}
.tab-wrap ul li:hover{
	background-color:#222831;
	color:#fff;
}
.tab-wrap ul .on{
	background-color:#222831;
	color:#fff;
}
.tab-wrap ul li a{
	display:inline-block;
	width: 100%;
	height: 100%;
}
.search-wrap{
    max-width: 600px;
    width: 90%;
    height: 50px;
    margin: 50px auto;
    display: flex;
}
.search-wrap .select-box{
    width: 20%;
    border: 1px solid #222831;
    border-radius: 10px;
    padding: 0 5px 0 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    cursor: pointer;
   -ms-user-select: none; 
   -moz-user-select: -moz-none; 
   -webkit-user-select: none; 
   -khtml-user-select: none;
    user-select:none;
	 margin-right: 2%;
}
.search-wrap .select-box .selected{
	border: none;
	line-height: 50px;
	font-size: 20px;
	font-weight: 500;
	width: calc(100% - 20px);
	display: inline-block;
}
.search-wrap .select-box i{
    width: 15px;
}
.search-wrap .select-box .option{
	 display:none;
    width: 76%;
    text-align: center;
    background-color: #fff;
    position: absolute;
    left: -2px;
    border: 2px solid;
    top: 57px;
    border-radius: 10px;
    padding: 2% 12%;
}
.search-wrap .select-box .active{
	display:block;
}
.search-wrap .select-box .option li{
    font-size: 19px;
    padding: 7% 1%;
    font-weight:400;
    width: 100%;
    height: 100%;
    border-bottom: 1px solid #d8d8d8;
	cursor:pointer;
}
.search-wrap .select-box ul li p:hover{
	font-weight:600;
}
.search-wrap .select-box ul li:nth-last-child(1){
	border:none
}
.search-wrap .search-box{
    border: 1px solid #222831;
    border-radius: 10px;
    display: flex;
    background: #fff;
    width: 80%;
}
.search-wrap .search-box .search-contents{
    width: calc(100% - 45px);
    height: 45px;
    vertical-align: top;
    border: none;
    outline: none;
    font-size: 20px;
    padding: 0 5px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 10px;
}
.search-wrap .search-box .submit-wrap{
	width: 45px;
	text-align:center;
	border-radius:10px;
}
.search-wrap .search-box .submit-wrap .search-btn{
    margin-top: 5px;
    width: 37.7px;
}
.list-wrap{
	max-width:1300px;
	width:90%;
	margin:0 auto;
}
.list-wrap .list{
    display: flex;
    flex-flow:wrap;
    margin-bottom: 50px;
}
.list-wrap .list .non-content{
	width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    color: #000;
    font-size: 20px;
    line-height: 25px;
    padding: 45px 2%;
    font-weight: 700;
    border-radius: 15px;
    word-break: break-word;
}
.list-wrap .list .list-item{
    border-radius: 10px;
    padding: 10px 10px;
    box-sizing:border-box;
    position: relative;
    cursor: pointer;
    margin-bottom: 30px;
    width: 31.3%;
    margin-right: 2%;
    background-color: #fff;
    min-height: 350px;
    border: 1px solid #dcdcdc;    
}
.list-wrap .list .list-item:nth-child(3){
	margin-right:2;
}
.list-wrap .list .list-item:nth-child(6){
	margin-right:2;
}

.list-wrap .list .list-item img{
	width:100%;
    height: 285px;;
    border-radius: 15px;
}
.list-wrap .list .list-item .text-wrap{
    padding: 7% 2%;
}
.list-wrap .list .list-item .text-wrap .title{
    font-size: 20px;
    font-weight: 700;
    color: #222831;
    line-height: 25px;
    margin-bottom: 10px;
}
.list-wrap .list .list-item .text-wrap .preview{
	font-size: 15px;
    line-height: 20px;
    color: #6f788f;
}
.list-wrap .list .list-item:hover{
	border: 1px solid #06fe02;
   	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);		
	transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1024px){
	
	.title-wrap .title{
		padding: 0 0 20px;
		font-size: 22px;
	}
	.title-wrap .title::after{
	    left:0;
	    width: 100px;
	}
	.tab-wrap{
	    margin: 30px auto;
	}
	.tab-wrap ul li{
	    width: 21%;
	    font-size: 17px;
	}
	.search-wrap{
    	margin: 30px auto;
	    height: 45px;
	}
	.search-wrap .select-box{
	    width: 90px;
        display: flex;
	    align-items: center;
	    justify-content: space-between;
        padding: 0 5px 0 10px;
	}
	.search-wrap .select-box .selected{
	    line-height: 30px;
    	font-size: 16px;
        width: calc(100% - 20px);
	}
	.search-wrap .select-box i{
	    font-size: 14px;
	}
	.search-wrap .select-box .option {
		top: 55px;
	}
	.search-wrap .select-box .option li{
		font-size:16px;
	}
	.search-wrap .search-box .search-contents{
        width: calc(100% - 20px);
	    height: 43px;
	    font-size: 16px;
	}
	.search-wrap .search-box .submit-wrap .search-btn{
	    margin-top: 4px;
   		width: 35px;
	}
	.list-wrap .list .list-item{
		width:48%;
	}
	.list-wrap .list .list-item:nth-child(2) {
	    margin-right: 0;
	}
	.list-wrap .list .list-item:nth-child(4) {
	    margin-right: 0;
	}
	.list-wrap .list .list-item:nth-child(6) {
	    margin-right: 0;
	}
	list .list-item:nth-child(3){
		margin-right:2%;
	}
	.list-wrap .list .list-item:nth-child(6){
		margin-right:2%;
	}	
	.list-wrap .list .list-item img{
		height:210px;
	}
	.list-wrap .list .list-item .text-wrap .title{
	
		font-size: 20px;
		line-height:25px;
	}
	.list-wrap .list .list-item .text-wrap .preview{
		font-size:15px;
		line-height:20px;
	}	
}

@media only screen and (max-width: 768px){
	
	.title-wrap .title{
		font-size: 18px;
	}
	.tab-wrap{
	    margin: 30px auto;
	}
	.tab-wrap ul li{
	    width: 21%;
	    font-size: 13px;
	}
	.search-wrap{
	    height: 35px;
	}
	.search-wrap .select-box .selected{
	   	font-size: 12px;
	}
	.search-wrap .select-box .option {
		top: 45px;
	}
	.search-wrap .select-box .option li{
		font-size:12px;
	}
	.search-wrap .search-box .search-contents{
  		height: 30px;
	    font-size: 12px;
	}
	.search-wrap .search-box .submit-wrap .search-btn{
   		width: 25px;
	}
	.list-wrap .list{
		justify-content: center;
	}
	.list-wrap .list .non-content{
		font-size:13px;
	}
	.list-wrap .list .list-item{
		width:100%;
		max-width: 300px;
	}
	.list-wrap .list .list-item img{
		height:165px;
	}
	.list-wrap .list .list-item .text-wrap .title{
		font-size: 14px;
		line-height:20px;
	}
	.list-wrap .list .list-item .text-wrap .preview{
		font-size:11px;
		line-height:16px;
	}
}
