* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "PingFangSC", "微软雅黑", "Microsoft YaHei", "Helvetica Neue",
        "Helvetica", "Arial", "sans-serif";
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    vertical-align: top;
}

.img-widthFill {
    display: block;
    width: 100%;
}

.line1 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line3 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.line4 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.container {
    /* 版心大小自己设置 */
    /* width: ; */
    width: 1560px;
    margin: auto;
}

/* 首导航开始 */
.navigation {
    position: relative;
    z-index: 999;
}

.nav_pc {
    position: fixed;
    top: 0;
    z-index: 10;
    background: #fff;
    width: 100%;
    transition: 0.6s;
    box-shadow: 0px 8px 50px 0px rgba(135, 151, 192, 0.12), inset 0px -2px 0px 0px rgba(217, 217, 217, 0.6);
}

.nav_pc .nav_pc_top {
    padding: 8px 0;
    background: #231815;
    /*box-shadow: inset 0px -2px 0px 0px rgba(217, 217, 217, 0.3);*/
}

.nav_pc .nav_pc_top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_pc .nav_pc_top .container .tip {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.nav_pc .nav_pc_top .function {
    display: flex;
    align-items: center;
}

.nav_pc .nav_pc_top .function form {
    width: 280px;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    overflow: hidden;
    margin-right: 20px;
}

.nav_pc .nav_pc_top .function form .search {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 0px 16px 8px;
}

.nav_pc .nav_pc_top .function form .search .submit {
    font-size: 20px;
    font-weight: 400;
    color: #999999;
    flex-shrink: 0;
    border: none;
    background: transparent;
}

.nav_pc .nav_pc_top .function form .search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}


.nav_pc .nav_pc_top .function .toggle {
    margin-left: 20px;
    padding: 0px 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    position: relative;
}

.nav_pc .nav_pc_top .function .toggle span {
    line-height: 22px;
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    color: #999;
    font-size: 20px;
    cursor: pointer;
    margin-left: 50px;
}

.nav_pc .nav_pc_top .function .toggle .lang {
    display: flex;
    align-items: center;
}

.nav_pc .nav_pc_top .function .toggle .lang p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 14px;
    font-weight: 400;
}

.nav_pc .nav_pc_top .function .toggle .lang .iconfont {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    display: block;
    margin-left: 5px;
}

.nav_pc .nav_pc_top .function .toggle .change_lang {
    display: none;
    position: absolute;
    left: 0%;
    top: 40px;
    width: 50px;
    background: #000;
    z-index: 99;
}

.nav_pc .nav_pc_top .function .toggle .change_lang::after {
    content: "\e631";
    font-family: iconfont;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    top: -10px;
    color: #fff;
    font-size: 14px;
    z-index: -1;
}

.nav_pc .nav_pc_top .function .toggle .change_lang p a {
    text-align: center;
    padding: 8px 0;
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
    display: block;
}

.nav_pc .nav_pc_top .function .toggle .change_lang p:hover a,
.nav_pc .nav_pc_top .function .toggle .change_lang p.active a {
    background-color: #C30D23;
    color: #fff;
}

.nav_pc .nav_pc_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav_pc .nav_pc_bottom .logo {
    width: 190px;
}

.nav_pc .nav_title {
    height: 80px;
    display: flex;
    align-items: center;
}

.nav_pc .nav_title>li {
    transition: 0.3s;
    position: relative;
    z-index: 1;
    margin-right: 80px;
}

.nav_pc .nav_title>li:last-child {
    margin-right: 0;
}

.nav_pc .nav_title>li>a {
    transition: 0.25s;
    font-weight: 400;
    font-size: 18px;
    color: #333;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.nav_pc .nav_title>li:hover>a,
.nav_pc .nav_title>li.active>a {
    font-weight: bold;
    color: #C30D23;
}


/* 手机导航 */
.nav_phone {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 12px 20px;
    box-sizing: border-box;
    transition: 0.3s;
    background-color: #fff;
}

.nav_phone.show {
    box-shadow: 0px 0px 28px 0px rgba(156, 156, 156, 0.25);
}

.phone_logo img:first-child,
.nav_phone.show .phone_logo img:last-child {
    display: block;
}

.nav_phone_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    z-index: 999;
}

.menu {
    overflow: hidden;
    max-height: 0;
    background-color: #fff;
    -webkit-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
}

.active_menu {
    min-height: 100vh;
    overflow: auto;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: 1.5;
    padding-top: 80px;
}

.menu>ul>li>a {
    position: relative;
    padding: 15px 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid #ececec;
}

.menu>ul>li>a span {
    font-size: 14px;
    color: #333;
    -webkit-text-fill-color: #333;
}

.menu>ul>li>a span.iconfont {
    font-size: 18px;
    transition: 0.3s;
}

.sub-menu {
    display: none;
}

.sub-menu li {
    padding: 8px 18px;
    border-bottom: 1px solid #ececec;
    background-color: #fff;
}

.sub-menu li a {
    color: #333;
    font-size: 12px;
}

.active_submenu .iconfont {
    transform: rotate(90deg);
}


/* logo */
.phone_logo img {
    width: 170px;
}

.phone_logo img:last-child,
.nav_phone.show .phone_logo img:first-child {
    display: none;
}

.nav_right {
    display: flex;
    align-items: center;
}

.nav_right .nav_phone_btn {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav_right .nav_phone_btn button {
    line-height: 25px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #231815;
    font-size: 22px;
    cursor: pointer;
    padding-right: 15px;
    position: relative;
}

.nav_right .nav_phone_btn button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    height: 80%;
    transform: translateY(-50%);
    width: 1px;
    background-color: #231815;
}

.nav_right .nav_phone_btn .toggle {
    margin-left: 15px;
    position: relative;
}

.nav_right .nav_phone_btn .toggle span {
    line-height: 22px;
    border: none;
    outline: none;
    background-color: transparent;
    color: #231815;
    font-size: 22px;
    cursor: pointer;
}

.nav_right .nav_phone_btn .toggle .lang {
    display: none;
    position: absolute;
    left: 50%;
    top: 35px;
    transform: translateX(-50%);
    width: 50px;
    background: #fff;
}

.nav_right .nav_phone_btn .toggle .lang::after {
    content: "\e631";
    font-family: iconfont;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    top: -10px;
    color: #fff;
    font-size: 14px;
    z-index: -1;
}

.nav_right .nav_phone_btn .toggle .lang p a {
    text-align: center;
    padding: 8px 0;
    font-size: 16px;
    color: #000;
    transition: 0.3s;
    display: block;
}

.nav_right .nav_phone_btn .toggle .lang p:hover a,
.nav_right .nav_phone_btn .toggle .lang p.active a {
    background-color: #C30D23;
    color: #fff;
}


/* 列表按钮 */
.spinner-master {
    position: relative;
    width: 46px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: transparent;
    height: 46px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 3px;
    z-index: 9999;
}

.spinner-master * {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    box-sizing: border-box;
}

.spinner-spin {
    width: 22px;
    text-indent: -99999px;
}

.spinner-master .spinner {
    height: 2px;
    width: 100%;
    background-color: #231815;
}

.spinner-master .spinner.active {
    background-color: #231815;
}

.spinner:nth-child(2n) {
    width: 100% !important;
}

.spinner-master .horizontal {
    margin-top: 6px;
}

.spinner-master .diagonal.part-2 {
    margin-top: 6px;
}

.spinner_active .spinner-spin>.diagonal.part-1 {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    margin-top: 3px;
}

.spinner_active .spinner-spin>.horizontal {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.spinner_active .spinner-spin>.diagonal.part-2 {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    margin-top: -10px;
}

.spinner_active .spinner {
    background-color: #000;
}

/*手机搜索*/
.nav_phone>.search {
    border-radius: 4px 4px 4px 4px;
    border: 1px solid rgba(194, 0, 0, 0.5);
    overflow: hidden;
    width: 500px;
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: calc(100% + 20px);
}

.nav_phone>.search>form {
    display: flex;
}

.nav_phone>.search>form>input {
    border: none;
    outline: none;
    background: rgba(255, 255, 255, 1);
    padding: 16px 24px;
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    flex: 1;
}

.nav_phone>.search>form>button {
    border: none;
    outline: none;
    width: 100px;
    background: #C20000;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav_phone>.search>form>.icon-sousuo:before {
    margin-right: 8px;
}

/* 首导航结束 */

/*公共banner 开始*/
.bannerCommon {
    width: 100%;
    position: relative;
}

.bannerCommon::after{
    content:'';
    position: absolute;
    left: 0;
    top: 0;
    width: 35%;
    height: 100%;
    background: #C30D23;
}

.bannerCommon>img {
    object-fit: cover;
    height: 100%;
}

.bannerCommon>.hang {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 9;
}

.bannerCommon>.hang>.container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bannerCommon>.hang>.container>p{
     font-weight: bold;
     font-size: 48px;
}

.bannerCommon>.hang>.container>p:first-child{
    color: #231815;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bannerCommon>.hang>.container>p:last-child {
    color: #FFFFFF;
}

/*公共banner 结束*/

/* 面包屑   开始 */
.crumbs {
    width: 100%;
    height: 74px;
    position: relative;
    /*border-bottom: 1px solid #E6E6E6;*/
    background: #C30D23;
}

.crumbs>.container {
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.crumbs .locationWrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.crumbs .locationWrapper>.icon-home-filling {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
}

.crumbs .locationWrapper>a,
.crumbs .locationWrapper>.fg {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.crumbs .locationWrapper>a.active {
    color: #fff;
}

.crumbs .locationWrapper>.fg {
    margin: 0 8px;
}

.crumbs .back {
    display: flex;
    align-items: center;
}

.crumbs .back>span {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    line-height: 1;
}

.crumbs .back>span.iconfont {
    margin-left: 6px;
}

/* 面包屑   结束 */

/*page 翻页 开始*/
.page {
    padding: 50px 0;
}

.page .container {
    display: flex;
    justify-content: center;
    font-family: Source Han Sans CN;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: center;
    flex-wrap: wrap;
}

.page .container>.pageblock:not(:last-child) {
    margin-right: 11px;
    margin-bottom: 11px;
}

.page .container>.index,
.page .container>.total {
    background: #EBEBEB;
    line-height: 35px;
    transition: 0.3s;
    font-weight: 400;
    font-size: 16px;
    color: #666666;
}

.page .container>.index:first-of-type,
.page .container>.index:last-of-type {
    width: 78px;
    height: 37px;
    flex-shrink: 0;
    transition: 0.3s;
}

.page .container>.index {
    width: 38px;
    height: 37px;
    transition: 0.3s;
    flex-shrink: 0;
}

.page .container>.total {
    width: 126px;
    height: 37px;
    flex-shrink: 0;
}

.page .container>.pageblock:hover,
.page .container>.pageblock.active{
    background: #C30D23;
    color: #FFF;
}

/*page 翻页 结束*/


/*尾导航 开始*/
.footer .footer_top {
    width: 100%;
    padding: 90px 0;
    background: #231815;
}

.footer .footer_top .container {
    display: flex;
    justify-content: space-between;
}

.footer .footer_top .container .left .footer_logo {
    width: 230px;
    margin-bottom: 40px;
}

.footer .footer_top .container .left .footer_nav {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #535353;
    display: none;
}

.footer .footer_top .container .left .footer_nav li:not(:first-child) {
    margin-left: 60px;
}

.footer .footer_top .container .left .footer_nav li a {
    font-weight: 400;
    font-size: 20px;
    color: #FFFFFF;
}

.footer .footer_top .container .left .icon_list {
    display: flex;
    align-items: center;
    margin-top: 60px;
    display: none;
}

.footer .footer_top .container .left .icon_list .icon:not(:first-child) {
    margin-left: 20px;
}

.footer .footer_top .container .left .icon_list .icon {
    width: 36px;
    height: 36px;
    cursor: pointer;
    position: relative;
}

.footer .footer_top .container .left .icon_list .icon .qrcode {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    background: #C30D23;
    padding: 10px;
    margin-bottom: 15px;
}

.footer .footer_top .container .left .icon_list .icon .qrcode::after {
    content: "\e631";
    font-family: iconfont;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    color: #fff;
    font-size: 14px;
    z-index: -1;
}

.footer .footer_top .container .left .icon_list .icon .qrcode>img {
    width: 100px;
    height: 100px;
}

.footer .footer_top .container .left .icon_list .icon .qrcode>p {
    font-size: 16px;
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

.footer .footer_top .container .left .logolist {
    display: flex;
    align-items: center;
    padding-top: 10px;
    position: relative;
}

.footer .footer_top .container .left .logolist::before {
    display: none;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 1px;
    background: #535353;
    opacity: 0.8;
}

.footer .footer_top .container .left .logolist .logoitem {
  padding: 0 20px;
  position: relative;
}

.footer .footer_top .container .left .logolist .logoitem:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 85%;
    background: #535353;
}

.footer .footer_top .container .left .logolist .logoitem img{
    width: 100px;
}

.footer .footer_top .container .left .logolist .logoitem:first-child {
    padding-left: 0;
}

.footer .footer_top .container .left .logolist .logoitem:last-child {
    padding-right: 0;
}

.footer .footer_top .container .right>.title {
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.footer .footer_top .container .right .zbc {
    display: flex;
    align-items: center;
}

.footer .footer_top .container .right .contact_method li {
    display: flex;
    align-items: self-start;
}

.footer .footer_top .container .right .contact_method li:not(:last-child) {
    margin-bottom: 20px;
}

.footer .footer_top .container .right .contact_method li .intro {
    display: flex;
    align-items: center;
}

.footer .footer_top .container .right .contact_method li .intro>img {
    width: 20px;
    height: 20px;
    margin-right: 3px;
}

.footer .footer_top .container .right .contact_method li .intro>p {
    font-weight: 400;
    font-size: 16px;
    color: #D8D8D8;
}

.footer .footer_top .container .right .contact_method li .msg {
    display: flex;
    flex-direction: column;
}

.footer .footer_top .container .right .contact_method li .msg p,
.footer .footer_top .container .right .contact_method li .msg a {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.footer .footer_top .container .right .contact_method li .msg a:not(:last-child) {
    margin-bottom: 18px;
}

.footer .footer_top .container .right .zbc>img {
    width: 100px;
    margin-left: 100px;
}

.footer .footer_bottom {
    padding: 30px 0;
    background: #C30D23;
}

.footer .footer_bottom .container {
    text-align: center;
}

.footer .footer_bottom .container>span {
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    position: relative;
}

.footer .footer_bottom .container>span:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: rgba(255, 255, 255, 0.6);
}

.footer .footer_bottom .container>span:first-child {
    padding-right: 15px;
}

.footer .footer_bottom .container>span:last-child {
    padding-left: 15px;
}


/*尾导航 结束*/
@media(max-width:1920px){
    .bannerCommon::after {
        width: 30%;
    }
}

@media(max-width:1680px) {
    .container {
        width: 90%;
    }


    .nav_pc .nav_pc_bottom .logo {
        width: 170px;
    }

    .nav_pc .nav_title {
        height: 70px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 44px;
    }


    .footer .footer_top {
        padding: 75px 0 60px;
    }

    .footer .footer_top .container .left .footer_logo {
        width: 210px;
        margin-bottom: 50px;
    }

    .footer .footer_top .container .left .footer_nav li a {
        font-size: 18px;
    }

    .footer .footer_top .container .right>.title {
        margin-bottom: 25px;
    }

    .footer .footer_top .container .right .contact_method li .intro>img {
        width: 18px;
        height: 18px;
    }

}

@media(max-width:1440px) {
    .nav_pc .nav_pc_bottom .logo {
        width: 160px;
    }

    .nav_pc .nav_pc_top .function form .search,
    .nav_pc .nav_pc_top .function .toggle {
        padding: 0 16px 6px;
    }

    .nav_pc .nav_pc_top .function form {
        width: 240px;
        margin-right: 15px;
    }

    .nav_pc .nav_pc_top .function .toggle {
        margin-left: 15px;
    }

    .nav_pc .nav_pc_top .function .toggle .change_lang p a {
        font-size: 14px;
    }

    .nav_pc .nav_title {
        height: 60px;
    }

    .nav_pc .nav_title>li {
        margin-right: 60px;
    }

    .nav_pc .nav_title>li>a {
        font-size: 16px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 40px;
    }


    .page {
        padding: 40px 0;
    }



    .footer .footer_top {
        padding: 60px 0;
    }

    .footer .footer_top .container .left .footer_logo {
        width: 160px;
        margin-bottom: 40px;
    }

    .footer .footer_top .container .left .footer_nav {
        padding-bottom: 20px;
    }

    .footer .footer_top .container .left .footer_nav li a {
        font-size: 16px;
    }

    .footer .footer_top .container .left .footer_nav li:not(:first-child) {
        margin-left: 45px;
    }

    .footer .footer_top .container .left .icon_list .icon .qrcode>p {
        font-size: 16px;
        margin-top: 5px;
    }

    .footer .footer_top .container .left .icon_list {
        margin-top: 40px;
    }

    .footer .footer_top .container .left .icon_list .icon {
        width: 30px;
        height: 30px;
    }
    
     .footer .footer_top .container .left .logolist .logoitem {
        padding: 0 15px;
    }
    
    .footer .footer_top .container .left .logolist .logoitem img{
         width: 90px;
    }

    .footer .footer_top .container .right>.title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .footer .footer_top .container .right .contact_method li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer .footer_top .container .right .contact_method li .intro>img {
        width: 16px;
        height: 16px;
    }

    .footer .footer_top .container .right .contact_method li .msg a:not(:last-child) {
        margin-bottom: 10px;
    }
    
    .footer .footer_top .container .right .zbc>img {
        margin-left: 80px;
    }

    .footer .footer_bottom {
        padding: 20px 0;
    }
}

@media(max-width:1280px) {

    .nav_pc .nav_pc_bottom .logo {
        width: 150px;
    }

    .nav_pc .nav_pc_top .function form {
        width: 200px;
        margin-right: 10px;
    }

    .nav_pc .nav_pc_top .function .toggle {
        margin-left: 10px;
    }

    .nav_pc .nav_pc_top .function form .search {
        padding: 0 14px 4px;
    }


    .nav_pc .nav_pc_top .function form .search .submit {
        font-size: 18px;
    }

    .nav_pc .nav_pc_top .function .toggle span {
        font-size: 18px;
    }

    .nav_pc .nav_title>li {
        margin-right: 40px;
    }

    .nav_pc .nav_title {
        height: 50px;
    }

    .nav_pc .nav_title>li>a {
        font-size: 14px;
    }


    .bannerCommon>.hang>.container>p {
        font-size: 36px;
    }


    .crumbs {
        height: 65px;
    }

    .footer .footer_top {
        padding: 50px 0;
    }
    
    .footer .footer_top .container .left .footer_logo {
        width: 150px;
        margin-bottom: 30px;
    }

    .footer .footer_top .container .left .footer_nav {
        padding-bottom: 15px;
    }

    .footer .footer_top .container .left .footer_nav li a {
        font-size: 14px;
    }

    .footer .footer_top .container .left .icon_list {
        margin-top: 30px;
    }
    .footer .footer_top .container .left .logolist .logoitem{
        padding: 0 10px;
    }
    
    .footer .footer_top .container .left .logolist .logoitem img {
        width: 80px;
    }

    .footer .footer_top .container .right>.title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer .footer_top .container .right .contact_method li .intro>img {
        width: 14px;
        height: 14px;
    }

    .footer .footer_top .container .right .contact_method li .intro>p,
    .footer .footer_top .container .right .contact_method li .msg p,
    .footer .footer_top .container .right .contact_method li .msg a {
        font-size: 14px;
    }

    .footer .footer_top .container .left .icon_list .icon .qrcode>p {
        font-size: 14px;
    }
    
     .footer .footer_top .container .right .zbc>img {
        margin-left: 60px;
    }
}

@media(max-width:1135px) {}

@media(max-width:1024px) {

    .nav_pc {
        display: none;
    }

    .nav_phone {
        display: block;
    }

    .bannerCommon {
        height: 250px;
    }
    
    .bannerCommon::after{
        display: none;
    }
    
    .bannerCommon>.hang>.container {
        align-items: center;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 32px;
    }

    .crumbs {
        height: 60px;
    }
    
    .crumbs>.container {
        justify-content: flex-start;
    }

    .page {
        padding: 30px 0;
    }

    .footer .footer_top {
        padding: 40px 0;
    }

    .footer .footer_top .container .left .footer_nav li:not(:first-child) {
        margin-left: 15px;
    }

    .footer .footer_top .container .left .logolist .logoitem img {
        width: 70px;
    }
    
    .footer .footer_top .container .right .zbc>img {
        display: none;
    }
}

@media(max-width:768px) {
    .nav_phone {
        padding: 10px 20px;
    }

    .phone_logo img {
        width: 150px;
    }

    .active_menu {
        padding-top: 60px;
    }

    .bannerCommon {
        height: 230px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 28px;
    }

    .footer .footer_top .container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .footer .footer_top .container .left{
        margin-bottom: 15px;
    }
    
    .footer .footer_top .container .left .footer_nav,
    .footer .footer_top .container .left .icon_list{
        display: none;
    }
    
    .footer .footer_top .container .left .footer_logo {
        width: 120px;
        margin: 0 auto 15px;
    }
    
    .footer .footer_top .container .right>.title {
        display: none;
    }

    .footer .footer_top .container .right .contact_method li:not(:last-child) {
        margin-bottom: 10px;
    }

    .footer .footer_bottom {
        padding: 10px 0;
    }

    .footer .footer_bottom .container>span:first-child {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 5px;
    }

    .footer .footer_bottom .container>span:first-child::after {
        display: none;
    }

    .footer .footer_bottom .container>span:last-child {
        padding-left: 0;
        padding-right: 0;
    }


    .footer .footer_bottom .container>span {
        font-size: 12px;
    }

}

@media(max-width:600px) {
    .phone_logo img {
        width: 130px;
    }

    .nav_right .nav_phone_btn button {
        padding-right: 10px;
    }

    .nav_right .nav_phone_btn .toggle {
        margin-left: 10px;
    }

    .nav_phone>.search {
        width: 80%;
        top: calc(100% + 15px);       
    }

    .nav_phone>.search>form>input {
        padding: 16px 18px;
    }

    /*本次面包屑 新增*/
    .crumbs {
        height: 50px;
    }

    .crumbs .locationWrapper>a,
    .crumbs .locationWrapper>.fg,
    .crumbs .back>span {
        font-size: 12px;
    }

    /*本次面包屑 新增*/

    .crumbs .locationWrapper>.fg {
        margin: 0 5px;
    }
    
    .page .container>.index{
        display: none;
    }
    
    .page .container>.index:first-of-type, 
    .page .container>.index:last-of-type{
        display: block;
    }
}

@media(max-width:480px) {
    .nav_phone {
        padding: 10px 10px;
    }

    .phone_logo img {
        width: 110px;
    }

    .nav_right .nav_phone_btn button,
    .nav_right .nav_phone_btn .toggle span {
        line-height: 22px;
        font-size: 18px;
    }

    .spinner-spin {
        width: 20px;
    }

    .spinner-master {
        width: 30px;
        height: 30px;
    }

    .spinner-master .horizontal,
    .spinner-master .diagonal.part-2 {
        margin-top: 5px;
    }

    .spinner_active .spinner-spin>.diagonal.part-2 {
        margin-top: -9px;
    }

    .nav_phone>.search {
        width: 90%;
    }

    .nav_phone>.search>form>input {
        padding: 12px 14px;
    }

    .nav_phone>.search>form>button {
        width: 85px;
    }

    .nav_phone>.search>form>.icon-sousuo:before {
        margin-right: 4px;
    }


    .bannerCommon {
        height: 200px;
    }

    .bannerCommon>.hang>.container>p {
        font-size: 24px;
    }

    .page {
        padding: 20px 0 0 0;
    }

    .footer .footer_top {
        padding: 30px 0;
    }

    .footer .footer_top .container .left .logolist .logoitem {
        padding: 0 5px;
    }
    
     .footer .footer_top .container .left .logolist .logoitem img {
        width: 60px;
    }

}

@media(max-width:430px) {

    .page .container>.index:first-of-type,
    .page .container>.index:last-of-type {
        width: 65px;
        height: 30px;
    }

    .page .container>.index,
    .page .container>.total {
        line-height: 30px;
        font-size: 14px;
    }

    .page .container>.total {
        width: 100px;
        height: 30px;
        flex-shrink: 0;
    }

    .page .container>.index {
        width: 30px;
        height: 30px;
        transition: 0.3s;
        flex-shrink: 0;
    }
}

@media(max-width:390px) {}