:root {
    --main-color: #e6212a;
    --nav-line--color: #c41d25;
    --index-news--fontsize: 16px;
    --index-news-color: #555555;
    --text-color: #333333;
    --text-grey: #666666;
    --border-color: #ededed;
    --titleBar-font-size: 24px;
    --body-font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    --font-family-xbs: "方正小标宋简体", "微软雅黑", sans-serif;
    --title-font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    --nav-font-family: var(--body-font-family);
    --container-width: 1300px;
    --navbar-height: 60px;
    --slogan-height: 120px;
}


@font-face {
    font-family: fzdbsgbk;
    src: local("FZDaBiaoSong-B06S"), url('/font/fzdbs_GBK.woff'), url('/font/fzdbs_GBK.ttf')
}

@font-face {
    font-family: fzfsgbk;
    src: local('FZFangSong-Z02S'), url('/font/fzfs_GBK.woff'), url('/font/fzfs_GBK.ttf')
}

@font-face {
    font-family: fzhtgbk;
    src: local('FZHei-B01S'), url('/font/fzht_GBK.woff'), url('/font/fzht_GBK.ttf')
}

@font-face {
    font-family: fzktgbk;
    src: local('FZKai-Z03S'), url('/font/fzkt_GBK.woff'), url('/font/fzkt_GBK.ttf')
}

@font-face {
    font-family: fzxbsgbk;
    src: local('FZXiaoBiaoSong-B05S'), url('/font/fzxbs_GBK.woff'), url('/font/fzxbs_GBK.ttf')
}

a {
    color: #333333;
}

body {
    background: white;
    min-width: 1345px;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
    color: #333333;
    position: relative;
}

hr{
    height: 1px;
    border: none;
    background: #ededed;
}

.inline-block {
    display: inline-block;
}

.container {
    width: 1300px;
    margin: 0 auto;
}

.header {
    width: 100%;
    min-width: 1300px;
}

.header .container {
    width: 1300px;
    margin: 0 auto;
    position: relative;
    /*background-image: url('/images/logo_r.jpg');*/
    /*background-position: 430px 45px;*/
    /*background-size: 458px;*/
    /*background-repeat: no-repeat;*/
}

.header .logo {
    display: flex;
    align-items: center;
}

.navs {
    height: 60px;
    background: #e6212a;
}

.navs .container {
    display: flex;
    display: -webkit-flex;
}

.navs .nav-item {
    flex: 1;
    width: calc(100% / 10);
    text-align: center;
    position: relative;
    float: left;
}

.navs .nav-item:hover {
    background: #c41d25;
}

.navs .nav-item.on:after {
    content: "";
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
}

.navs .nav-item a {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    height: 60px;
    line-height: 60px;
    display: block;
    position: relative;
    font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
}

.navs .nav-item > a:before {
    content: "";
    height: 40px;
    width: 1px;
    background: #c41d25;
    position: absolute;
    left: 0;
    top: 10px;
}

.navs .nav-item > a:after {
    content: "";
    height: 40px;
    width: 1px;
    background: #c41d25;
    position: absolute;
    right: 0;
    top: 10px;
}

.navs .nav-item + .nav-item a:before {
    content: none;
}

.sub-navs {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    background: #c41d25;
    transition: max-height 0.2s;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08) !important;
}

.navs .nav-item .sub-navs li a {
    font-weight: normal;
    font-size: 16px;
    line-height: 25px;
    height: auto;
    padding: 10px 20px;
}

.navs .nav-item .sub-navs li + li {
    border-top: 1px dashed #e6212a;
}

.navs .nav-item:hover .sub-navs {
    max-height: 500px;
    overflow: visible;
}

.navs .nav-item .sub-nav__item:hover {
    background: #e6212a;
}

.footer {
    background: #f2f2f2;
    font-size: 14px;
    padding: 30px;
    /*color: #ffffff;*/
}

.footer .p + .p {
    margin-top: 10px;
}

.footer .p span + span {
    margin-left: 5px;
}

.footer .other .imgbox {
    width: 100px;
    min-height: 100px;
    max-height: 120px;
    display: inline-block;
}

.footer .other .imgbox img {
    width: 100%;
    height: 100%;
    display: block;
}

.footer .p,
.footer .p a {
    color: #666666;
}

.footer .p a:hover {
    text-decoration: underline;
}

.search {
    position: absolute;
    right: 0;
    top: 50%;
    /*margin-top: -17px;*/
    border-radius: 5px;
    padding-left: 10px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #ededed;
}

.search input {
    border: none;
    outline: none;
    height: 40px;
    width: 300px;
    font-size: 14px;
    color: #333333;
    float: left;
    background: #f7f7f7;
}

.search button {
    height: 40px;
    width: 40px;
    border: none;
    background: url("/images/home/icon_search.png") no-repeat center;
    color: #ffffff;
    cursor: pointer;
    font-size: 16px;
    float: left;
    border-left: 1px solid #ededed;
}

.toplinks {
    position: absolute;
    right: 0;
    top: 0;
    padding: 20px 0;
}

.toplinks > a {
    padding: 0 15px;
    display: inline-block;
    color: #333333;
}

.toplinks > a + a {
    border-left: 1px solid #D3D4D3;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(58, 72, 107, 0) inset !important;
    /* -webkit-text-fill-color: #fff; */
    -webkit-transition-delay: 99999s;
    -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
}

.footer .centerBox {
    padding-left: 60px;
    padding-top: 35px;
}

.footer .centerBox .imgbox img {
    width: 120px;
    height: auto;
}

.footer .content {
    width: 436px;
    padding-left: 70px;
    border-left: 1px solid #cccccc;
}

.footer .content .inline-block:first-child {
    max-width: 436px;
}


.flinks {
    width: calc(100% - 507px - 70px);
    padding-right: 70px;
}

.flinks .head {
    border-bottom: 1px solid #cccccc;
    padding-bottom: 15px;
}

.flinks .head .name {
    font-size: 16px;
    color: #333333;
    margin-right: 20px;
    cursor: default;
}

.flinks .head .name.cur {
    font-weight: bold;
    padding-bottom: 15px;
    border-bottom: 1px solid #e6212a;
}

.flink-list {
    padding-top: 15px;
    min-height: 100px;
    display: none;
}

.flink-list:first-child {
    display: block;
}

.flink-list li {
    margin-right: 20px;
    float: left;
}

.flink-list li a {
    color: #666666;
    font-size: 14px;
    line-height: 28px;
}

.flink-list li a:hover {
    color: #e6212a;
}

.footer-bar {
    padding: 20px;
    background: #e6212a;
    text-align: center;
    color: #FFFFFF;
}

.footer-bar a {
    color: currentColor;
}

.footer-bar span {
    margin: 0 15px;
}

.wxQrCodeBox {
    position: relative;
}

.wxQrCodeFloatWrapper {
    position: absolute;
    display: none;
    width: 200px;
    height: 200px;
    box-shadow: 0 0 100px rgba(0, 0, 0, .25);
    z-index: 9999;
}

.wxQrCodeFloatWrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.wxQrCodeFloatWrapper::after {
    content: "";
    width: 15px;
    height: 15px;
    background: white;
    position: absolute;
    transform: rotate(45deg);
    z-index: 0;
}

.wxQrCodeBox:hover .wxQrCodeFloatWrapper {
    display: block;
}
@media (max-width: 1688px) {
    .wxQrCodeFloatWrapper {
        top: -210px;
        right: -35px;
    }

    .wxQrCodeFloatWrapper::after {
        left: 60%;
        bottom: -6px;
    }
}

@media (min-width: 1688px) {
    .wxQrCodeFloatWrapper {
        top: -70px;
        right: -210px;
        margin-left: -100px;
    }

    .wxQrCodeFloatWrapper::after {
        left: -6px;
        top: 50%;
        margin-top: -6px;
    }
}

.image-flinks .flink-list{padding-top: 0;}
.image-flinks ul li{float: left;width: calc(50% - 10px);}
.image-flinks ul li:nth-child(2n){margin-right:0;}
.image-flinks ul li+li+li{margin-top: 15px;}
.image-flinks ul li a{display:block;height: 83px;font-size: 0;border-radius: 5px;background-color: #fff;display:flex;align-items: center;justify-content: center;overflow: hidden;}
.image-flinks ul li a img{display: block;object-fit:cover;height: 90%;width: auto;}