.new-list {
    max-width: 1300px;
    margin: 60px auto 100px;
    overflow: hidden;
}

.new-nav {
    margin-bottom: 60px;
    overflow: hidden;
    text-transform: capitalize;
}

.new-nav ul li {
    display: inline-block;
    margin-right: 2px;
}

.new-nav ul li a {
    display: block;
    width: 310px;
    height: 100px;
    line-height: 100px;
    font-size: 18px;
    font-family: Poppins;
    font-weight: 500;
    color: #222222;
    background-color: #F8F8F8;
}

.new-nav ul li.active a,
.new-nav ul li a:hover {
    background-color: #F4B23E;
}

.new-nav ul li a span {
    display: block;
    float: left;
    margin: 46px 15px 0 30px;
    width: 8px;
    height: 8px;
    background-color: #F4B23E;
    border-radius: 50%;
}

.new-nav ul li.active span,
.new-nav ul li a:hover span {
    background-color: #222222;
}


.new-topic {
    margin-bottom: 60px;
    overflow: hidden;
}

.topic-1 {
    clear: both;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #F8F8F8;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topic-1-img {
    -ms-flex: none;
    flex: none;
    width: calc(50%);
}

.topic-1-img img {
    transition: all .5s ease;
}

.topic-1-img img:hover {
    transform: scale(1.025);
}

.topic-1-text {
    -ms-flex: none;
    flex: none;
    width: calc(50%);
    padding: 50px 60px 0;
    overflow: hidden;
}

.topic-1-text span {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    color: #999999;
}

.topic-1-text h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 500;
    color: #222222;
}

.topic-1-text h3 a {
    color: #222222;
}

.topic-1-text h3 a:hover {
    color: #21497C;
}

.topic-1-text p {
    margin-bottom: 30px;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
}

.topic-more {
    display: block;
    width: 50px;
    height: 50px;
    border: 1px solid #DDDDDD;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    color: #999999;
}

.topic-more:hover {
    background-color: #F4B23E;
    border-color: #F4B23E;
    color: #FFFFFF;

}

.topic-box {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.topic-2 {
    -ms-flex: none;
    flex: none;
    width: calc((100% - 20px) /2);
    background-color: #F6F6F6;
    padding: 50px 60px;
}

.topic-date {
    float: left;
    width: 67px;
    /* margin-top: 60px;
    margin-left: 50px; */
    margin-right: 40px;
    text-align: right;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 700;
    color: #999999;
}

.topic-date span {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
}

.topic-2 h3 {
    font-size: 18px;
    font-family: Poppins;
    font-weight: 500;
    color: #222222;
    line-height: 28px;
}

.topic-2 h3 a {
    color: #222222;
}

.topic-2 h3 a:hover {
    color: #21497C;
}

.topic-2 .topic-more {
    float: right;
    margin: 0 0 0 40px;
}

.topic-2:nth-of-type(2) {
    float: right;
}

.list-item {
    background-color: #F8F8F8;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 50px 20px 20px;
    margin-bottom: 20px;
}

.item-img {
    width: 400px;
    -ms-flex: none;
    flex: none;
}

.item-img img {
    transition: all .5s ease;
}

.item-img img:hover {
    transform: scale(1.025);
}

.item-text {
    -ms-flex: 1;
    flex: 1;
    padding: 20px 0 0 50px;
}

.item-text span {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-family: Poppins;
    font-weight: 500;
    color: #999999;
}

.item-text h3 {
    margin-bottom: 30px;
    font-size: 24px;
    font-family: Poppins;
    font-weight: 500;
    color: #222222;
}

.item-text h3 a {
    color: #222222;
}

.item-text h3 a:hover {
    color: #21497C;
}

.item-text p {
    font-size: 16px;
    font-family: Poppins;
    font-weight: 400;
    color: #666666;
    line-height: 26px;
}


@media screen and (max-width: 1440px){
    .topic-1-text {
        padding: 40px 50px;
    }
    .item-img{
        max-width: 100%;
    }
}
@media screen and (max-width: 1280px) {
    .new-list {
        padding: 40px;
    }
    .new-nav {
        margin-bottom: 40px;
    }
    .new-topic {
        margin-bottom: 10px;
    }
    .topic-1-text {
        padding: 30px 40px;
        
    }

    .topic-date {
        margin-right: 20px;
    }

    .item-text span {
        margin: 15px 0;
    }

    .item-text h3 {
        margin-bottom: 20px;
        font-size: 18px;
    }

    .item-text p {
        font-size: 14px;
        line-height: 24px;
    }
}
@media screen and (max-width: 1024px) {

    .topic-2{
        width: 100%;
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 800px) {
    .new-list {
        margin: 0;
        padding: 40px 20px;
    }
    .new-nav {
        margin-bottom: 30px;
    }

    .new-nav ul li {
        width: 49%;
        margin-right: 0;
    }

    .new-nav ul li a {
        width: 100%;
        height: 60px;
        line-height: 60px;
        font-size: 16px;
    }

    .new-nav ul li a span {
        margin: 26px 5px 0 20px;
    }

    .topic-1-img {
        width: 100%;
    }

    .topic-1-text {
        padding: 30px;
        width: 100%;
    }

    .topic-1-text span {
        margin-top: 0;
        margin-left: 0;
    }

    .topic-1-text h3 {
        margin-left: 0;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .topic-1-text p {
        margin-left: 0;
        margin-bottom: 0;
    }

    .topic-more {
        display: none;
    }

    .topic-2 {
        width: 100%;
        height: auto;
        padding: 30px;
        margin-bottom: 20px;
    }

    .topic-2:nth-of-type(2) {
        float: none;
    }

    .topic-date {
        float: none;
        margin: 0 0 10px;
    }

    .topic-date span {
        display: inline;
        margin-right: 10px;
    }

    .topic-2 h3 {
        margin-top: 0;
        font-size: 16px;
    }

    .list-item {
        padding: 20px;
    }

    .item-text {
        padding: 10px 0 0;
    }

    .item-text span {
        margin: 0 0 10px;
    }

    .item-text h3 {
        margin-bottom: 20px;
        font-size: 20px;
    }
}