.news-list {
    margin: 0 -10px;
}
.news-list .item {
    padding: 0 10px;
}
.news-list .box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 36px 14px 0;
    transition: all 0.3s ease;
}
.news-list .item:nth-child(odd) .box{
    background: #F6F6F6
}
.news-list .item:nth-child(n) .box:hover{
    background: #FCF9F3;
}
.news-list .more {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    padding: 15px 0;
    color: #fff;
    font-family: "Century Gothic", CenturyGothic, AppleGothic, 'Muli', "文泉驛正黑", "WenQuanYi Zen Hei", "儷黑 Pro", "LiHei Pro", "微軟正黑體", "Microsoft JhengHei", "微软雅黑", "メイリオ", "맑은 고딕", sans-serif;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 1.4;
    background: #F75000;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: 36px;
    transition: all 0.3s ease;
}
.news-list .box:hover .more {
    background: #444444;
}
.news-list .item a.cover{
    font-size: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index:30;
}
.news-list .pic {
    overflow: hidden;
}
.news-list .txt {
    width: calc(100% - 314px);
}
.news-list .name {
    color: #111;
    font-size: 20px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 34px;
}
.news-list .date {
    color: #000000;
    font-size: 18px;
    line-height: 1;
    min-width: 178px;
    margin-right: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.news-list .date b {
    display: block;
    font-size: 62px;
    font-weight: bold;
}
.news-list .box:hover .date{
    color: #F75000;
}
.news-list .description{
    color: #8B8B8B;
    font-size: 13px;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 52px;
}
.news-header,
.news-detail {
    max-width: 1280px;
    margin: 0 auto;
}
.news-header .title {
    color: #000;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    line-height: 1.75;
    padding: 25px 0 35px;
    margin: 0;
}
.news-header .date {
    display: block;
    color: #8B8B8B;
    max-width: 320px;
    margin: 0 auto 45px;
    text-align: center;
    border-top: 5px solid #F75000;
    padding-top: 15px;
}
.news-header .date:before {
    content: 'DATE';
    display: inline-block;
    margin-right: 20px;
    color: #EA7039;
    font-size: 13px;
}
.news-detail {
    padding: 0 60px 45px;
    border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 1440px) {
    .news-detail {
        padding: 0 15px 30px;
        margin: 0 -15px;
    }
    .news-list {
        margin: 0 -6px;
    }
    .news-list .item {
        padding: 0 6px;
    }
}
@media screen and (max-width: 1000px) {
    .news-list {
        max-width: 760px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 767px) {
    .news-header .title {
        font-size: 20px;
        padding: 0 0 25px;
    }
}
@media screen and (max-width: 600px) {
    .news-list {
        margin: 0 -6px;
    }
    .news-list .box {
        margin-bottom: 50px;
    }
    .news-list .description {
        height: auto;
        max-height: 52px;
    }
    .news-list .more{
        display: none;
    }
    .news-list .date {
        min-width: 100px;
        font-size: 15px;
        margin-right: 10px;
    }
    .news-list .txt {
        width: calc(100% - 100px);
    }
    .news-list .date b {
        font-size: 52px;
    }
}