body,
button,
input,
select,
textarea {
    font-family: "\5FAE\8F6F\96C5\9ED1", "Microsoft Yahei", "Hiragino Sans GB", tahoma, arial, "\5B8B\4F53";    
}

html {
    height: 100%;
    font-size: 100px;
}

body {
    height: 100%;
    font-size: 13px;
    line-height: 1.875em;
    background: #fff;
    color: #000;
}

a {
    cursor: pointer;
    color: #888;
}

a:hover {
    color: #d40a26;
}

a img {
    border: 0;
}

.container {
    margin: 0 auto;
    max-width: 1920px;
    min-width: 320px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.content {
    position: relative;
    padding: 5.625em 0 0;
}

.indent_content {
    margin: 0 auto;
    width: 75%;
    min-width: 1326px;
    padding: 0 20px;
}

@media screen and (min-width: 1680px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 1680px) {
    body {
        font-size: 15px;
    }
}

@media screen and (max-width: 1440px) {
    body {
        font-size: 14px;
    }
}

@media screen and (max-width: 1366px) {
    body {
        font-size: 13px;
    }

    .indent_content {
        width: 90%;
        min-width:0px;
        padding: 0 20px;
    }
}

@media screen and (max-width: 1280px) {
    body {
        font-size: 12px;
    }
    .content {
        padding-top: 4em;
    }
}

@media screen and (max-width: 1024px) {
    .content {
        padding-top: 4.5em;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: (100vw / 7.5);
    }

    .indent_content {
        padding: 0 0%;
    }
}

@media screen and (max-width: 375px) {
    body {
        font-size: 3.2vw;
    }
}

@media screen and (max-width: 320px) {
    html {
        font-size: 42.667px;
    }

    body {
        font-size: 10.24px;
    }
}


/*页头*/
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 5.625em;
    z-index: 30;
    background: #FFF;
    min-width: 320px;
    box-shadow: 0 0 3px rgba(0, 0, 0, .3);
}

.header .header_content {
    position: relative;
    height: 100%;
}

.header .logo {
    position: absolute;
    width: 27em;
    height: 100%;
    top: 0;
    left: 20px;
    background: url(../images/logo.png) no-repeat left center;
    background-size: auto 100%;
    text-indent: -99em;
}

.header .menu h2 {
    display: none;
}

.header .sitesearch {
    position: absolute;
    right: 20px;
    top: 50%;
    line-height: 2em;
    height: 2em;
    margin: -1em 0 0;
    z-index: 35;
    width: 8em;
    background: #eaeaea;
    border-radius: 1em;
}

.header .sitesearch input {
    width: 8em;
    padding: 0 0 0 1em;
    height: 2em;
    line-height: 2em;
    color: #000;
    background: none;
    outline: none;
    border: none;
}

.header .sitesearch button {
    font-size: 1em;
    position: absolute;
    width: 1.5em;
    height: 1.5em;
    border: none;
    background: transparent url(../images/search.png);
    background-size: 100%;
    position: absolute;
    outline: none;
    top: .25em;
    right: .5em;
    cursor: pointer;
}

.header .menu_content {
    list-style-type: none;
    position: absolute;
    right: 20px;
    margin: -2.8125em 10em 0 0;
    white-space: nowrap;
    top: 50%;
    z-index: 30;
}

.header .menu_content>li {
    display: inline-block;
    transition: background .5s linear;
    margin-right: -.9em;
    position: relative;
}

.header .menu_content>li:hover {
    background: rgba(212, 10, 38, .75);
}

.header .menu_content>li.current,
.header .menu_content>li.indexcurrent {
    background: rgba(212, 10, 38, 1);
}

.header .menu_content h3 {
    line-height: 5.625em;
    /* font-weight: bold; */
}

.header .menu_content h3 a {
    position: relative;
    display: inline-block;
    color: #222;
    z-index: 1;
    transition: z-index .25s linear .5s;
    padding: 0 1.4em;
}

.header .menu_content>li:hover h3 a {
    color: #FFF;
}

.header .menu_content>li.current h3 a,
.header .menu_content>li.indexcurrent h3 a {
    color: #FFF;
}

.header .menu_content ul {
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s linear;
    z-index: 10;
    position: absolute;
    left: 0;
    line-height: 2em;
    top: 100%;
    background: #FFF;
    text-align: left;
    padding: 1em 0;
    min-width: 100%;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .3);
}

.header .menu_content>li:hover ul {
    visibility: visible;
    opacity: 1;
}

.header .menu_content ul a {
    position: relative;
    display: block;
    color: #222;
    padding: 0 1.5em;
}

.header .menu_content ul a:hover {
    color: #d40a26;
}

@media screen and (max-width: 1890px) and (min-width: 1681px) {
    .header .menu_content>li h3 a {
        padding: 0 1em;
    }

    .header .menu_content ul a {
        padding: 0 1em;
    }
}

@media screen and (max-width: 1280px) {
    .header {
        height: 4em;
    }
    .header .menu_content>li h3 a {
        padding: 0 1em;
    }

    .header .menu_content ul a {
        padding: 0 1em;
    }
}

@media screen and (max-width: 1024px) {
    .header {
        height: 4.5em;
    }

    .header .menu h2 {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        width: 3em;
        height: 0em;
        padding: 3em 0 0;
        margin-top: -1.5em;
        z-index: 35;
        overflow: hidden;
        cursor: pointer;
        transform: scale(.8);
    }

    .header .menu h2:before {
        content: "";
        position: absolute;
        left: .5em;
        width: 2em;
        top: 1.44em;
        height: 0.12em;
        background: #222;
        transform: translate(0, -1em);
        transition: all .4s ease-in;
    }

    .header .menu h2:after {
        content: "";
        position: absolute;
        left: .5em;
        width: 2em;
        top: 1.44em;
        height: 0.12em;
        background: #222;
        transform: translate(0, 1em);
        transition: all .4s ease-in;
    }

    .header .menu h2 span:before {
        content: "";
        position: absolute;
        left: .5em;
        width: 2em;
        top: 1.44em;
        height: 0.12em;
        background: #222;
        transition: all .4s ease-in;
    }

    .header .menu h2 span:after {
        content: "";
        position: absolute;
        left: .5em;
        width: 2em;
        top: 1.44em;
        height: 0.12em;
        background: #222;
        transition: all .4s ease-in;
    }

    .header .menu.menu_show h2:before {
        background: #d40a26;
        transform: translate(0, 0) rotate(45deg);
        left: 0;
        width: 3em;
    }

    .header .menu.menu_show h2:after {
        background: #d40a26;
        transform: translate(0, 0) rotate(-45deg);
        left: 0;
        width: 3em;
    }

    .header .menu.menu_show h2 span:before {
        background: #d40a26;
        transform: translate(0, 0) rotate(45deg);
        left: 0;
        width: 3em;
    }

    .header .menu.menu_show h2 span:after {
        background: #d40a26;
        transform: translate(0, 0) rotate(-45deg);
        left: 0;
        width: 3em;
    }

    .header .sitesearch {
        right: calc(4.5em + 20px);
        top: 50%;
        visibility: hidden;
        opacity: 0;
        transition: opacity 1s ease-in;
    }

    .header .menu.menu_show .sitesearch {
        visibility: visible;
        opacity: 1;
    }

    .header .menu_content {
        background: #FFF;
        position: fixed;
        margin-top: 0;
        width: 80%;
        padding: 5% 5%;
        top: 0;
        bottom: 0;
        right: -80%;
        border-top: 4em solid #FFF;
        transition: right .4s ease-in;
        margin: 0;
    }

    .header .menu.menu_show .menu_content {
        right: 0;
    }

    .header .menu.menu_show .menu_content>li {
        display: block;
        padding: 0;
    }

    .header .menu_content>li:hover {
        background: none;
    }

    .header .menu_content>li.current,
    .header .menu_content>li.indexcurrent {
        background: none;
    }

    .header .menu_content h3 a {
        display: block;
        line-height: 3em;
        border-bottom: 1px solid #ccc;
        color: #222;
    }

    .header .menu_content>li.current h3 a,
    .header .menu_content>li.indexcurrent h3 a {
        font-weight: bold;
        color: #000;
        border-bottom: 1px solid #d40a26;
    }

    .header .menu_content>li.current h3 a:hover,
    .header .menu_content>li.indexcurrent h3 a:hover {
        color: #d40a26;
    }

    .header .menu_content>li.showcon h3 a,
    .header .menu_content>li:hover h3 a {
        color: #4C4C4C;
        z-index: 11;
    }

    .header .menu_content>li:hover h3 a:hover {
        color: #d40a26;
    }

    .header .menu_content ul {
        display: block;
        visibility: visible;
        position: relative;
        left: 0;
        width: auto;
        margin: -3em 0 0 0;
        padding: 3em 0 0;
        top: 0;
        height: 0;
        overflow: hidden;
        background: none;
        bottom: auto;
        left: 0 !important;
        right: 0 !important;
        line-height: 2.5em;
        box-shadow: none;
    }

    .header .menu_content>li.current ul {
        height: auto;
        opacity: 1;
    }

    .header .menu_content>li:hover ul {
        height: auto;
        opacity: 1;
    }

    .header .menu_content ul li {
        border-top: none;
        border-bottom: 1px solid #CCC;
        display: block;
    }

    .header .menu_content ul a {
        text-indent: 2em;
        background: none;
        margin-bottom: 0;
        padding: 0;
        border-bottom: none;
        color: #333;
    }

    .header .menu_content ul a:hover {
        background: none;
        color: #d40a26;
    }
}

@media screen and (max-width: 767px) {
    .header {
        height: 4.5em;
    }

    .header .logo {
        left: 5%;
    }

    .header .menu h2 {
        right: 4%;
    }

    .header .sitesearch {
        right: calc(4.5em + 4%);
    }
}

/*页尾*/
.footer {
    position: relative;
    z-index: 25;
    background: #F4F4F4;
}

.footer .footer_content {
    padding-top: 3em;
    padding-bottom: 2em;
}

.footer .footer_content:after {
    content: "";
    clear: both;
    display: block;
}

.footer .sitemap {
    float: left;
    list-style-type: none;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    width: calc(100% - 7.25em);
}

.footer .sitemap>li {
    flex: 1;
    vertical-align: top;
}

.footer .sitemap h3 {
    line-height: 3em;
    font-size: 1.167em;
    font-weight: bold;
}

.footer .sitemap h3 a {
    color: #333;
}

.footer .sitemap h3 a:hover {
    color: #d40a26;
}

.footer .sitemap ul {
    list-style-type: none;
}

.footer .rwm {
    float: right;
    text-align: center;
    width: 7.125em;
    margin-bottom: 2em;
}

.footer .rwm img {
    width: 100%;
}

.footer .friendship {
    position: relative;
    float: right;
    white-space: nowrap;
    clear: right;
    margin-left: -10em;
}

.footer .friendship h3 {
    position: relative;
    border: 1px solid #C8C8C8;
    border-radius: .25em;
    line-height: 2.25em;
    height: 2.25em;
    padding: 0 1.75em 0 1em;
    color: #666;
    cursor: pointer;
}

.footer .friendship h3:after {
    content: "﹀";
    position: relative;
    left: .75em;
    top: .125em;
}

.footer .friendship ul {
    display: none;
    position: absolute;
    right: 0;
    bottom: 2.25em;
    list-style-type: none;
    border: 1px solid #C8C8C8;
    background: #FFF;
    line-height: 2em;
    min-width: 100%;
}

.footer .friendship ul li {
    display: block;
    border-top: 1px solid #C8C8C8;
}

.footer .friendship ul li:first-child {
    border: none
}

.footer .friendship ul a {
    display: block;
    padding: 0 1.25em;
    color: #666;
}

.footer .friendship ul a:hover {
    background: #d40a26;
    color: #FFF;
}

.footer .friendship.show ul {
    display: block;
}

.footer .sitelink{list-style-type: none;white-space: nowrap; margin-bottom: .5em; float: right; line-height: 2.25em; position: relative; top:1px;font-weight: bold;}
.footer .sitelink > li{display: inline-block;padding:0 1em;position: relative; margin-right: -.33em;}
.footer .sitelink > li:before{content:"";position: absolute;left: 0;width: 1px;height: 0.8em;top:50%;margin-top: -0.4em;background: #888;}
.footer .sitelink > li:first-child:before{ display: none;}
.footer .links{position: relative; float: right;clear: both; margin: -2.5em 0 0;}
.footer .links .friendship{ float: left; margin-left: 1em;}

.footer .copy_content {
    text-align: center;
    padding-bottom: 1em;
}

.footer .copy_content:before {
    content: "";
    display: block;
    border-top: 1px solid #C8C8C8;
    height: 1em;
}

.footer .footerlink {
    list-style-type: none;
    white-space: nowrap;
    margin-bottom: .5em;
}

.footer .footerlink>li {
    display: inline-block;
    padding: 0 1em;
    position: relative;
}

.footer .footerlink>li:before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 0.8em;
    top: 50%;
    margin-top: -0.4em;
    background: #888;
}

.footer .footerlink>li:first-child:before {
    display: none;
}

.footer .footerlink a {
    color: #888;
}

.footer .footerlink a:hover {
    color: #d40a26;
}

.footer .copyright span,
.footer .copyright .ipv6 {
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
}

@media screen and (max-width: 1024px) {
    .footer .sitemap{ float: none; text-align: left; display:flex; width: 108%;}
    .footer .sitemap > li{margin-right:0;flex:1;}
    .footer .rwm{ margin: 0 0 -2.5em;top:0; clear: both;}
    .footer .friendship{float: none; display: inline-block; margin: 0;}
    .footer .friendship ul{ position: absolute; left: 50%; transform: translateX(-50%); text-align: left; }
    .footer .footerlink{margin: 0 -9% .5em;}
    .footer .footerlink > li{padding: 0 .5em;}
    .footer .links{ float: left;margin: 0;}
    .footer .links .sitelink{ float: right;}
    .footer .links .friendship{ float: left; clear: none; margin-left: 0;}
}

@media screen and (max-width: 767px) {
    .footer .footer_content {
        text-align: center;
    }

    .footer .sitemap {
        float: none;
        text-align: left;
        display: block;
        width: auto;
    }

    .footer .sitemap>li {
        display: block;
        margin: 0 0 .75em;
    }

    .footer .sitemap>li h3 {
        line-height: 2em;
    }

    .footer .sitemap>li ul li {
        display: inline-block;
        vertical-align: top;
        margin-right: 2em;
    }

    .footer .rwm {
        float: none;
        margin: .25em auto 1em;
    }

    .footer .friendship {
        float: none;
        display: inline-block;
        margin: 0;
    }

    .footer .friendship ul {
        position: absolute;
        right: 50%;
        transform: translateX(50%);
        text-align: left;
    }
    .footer .links{ float: none;}
    .footer .links .sitelink{ float: none;margin: 0 -9% .5em;}
    .footer .links .friendship{ float: none;}
    .footer .sitelink > li{padding: 0 .5em;}

}

.banner {
    position: relative;
    height: 0;
    padding: 0 0 calc(620% / 19.2);
    overflow: hidden;
}

.banner .img_container img {
    width: 100%;
}

.banner .txt_container {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 62.5%;
    transform: translate(-50%, -50%);
    min-width: 1200px;
}

.banner .txt_container img {
    max-height: 3em;
}

.banner .txt_container img+h2 {
    display: none;
}

.banner .txt_container h2 {
    line-height: 2em;
    font-size: 2em;
    color: #d40a26;
    font-weight: bold;
    position: relative;
    padding-bottom: .25em;
    text-transform: uppercase;
    /*font-family:"FZCSJW";*/
}

.banner .txt_container h2:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 1.25em;
    height: 1px;
    background: #d40a26;
}

.nav {
    line-height: 4em;
    border-bottom: 1px solid #C8C8C8;
}

.nav a {
    margin-right: .5em;
}

.nav a:hover {
    color: #d40a26;
}

.submenu {
    line-height: 4em;
    margin-bottom: 2em;
    background: #F4F4F4;
    border-top: #d40a26 2px solid;
    white-space: nowrap;
}

.submenu ul {
    list-style-type: none;
    display: flex;
    display: table\9;
}

.submenu ul li {
    flex: 1;
    display: table-cell\9;
}

.submenu a {
    display: block;
    text-align: center;
    color: #222;
    /* font-weight: bold; */
    transition: color .5s linear, background .5s linear;
}

.submenu .current a,
.submenu a:hover {
    background: #d40a26;
    color: #FFF;
}

.submenu br {
    display: none;
}

@media screen and (max-width: 1366px) {
    .submenu {
        line-height: 3.5em;
    }

    .submenu ul {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .submenu {
        line-height: 3em;
        
        overflow-x: auto;
    }

    .submenu ul {
        padding: 0;
    }
    .submenu ul a{
        padding: 5px 15px;
    }
}

.page_title {
    padding: 5em 0 .5em;
}

.submenu+.main_content .page_title {
    padding: 2.5em 0 .5em;
}

.page_title.hasbor {
    border-bottom: 1px solid #C8C8C8;
}

.page_title h1,
.page_title h2 {
    font-size: 2.5em;
    line-height: 1.5em;
    color: #494949;
    font-weight: lighter;
}

.page_title h3 {
    font-size: 1em;
    line-height: 1em;
    color: #DDD;
    text-transform: uppercase;
    font-weight: lighter;
}

.page_content {
    padding: 2em 0 5em;
}

.into_content {
    line-height: 1.875em;
}

.into_content p {
    margin: .8em 0;
    font-size: 18px;
    line-height: 1.875;
    text-align: justify;
}

.into_content p img {
    text-align: center;
}

.into_content [align='center'] {
    text-align: center;
}

.into_content [align='right'] {
    text-align: right;
}

.into_content h2,
.into_content h3,
.into_contenth4 {
    font-weight: bold;
    margin: .4em 0;
    color: #000;
}

.into_content h2 {
    font-size: 1.25em;
}

.into_content h3 {
    font-size: 1.167em;
}

.into_content img {
    max-width: 100%;
    height: auto !important;
}

.into_content th {
    background: #2F3F53;
    color: #FFF;
}

.into_content .color {
    color: #d40a26;
}

@media screen and (max-width: 1400px) {
    .into_content p{
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
    .footer .sitemap ul {
        display: inline-block;
    }

    .into_content p {
        text-align: inherit;
    }

    .footer .sitemap>li ul li {
        float: left;
    }
}

.turnpage {
    padding-top: 2em;
    text-align: right;
    margin-bottom: 2em;
    white-space: nowrap;
}

.turnpage a,
.turnpage span,
.turnpage input {
    text-align: center;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 1.875em;
    margin: 0 .125em;
    border: 1px solid #C8C8C8;
    vertical-align: middle;
    border-radius: .25em;
}

.turnpage a.current,
.turnpage a:hover {
    background: #d40a26;
    color: #FFF;
    border: 1px solid #d40a26;
}

.turnpage input {
    width: 4em;
}

@media screen and (max-width: 767px) {
    .turnpage {
        text-align: center;
    }
}

.indent-con {
    position: relative;
}

.search-list {
    border-bottom: #C8C8C8 1px solid;
}

.search_content {
    padding-top: 0;
}


/* 弹框:链接跳转外站 */
.jmpLinkLayer {
    position: fixed;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.jmpLinkLayer .jmpLinkLayer-con {
    width: 500px;
    height:248px;
    background: #fff;
    border-radius: 10px;
    position: absolute;
    z-index: 100;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size:16px;
    font-weight: 400;
}

@media screen and (max-width:768px) {
    .jmpLinkLayer .jmpLinkLayer-con {
        width: 300px;
        height:148px;
    }
}

.jmpLinkLayer .tips {
    display: block;
}

.jmpLinkLayer .tips span {
    display: block;
    text-align: center;
    margin: 10px 0;
}

.jmpLinkLayer .tips span b {
    font-weight: 400;
    font-style: normal;
}



