/*------------ news ------------*/

.news-list {
    margin: 0 -10px;
}

.news-list li {
    width: 33.33%;
    padding: 0 10px 40px;
}

.news-list li:nth-child(3n+1) {
    clear: left;
}

.news-list li .box{
    -webkit-transition: all .2s;
    transition: all .2s;
    position: relative;
    max-width: 312px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    top: 0;
    background: #F9F9F9;
}
.news-list li .box:before{
    content: '';
    display: block;
    width: 0;
    height: 5px;
    background: #970001;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.news-list li .box:hover:before{
    right: inherit;
    left: 0;
    width: 100%;
}
.news-list .box .cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list li .box:hover {
    top: -10px;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.16);
    box-shadow: 0 0 10px rgba(0,0,0,0.16)
}

.news-list li .pic {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.news-list li a .pic img{
    width: 100%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.news-list li .box:hover .pic img{
    opacity: 0.7;
}

.news-list li .text{
    padding: 0 20px 20px 20px;
}
.news-list li .date small,
.news-date small{
        display: inline-block;
font-family: 'Arial';
font-weight: bold;
font-size: 13px;
margin-left: 5px;
}
.news-list li .date,
.news-date {
    letter-spacing: 0;
    padding-top: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 30px;
    line-height: 1.2;
    display: block;
    text-align: center;
    color: #FFFFFF;
    margin: -26px auto 13px;
    position: relative;
    z-index: 2;
    width: 130px;
    height: 45px;
    border-radius: 3px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 500;
    background: #838383;
    z-index: 2;
}
.news-date{
    margin:auto;
    background: #970001;
}
.news-list li .date:before{
    content: '';
    display: block;
    width: 100%;
    height: 0;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    z-index: -1;
    background:#970001;
    position: absolute;
    left: 0;
    top: 0;
}
.news-list li .box:hover .date:before{
    height: 100%;
    bottom: 0;
    top: inherit;
}

.news-list li .name {
    font-size: 17px;
    line-height: 1.4;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    -webkit-transition: all .2s;
    transition: all .2s;
    margin: 0 0 10px;
    color: #333333;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
   
}
.news-list li .box:hover .name {
     color: #000000
}
.news-list li .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    color: #8C8C8C;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 62px;
    line-height: 1.5;
}
.news-list li .box:hover .description {
    color: #464646;
}
/*------------ detail-main ------------*/

.news-title {
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
    padding: 0 0 15px;
    margin: 15px 0 26px;
    color: #212121;
    border-bottom: 1px solid #997F64;
}

.news-date {}


/*------------ rwd ------------*/

@media screen and (max-width: 900px) {
    .news-list li {
        width: 50%;
    }
    .news-list li:nth-child(3n+1) {
        clear: none;
    }
    .news-list li:nth-child(2n+1) {
        clear: left;
    }
}

@media screen and (max-width: 600px) {
    .news-list {
        margin: 0;
    }
    .news-list li {
        width: 100%;
        padding: 0 0 30px;
    }
}
