@charset "utf-8";
.news-list {
    margin: 0 -20px;
}
.news-list .box{
    position: relative;
}
.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 .item {
    width: 25%;
    padding: 0 20px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .item {
    margin: 0 auto 40px;
}
.news-list .pic {
    position: relative;
    overflow: hidden;
    margin-bottom: 14px;
}
.news-list .pic img{
    width: 100%;
}
.news-list .txt {
    position: relative;
    padding-left: 76px;
    line-height: 1.5;
}
.news-list .date {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 56px;
    height: 70px;
    color: #52A9A4;
    border: 1px solid #52A9A4;
    background: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
}
.news-list .date small {
    display: block;
    font-size: 15px;
}
.news-list .name {
    position: relative;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 24px;
    margin: 0 0 8px 0;
    transition: all .5s;
}
.news-list .box:hover .name {
    color: #52A9A4;
}
.news-list .description {
    position: relative;
    box-sizing: border-box;
    color: #535353;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}
.news-list .more {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 100px;
    color: #555555;
    font-size: 15px;
    text-align: center;
    letter-spacing: 1.9px;
    line-height: 30px;
    border-bottom: 2px solid #52A9A4;
    margin: 20px auto 0;
    font-family: 'Cormorant Garamond', serif;
    transition: all .5s ease;
}
.news-list .item:hover .more {
    border-bottom-color: rgb(82, 169, 164, 0.3);
    color: #52A9A4;
}
/* content */
.news-header {
    max-width: 1000px;
    margin: 0 auto;
}
.news-header .date {
    display: block;
    color: #52A9A4;
    border: 1px solid #52A9A4;
    background: #fff;
    width: 80px;
    height: 74px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto 25px;
    font-family: 'Cormorant Garamond', serif;
}
.news-header .date small {
    display: block;
    font-size: 18px;
}
.news-header .title {
    color: #333;
    font-size: 23px;
    font-weight: normal;
    letter-spacing: 1px;
    line-height: 1.4;
    padding: 0 0 16px;
    border-bottom: 1px solid #ddd;
    margin: 0 auto 32px;
    text-align:center;
}
.news-detail .title {
    color: #fff;
    border: 1px solid #52A9A4;
    background: #52A9A4;
    width: 135px;
    height: 35px;
    letter-spacing: 1.5px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    margin: 0 auto 32px;
    font-family: 'Cormorant Garamond', serif;
}
.news-detail .editor {
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width: 1280px) {
    .news-list {
        margin: 0 -10px;
    }
    .news-list .item{
        padding: 0 10px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list .name{
        font-size: 16px;
        margin: 0 0 4px 0;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-list .item{
        width: 50%;
        margin: 0 auto 20px;
    }   
    /* content */
    .news-header .title{
        font-size: 18px;
        margin-bottom: 24px;
    }
    .news-header .date {
        line-height: 1;
        margin: 0 auto 16px;
        width: 80px;
        height: 60px;
    }
    .news-detail {
    }
    .news-detail .title {
        height: auto;
        margin: 0 auto 16px;
    }
}
@media screen and (max-width: 767px) {
    .news-list .box {
        margin-bottom: 30px;
    }
}
@media screen and (max-width: 580px) {
    .news-list {
        margin: 0;
    }
    .news-list .item{
        width: 100%;
    }
    .news-list .item:nth-child(2n+1) {
        clear: both;
    }
    .news-list .item:nth-child(n+1) {
        clear: left;
    }
    .news-list .box {
        max-width: 330px;
        margin: 0 auto;
    }
}