@charset "UTF-8";

body {
    background-color: #fafafa;
    background: url(../images/bg.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 1920px;
}

/* 头部 */
.header {
    width: 100%;
    font-size: 14px;
}

.common_top {
    background-color: rgb(66, 87, 204, 0.6);
    height: 36px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.7) !important;
}

.common_top .container {
    display: flex;
    justify-content: space-between;
}
.common_top .container a{
    color: rgba(255, 255, 255, 0.7);
}
.common_top_r a {
    color: rgba(255, 255, 255, 0.7);
}
#bfElder{
    background: rgb(244, 186, 47);
    border-radius: 10px;
    padding: 0px 10px 2px 10px;
    font-weight: bold;
}

/* 主导航 */
.top_nav {
    background-color: rgb(66, 87, 204, 0.6);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.top_nav_fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4257cc;
    box-shadow: 0px 2px 10px 0px #fff;
    z-index: 999;
}
.top_nav ul {
    display: flex;
    justify-content: space-between;
    height: 46px;
    line-height: 46px;
}

.top_nav ul li {
    box-sizing: border-box;
    padding: 0 8px;
    height: 100%;
}

.top_nav ul li a {
    font-size: 22px;
    color: #fff;
}
.top_nav ul li a.hover{
    border-bottom: 3px solid #00BA6B;
    padding-bottom: 6px;
}
.top_nav ul li a:hover{
    border-bottom: 3px solid #00BA6B;
    padding-bottom: 6px;
}
/* banner搜索区域 */
.banner {
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 90px;
}

.search {
    width: 450px;
    height: 44px;
    background-color: #fff;
    border: 2px #4B4EC1 solid;
    box-sizing: border-box;
    border-radius: 30px;
    margin: 0 auto;
    margin-top: 26px;
    display: flex;
    line-height: 40px;
    opacity: 0.7;
}

.search .font_search,
.search .font_clear {
    cursor: pointer;
}

.search i {
    font-size: 20px;
    color: #4b4ec1;
    padding: 0 10px;
}

.search input {
    flex: 1;
    height: 40px;
    line-height: 40px;
    border: 0;
    font-family: "微软雅黑";
    color: #4b4ec1;
    font-size: 20px;
    margin-left: 10px;
}


/* 底部 */
.footer {
    height: 250px;
    width: 100%;
    background-color: #2b2b2b;
    box-sizing: border-box;
    padding-top: 80px;
    font-size:14px;
}

.footer .container {
    height: 100%;
}

.footer ul {
    display: flex;
    height: 100%;
    justify-content: space-around;
}
.footer ul li:last-child{
    display: flex;
}
.footer ul li:last-child .code_img{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}
.footer a {
    color: #fff;
}

.footer p {
    color: #fff;
    line-height: 36px;
}

.footer .guanyu a {
    font-size: 16px;
    color: #fff;
}

.footer .zhaocuo {
    margin-top: 6px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-around;
}

.footer ul li:last-child img {
    width: 100px;
    height: 100px;
    /* margin-right: 10px; */
}



@media screen and (max-width: 768px) {
    .h5_logo {
        padding: 20px 11px;
        box-sizing: border-box;
        background-color: rgb(66, 87, 204, 0.6);
    }

    .h5_logo,
    .h5_logo img {
        width: 100%;
    }

    .top_nav ul {
        flex-wrap: wrap;
        height: 100%;
    }

    .top_nav ul li {
        flex-basis: 25%;
        text-align: center;
        line-height: 48px;
    }

    .top_nav ul li a {
        font-size: 1.25rem;
    }

    .banner {
        height: auto;
        margin-bottom: 20px;
        padding-top: 0;
        padding-bottom: 0;
    }

    .banner .banner_box,
    .banner_box img,
    .search {
        width: 96%;
    }
    

    .footer {
        height: 100%;
        padding: 30px 0;
    }

    .footer ul {
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
    }

    .footer ul li {
        text-align: center;
    }

    .footer ul li:last-child {
        margin-top: 20px;
    }
}