@font-face {
    font-family: "SourceHanSansCN";
    src: url("./fonts/SourceHanSansCN-Regular/SourceHanSansCN-Regular.woff") format("woff"), url("./fonts/SourceHanSansCN-Regular/SourceHanSansCN-Regular.ttf") format("truetype"), url("./fonts/SourceHanSansCN-Regular/SourceHanSansCN-Regular.eot") format("embedded-opentype");
}

@font-face {
    font-family: "YouSheBiaoTiHei";
    src: url("./fonts/YouSheBiaoTiHei.woff"), url("./fonts/YouSheBiaoTiHei.ttf"),
        url("./fonts/YouSheBiaoTiHei.eot");
}

ul {
    list-style-type: none;
    padding-left: 0;
    /* 移除默认的内边距 */
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: "SourceHanSansCN";
    background: #F6F7F9;
    overflow: auto;
}

.container1200 {
    width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: #000;
}

.margin-right-20 {
    margin-right: 20px;
}

.margin-top-20 {
    margin-top: 20px;
}

.flex {
    display: flex;
}

.flex-between {
    justify-content: space-between;
}

.banner {
    width: 100%;
    height: 411px;
    background: url('../images/banner_bg.png') no-repeat;
    background-size: 100% 100%;

}

.banner .container1200 {
    position: relative;
}


.banner .logo {
    float: left;
    width: 317px;
    height: 76px;
    margin-top: 41px;
    background: url('../images/logo.png') no-repeat;
}

.banner img {
    position: absolute;
    width: 908px;
    height: 88px;
    left: 50%;
    transform: translateX(-50%);
    top: 127px;
}

.banner p {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 183px;
    display: block;
    width: 654px;
    height: 85px;
    background: url('../images/text_bg.png') top no-repeat;
    padding-top: 42px;
    text-align: center;
    font-family: "SourceHanSansCN";
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #fff;
    letter-spacing: 4px;
}


.banner p span:first-child {
    padding-right: 30px;
}

.falldue {
    width: 164px;
    height: 46px;
    position: absolute;
    top: 84px;
    right: 160px;
    background: url('../images/icon_19.png') no-repeat;
    background-size: 100% 100%;
}

.main {
    background: url('../images/bg.png') no-repeat;
    background-size: 100% 100%;
    padding-top: 37px;
}

.main-container {
    display: flex;
    background: #fff;
    padding: 30px;
}

.main-container-left {
    /*width: 202px;*/
    min-height: 793px;
    background: #F4F8FB;
    /*margin-right: 30px;*/
}

.main-container-left-top {
    font-family: "YouSheBiaoTiHei";
    font-weight: 400;
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    text-align: center;
    background: linear-gradient(180deg, #499EF3 0%, #0064CA 100%);
    padding: 11px 28px;
}

.tab {
    width: 100%;
    height: 59px;
    font-family: "SourceHanSansCN";
    font-weight: 400;
    font-size: 18px;
    line-height: 59px;
    color: #333;
    padding-left: 10px;
    cursor: pointer;
}

.tab.active {
    font-weight: 500;
    color: #045FA9;
    border-left: 4px solid #045FA9;
    background: linear-gradient(180deg, #E3EEFF 0%, #D8E9FF 100%);

}

.subtitle {
    font-family: "SourceHanSansCN";
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    color: #045FA9;
    background: url('../images/icon_subtitle_l.png') left center no-repeat;
    padding-left: 24px;
}

.main-container-right {
    flex: 1;
}

.list {
    width: 900px;

}

.list li {
    width: 100%;
    height: 64px;
    border-bottom: 1px dashed #D6D6D6;
    padding: 20px 16px;
    cursor: pointer;
}

.list li:hover {
    background: #045FA90D;
}

.list li:hover .title {
    color: #045FA9;
}

.list li a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: "SourceHanSansCN";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    background: url('../images/icon_left.png') no-repeat left center;
    background-size: 18px 12px;
    padding-left: 28px;
}

.list li .title {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list li .date {
    color: #666666;
}

/* 移动端优化补充 */
@media (max-width: 768px) {

    /* 基础布局调整 */
    .container1200 {
        width: 100%;
        padding: 0 15px;
    }

    /* Banner区域 */
    .banner {
        min-height: 200px;
        height: auto;
        padding: 20px 0;
        background-size: cover;
    }

    .banner .logo {
        width: 120px;
        height: 30px;
        margin: 10px auto;
        float: none;
        background-size: 100% 100%;
    }

    .banner img {
        width: 100%;
        height: auto;
        top: 50px;
        margin: 0px auto 0 auto;
    }

    .banner p {
        display: block;
        width: 90%;
        height: 60px;
        padding: 35px 0 0 0;
        font-size: 16px;
        line-height: 1.5;
        top: 50px;
    }

    .falldue {
        width: 76px;
        height: 20px;
        top: 10px;
        right: 10px;
    }

    /* 主内容区重构 */
    .main-container {
        flex-direction: column;
        padding: 15px;
    }

    .main-container-left {
        width: 100%;
        min-height: auto;
        margin-right: 0;
        margin-bottom: 20px;
    }

    /* 列表项触摸优化 */
    .list {
        width: 100%;
    }

    .list li {
        height: auto;
        padding: 12px 0;
    }

    .list li a {
        font-size: 14px;
        padding-left: 24px;
        background-size: 14px 8px;
    }

    .list li a .title {
        width: 50%;
    }
}



/* 分页 */
.ewb-page {
    text-align: center;
}

.ewb-page-items {
    margin-top: 20px;
    text-align: center;
    display: inline-block;
    *display: inline;
    zoom: 1;
}

.ewb-page-li {
    display: block;
    min-width: 36px;
    * width: 36px;
    margin-right: 4px;
    font-size: 14px;
    text-align: center;
    font-family: "Microsoft YaHei";
    float: left;
    border: 1px solid #dfdfdf;
    color: #98999E;
    height: 30px;
    line-height: 30px;
    padding: 0 2px;
}

.ewb-page-li.pagebtn {
    padding: 0 8px;
}

.ewb-page-li>a {
    display: block;
    color: #98999E;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
}

.ewb-page-li>a:hover {
    color: #045FA9;
}

.ewb-page-li.current {
    display: block;
    min-width: 36px;
    *width: 36px;
    margin-right: 4px;
    font-size: 14px;
    text-align: center;
    font-family: "Microsoft YaHei";
    float: left;
    border: none;
    color: #fff;
    background-color: #045FA9 !important;
    height: 30px;
    line-height: 30px;
    padding: 0 8px;
}

.ewb-page-li.current>a {
    border: 0;
    color: #0030cc;
}

.ewb-page-li.ewb-page-noborder>span {
    display: block;
    height: 24px;
    line-height: 24px;
    padding: 0 10px;
    border: 0;
    color: #666;
    font-family: "Simsun";
}

.ewb-page-num {
    *width: 60px;
}

.ewb-page-num {
    border: none;
    color: #98999E;
}

.ewb-page-li.ewb-page-num>span {
    padding: 0 5px;
    /* font-weight: bold; */
}

.ewb-page-input {
    width: 40px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #666;
    outline: none;
    vertical-align: top;
    *margin-top: -1px;
    border: 1px solid #D6D6D6;
}

.ewb-page-hover {
    *width: 60px;
}

.ewb-page-hover>a {
    font-family: "Simsun";
}

.ewb-page-go {
    margin-left: 2px;
}

.ewb-page-hover:hover>a,
.ewb-page-go:hover>a {
    color: #2E79EC;
    /* background-color: #999;
    border-color: #999; */
}

.ewb-page-go>a {
    font-size: 12px;
    padding: 0 6px;
}

.ewb-page-goto {
    margin-right: 0;
}

.ewb-page-li.ewb-page-goto>span {
    padding: 0 6px 0 0;
    text-align: right;
}

.ewb-page-inpt {
    border: none;
    margin-left: -2px;
    color: #999;
}

.ewb-page-li.ewb-page-ellipsis>span {
    padding: 0 17px 0 16px;
    font-size: 14px;
    font-family: "Microsoft YaHei";
    color: #555;
}

.hidden{
	display:none;
}

.main-container-middle{
	width:30px;
}