/*初始化样式*/
html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
p,
blockquote,
pre,
a,
address,
code,
b,
em,
img,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #666;
    position: relative;
    font: 12px/1.5 Microsoft YaHei, arial, 宋体, sans-serif;
    vertical-align: baseline;
    width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    outline: none;
}

a:link {
    color: #666;
}

a:visited {
    color: #666;
}

a:hover,
a:active,
a:focus {
    color: #009b4c;
    text-decoration: none;
    outline: none;
}

input {
    padding: 0;
    margin: 0;
    font-family: 'Microsoft YaHei';
}

img {
    border: none;
    background: none;
    vertical-align: middle;
}

ul,
ol,
li {
    list-style-type: none;
}

select,
input,
img,
select {
    vertical-align: middle;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

table,
th,
td {
    vertical-align: middle
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    overflow: hidden;
    visibility: hidden;
}

.clearfix {
    zoom: 1
}

.clearboth {
    height: 0px;
    line-height: 0px;
    overflow: hidden;
    clear: both;
    font-size: 0px;
}

h1,
h2,
h3,
h4 {
    font-size: 12px;
    font-weight: bold;
}

hr {
    border: 0;
    border-top: 1px solid #ccc;
    height: 0;
}

dt {
    font-weight: normal;
}

/*----- Common css ------*/
.fl {
    float: left;
}

.fr {
    float: right;
}

.di {
    _display: inline;
}

.fwn {
    font-weight: normal;
}

.dib {
    *display: inline;
    _zoom: 1;
    _display: inline;
    _font-size: 0px;
}

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

.flexd {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.wh {
    width: 1200px;
    margin: 0 auto;
}

.pos {
    position: relative;
    width: 1920px;
    left: 50%;
    margin-left: -980px;
}

.com-img {
    display: inline;
    overflow: hidden;
    margin: 0 auto;
    display: table;
}

.com-img img {
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.com-img:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
}


.wh1440 {
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}



/*头部样式*/
.top2 {
    height: 84px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}
.bslogo{display:none;}
.logo {
    line-height: 84px;
    width: 27.08%;
    margin-right: 3.35rem;
}

.logo a {
    display: block;
}

.logo a img {
    max-width: 100%;
}

.top2 .k2 {}


.x-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.x-menu>li {
    position: relative;
    flex: 1;
}
.scroll .x-menu>li>a{color:#000;}
.x-menu>li>a {
    display: block;
    font-size: 16px;
    color: #ffffff;
    white-space: nowrap;
    line-height: 80px;
    height: 80px;
    text-align: center;
}
.scroll .bslogo{display:block;}
.scroll .logo a img{display:none;}

.x-menu>li>a:hover {
    background-color: #ff8a0000;
}

.x-menu>li.active>a {}

.x-menu>li:after {
    content: '';
    position: absolute;
    z-index: 100;
    width: 100%;
    left: 0;
    /*height: 40px;*/
    opacity: 0;
    top: 100%;
}

.x-menu>li:hover .x-sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    background: #fff;
}
.x-menu>li:nth-child(3) .x-sub-menu{
    display: none;
}

.x-sub-menu {
    position: absolute;
    z-index: 99;
    width: 100%;
    left: 0%;
    top: 80px;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-sub-menu>li {
    /* padding: 0 0.9rem; */
}

.x-sub-menu>li>a {
    display: block;
    text-align: center;
    line-height: 2;
    font-size: 14px;
    color: #666666;
    line-height: 2.6;
}

.x-sub-menu>li>a:hover {
    background: #f2a501;
    color: #fff;

}

.x-sub-menu:after {
    content: '';
    width: 0;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
    border-width: 10px;
    cursor: pointer;
    border-style: dashed dashed solid dashed;
    border-color: transparent transparent #fff transparent;
    border-top: none;
    position: absolute;
    top: -10px;
    left: 50%;
    margin-left: -10px;
    z-index: 99;
    display: none;
}




@media(max-width: 992px) {
    body {
        padding-top: 60px;
    }
}



.index-title {
    text-align: center;
}

.p1 .ckgd{
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 0.7rem;
    color: #000;
    border: solid 1px #e5e5e5;
    padding: 0.5% 2%;
}
.p1 .ckgd:hover{
    color: #23527c;
}
.index-title h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #f1a501;
    margin-bottom: 0.7rem;
}

.index-title h3 span {
    color: #333333;
}

.index-title p {
    font-size: 0.8rem;
    font-weight: normal;
    color: #666666;
    padding-bottom: 0.7rem;
    position: relative;
}

.index-title p::before {
    content: "";
    width: 2.1rem;
    height: 3px;
    background-color: #f2a501;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}




.p1 {
    background-color: #f5f5f5;
    padding: 4.8rem 0 5.65rem;
}

.p1a {
    justify-content: center;
    margin: 1.5rem 0 2.15rem;
}

.p1a li {
    width: 10.07%;
}

.p1a li a {
    display: block;
    line-height: 44px;
    font-size: 14px;
    font-weight: normal;
    color: #333333;
    text-align: center;
    background-color: #eeeeee;
    width: 100%;
    padding: 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: all ease .2s;
}

.p1a li.active a {
    background-color: #f2a501;
    color: #fff;
}

.p1a li {
    margin: 0 0.6rem;
}



.p1b {
    position: relative;
}

.p1b .p1b1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 9;
    right: 0;
    width: 100%;
}

.p1b .p1b1 {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
}

.p1b .p1b1.active {
    position: static;
    opacity: 1;
    visibility: visible;
}

.p1b .p1b1 li {
    width: 22.26%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
    margin: 2% 0;
    background-color: #fff;
}



.p1b .p1b1 li .conta {
    background-color: #fbfbfb;
}

.p1b .p1b1 li .conta .conta-title {
    padding: 1.05rem 1.2rem 0.8rem;
}


.p1b .p1b1 li .conta .conta-title h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
}

.p1b .p1b1 li .conta .conta-title a {
    display: block;
    width: 16px;
    height: 12px;
    background: url(//cdn.myxypt.com/77789722/21/10/58b7f0aa50132ca40423d47f68a021d944805e95.png) no-repeat center center;
}

.p1b .p1b1 li .conta .img {
    overflow: hidden;
}

.p1b .p1b1 li .conta .img img {
    display: block;
    width: 100%;
    transition: all ease .3s;
}

.p1b .p1b1 li:hover .conta .img img {
    transform: scale(1.1);
}

.p1b .p1b1 li .contb a {
    display: block;
    background: #ffffff;
    padding: 1.8rem 1.65rem 1.3rem 1.5rem;
    transition: all ease .3s;
}

.p1b .p1b1 li .contb a h3 {
    font-size: 16px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 1.3rem;
}

.p1b .p1b1 li .contb a p {
    font-size: 14px;
    line-height: 2;
    color: #95969b;
}

.p1b .p1b1 li .contb a span {
    margin-top: 2rem;
    font-size: 14px;
    color: #95969b;
    display: inline-block;
    padding-right: 2.15rem;
    line-height: 15px;
    background: url(//cdn.myxypt.com/77789722/21/10/4c4a6e499da2d9b16f96ccde3db6326bf15d2ed0.png) no-repeat right top;
}


.p1b .p1b1 li:hover .contb a {
    background: linear-gradient(0deg,
            #f1a604 0%,
            #f6b427 100%);
}

.p1b .p1b1 li:hover .contb a h3 {
    color: #fff;
}

.p1b .p1b1 li:hover .contb a p {
    color: #fff;
}

.p1b .p1b1 li:hover .contb a span {
    color: #fff;
    background: url(//cdn.myxypt.com/77789722/21/10/1a9b1dcd0b43daf636f4d3562ec82a75af0de7bc.png) no-repeat right top;
}


@media(max-width: 768px) {
    .p1a li {
        width: 13.07%;
    }

    .p1b .p1b1 li {
        width: 49%;
        margin-bottom: 2%;
    }
}

@media(max-width: 767px) {

    .index-title h3 {
        font-size: 24px;
    }

    .index-title p {
        font-size: 14px;
    }

    .p1a {
        justify-content: space-between;
        margin: 2rem 0 1.5rem;
    }

    .p1a li {
        margin: 0;
        width: 32.07%;
        margin-bottom: 2%;
    }

    .p1b .p1b1 li {
        width: 100%;
    }
    .p1b .p1b1 li .contb a span{
        padding-right: 3.2rem;
    }
}


.p2 {
    padding-top: 4rem;
}

.p2 .p2a {
    margin-top: 1.9rem;
}

.p2 .p2a li {
    width: 24.1667%;
    margin-bottom: 1rem;
}

.p2 .p2a li a {
    display: block;
    position: relative;
}

.p2 .p2a li a div.img img {
    width: 100%;
}

.p2 .p2a li a .cont {
    width: 100%;
    background: rgba(0, 0, 0, .53);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 3.65rem;
    text-align: center;
    opacity: 0;
    transition: all ease .3s;
    z-index: 0;
}

.p2 .p2a li a .cont::before {
    content: "";
    width: 92%;
    height: 88.8%;
    border: 1px solid rgba(255, 255, 255, .44);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: -1;
}

.p2 .p2a li a .cont h3 {
    font-size: 2.5vw;
    font-weight: normal;
    color: #fefefe;
    padding-bottom: 1.1rem;
    position: relative;
    margin-bottom: 1rem;
}

.p2 .p2a li a .cont h3::after {
    content: '';
    width: 4.3rem;
    height: 2px;
    background-color: #f2a501;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p2 .p2a li a .cont p {
    font-size: 14px;
    line-height: 2;
    color: #fefefe;
}

.p2 .p2a li:hover a .cont {
    opacity: 1;
}


@media(max-width: 1440px) {
    .p2 .p2a li a .cont {
        padding: 0 1.8rem;
    }
}

@media(max-width: 1024px) {
    .p2 .p2a li a .cont {
        overflow: hidden;
    }

    .p2 .p2a li a .cont p {
        line-height: 1.4;
    }

    .p2 .p2a li a .cont h3 {
        margin-bottom: 0.6rem;
    }
}

@media(max-width: 768px) {
    .p2 .p2a li {
        width: 49.1667%;
    }

    .p2 .p2a li a .cont {
        position: static;
        width: 100%;
        height: auto;
        opacity: 1;
        background: #fff;
        display: block;
        padding: 0 6px;
    }

    .p2 .p2a li a .cont h3 {
        color: #000;
        padding: 0;
        margin: 1rem 0;
    }

    .p2 .p2a li a .cont h3::after {
        display: none;
    }

    .p2 .p2a li a .cont p {
        color: #000;
    }
}

@media(max-width: 767px) {
    .p2a {
        padding: 0 15px;
    }

    .p2 .p2a li {
        width: 100%;
    }
}






.p3 {
    background: url(//cdn.myxypt.com/77789722/21/10/07e3f89a12b8e14570fdf6e90a9c7291da7b8936.jpg) no-repeat center center;
    background-size: cover;
    padding: 3rem 0;
    width: 100vw;
    overflow: hidden;
}

.p3>.flex {
    align-items: flex-end;
}

.p3a {
    width: 50%;
}

.p3a div.img {
    overflow: hidden;
}

.p3a div.img img {
    width: 100%;
    transition: all ease .3s;
}

.p3a div.img:hover img {
    transform: scale(1.1);
}

.p3b {
    width: 45.8333%;
}

.p3b>h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #333333;
    margin-bottom: 0.5rem;
}

.p3b>h4 {
    font-size: 1rem;
    font-weight: normal;
    color: #f2a501;
    margin-bottom: 2rem;
}

.p3b>p {
    font-size: 16px;
    line-height: 2.2;
    color: #666666;
}

.p3b>a {
    display: block;
    font-family: "Arial";
    font-size: 16px;
    font-weight: normal;
    color: #f0a401;
    padding-top: 0.7rem;
    position: relative;
    margin-top: 2.8rem;
}

.p3b>a::after {
    content: "";
    background: url(//cdn.myxypt.com/77789722/21/10/189251e37e78f2a5590169c34f3f482a4c146df3.png) no-repeat left center;
    width: 110%;
    left: 0;
    top: 0;
    height: 2px;
    position: absolute;
}


.p3b1 {
    margin-top: 3.2rem;
    margin-bottom: 1.8rem;
}

.p3b1 li {
    flex: 1;
}

.p3b1 li h3.counter {
    font-family: "Impact";
    font-size: 2.5rem;
    font-weight: normal;
    color: #f0a401;
}

.p3b1 li span {
    display: block;
    font-size: 16px;
    line-height: 2.2;
    color: #666666;
}

.p3b1 li:last-child h3.counter::after {
    content: "+";
    font-family: "Impact";
    font-size: 2.5rem;
    font-weight: normal;
    color: #f0a401;
    transform: translateX(-7px);
    display: inline-block;
}

@media(max-width: 1440px) {
    .p3b>a {
        margin-top: 1.5rem;
    }

    .p3b1 {
        margin-top: 1.2rem;
    }
}

@media(max-width: 1024px) {
    .p3b>p {
        font-size: 14px;
        line-height: 1.8;
    }

    .p3b1 {
        margin-bottom: 0.8rem;
    }
}

@media(max-width: 768px) {
    .p3a {
        width: 100%;
    }

    .p3b {
        width: 100%;
        margin-top: 4%;
    }
}

@media(max-width: 767px) {
    .p3b>a::after{
        width: 100%;
    }
    .p3b>h3 {
        font-size: 21px;
    }

    .p3b>h4 {
        font-size: 15px;
        margin-bottom: 1rem;
    }

    .p3b1 li {
        text-align: center;
    }

    .p3b1 li h3.counter {
        font-size: 29px;
    }

    .p3b1 li span {
        font-size: 12px;
    }

    .p3b1 li:last-child h3.counter::after {
        transform: initial;
    }

}


.index-title p::after {
    display: none;
}

.p4 {
    background-color: #f6f6f6;
    padding-top: 4.3rem;
}



.ysSwiper {
    height: 100%;
    width: 100%;
    margin-top: 1.95rem;
    overflow: hidden;
}

.ysSwiper ul {
    height: 100%;
    width: 100%;
}

.ysSwiper ul li {
    height: 100%;
    width: 25%;
    border-left: 1px solid #f1f1f1;
    float: left;
    overflow: hidden;
}

.ysSwiper ul li .pic {
    width: 100%;
}

.ysSwiper ul li .pic img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*-webkit-filter: grayscale(100);*/
    /*filter: grayscale(100);*/
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

.ysSwiper ul li:hover .pic img {
    /*-webkit-filter: grayscale(0);*/
    /*filter: grayscale(0);*/
}

.ysSwiper ul li .cont {
    padding: 1.36rem 0;
    width: 100%;
    position: relative;
}

.ysSwiper ul li .cont .box1 {
    height: 100%;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.ysSwiper ul li .cont .box1 .line1 {
    width: 1px;
    height: 28px;
    background-color: #e2e2e2;
    margin: 0 auto 20px;
}

.ysSwiper ul li .cont .box1 .num {
    font-family: "Swiss721BT Light", "MicrosoftYaHei Light";
    font-size: 30px;
    line-height: 20px;
    color: #b3b3b3;
    font-weight: 100;
}

.ysSwiper ul li .cont .box1 h4 {
    margin-top: 24px;
    font-size: 20px;
    color: #424242;
    line-height: 1;
    font-weight: 400;
}

.ysSwiper ul li .cont .box1 h5 {
    line-height: 1;
    font-family: Arial;
    font-size: 14px;
    color: #acacac;
    margin-top: 12px;
    font-weight: 400;
}

.ysSwiper ul li .cont .box1 .line2 {
    width: 1px;
    height: 28px;
    background-color: #e2e2e2;
    margin: 20px auto 0;
}
.ysSwiper ul li .cont .box1 a:hover{
    color: #666666;
}

.ysSwiper ul li .cont .box2 {
    position: absolute;
    background: linear-gradient(87deg,
            #f1a501 0%,
            #f8bf3e 100%);
    z-index: 2;
    left: 0;
    bottom: 0;
    text-align: center;
    padding: 3.2rem 10%;
    color: #ffffff;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    width: 100%;
}
.ysSwiper ul li .cont .box2 a:hover{
    color: #666666;
}

.ysSwiper ul li .cont .box2 .num {
    font-family: "Swiss721BT Light", "MicrosoftYaHei Light";
    font-size: 30px;
    line-height: 24px;
    font-weight: 400;
}

.ysSwiper ul li .cont .box2 h4 {
    margin-top: 20px;
    line-height: 1;
    font-size: 20px;
    font-weight: 400;
}

.ysSwiper ul li .cont .box2 h5 {
    line-height: 1;
    font-family: Arial;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 400;
}

.ysSwiper ul li .cont .box2 .text {
    font-size: 14px;
    line-height: 30px;
    text-align: left;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: none;
}

.ysSwiper ul li .cont .box2 .add {
    display: block;
    text-align: center;
    line-height: 20px;
    font-size: 2.05rem;
    font-family: "MicrosoftYaHei Light";
    font-weight: 100;
}

.ysSwiper ul li .cont .box2 .add:before {
    content: "+";
}

.ysSwiper ul li:hover .cont .box2,
.ysSwiper ul li.on .cont .box2 {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media(max-width: 1366px) {
    .ysSwiper ul li .cont .box2 {
        padding: 2rem 0;
    }
}

@media screen and (max-width: 1025px) {
    .ysSwiper ul li .cont .box1 {
        display: none;
    }

    .ysSwiper ul li .cont .box2 {
        opacity: 1;
        filter: alpha(opacity=100);
        padding: 30px;
        min-height: 100%;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .ysSwiper ul li .cont .box2 .num {
        font-size: 30px;
    }

    .ysSwiper ul li .cont .box2 h4 {
        font-size: 20px;
        margin-top: 12px;
    }

    .ysSwiper ul li .cont .box2 h5 {
        margin-top: 10px;
    }

    .ysSwiper ul li .cont .box2 .text {
        height: auto;
        padding: 15px 0;
    }
}

@media(max-width:767px) {
    .ysSwiper ul li .cont {
        padding-bottom: 60%;
    }

    .ysSwiper ul li .pic img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
    }
}




.p5 {
    padding: 4.8rem 0 5.3rem;
}

.p5a {
    margin-top: 1.45rem;
}

.p5a li {
    width: 31.944%;
}

.p5a li a {
    display: block;
    border: solid 1px #dcdcdc;
    height: 100%;
}

.p5a li a div.img {
    overflow: hidden;
}

.p5a li a div.img img {
    display: block;
    width: 100%;
    transition: all ease .6s;
}

.p5a li a:hover div.img img {
    transform: scale(1.1);
}

.p5a li a .cont {
    padding: 1.2rem 1.7rem 1.2rem 1.3rem;
}

.p5a li a .cont h3 {
    font-size: 1rem;
    color: #333333;
    margin-bottom: 1rem;
    transition: all ease .3s;
}

.p5a li:hover a .cont h3 {
    color: #f2a501;
}

.p5a li a .cont p {
    font-size: 14px;
    font-weight: normal;
    color: #666666;
    line-height: 2;
}

.p5a li a .cont .time {
    margin-top: 1.2rem;
}

.p5a li a .cont .time span {
    font-size: 14px;
    font-weight: normal;
    color: #c1c1c1;
}

.p5a li a .cont .time em {
    font-size: 14px;
    color: #c1c1c1;
    padding-right: 15px;
    background: url(//cdn.myxypt.com/77789722/21/10/a69edd9f94fb4f9af760098d19c7687660000f7a.png) no-repeat right center;
    font-style: normal;
}

@media(max-width: 768px) {
    .p5a li {
        width: 100%;
        margin-bottom: 2%;
    }
}

@media(max-width: 767px) {
    .p5a li a .cont h3 {
        font-size: 16px;
    }

}



/**/
.foot-bg {
    background: #262626;
    background-size: 100% 100%;
    border-top: 5px solid #f2a501;
    padding: 3% 0 0;
}

.foot-bg .foot-index {
    display: flex;
    justify-content: space-between;
}

.foot-bg .foot-index .foot1 {
    display: flex;
    justify-content: space-between;
    width: 41.97916666666667vw;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-bg .foot-index .foot1 dl {
    width: 33%;
}

.foot-bg .foot-index .foot1 dl dt {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 1.5625vw;
}

.foot-bg .foot-index .foot1 dl dd a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    line-height: 34px;
    transition: all .3s;
    font-size: 14px;
}

.foot-bg .foot-index .foot1 dl dd a:hover {
    color: rgba(255, 255, 255, 1);
}

.foot-bg .foot-index .lx h3 {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 1.5625vw;
}

.foot-bg .foot-index .lx p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 34px;
    font-size: 14px;
}

.foot-bg .foot-index .erq {
    margin-top: 2vw;
}

.foot-bg .foot-index .erq p:nth-of-type(2) {
    text-align: center;
    color: rgba(255, 255, 255, .8);
    line-height: 2;
    margin-top: 0.8rem;

}

.foot-bg .foot-index .erq p img {
    max-width: 100%;
}

.foot-bg .cop-bg {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2.60416666666667vw;
    padding: 1.5625vw 0;
}

.foot-bg .cop-bg .cop-index {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.foot-bg .cop-bg .cop-index .copl {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    line-height: 24px;
}

.foot-bg .cop-bg .cop-index .copl a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.flink {
    position: relative;
}

.lj {
    width: 232px;
    line-height: 44px;
    padding-left: 29px;
    color: #fff;
    font-size: 14px;
    background: url(//cdn.myxypt.com/77789722/21/10/acaa726558e5e8c45efa2244def10b3cea9af4a6.png) no-repeat rgba(255, 255, 255, 0.1);
    background-position: 186px;
    cursor: pointer;
}

.lianjie {
    position: absolute;
    bottom: 44px;
    width: 100%;
    left: 0;
    display: none;
    padding: 20px 0;
}

.lianjie a {
    display: block;
    color: #fff;
    text-align: center;
    line-height: 18px;
}

.lianjie a:hover {
    color: #ab001a;
}

@media (max-width: 768px) {
    .foot-bg {
        padding-bottom: 15%;
    }

    .foot-bg .foot-index {
        display: block;
    }

    .foot-bg .foot-index .foot1 {
        width: 100%;
    }

    .foot-bg .foot-index .foot1 dl dt {
        font-size: 14px;
    }

    .foot-bg .foot-index .foot1 dl dd a {
        font-size: 12px;
        line-height: 24px;
    }

    .foot-bg .foot-index .lx h3 {
        font-size: 14px;
    }

    .foot-bg .foot-index .lx p {
        font-size: 12px;
        line-height: 24px;
    }

    .foot-bg .cop-bg .cop-index {
        display: block;
    }

    .foot-bg .cop-bg .cop-index .copl {
        font-size: 12px;
        text-align: center;
        line-height: 20px;
    }

    .foot-bg .cop-bg .cop-index .copl a {
        font-size: 12px;
    }
}

@media(max-width: 767px) {
    .foot-bg .foot-index .erq {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
    }
    .foot-bg .foot-index .foot1 {
        border: none;
    }
   
}

/*phone底部导航*/
li {
    list-style: none;
}

.q_d_m {
    float: left;
    width: 100%;
    height: 50px;
}

.pf_down {
    width: 100%;
    float: left;
    position: fixed;
    left: 0;
    bottom: 0;
    height: 50px;
    background: #191919;
    z-index: 999;
    border-top: 1px solid #fff;
}

.pf_down li {
    width: 33.333333%;
    float: left;
    text-align: center;
    padding: 7px 0 4px 0;
    border-right: 1px solid #fff;
}

.pf_down li .ico7 {
    width: 100%;
    float: left;
    height: 20px;
}

.pf_down li .d_name {
    width: 100%;
    float: left;
    margin-top: 4px;
    font-size: 12px;
    color: #fff;
    line-height: 14px;
}

.pf_down li.l1 .ico7 {
    background: url(//cdn.myxypt.com/77789722/21/10/44e51dd29c429e02f1a2b61a485ee3de990280d4.png) no-repeat center;
    background-size: 20px 20px;
}

.pf_down li.l2 .ico7 {
    background: url(//cdn.myxypt.com/77789722/21/10/51ec62d98c8d8cf89f73a705271b29b8d46229e3.png) no-repeat center;
    background-size: 20px 20px;
}

.pf_down li.l3 .ico7 {
    background: url(//cdn.myxypt.com/77789722/21/10/50b6d47a3d38369c0e3de91cfd07f20ea623eb58.png) no-repeat center;
    background-size: 20px 20px;
}

.pf_down li:nth-child(3n) {
    border: none;
}













/*友情链接*/

.f_link {
    width: 1200px;
    line-height: 30px;
    margin: 0 auto;
}

.f_link a {
    color: #666;
}

/*内页左侧样式*/


.container {
    width: 1200px !important;
    margin: 0 auto;
    padding: 0;
}


.page-product-inquiry a {
    color: #fff;
}









.scroll{
    position: fixed;
    width: 100%;
    left: 50%;
    margin-left: -50%;
    top:0px;
    z-index: 99999;
    background: #fff;
}