﻿@charset "utf-8";
/*
** 功能名称：响应式界面布局
** 修改时间：2017年12月19日15:29:21
*/

/* to 新闻列表三十二 */
#list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 200px;
    margin-top: 56px;
}
#list > :nth-child(3n+2) {
    margin: 0 30px;
}
.list32-Main {
    /* padding: 2px; */
    width: 380px;
    visibility: hidden;
}
.ie .list32-Main {
    visibility:visible;
}
.list32-top {
    height: 260px;
    position: relative;
    overflow: hidden;
}

.list32-img {
    width: 100%;
    height: 260px;
    /* padding-bottom: 140%; */
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    transition: all 0.5s ease-in-out;
}

.fadeIn:hover .list32-top > .list32-img {
    -webkit-transform: scale3D(1.1,1.1,1);
    transform: scale3D(1.1,1.1,1);
}

.list32-Title {
    text-align: center;
    padding: 26px 0 56px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 22px;
    font-family: Microsoft YaHei, Microsoft YaHei-Bold;
    font-weight: 700;
    color: #333333;
}

.list32-Main:hover a .list32-Title {
    color: #59e8e8;
}
/* end */

/*屏幕小于或等于600px*/
@media screen and (max-width: 600px) {
    #list > :nth-child(3n+2) {
        margin: 0;
    }
}