html, body {
    background: #F6F6F6;
}
.banner-wrapper {
    width: 100%;
    min-width: 1200px;
    background: #1496EC;
}
.banner {
    width: 1200px;
    height: 400px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}
.banner .title {
    margin-top: 137px;
    font-size: 54px;
    font-weight: bold;
    color: #FEFEFE;
}
.banner .line {
    margin: 25px auto 22px;
    width: 60px;
    height: 2px;
    background: #FFFFFF;
}
.banner .sub-title {
    font-size: 28px;
    color: #FEFEFE;
}
.news-wrapper {
    width: 100%;
    min-width: 1200px;
}
.news {
    width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 6px;
    position: relative;
    top: -57px;
    margin-bottom: -57px;
}
.news .tab {
    margin-top: 60px;
    text-align: center;
    font-size: 0;
}
.news .tab .tab-item {
    width: 128px;
    height: 46px;
    line-height: 46px;
    display: inline-block;
    font-size: 20px;
    color: #666666;
    text-align: center;
    box-sizing: border-box;
    margin-right: 60px;
}
.news .tab .tab-item:last-child {
    margin-right: 0;
}
.news .tab .tab-item.active {
    background: #00A1E9;
    border: 1px solid #00A1E9;
    border-radius: 22px;
    font-size: 22px;
    color: #FFFFFF;
}
.news .list {
    margin-top: 20px;
    padding: 0 60px;
    box-sizing: border-box
}
.news .list .item {
    padding: 59px 0 30px;
    border-bottom: 1px solid #E7E7E7;
    box-sizing: border-box;
    display: block;
}
.news .list .item:last-child {
    border-bottom: 0;
}
.news .list .item .title {
    font-size: 20px;
    color: #333333;
    font-weight: bold;
}
.news .list .item .describe {
    font-size: 18px;
    color: #666666;
    line-height: 32px;
    margin-top: 40px;
    overflow : hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news .list .item .bottom {
    margin-top: 46px;
    font-size: 18px;
    color: #999999;
    overflow: hidden;
}
.news .list .item .bottom > span:last-child {
    font-size: 18px;
    color: #00A1E9;
    float: right;
    line-height: 18px;
}
.news .list .no-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 38px 0 64px;
}
.news .list .no-data img {
    width: 240px;
    display: block;
}
.news .list .no-data .text {
    margin-top: 38px;
    color: #969799;
    font-size: 20px;
    letter-spacing: 1px;
    text-align: center;
}
.page {
    width: 100%;
    min-width: 1200px;
    text-align: center;
    margin-top: 60px;
}
.page a {
    font-size: 20px;
    font-weight: 400;
    color: #666666;
    padding: 0 15px;
    position: relative;
}
.page a.active {
    color: #0696DA;
}
.page a.active::after {
    position: absolute;
    width: 20%;
    height: 2px;
    background-color: #0696DA;
    left: 50%;
    bottom: 0;
    content: '';
    transform: translateX(-50%);
}
.contact-wrapper {
    margin-top: 104px;
}