.news-list {
    max-width: 1280px;
    margin: 0 auto;
}
.news-list .item {
    width: 25%;
    padding: 0 15px;
}
.news-list .item:nth-child(4n+1) {
    clear: left;
}
.news-list .box {
    position: relative;
    display: flex;
    flex-direction: column;
    max-width: 274px;
    margin: 0 auto 30px;
    text-align: center;
}

.news-list .item .box{
    position: relative;
    display: flex;
}
.news-list .pic {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 20px;
    border: 2px solid #E3E3E3;
    margin: 0;
    padding: 10px;
    overflow: hidden;
    transition: all .3s ease;
    order: 1;
}
.news-list .box:hover .pic {
    border-color: #EE7700;
}
.news-list .pic img{
    margin: auto;
    border-radius: 15px;
    box-sizing: border-box;
}
.news-list .name {
    position: relative;
    box-sizing: border-box;
    max-width: 250px;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: auto;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    order: 3;
}
.news-list .date,
.news-header .date {
    position: relative;
    box-sizing: border-box;
    max-width: 250px;
    color: #FBBF2B;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-family: "Montserrat", sans-serif;
    padding:15px 0 5px;
    margin: 0;
    margin-left: 20px;
    text-align: left;
    order: 2;
}
.news-list .n_round{
    content: '';
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    right: 22px;
    top: -22px;
    background: #FBBF2B;
    transition: all .3s ease;
    z-index: 2;
}
.news-list .n_round::before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    height: 0%;
    background: #EE7700;
    border-radius: 100%;
    transition: all .4s ease;
}
.news-list .box:hover .n_round::before{
    width: 100%;
    height: 100%;
}

.news-list .n_round::after{
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 9px;
    background: url('../../images/common/index/n_arrow_ic.png') center no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}


.news-header {
    text-align: center;
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 25px;
}
.news-header .title {
    max-width: 1045px;
    margin: 0 auto 25px;
    color: #333333;
    font-size: 18px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
.news-detail {
    border-bottom: 1px solid #E3E3E3;
    padding: 40px 0;
}
.news-detail .editor {
    max-width: 1045px;
    margin: 0 auto;
}
.share_box{
	margin-top: 30px;
}
@media screen and (max-width: 1000px) {
    .news-list {
        width: 100%;
        max-width: inherit;
        margin: 0 auto;
    }
    .news-list .item {
        width: 25%;
        padding: 0 7.5px;
    }
    .news-list .date,
    .news-header .date{
        font-size: 14px;
        margin: 0 auto 0;
        width: 100%;
        max-width: 250px;
    }
    .news-list .name{
        font-size: 17px;
        margin: 0 auto;
        width: 100%;
        max-width: 250px;
    }
    .news-list .n_round{
        width: 40px;
        height: 40px;
        background-size:contain ;
    }

    .news-header .title{
        margin: 0 auto 5px;
        font-size: 16px;
    }
    .share_box{
        margin-top: 10px;
    }
    .news-header {
        padding-bottom: 10px;
    }
    .news-detail {
        padding: 8px 0;
    }
}
@media screen and (max-width: 767px) {
    .news-list {
        max-width: 700px;
    }
    .news-list .item{
        width: 50%;
         margin-bottom:15px;
    }
    .news-list .item:nth-child(4n+1) {
        clear: none;
    }
    .news-list .item:nth-child(2n+1) {
        clear: left;
    }
    .news-list .date {
        box-sizing: border-box;
        padding-left: 2%;
    }
}
@media screen and (max-width: 480px) {
    .news-list .date {
        box-sizing: border-box;
        padding-left: 5%;
    }
}

/*@media screen and (max-width: 440px) {
    .news-list .item{
        width: 100%;
    }
    .news-list .item:nth-child(n) {
        clear: none;
    }
}*/