﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: 14px;
    text-decoration: none;
    list-style: none;
}

body {
    background: #EBEFF6 url('/static/img/600/top_bg.png') top left no-repeat;
    background-size: cover;
}

.pageBanner {
    width: 100%;
    height: 200px;
    background-image: url('/static/img/600/banner.png');
    background-size: cover;
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
}

.pageContainer {
    height: auto;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 16px;
}

.pageBot {
    height: 120px;
    width: 1200px;
    margin: 0 auto;
}

    .pageBot img {
        height: 120px;
        width: 1200px;
        object-fit: cover;
    }

.pageContent {
    width: 1024px;
    height: auto;
}

.pageLeftBar {
    padding: 20px 16px;
    width: 160px;
    height: fit-content;
    background: #FFFFFF;
    border-radius: 8px;
}

    .pageLeftBar ul li {
        display: block;
        width: 100%;
        line-height: 38px;
        background: #FFFFFF;
        text-align: center;
        border-radius: 8px;
        font-family: PingFangSC-Regular;
        font-weight: 400;
        font-size: 14px;
        cursor: pointer;
    }

    .pageLeftBar ul .pageLeftBar_active {
        background-color: #3182FF;
        color: #FFFFFF;
        border-radius: 8px;
        display: block;
    }

.pageBanner .pageNavi {
    height: auto;
    width: 1200px;
    margin: 0 auto;
    color: #888888ff;
    font-size: 14px;
    font-face: PingFangSC;
    font-weight: 500;
    text-align: left;
    line-height: 20px;
    padding: 10px 0px;
}

    .pageBanner .pageNavi ul {
        display: flex;
        flex-direction: row;
    }

    .pageBanner .pageNavi .pageNavi_active {
        font-weight: 500;
        text-align: left;
        color: #ffffffff;
        border-radius: 8px;
    }


.pageLeftBar .submenu {
    margin-top: 6px;
    display: block -webkit-line-clamp: 1;
    overflow: hidden;
    display: -webkit-box;
    word-wrap: break-word;
    white-space: nowrap;
}

.pageLeftBar .submenu.active {
    background: #F6F6F8;
    border-radius: 8px;
}

.pageLeftBar .submenu div {
    color: #666666 !important;
    letter-spacing: 0;
    line-height: 14px;
}

.pageLeftBar .submenu.active div {
    font-weight: 400;
    font-size: 14px;
    color: #666666 !important;
    letter-spacing: 0;
    line-height: 14px;
}


.nav-front {
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url('/static/img/600/ic_1-w.png');
    background-size: cover;
    background-position-x: left;
    background-position-y: top;
    background-repeat: no-repeat;
    margin-right: 4px;
}

.nav_separate {
    display: inline-block;
    padding: 0 5px;
    color: #888888ff;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    margin: 0;
    padding: 0;
    list-style: none; /*去掉li左侧的点*/
    color: #888888ff;
}

a {
    text-decoration: none;
}

    a:hover, a:visited, a:link, a:active {
        color: inherit;
    }
