.navigation-page {
    margin: 20px 0;
}
.navigation-page span a {
    font-size: 12px;
    font-weight: 300;
    color: #7E8589;
}
.navigation-page span a.de {
    color: #ECCE6C;
}
.banner {
    display: flex;
    background: #ffffff;
    margin-bottom: 20px;
    position: relative;
}
.banner .left {
    flex: 1;
    padding: 20px;
    display: flex;
    height: 100%;
    flex-direction: column;
}
.banner .left .back {
    display: flex;
    align-items: center;
    position: absolute;
    left: 20px;
    bottom: 20px;
}
.banner .left .back-btn {
    background: #ECCE6C;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 400;
    color: #111111;
    line-height: 36px;
    padding: 5px 20px;
    cursor: pointer;

}
.banner .left .back-btn span a {
    color: #111111;
}
.banner .left .back-btn img {
    margin-right: 10px;
}
.banner .left .title {
    font-size: 20px;
    font-weight: 500;
    color: #111111;
    line-height: 48px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}
.banner .left .content {
    font-size: 14px;
    font-weight: 400;
    color: #7E8589;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.banner .right {
    flex: 1;
}
.banner .right img {
    width: 100%;
    height: 100%;
}
.table-list table{
    background: #ffffff;
    border-radius: 4px;
    width: 100%;
    border-collapse:collapse;
}
.table-list table tr td {
    text-align: center;
    border:solid 1px #f8f8f8;
    padding: 20px;
}
.table-list table tr.head {
    background: #852A78;
}
.table-list table tr.head td {
    color: #ffffff;
}
.advantage-content {
    margin-top: 20px;
    padding: 20px 40px;
}
.advantage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 40px 0;
}
.advantage-title img {
    /*width: 30%;*/
}
.advantage-list {
    display: flex;
    flex-wrap: wrap;
}
.advantage-item {
    width: 25%;
}
.advantage-item .info {
    background: #F2F6F7;
    margin-right: 20px;
    margin-bottom: 20px;
    padding: 30px 10px;
    display: flex;
    height: 36px;
    border-radius: 4px;
    position: relative;

}
.advantage-item .info .text {
    flex: 1;
    font-size: 12px;
    font-weight: 400;
    color: #7E8589;
    line-height: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;

}
.advantage-item .info .icon {
    width: 40px;
    height: 40px;
    background: #ECCE6C;
    border-top-left-radius:80px;
    border-bottom-left-radius: 0px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
}
.advantage-item .info .icon .num {
    font-size: 18px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
}
.advantage-item:nth-child(4n+0) .info {
    margin-right: 0;
}
.list-image-box {
    display: flex;
    margin-top: 60px;
    padding-bottom: 60px;
}
.list-image-box .list-image-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.list-image-box .list-image-item .img-box {
    height: 80px;
}
.list-image-box .list-image-item .title {
    font-size: 16px;
    font-weight: 500;
    color: #42474A;
    line-height: 36px;
    text-align: center;
}
.list-image-box .list-image-item  .describe {
    font-weight: 400;
    color: #7E8589;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    padding: 0 40px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.content-detail{
    background-color: #ffffff;
    padding: 40px;
    margin-bottom: 80px;
}
.content-detail img {
    width: 100%;
}

@media (max-width: 768px) {
    #content-container {
        padding: 0;
    }
    .banner{
        flex-direction: column;
    }
    .advantage-item:nth-child(4n+0) .info {
        margin-right: 20px;
    }
    .advantage-list {
        flex-direction: column;
    }
    .advantage-list .advantage-item {
        width: 100%;
    }
    .list-image-box {
        flex-direction: column;
    }
    .list-image-box .list-image-item {
        width: 100%;
        margin-bottom: 20px;
    }
}