*{
    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{
    width: 100%;
    background-color: #099ff5;
}
header img{
    width: 100%;;
}

nav{
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #099ff5;
    font-size: 16px;
    color: #fff;
}
nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 40px;
}
nav ul>li{}
nav ul>li>a{
    color: #fff;
}


main{
    width: 1200px;
    margin: 30px auto;
}

section{
    margin-bottom: 50px;
}

section h1{
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}
section>h1::before{
    content: '';
    position: relative;
    top: 5px;
    display: inline-block;
    width: 6px;
    height: 20px;
    margin-right: 10px;
    vertical-align: top;
    background-color: #386ed3;
}

section.banner>a>img{
    width: 100%;
}



.description{
    background-color: #F3F3F3;
    line-height: 24px;
    padding: 20px;
}
.description p{
    text-indent: 2em;
    color: #333;
    font-size: 16px;
}



.notifications{
    display: flex;
}
.notifications h1{
    display: flex;
    justify-content: space-between;
}
.notifications h1>a{
    color: #333;
    font-size: 14px;
}

.notifications_list{
    flex: 1;
    margin-right: 20px;
}
.notifications_list>h2{
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}
.notifications_list>h2>a{
    color: #333;
    font-size: 16px;
}
.notifications ul{}
.notifications ul>li{
    font-size: 16px;
    line-height: 40px;

    background: url(images/j.png) no-repeat left center;
    padding-left: 20px;
}
.notifications ul>li>a{color: #333;}

.notifications ol{
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
    margin-top: 20px;
}
.notifications ol>li{
    list-style: disc inside;
    width: 48%;
    color: #386ed3;
    font-size: 16px;
    line-height: 30px;
    padding-left: 0px;
}
.notifications ol>li>a{}

.notifications_imgs{
    flex: 1;
}
.notifications_imgs>img{
    width: 100%;
}


.process_img{}
.process_img img{
    width: 100%;
}



table{
    font-size: 14px;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}
table th{
    font-size: 16px;
    background-color: #f2f2f2;
    text-align: center;
}
table th, table td{
    border: 1px solid #ddd;
    padding: 10px;
}
table tr td a{
    color:#3366CC;
}
table tr td a:hover{
    text-decoration: underline;
}



.question_list{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.question_list>li{
    background-color: #f9f9f9;
    padding: 20px;
    width: 30%;;
}
.question_list>li h2{
    color: #386ed3;
    font-size: 16px;
    margin-bottom: 10px;
}
.question_list>li p{
        font-size: 14px;
    line-height: 27px;
    color: #333;
}



footer{
    background: #302a29;
    color: #fff;
    padding: 30px 0;
}
footer .logo{
    text-align: center;
    margin-bottom: 30px;
    height: 60px;
}
footer .logo img{
    border: none;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
}
footer .info{
    text-align: center;
    font-size: 12px;
    color: #FFF;
}
footer .info p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
}
footer .info p span{}
footer .info p a{
    color: #fff;
}
