@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;
    border-radius: 15px;
}
.news-list .pic img{
    width: 100%;
}
.news-list .txt {
    position: relative;
    padding-left: 0;
    line-height: 1.5;
    position: static;
}
.news-list .date {
    position: absolute;
    left: 8px;
    top: 12px;
    display: block;
    width: 75px;
    height: 75px;
    background: #EE8AB3;
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    font-family: "Cabin", sans-serif;
    border-radius: 50%;
}
.news-list .date small {
    display: block;
    display: block;
    font-size: 12px;
    margin-top: -10px;
}
.news-list .name {
    position: relative;
    color: #525252;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 1px;
    
    overflow: hidden;
    
    margin: 0 0 8px 0;
    transition: all .5s;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 50px;
}
.news-list .box:hover .name {
    color: #EE8AB3;
}
.news-list .description {
    position: relative;
    box-sizing: border-box;
    color: #858585;
    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;
    display: none;
}
.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;
    background: #EE8AB3;
    color: #fff;
    width: 75px;
    height: 75px;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto 25px;
    font-family: "Cabin", sans-serif;
    border-radius: 50%;
}
.news-header .date small {
    display: block;
   
    font-size: 12px;
    margin-top: -10px;
}
.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 {
}
.news-detail .title {
    color: #FFF;
   background: #EE8AB3;
    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: "Cabin", sans-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 {
       
    }
    .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;
    }
}