﻿@charset "utf-8";
/*
** 功能名称：响应式界面布局
** 修改时间：2017年12月19日15:29:21
*/

/* to 新闻列表四 */
.list4-Main {
    margin: 0 auto;
    padding: 2%;
    visibility:hidden;
}
.ie .list4-Main {
    visibility:visible;
}
.list4-top {
    overflow: hidden;
    margin-bottom: 10px;
}

.list4-img {
    width: 100%;
    height: 0;
    padding-bottom: 125%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    transition: .6s;
}

.list4-bottom .list4-Title {
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #3b3b3b;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: .6s;
}

.list4-bottom .list4-txt {
    height: 25px;
    font-size: 14px;
    color: #858585;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.list4-xg {
    width: 100%;
    height: 2px;
    background: #dbdbdb;
}

    .list4-xg span {
        display: block;
        width: 0;
        height: 2px;
        background: #59e8e8;
        transition: 1s;
    }

.list4-Main:hover > a .list4-bottom .list4-Title {
    color: #59e8e8;
    transition: .6s;
}

.list4-Main:hover > a .list4-xg span {
    width: 100%;
    transition: .6s ease;
}

.list4-Main:hover > a .list4-img {
    transform: scale(1.1);
}
/* end */