/*banner*/
.page-banner {
    width: 1500px;
    height: 100px;
    margin: 20px auto;
    position: relative;
}
.page-banner .title {
    position: absolute;
    top: 30px;
    left: 50px;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}
.page-banner .title::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #fff;
    border-radius: 2px;
    position: absolute;
    bottom: -10px;
    left: 0;
}
/*左侧列表*/
.page-main {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    min-height: 700px;
    justify-content: space-between;
}
.page-main .info-list {
    width: 1200px;
}
.page-main .list-item {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    padding: 20px;
    cursor: pointer;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    align-items: center;
}
.page-main .list-item:hover {
    color: #1163ec;
    cursor: pointer;
}
.page-main .list-item .date {
    margin-left: auto;
    width: 120px;
    text-align: right;
    color: #666;
}
.page-main .list-item .search-btn {
    color: #fff;
    background-color: #1163ec;
    padding: 8px 12px;
    border-radius: 5px;
}
.page-main .list-item .content {
    flex: 1;
    margin-right: 40px;
    font-weight: bold;
}
.page-main .list-item .content .e-title {
    width: 100%;
    font-weight: bold;
}
.page-main .list-item .content .e-date {
    color: #666;
    margin-top: 5px;
    font-weight: normal;
}
.page-main .list-item.latest {
}
.page-main .list-item .icon {
    width: 44px;
    height: 31px;
    display: flex;
    align-items: center;
}
.page-main .list-item .icon .rect {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-color: #1163ec;
    margin-left: 10px;
}
.page-main .list-item .icon .latest-icon {
    background: url("../../../../images/business/website/ks022.png") no-repeat left center;
    width: 29px;
    height: 13px;
    display: inline-block;
    font-size: 12px;
    color: #1163ec;
    text-indent: 5px;
}
/*快捷通道*/
.quick-link {
    width: 291px;
    padding: 0 20px;
    height: 391px;
    background: url("../../../../images/business/website/ks023.png") no-repeat top center;
    background-size: 100% 100%;
}
.quick-link .quick-title {
    font-size: 18px;
    color: #000;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    text-align: left;
    margin: 10px 0;
}
.quick-link .quick-item > div {
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    font-size: 18px;
    margin-bottom: 10px;
    cursor: pointer;
}
.quick-link .quick-item > div > img {
    width: 38px;
    height: 38px;
    margin-right: 20px;
}
.quick-link-active {
    background-color: #1163ec !important;
    color: #fff;
}








