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

.news-list {
    margin: 90px -20px 0;
}
.news-list li {
    padding: 0 25px;
    text-align: center;
    width: calc((100% / 3) - 0.1px);
}

.news-list li a {
    padding: 0px 0px 32px;
    position: relative;
    background:#fff;
    margin-bottom: 50px;
    border-top: 3px solid #A37063;
    border-bottom: 3px solid #A37063;
}
.news-list li .top{
    position: relative;
}
.news-list .date {
    transition: all .3s ease;

    width: 108px;
    height: 108px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    display: block;
    line-height: 1.2;
    box-sizing: border-box;
    padding-top: 17px;
    position: relative;
    top: -30px;
    background: #A37063;
     margin-bottom: -15px;
}


.news-list .date b {
    font-size: 40px;
    display: block;
}

.news-list li .text {
    text-align: left;
}

.news-list li .name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    height: 53px;
    font-size: 20px;
    color: #2C2010;
    font-weight: bold;
    font-family: 'Istok Web','微軟正黑體', sans-serif;
    transition: all .2s;
}

.news-list li a:hover .name {
   
}

.news-list li .description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: #A37063;
    font-size: 14px;
    line-height: 1.6;
    height: 66px;
    margin: 10px 0 0 0;
}

.news-list .more {
    display: inline-block;
    width: 83px;
    line-height: 26px;
    height: 26px;
    border-radius: 3px;
    transition: all .2s;
    color: #fff;
    font-size: 15px;
    position: absolute;
    top: 25px;
    right: 40px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#42602d+0,223525+100 */
    background: rgb(66,96,45); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(66,96,45,1) 0%, rgba(34,53,37,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(66,96,45,1) 0%,rgba(34,53,37,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(66,96,45,1) 0%,rgba(34,53,37,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#42602d', endColorstr='#223525',GradientType=0 ); /* IE6-9 */
}

.news-list .more:after {
    content: '';
    display: inline-block;
    background: url(../../images/common/news/more.png);
    width: 10px;
    height: 8px;
    margin-left: 8px;
    vertical-align: middle;

}
.news-list li a:hover .more:after{
    background: url(../../images/common/news/more_hover.png);
}
.news-list li a:hover .more {
    color: #D2C7BE;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a37063+0,714b42+100 */
    background: rgb(163,112,99); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(163,112,99,1) 0%, rgba(113,75,66,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(163,112,99,1) 0%,rgba(113,75,66,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(163,112,99,1) 0%,rgba(113,75,66,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a37063', endColorstr='#714b42',GradientType=0 ); /* IE6-9 */
}

.news-list li a:hover .date{
    background: #036234;
}

.news-list li .pic {
    position: relative;
    box-sizing: border-box;
}

.news-list li .pic:before,
.news-list li .pic .cover {
    content: "";
    transition: all .2s;
    position: absolute;
    opacity: 0;
}

.news-list li .pic:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(38, 65, 16, .6);
}




/*------------ detail-main ------------*/

.news-detail {}

.news-date {
    font-size: 20px;
    color: rgb(113,75,66);
    font-weight: bold;
}

.news-date span {
    display: inline-block;
    border-radius: 50%;
    margin: 0 0 0 10px;
    display: inline-block;
    width: 40px;
    height: 40px;
    text-align: center;
    box-sizing: border-box;
    line-height: 40px;
    color: #fff;
    background: #A37063;
}



.news-title {
    margin: 10px 0;
    font-size: 20px;
    color: #335F1D;
}


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

@media screen and (max-width: 1100px) {
    .news-list {
        margin: 0px -20px;
    }
}

@media screen and (max-width: 900px) {
    .news-list {
        max-width: 700px;
        margin: 0 auto;
    }
    .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 li {
        width: 100%;
        padding: 0 0 40px;
    }
}
