@charset "utf-8";
/*------------------------------------------------------栏目标题------------------------------------------------------*/
.list_menu{
    min-width: 980px;
    background: #f5f5f5;
}
.list_menu ul{
    width: 63%;
    min-width: 980px;
    margin: 0 auto;
    text-align: center;
    padding:20px 0;
}
.list_menu ul li{
    display: inline-block;
    margin-right:3px;
}
.list_menu ul li a{
    display: block;
    background: #e0efd7;
    padding:15px 30px;
    font-size:16px;
    font-weight: bold;
    color: #333;
}
.list_menu ul li a:hover{
    background: red;
    color: white;
}
.list_menu ul .this a{
    background: red;
    color: white;
}
/*------------------------------------------------------栏目列表------------------------------------------------------*/
.list{
    width: 63%;
    min-width: 980px;
    margin: 50px auto 0;
}
.list li{
    float: left;
    width:32%;
    margin:20px 0;
}
.list li:first-child+li{
    margin:20px 2%;
}
.list li:first-child+li+li+li+li{
    margin:20px 2%;
}
.list li a{
    display: block;
    position: relative;
    width:100%;
    height:220px;
    overflow: hidden;
}
.list li a img{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 1;
}
.list li a .info{
    position: absolute;
    top:100%;
    left:0;
    z-index: 2;
    width:100%;
    height:100%;
    background: url(../images/list_bg.png);
}
.list li a .info h3,.list li a .info span{
    color: white;
}
.list li a .info h3{
    width:80%;
    margin: 30px auto 0;
    text-align: center;
    font-size:20px;
    padding:15px 0;
    border-top:10px solid rgba(255,255,255,0.6);
    border-bottom:1px solid rgba(255,255,255,0.6);
}
.list li a .info span{
    display: block;
    font-size: 16px;
    width:40%;
    margin: 30px auto;
    padding:10px 0;
    text-align: center;
    border:1px solid rgba(255,255,255,0.6);
}
.list li a .info span:hover{
    background: red;
}