/* 全局 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Arial", "Open Sans", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

li {
    list-style: none;
    display: inline-block;
}


/* header */

.menubox {
    display: flex;
    width: 100%;
    height: 3.125rem;
    padding: 0 0.625rem;
    position: relative;
    align-items: center;
}

.logo {
    position: relative;
    height: 2.4375rem;
    display: inline-block;
    left: 0.625rem;
}

.logo img {
    position: relative;
    height: 100%;
    margin-right: 0.425rem;
}

.openlist,
.closelist {
    background-color: #1c4ab1;
    height: 1.875rem;
    margin-right: auto;
    position: absolute;
    right: 0.625rem;
}

.openlist img,
.closelist img {
    height: 1.875rem;
}

.closelist {
    display: none;
}

.center {
    margin: 0 auto;
}

.more {
    position: relative;
    width: 3.8rem;
    height: 1.6rem;
    border-radius: 0.8rem;
    background-color: #1a5bc8;
}

.button img {
    position: absolute;
    height: 0.75rem !important;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/*菜单*/

.nav {
    display: none;
    width: 100%;
    height: calc(100vh - 3.125rem);
    background-color: #14288c;
    position: absolute;
    top: 3.125rem;
    left: 0;
    z-index: 99999;
    overflow-y: auto;
    transition: all 0.5s ease-in-out;
}

.nav li {
    width: 100%;
}

.nav>li:nth-child(odd) {
    background-color: #3650d2;
}


.nav li a {
    padding: 0 1rem;
    font-size: 1rem;
    line-height: 3.125rem;
    color: #ffffff;
}



.nav div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    left: 0;
    bottom: 1.2rem;
}

.nav div a {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.25;
}



/*footer*/
.footer {

    font-size: 0.75rem;
    line-height: 1.5em;
    padding: 1.5rem 1rem;
    background: #ffffff;
    color: #666666;
    border-top: 1px solid #e96c17;
    margin: 0;
}

.footer a {
    color: #666666 !important;
}

.dflex.justifyc.aligni{
text-align: center;
margin-top: 0.75rem;
}



.dflex.justifyc.aligni img{
    height:2.5rem;
}

.dflex.justifyc.aligni img:nth-child(1){
    margin-right: .425rem;
}



/* 本页面 */
.banner {
    display: inline-block;
    width: 100%;
}

.banner img {
    width: 100%;
    position: relative;
    vertical-align: bottom;
}

.contentmain dl {
    height:5rem;
    width:100%;
    border-bottom: 1px solid #eaf6fd; 
    border-top: 1px solid #eaf6fd; 
    display: flex;
    padding:0 1rem;
    align-items: center;
}

.contentmain dd{
    font-size: 0.9375rem;
    color:#204ca4;
    font-weight: bold;
}
