.contentArea {
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width:1200px) {
    .contentArea {
        max-width: 100%;
        margin: 0 auto;
    }
}

.banner {
    height: 240px;
    padding-top: 71px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.banner p {
    margin: 0;
}

.banner-tit {
    display: flex;
    align-items: flex-start;
}

.banner-tit p {
    font-size: 42px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 40px;
}

.banner-tit .iconfont {
    margin-right: 10px;
}

.banner-title-rig {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.banner-title-rig span:last-child {
    font-size: 24px;
}

@media (max-width:600px) {
    .banner {
        height: 170px;
        padding-top: 30px;
    }

    .banner-tit {
        margin-left: 30px;
    }

    .banner-tit p {
        font-size: 22px;
    }

    .banner-title-rig span:last-child {
        font-size: 14px;
    }
}

@media (min-width:600px) and (max-width:1200px) {
    .banner-tit {
        margin-left: 10px;
    }
}

/* 内容区域 */

.news {
    padding: 27px 0 73px 0;
    display: flex;
    justify-content: space-between;
}

.news-left {
    width: 20%;
    max-width: 240px;
    height: 479px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
}


.news-left-tit {
    height: 56px;
    font-size: 24px;
    background: #D3A838;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    line-height: 56px;
}

.news-left-options ul {
    padding: 15px;
    list-style: none;
}

.news-left-options li {
    cursor: pointer;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #333333;
    text-align: center;
    line-height: 60px;
    border-bottom: 1px solid #DDDDDD;

}
.news-left-options li img {
    margin-right: 5px;
    margin-bottom: 3px;
}

.news-left-options .news-left-options-active {
    color: #D3A838;
}

.news-left-options li:last-child {
    border-bottom: none;
}

.news-right {
    width: 78.67%;
    max-width: 944px;
}

.crumbs {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 21px 0 10px 0;
    border-bottom: 1px solid #DDDDDD;
}

.crumbs-name {
    font-size: 18px;
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: #D3A838;
}

.crumbs-nav,
.crumbs-nav a {
    cursor: pointer;
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #666666;
}

.crumbs-nav span:last-child {
    color: #D3A838;
}

@media (max-width:600px) {
    
    .news {
        flex-direction: column;
        padding-bottom: 30px;
    }
    .news-left-tit{
        height: 36px;
        font-size: 16px;
        line-height: 36px;
    }
    .news-left-options li{
        font-size: 14px;
    }
    .crumbs-name{
        font-size: 16px;
    }
    .news-left {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: auto;
    }

    .news-left-options ul {
        padding: 0 15px;
        list-style: none;
    }

    .news-left-options li {
        display: inline-block;
        line-height: 50px;
        margin: 0 10px;
    }

    .news-left-options li:last-child {
        border-bottom: 1px solid #DDDDDD;
    }

    .news-right {
        width: 100%;
        max-width: 100%;

    }

    .crumbs {
        padding: 21px 15px 10px 15px;
    }
}