*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-size: 14px; */
    font-family: "Microsoft YaHei", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}
ul,li{
    list-style: none;
}


header{
    min-width: 1200px;
}
.header_top{
    width: 1200px;
    height: 32px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.header_top h1{
    font-size: 16px;
    line-height: 32px;
    color:#333;
}
.header_top h1 a{
    color:#1781f1;
}
.login_area{
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.login_area a{
    text-align: center;
    display: inline-block;
    width: 56px;
    height: 22px;
    line-height: 22px;
    border: 1px solid #1781f1;
    padding: 0 12px;
    color: #1781f1;
    border-radius: 4px;
}
.login_area a.login_a{
    background-color: #1781f1;
    color: #fff;
}

.header_ad{
    height: 54px;
    width: 100%;
    text-align: center;
}
.header_ad a{
    display: block; 
    height: 54px;
    background-color: #1781f1;
}
.header_ad a img{
    margin: 0 auto;
}

.logo_search_user{
    width: 1200px;
    height: 46px;
    margin: 25px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo_search_user .logo{
    width: 180px;
    height: 46px;
}
.logo_search_user .logo img{
    height: 100%;
}
.logo_search_user .search{
    width: 540px;
    height: 32px;
    position: relative;
}
.logo_search_user .search input{
    width: 100%;
    height: 32px;
    padding: 0 12px 0 32px;
    border: 1px solid #ff6501;
    border-radius: 4px;
    font-size: 14px;
    background: url("../images/search.png") no-repeat 8px center;
    background-size: 20px 20px;
}
.logo_search_user .search input:focus{
    outline: none;
    border-color: #ff6501;
}
.logo_search_user .search button{
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 32px;
    border: none;
    background-color: #ff6501;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
}

.logo_search_user .user{
    font-size: 14px;
}
.logo_search_user .user a{
    display: block;
    height: 24px;
    line-height: 24px;
    border-radius: 4px;
    padding-left: 28px;
    color: #666;
    background: url("../images/user.png") no-repeat left center;
    background-size: contain;
}
.logo_search_user .user a:hover{
    color: #1781f1;
}


header nav{
    width: 1200px;
    height: 36px;
    margin: 0 auto;
    border-top: 2px solid #ff6501;
    display: flex;
    align-items: center;
}
header nav ul{
    width: 100%;
    display: flex;
    gap: 28px;
    justify-content:space-between;
    align-items: center;
}
header nav ul li{
    position: relative;
    display: flex;
    align-items: center;
}
header nav ul li a{
    font-size: 16px;
    color: #666;
    font-weight: 400;
}
header nav ul li a.active,
header nav ul li a:hover{
    color: #ff7d3f;
}


header nav ul li span{
    display: inline-block;
    width: 14px;
    height: 18px;
    margin-left: 4px;
    line-height: 18px;
    background: url("../images/arrow-down-bold.png") no-repeat center 4px;
    background-size: contain;
}
header nav ul li dl{
    display: none;
    position: absolute;
    top: 22px;
    left: -12px;;
    /* width: 120%; */
    width:max-content;
    background-color: #fff;
    transition: all 0.5s ease;
    padding:0 24px 12px 12px;
    z-index: 999;
}
header nav ul li dt{
    line-height: 32px;
    padding-top: 6px;
}

header nav ul li:hover dl{
    display: block;
}



.notice{
    font-size: 18px;
    color:rgb(102, 102, 102);

    width: 1200px;
    height:64px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.notice .notice-body{
    padding-left: 40px;
    background: url("../images/notice.png") no-repeat 0 center;
    height: 64px;
    overflow: hidden;
}

.notice-scroll{
    height: 64px;
    line-height: 64px;
    /* padding: 10px 0; */
    /* white-space: nowrap; 防止换行 */
    overflow: hidden; /* 超出部分隐藏 */
    text-overflow: ellipsis; /* 超出部分显示省略号 */
    position: relative;
    /* background-color: #ed4e38; */
}

.notice-scroll div{
    /* position: absolute;
    animation: scrollText 2s linear infinite; */
    /* width: 100%; */
    /* height: 64px; */
}

.exam-timeout{
    line-height: 58px;;
}
.exam-timeout span{
    display: inline-block;;
    color:#ed4e38;
    text-align: center;
    font-size: 24px;
    font-weight: bold;;
    width: 52px;
    height: 58px;
    background: url("../images/day_bg.png") no-repeat center;
}


.index_news_section{
    width: 1200px;
    height: 340px;
    margin: 0 auto;

    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.index_news_slide{
    width: 660px;
    height: 340px;
    overflow: hidden;
}
.index_news_slide img{
    width: 660px;
    height: 340px;
    object-fit: cover;
}

.index_news_list{
    color:#333;
    width: 510px;
}
.index_news_list h2{
    font-size: 20px;
    margin-bottom: 12px;
}
.index_news_list h2:last-of-type{
    margin-top: 12px;
}
.index_news_list h2>a{
    color: #333;
}
.index_news_list ul{
    margin-left: 20px;
}
.index_news_list ul li{
    font-size: 16px;
    line-height: 32px;
    list-style-type:disc;
    /* margin-left: 20px; */
    /* list-style-position: inside; */
    /* margin-left: 20px; */
}
.index_news_list ul li>a{
    color: #333;
}




.exam-section{
    width: 100%;
    margin: 30px auto;
    padding: 30px 0;
    background-color: #f8f8f8;;
}

.exam-container{
    width: 1200px;
    /* height: 360px; */
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.exam-left{
    margin-right: 20px;;
}
.exam-left h3{
    color: #333;
    font-size:24px;
    font-weight: 600;
    background: url("../images/wenhua_icon.png") no-repeat 226px center;
    background-size: 62px;
    margin-bottom: 5px;
}
.exam-left>p{
    font-size: 14px;
    font-weight: 600;
    color:#999;
    text-align: center;
}
.exam-info{

}
.exam-info p{
    font-size: 16px;
    color: #666;
    font-weight: 400;
    line-height: 28px;
}
.axam_img{
    margin: 20px 0 10px;
}
.axam_img img{
    width:564px;
}


.exam-right{
    height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.exam-card{
    width:290px;
    height: 190px;
    padding: 20px;

    background-color: #FFF;
    border-radius: 8px;

    display: flex;
    justify-content: space-between;
    /* align-items: center; */
}
.exam-card:hover{
    box-shadow: 0 2px 8px #00000010;
}
.exam-icon{
    margin-right: 20px;;
}
.exam-icon img{
    width: 56px; height: 56px;
}

.exam-card:hover .exam-icon img{
    transform: scale(1.1);
    transition: all 0.3s;
}

.exam-flex-right{
    flex-grow: 1;

    display: flex;
    flex-direction: column;
    justify-content:flex-start;
}
.exam-flex-right h4{
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}
.exam-flex-right p{
    color: #ED4E38;
    font-size: 14px;;
}

.exam-button-p{
    align-self: flex-end;
    margin-top: auto;
}
.exam-button-p a{
    display: inline-block;;
    color: #FFF;
    width: 110px;
    height: 40px;
    background: linear-gradient(156deg,#FFA14E 0%,#EF5800 100%);
    box-shadow: 12px 11px 10px #ff7e3d1f;
    border-radius: 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.exam-card:last-child .exam-flex-right>p{
    color:#2a77d5;
}
.exam-card:last-child .exam-flex-right>p.exam-button-p a{
    background: linear-gradient(156deg,#4E9AFF 0%,#005CEF 100%);
    box-shadow: 12px 11px 10px #3d7eff1f;
}



.baibao_section{
    width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}
.baibao_section_title{
    width: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;

    margin-right: 30px;
}

@supports (gap: 30px) {
   .baibao_section_title{
        margin-right: 0;
   }
}

.baibao_section_title h2{
    font-size: 24px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 50px;

    /* writing-mode: vertical-rl; */
    -ms-writing-mode: bt-lr;
}
.baibao_section_title a{
    color: #029cfe;
    display: inline-block;
    text-align: center;
    padding-top: 40px;
    background:url("../images/more1.png") no-repeat center top;
    background-size: contain;

    /* writing-mode: vertical-rl; */
    -ms-writing-mode: bt-lr;
}
.baibao_section_title a:hover{
    background-image: url("../images/more1a.png");
    color: #333;
}


.baibao_section ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.baibao_section ul li{
    gap: 15px;
    margin-bottom: 20px;
}
.baibao_section ul li img{
    transition: 0.5s ease-out;
}
.baibao_section ul li:hover img{
    transform: scale(1.05);
}
.baibao_section ul li h2{
    font-size: 22px;
    text-align: center;
    background-color: #546791;
    padding: 8px 0;
}
.baibao_section ul li:hover h2{
    opacity: 0.8;
}
.baibao_section ul li h2 a{
    color: #fff;
}



.pluralistic_section{
    width: 100%;
    padding: 30px 0;
    background-color: #f8f8f8;
}
.pluralistic_container{
    width: 1200px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pluralistic_list{}
.pluralistic_list ul{
    display: grid;
    grid-template-columns: repeat(5, 140px);
    grid-template-rows: repeat(3, 140px);
    gap: 15px;

    display: -ms-grid;
    /* -ms-grid-columns: (140px)[5]; */
    -ms-grid-columns: 140px 140px 140px 140px 140px;
    /* -ms-grid-rows: (140px)[3]; */
    -ms-grid-rows: 140px 140px 140px;
}
.pluralistic_list ul li{
    /* width: 118px;
    height: 118px; */
    padding: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0 15px 15px 0;
}

@supports (gap: 10px){
    .pluralistic_list ul li{
        margin: 0;
    }
}

.pluralistic_list ul li a{
    color: #FFF;
    font-size: 24px;
}
.pluralistic_list ul li:nth-child(1){grid-column: 1 / 3; grid-row: 1 / 2; 
-ms-grid-column: 1; -ms-grid-column-span: 2; -ms-grid-row: 1;
}
.pluralistic_list ul li:nth-child(2){
    -ms-grid-column: 3; -ms-grid-column-span: 1; -ms-grid-row: 1;
}
.pluralistic_list ul li:nth-child(3){
    -ms-grid-column: 4; -ms-grid-column-span: 1; -ms-grid-row: 1;
}
.pluralistic_list ul li:nth-child(4){
    -ms-grid-column: 5; -ms-grid-column-span: 1; -ms-grid-row: 1;
}
.pluralistic_list ul li:nth-child(5){grid-column: 1 / 3; grid-row: 2 / 3;
-ms-grid-column: 1; -ms-grid-column-span: 2; -ms-grid-row: 2;
}
.pluralistic_list ul li:nth-child(6){
    -ms-grid-column: 3; -ms-grid-column-span: 1; -ms-grid-row: 2;
}
.pluralistic_list ul li:nth-child(7){grid-column: 1 / 2; grid-row: 3 / 4;
-ms-grid-column: 1; -ms-grid-column-span: 1; -ms-grid-row: 3;
}
.pluralistic_list ul li:nth-child(8){grid-column: 2 / 3; grid-row: 3 / 4;
-ms-grid-column: 2; -ms-grid-column-span: 1; -ms-grid-row: 3;
}
.pluralistic_list ul li:nth-child(9){grid-column: 3 / 4; grid-row: 3 / 4;
-ms-grid-column: 3; -ms-grid-column-span: 1; -ms-grid-row: 3;
}
.pluralistic_list ul li:nth-child(10){grid-column: 4 / 6; grid-row: 2 / 4;
-ms-grid-column: 4; -ms-grid-column-span: 2; -ms-grid-row: 2; -ms-grid-row-span: 2;
}
.pluralistic_list ul li:hover{
    opacity: .8;
}

.pluralistic_right{
    width: 425px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.pluralistic_right h2{
    color: #333;
    font-size: 32px;
    font-weight: normal;
    text-align: center;
    margin-bottom: 10px;
}
.pluralistic_right p{
    font-size: 14px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 20px;
}
.pluralistic_right p a{
    color: #029cfe;
    line-height: 45px;
    display: inline-block;
    height: 45px;

    padding-left: 60px;
    background: url("../images/more1.png") no-repeat left center;
    background-size: contain;

    transition: 0.5s ease-out;
}
.pluralistic_right p a:hover{
    color: #333;
    background-image: url("../images/more1a.png");
}

.pluralistic_img{}
.pluralistic_img a{}
.pluralistic_img a img{width: 100%;}



.university_section{
    width: 1200px;
    margin: 30px auto;
}

.university_section h2{
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
}
.university_section ul{
    display: grid;
    grid-template: 280px 280px, repeat(4, 280px);
    gap: 15px;

    display: -ms-grid;
    -ms-grid-columns: 280px 280px 280px 280px;
    -ms-grid-rows: 280px 280px;
}
.university_section ul li{overflow: hidden; margin-right: 15px; margin-bottom: 15px;}

@supports (gap: 10px){
    .university_section ul li{
        margin: 0;
    }
}

.university_section ul li:nth-child(1){grid-column: 1 / 3; grid-row: 1 / 3;
-ms-grid-column: 1; -ms-grid-row: 1; -ms-grid-column-span: 2; -ms-grid-row-span: 2;
}
.university_section ul li:nth-child(2){grid-column: 3 / 4; grid-row: 1 / 2;
-ms-grid-column: 3; -ms-grid-row: 1;
}
.university_section ul li:nth-child(3){grid-column: 4 / 5; grid-row: 1 / 2;
-ms-grid-column: 4; -ms-grid-row: 1;
}
.university_section ul li:nth-child(4){
    -ms-grid-column: 3; -ms-grid-row: 2;
}
.university_section ul li:nth-child(5){
    -ms-grid-column: 4; -ms-grid-row: 2;
}
.university_section ul li img{width: 100%; height: 100%; transition: 0.5s ease-out;}
.university_section ul li:hover img{transform: scale(1.05);}




.video-section{
    width: 1200px;
    margin: 30px auto;
}
.video-section h2{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.video-section h2 a{
    color: #999;
    font-size: 16px;
    font-weight: 200;
}

.video-type{
    display: flex;
    justify-content: space-between;
}
.video-type>ul{
    display: flex;
    gap: 20px;
    margin: 20px 0;
}
.video-type>ul>li{
    padding: 12px 20px;
    font-weight: 600;
    font-size: 20px;
    color: #666;
    line-height: 28px;
    cursor: pointer;
}
.video-type>ul>li.current{
    background-color: rgba(0, 0, 0, 0.1);
    color: #d71718;
    position: relative;
    border-radius: 10px;

}
.video-type>ul>li.current::after{
    content: "";
    position: absolute;
    width: 24px;
    height: 5px;
    background: #ED4E38;
    border-radius: 3px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
}

.video-type dl{
    display: flex;
    align-items: center;
    gap: 15px;
}
.video-type dl dd{
}
.video-type dl dd a{
    color: #666;
    display: inline-block;
}


.video-list{
    display: flex;
    gap: 25px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
.video-item{
    width: 280px;
    height: 244px;
    margin-bottom: 12px;
}
.video-img{
    width: 280px;
    height: 160px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}
.video-img img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.video-item h3{
    font-size: 16px;
    color: #333;
    font-weight: 400;
    margin: 12px 0;
}
.video-item h3 a:hover{
    color: #ed4e38;
}
.video-item p{
    font-size: 14px;
    color: #999;
    display: flex;
    justify-content: space-between;
}
.video-item p span{}
.video-item p a{}





.download-section{
    width: 1200px;
    margin: 30px auto;
}
.download-section h2{
    display: flex;
    justify-content: space-between;
}
.download-section h2 a{
    color: #999;
    font-size: 16px;
    font-weight: 200;
}
.download-section>ul{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}
.download-section>ul>li{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 285px;
    height: 320px;
    border-radius: 4px;
    padding: 20px 16px;
    background: no-repeat bottom right / 155px 182px url("../images/download_bg.png"), linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(233, 243, 255, .4) 100%), #FAFAFA;
}
.download-section>ul>li::after{
    position: absolute;
    width: 46px;
    height: 47px;
        background: linear-gradient(to bottom left, #FFFFFF 50%, #EEF0F5 50%);
    right: 0;
    top: 0;
    content: "";
}
.download-section>ul>li>.download_card_top>span{
    display: block;
    color: #333;
    padding-left: 30px;

    background-repeat: no-repeat;
    background-position: 0 center;
    background-size: contain
}

.download-section>ul>li>.download_card_top>span.res_type_other{
    background-image: url("../images/download_other_icon.png");
}
.download-section>ul>li>.download_card_top>span.res_type_ppt{
    background-image: url("../images/download_ppt_icon.png");
}



.download-section>ul>li h3{
    font-size: 16px;
    color: #333;
    margin: 20px 0 10px;
}
.download-section>ul>li .tags{} 
.download-section>ul>li .tags span{
    display: inline-block;
    font-size: 12px;
    color: #999;
    border: solid 1px #ccc;
    border-radius: 4px;
    padding: 0px 6px;
    margin-right: 8px;
} 
.download-section>ul>li .res-down{
    display: flex;
    justify-content: space-between;
}
.download-section>ul>li .res-down span{
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #d71718;
    line-height: 27px;
    text-align: right;
    font-style: normal;
}
.download-section>ul>li .res-down a{
    display: inline-block;
        width: 92px;
    height: 32px;
    background: #FFFFFF;
    border-radius: 18px;
    border: solid 1px #ed4e38;
        font-weight: 500;
    font-size: 14px;
    color: #ed4e38;
    line-height: 32px;
    text-align: center;
}
.download-section>ul>li .datetime{
    font-size: 12px;
    color: #999;
    text-align: right;
    margin-top: 12px;
}



/* 新闻列表页 */
.news_section{
    margin: 0 auto;
    padding:30px 0;
    background-color:#f8f8f8;
}

.news-container{
    width: 1200px;
    margin: 0 auto;
}

.news-container h2{
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.news_div{
    display:flex;
    gap:30px;
    margin-top: 30px;
}
ul.news_type{
    width: 224px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 12px;

    flex:1;
}
ul.news_type>li{
    text-align:center;
    font-size: 16px;
    line-height: 24px;

    margin-bottom:12px;
    padding:12px 0;
    border-radius: 3px;
}
ul.news_type>li>a{
    color: #333;
}

ul.news_type>li.current,ul.news_type>li:hover{
    background-color: #F5F6F7;
    font-weight:bold;
}


ul.news_list{
    flex: 4;
    background-color:#FFF;
    padding:12px;
    border-radius: 8px;
}


ul.news_list>li{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

ul.news_list>li .news-img{
    /* width: 190px;
    height: 107px; */
    background: #D8D8D8;
    border-radius: 6px;
    overflow: hidden;
    flex:1;
}
ul.news_list>li .news-img>img{
    display: block;
    width: 100%;
}
ul.news_list>li .news-info{
    display: flex;
    flex-direction: column;
    justify-content:flex-start;

    flex:3;
    padding-right: 30px;
}
ul.news_list>li .news-info>h3{
    font-size: 16px;
    margin-bottom: 8px;
}
ul.news_list>li .news-info>h3>a{
    color: #333;
}
ul.news_list>li .news-info>h3>a:hover{
    color: #666;
}
ul.news_list>li .news-info p{
    font-size: 12px;
    color: #999;
}
ul.news_list>li .news-info p:nth-of-type(1){
    margin-bottom: auto;
}

ul.news_list>li .news-info p:last-child{
    text-align: right;
}

/* 新闻详细 */
.news_div article{
    flex:4;
    border-radius: 8px;
    background-color:#FFF;
    padding:30px 50px;
}
.news_div article>h1{
    color:#333;
    font-size:20px;
}
.news_div article>p{
    font-size:12px;
    color:#666;
    margin:12px 0 24px;
}
.news_div article .news_detail{
    line-height:150%;
    font-size:14px;
}
.news_div article .news_detail p{
    margin-bottom:12px;
}
.news_div article .news_detail img{
    width:100%;
}










footer{
    width: 100%;
    background: #151b26;
    color: #fff;
    font-size: 16px;
    text-align: center;
    padding-bottom: 20px;
}

.footer_div{
    width: 1200px;
    margin: 0 auto;
}

.footer_top{
    display: flex;
    justify-content: space-between;
    padding: 40px 0 30px;
    border-bottom: 1px solid hsla(0, 0%, 73%, .4);
}
.footer_top_left{}
.footer_top_left h2{
    margin-bottom: 20px;
}
.footer_top_left h2 img{
    width: 110px;
}
.footer_top_left dl{}
.footer_top_left dt{
    color: #0069ff;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 8px;
}
.footer_top_left dd{
    font-size: 14px;
    color: #FFF;
    line-height: 22px;
}

.footer_top nav{
    display: flex;
    gap: 60px;
}
.footer_top nav dl{}
.footer_top nav dl dt{
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}
.footer_top nav dl dd{
    margin-bottom: 6px;
    font-size: 14px;
    color: #ccc;
    text-align: left;
}
.footer_top nav dl dd a{}
.footer_top nav dl dd a:hover{
    color: #007aff;
}

.footer_concat{
    display: flex;
    justify-content: space-between;

    border-left: 1px solid hsla(0, 0%, 73%, .4);
    padding: 0 0 0 60px;
}
.footer_concat_left{
    margin-right: 50px;
}
.footer_concat_left h2{
    font-size: 16px;
    margin-bottom: 20px;;
}
.footer_concat_left p{
    line-height: 28px;
}
.footer_concat_left p:last-of-type{
    font-size: 14px;
    color: #999;
    font-weight:normal;
}
.footer_concat_right{}
.footer_qrcode{}
.footer_qrcode img{}
.footer_concat_right h2{
        font-size: 16px;
    margin-bottom: 20px;
}
.footer_concat_right p{
    font-size: 14px;
    color: #999;
    line-height: 28px;
}

.friend-list{
    width: 1200px;
    margin: 20px auto;
    font-size: 14px;
    color: #999;
    text-align: left;
    line-height: 28px;
}
.friend-list span{
    margin-right: 2px;
}
.friend-list a{
    margin-right: 10px;
    color: #999;
}

.our-link{
    width: 1200px;
    margin: 0 auto 2px;
    font-size: 14px;
    color: #999;
    text-align: center;
    line-height: 28px;
}
.our-link a{
    color: #ccc;
    margin: 0 8px;
}

.report{
    width: 1200px;
    margin: 0 auto 10px;
    font-size: 14px;
    color: #999;
    text-align: center;
    line-height: 28px;
}
.report img{
    height: 13px;
    vertical-align: middle;
}

.copyright{
    width: 1200px;
    margin: 0 auto 20px;
    font-size: 12px;
    color: #666;
    text-align: center;
    line-height: 22px;
}
.copyright a{
    color: #999;
}

.outer-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}
.outer-list li{
    border: 1px solid #d10005;
    border-radius: 4px;
    width: 100px;
    height: 42px;
    overflow: hidden;
}
.outer-list li img{
    width: 100px;
}






