body {
    background-color: #f5f5f5;
}

.body_container {
    width: 68%;
    margin: 0 auto;
    background-color: #ffffff;
}

/* 顶部banner */
.top_banner {
    width: 100%;
    height: 175px;
    margin: 0 auto;
    background: url('../Images/top_banner5.png') no-repeat center center;
}

.top_tou {
    position: relative;
    left: 50px;
    top: 40px;
}

/* 顶部搜索 */
.top_sou {
    width: 200px;
    height: 40px;
    position: absolute;
    overflow: hidden;
    top: 40px;
    left: 1080px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    border-radius: 20px;
    padding: 0 10px;
}

.souimg {
    width: 35px;
    height: 35px;
}

.searchTitle {
    height: 40px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 800;
    color: #000;
    font-family: '仿宋';
}

.searchTitle::placeholder {
    color: #000;
    opacity: 1;
}

.top_content {
    width: 100%;
    height: 100%;
}

/* 顶部广告 */
/* 纯CSS轮播：顶端四张图片淡入淡出 */
.top_jlxy {
    position: relative;
    width: 176px;
    top: 5px;
    left: 720px;
}

.top_jlxy .outer {
    position: relative;
    width: 176px;
    height: 30px;
}

.top_jlxy a {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: jlxyFade 16s infinite;
}

.top_jlxy a:nth-child(1) {
    animation-delay: 0s;
}

.top_jlxy a:nth-child(2) {
    animation-delay: 4s;
}

.top_jlxy a:nth-child(3) {
    animation-delay: 8s;
}

.top_jlxy a:nth-child(4) {
    animation-delay: 12s;
}

.top_jlxy img.jlxy {
    width: 176px;
    object-fit: contain;
    display: block;
}

@keyframes jlxyFade {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    30% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* 顶部导航 */
.navbg {
    position: relative;
    height: 40px;
    width: 100%;
    top: 59px;
    background-color: #4d8cff;
}

.navlist {
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    margin: 0;
    list-style: none;
}

.navlist li {
    width: 140px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
}

.navlist li:first-child::after {
    position: absolute;
    content: "|";
    color: #fff;
    margin-left: 32px;
    font-size: 20px;
}

.navlist li a {
    font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", Arial, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
}

/* 底部链接 */
.link_border {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
}

.link_lie {
    width: 50%;
    height: 40px;
    margin: 0 auto;
    line-height: 40px;
    display: flex;
    justify-content: space-between;
}

.link_lie a {
    color: #645656;
}

.link_lie img {
    width: 100%;
}

/*---------------底部样式-------------*/
.footer_border {
    width: 100%;
    margin: 0 auto;
    margin-top: 10px;
    padding: 12px 0px;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('../Images/top_banner.png');
}

.footer {
    width: 50%;
    margin: 0 auto;
    display: flex;
}

.footerleft {
    float: left;
    width: 80%;
    font-weight: bold;
    font-family: '微软雅黑';
    font-size: 12px;
    float: left;
    color: white;
    line-height: 180%;
}

.footerleft a {
    color: #000;
    text-decoration: none;
}

.wx_img {
    display: flex;
    align-items: center;
}

/*---------------end  footer-------------*/

.more {
    float: right;
    margin-top: 16px;
    font-weight: bold;
    color: #0e5993;
}