/*初始化样式*/
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,
navs,
section {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: #fff;
    color: #333;
    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:hover,
a:active,
a:focus {
    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 {
    font-size: 12px;
    font-weight: bold;
}

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

p {
    margin: 0;
}



/*----- 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;
}


/*滚动*/
#demo {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

#indemo {
    float: left;
    width: 800% !important;
}

#demo1 {
    float: left;
}

#demo2 {
    float: left;
}

#m_demo {
    overflow: hidden;
    width: 92%;
    margin: 0 auto;
}

#m_indemo {
    float: left;
    width: 800% !important;
}

#m_demo1 {
    float: left;
}

#m_demo2 {
    float: left;
}



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

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


.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.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}



.roll_product {
    float: left;
}


/*头部样式*/
.top1 {
    background: #e6e6e6;
    color: #595959;
    height: 27px;
    line-height: 27px;
    overflow: hidden;
    font-size: 14px;
}

.top1 a {
    color: #595959;
}


.page-wrap-right1 img {
    max-width: 100%;
    height: auto !important;
    width: auto !important;
}













/*内页左侧样式*/

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

/*----- Common css ------*/


@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@media (min-width: 1200px) {
    .active .lr_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInLeftBig;
        animation-name: fadeInLeftBig;
    }

    .active .rr_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInRightBig;
        animation-name: fadeInRightBig;
    }

    .active .up_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

    .active .down_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1s;
        animation-duration: 1s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
    }
}


/*头部样式*/
.max1440 {
    max-width: 1660px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.top-head {
    height: 90px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0);
}

.top-head .max1440 {
    position: static;

}


.logo11 {
    line-height: 90px;
    float: left;
    padding-right: 2%;
}

.logo11 img {
    max-width: 100%;
}

.top-head .ly {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 60px;
    top: 36px;
}




@media (max-width: 1199px) {
    .top-head .ly {
        display: none;
    }

    .top_tel {
        display: none;
    }

    .top-head .max1440 {
        padding-right: 15px;
    }

    .x-menu {
        width: 83%;
    }

    .x-menu li:nth-child(n+4) .xial {
        left: -18%;
    }

}


/*主体样式*/
.section {
    width: 100%;
    overflow: hidden;
}

@media (max-width: 991px) {
    body {
        padding-top: 0px !important;
    }

    .section1,
    .section2,
    .section3,
    .section4,
    .section5,
    .section6,
    .section7 {
        position: relative;
        width: 100%;
    }

    .fp-tableCell,
    .section,
    .x-banner,
    .x-banner .owl-carousel .banner-item img {
        display: block;
        height: auto !important;
    }
    .section{
        margin-top:-5px;
    }
}

@media (min-width: 992px) {
    /* .sec2-slick{
    margin-top: 100px;
  } */

}


/*第二屏*/
.sec2-slick .slick-con {
    position: relative;
}

.sec2-slick .slick-con .s2_img {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}

.sec2-slick .slick-con .s2_img img {
    width: 100%;
    height: 100vh;
    display: none;
}

.sec2-slick .slick-con .s2_img::before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
}

.sec2-slick .slick-con:hover .s2_img img {
    display: block;
}

.sec2-slick .slick-con:hover .s2_img::before {
    background: rgba(58, 108, 176, 0.9);
}

.sec2-slick .slick-con .s2_on {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 50px;
    text-align: center;
}

.sec2-slick .slick-con .s2_on .ximg img {
    max-width: 100%;
    margin: 0 auto;
}

.sec2-slick .slick-con .s2_on h3 {
    font-size: 1.7vw;
    color: #fff;
    font-weight: bold;
    margin-top: 2vw;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec2-slick .slick-con .s2_on h4 {
    font-size: 0.8vw;
    color: #fff;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 15px;
    text-transform: uppercase;
}

.sec2-slick .slick-con .s2_on .info {
    max-width: 350px;
    margin: 2.5vw auto 3vw;
    text-align: left;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 2;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.sec2-slick .slick-con .s2_on a {
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 142px;
    padding: 25px 15px 0;
    text-align: center;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 2;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/fc314d111df2809b6fac98a518bc9c84d2c334a4.png) no-repeat center;
}

.sec2-slick .slick-con .s2_on a::after {
    position: absolute;
    z-index: -1;
    background: #fff;
    width: 50px;
    height: 0px;
    background: #fff;
    left: 0px;
    top: 0px;
    content: "";
    transition: all .3s;
}


.sec2-slick .slick-con:hover .s2_on a::after {
    height: 110px
}

.sec2-slick .slick-con:hover .s2_on a {
    color: #1e57a5
}



@media (max-width: 1440px) {
    .sec2-slick .slick-con .s2_on .ximg img {
        max-width: 120px;
    }

}

@media (max-width: 1199px) {
    .sec2-slick .slick-con .s2_on .ximg img {
        max-width: 100px;
    }

    .sec2-slick .slick-con .s2_on a {
        width: 100px;
        height: 32px;
        line-height: 30px;
        background: none;
        border: 1px solid #fff;
        padding: 0;
        font-size: 14px;
    }

}

@media (max-width: 991px) {
    .sec2-slick .slick-con .s2_img img {
        height: auto;
    }

    .sec2-slick .slick-con .s2_on {
        margin-top: 0;
    }

    .sec2-slick .slick-con .s2_on .ximg img {
        max-width: 80px;
    }

    .sec2-slick .slick-con .s2_on h3 {
        font-size: 14px;
        margin-top: 15px;
    }

    .sec2-slick .slick-con .s2_on h4 {
        font-size: 15px;
        margin-top: 10px;
    }

    .sec2-slick .slick-con .s2_on .info {
        margin: 20px auto;
        line-height: 1.8;
        font-size: 13px;
    }

}


/*第三屏*/
/* .section3 {
    background: url({{ app('section').id(44738).content.img }}) no-repeat center;
    background-size: cover;
} */
.sec3-con {
    max-width: 1230px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 60px;
}

.sec3-con .sec3-tlt {
    text-align: center;
}

.sec3-con .sec3-tlt h3 {
    font-size: 16px;
    color: #2357b7;
    letter-spacing: 6px;
}

.sec3-con .sec3-tlt h4 {
    font-size: 48px;
    font-weight: bold;
    color: #2357b7;
    text-transform: uppercase;
    line-height: 1.4;
}

.sec3-con .sec3-tlt h5 {
    font-size: 18px;
    color: #4b4b4b;
}

.sec3-con .sec3-tlt2 {
    margin: 20px auto;
    text-align: center;
}

.sec3-con .sec3-tlt2 p img {
    max-width: 100%;
}

.sec3-con .sec3-tlt2 h3 {
    font-size: 48px;
    font-weight: 500;
    color: #2357b7;
    margin-top: 20px;
}

.sec3-con .jj {
    font-size: 14px;
    line-height: 2;
    color: #4b4b4b;

    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.sec3-con .shuzi {
    padding: 2vw 0;
    display: flex;
}

.sec3-con .shuzi li {
    flex-grow: 1;
    text-align: center;
}

.sec3-con .shuzi li h3 {
    font-size: 16px;
    color: #666666;
}

.sec3-con .shuzi li h3 span {
    font-size: 60px;
    font-family: Impact;
    color: #1e57a5;
}

.sec3-con .shuzi li h4 {
    font-size: 20px;
    color: #666666;
    margin-top: 10px;
}

.sec3-con .abicon {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
}

.sec3-con .abicon li {
    flex-grow: 1;
    text-align: center;
}

.sec3-con .abicon li a {
    display: block;
}

.sec3-con .abicon li a .img {
    transition: .5s;
}

.sec3-con .abicon li a img {
    max-width: 100%;
}

.sec3-con .abicon li a h3 {
    font-size: 16px;
    color: #4b4b4b;
    margin-top: 15px;
}

.sec3-con .abicon li a:hover img {
    filter: invert(39%) sepia(28%) saturate(2162%) hue-rotate(189deg) brightness(78%) contrast(107%);
}

.sec3-con .abicon li a:hover h3 {
    color: #1e57a5;
}

.sec3-con .abicon li a:hover .img {
    transform: rotateY(180deg);
}

@media (max-width: 1600px) {
    .sec3-con .sec3-tlt h4 {
        font-size: 40px;
    }

    .sec3-con .sec3-tlt h5 {
        font-size: 16px;
    }

    .sec3-con .sec3-tlt2 h3 {
        font-size: 24px;
    }

    .sec3-con .jj {
        -webkit-line-clamp: 4;
    }

    .sec3-con .shuzi li h3 {
        font-size: 14px;
    }

    .sec3-con .shuzi li h3 span {
        font-size: 50px;
    }

    .sec3-con .shuzi li h4 {
        font-size: 16px;
        margin-top: 10px;
    }
}

@media (max-width: 1440px) {
    .sec3-con .sec3-tlt2 p img {
        display: none;
    }

    .sec3-con .sec3-tlt h4 {
        font-size: 32px;
    }

    .sec3-con .shuzi li h3 span {
        font-size: 42px;
    }

}

@media (max-width: 991px) {
    .section3 {
        padding-bottom: 50px;
    }

    .sec3-con .sec3-tlt h4 {
        font-size: 28px;
    }

    .sec3-con .sec3-tlt h5 {
        font-size: 14px;
    }

    .sec3-con .sec3-tlt2 h3 {
        font-size: 20px;
    }

    .sec3-con .shuzi {
        padding: 30px 0;
    }

    .sec3-con .shuzi li h3 span {
        font-size: 36px;
    }

}

@media (max-width: 767px) {
    .sec3-con .shuzi {
        flex-wrap: wrap;
    }

    .sec3-con .shuzi li {
        width: 50%;
        margin-bottom: 20px;
    }

    .sec3-con .shuzi li h3 {
        font-size: 14px;
    }

    .sec3-con .shuzi li h3 span {
        font-size: 32px;
    }

    .sec3-con .shuzi li h4 {
        font-size: 15px;
    }

    .sec3-con .abicon li a img {
        max-width: 45px;
    }

    .sec3-con .abicon li a h3 {
        font-size: 14px;
        margin-top: 5px;
    }

    .sec3-con .jj {
        height: 116px;
        overflow: hidden;
    }

}


/*第四屏*/
/* .section4 {
    background: url({{ app('section').id(51682).content.img}}) no-repeat center;
    background-size: cover;
} */
.sec4-con {
    max-width: 1360px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    margin-top: 80px;
}

.sec4-con .sec4-1 {
    width: 40%;
    float: left;
}

.sec4-con .sec4-1 .sec4-tlt h3 {
    font-size: 18px;
    color: #999999;
}

.sec4-con .sec4-1 .sec4-tlt h3 span {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    margin-right: 10px;
}

.sec4-con .sec4-1 .sec4-tlt p {
    font-size: 16px;
    color: #666666;
    margin-top: 5px;
}

.sec4-con .sec4-1 ul {
    margin-top: 3vw;
    padding-top: 50px;
    position: relative;
    padding-left: 15px;
}

.sec4-con .sec4-1 ul li a {
    display: block;
    padding: 20px 0;
    position: relative;
    padding-left: 110px;
    border-left: 1px solid #ddd;
}

.sec4-con .sec4-1 ul li .xicon {
    position: absolute;
    left: 0;
    top: 0;
    display: none;
}

.sec4-con .sec4-1 ul li .xicon img {
    width: 30px;
    height: 30px;
}

.sec4-con .sec4-1 ul li dt {
    font-size: 32px;
    color: #333333;
    font-weight: bold;
    position: absolute;
    top: 12px;
    left: 22px;
    line-height: 1;
}

.sec4-con .sec4-1 ul li a h3 {
    font-size: 1.2vw;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    z-index: 11;
}

.sec4-con .sec4-1 ul li a h4 {
    font-size: 1.5vw;
    color: #d1d1d1;
    opacity: 0;
    font-weight: bold;
    margin-top: -30px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec4-con .sec4-1 ul li .info {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-top: 15px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: none;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.sec4-con .sec4-1 ul li.cur .xicon {
    display: block;
}

.sec4-con .sec4-1 ul li.cur a {
    border-color: #1e57a5;
}

.sec4-con .sec4-1 ul li.cur a h3 {
    font-weight: bold;
    color: #1e57a5;
}

.sec4-con .sec4-1 ul li.cur a dt {
    color: #1e57a5;
}

.sec4-con .sec4-1 ul li.cur a h4 {
    opacity: 1;
}

.sec4-con .sec4-1 ul li.cur a .info {
    display: -webkit-box;
}

.sec4-con .sec4-2 {
    width: 70%;
    margin-left: -10%;
    float: right;
}

.sec4-con .sec4-2 .sec4-2-tab {
    display: none;
}

.sec4-con .sec4-2 .sec4-2-tab ul {
    text-align: right;
    margin-bottom: 2vw;
}

.sec4-con .sec4-2 .sec4-2-tab ul li {
    display: inline-block;
    margin-left: 24px;
}

.sec4-con .sec4-2 .sec4-2-tab ul li a {
    display: block;
    border: 2px solid #eeeeee;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
    background-color: #333;
    line-height: 2;
}

.sec4-con .sec4-2 .sec4-2-tab ul li a:hover {
    background: #1e57a5;
    color: #fff;
    border-color: #1e57a5;
}

.sec4-con .sec4-2 .sec4-2-tab .sec4-2-tab-tu {
    text-align: right;
    overflow: hidden;
}

.sec4-con .sec4-2 .sec4-2-tab .sec4-2-tab-tu img {
    max-width: 100%;
}

@media (max-width: 1440px) {
    .sec4-con {
        max-width: 1230px;
    }

}

@media (max-width: 1199px) {
    .sec4-con .sec4-1 .sec4-tlt h3 {
        font-size: 16px;
    }

    .sec4-con .sec4-1 .sec4-tlt h3 span {
        font-size: 24px;
    }

    .sec4-con .sec4-1 .sec4-tlt p {
        font-size: 14px;
    }

    .sec4-con .sec4-2 .sec4-2-tab ul li a {
        font-size: 14px;
    }

    .sec4-con .sec4-1 ul li dt {
        font-size: 28px;
    }

    .sec4-con .sec4-1 ul li a {
        padding-left: 100px;
    }

}

@media (max-width: 991px) {
    .section4 {
        padding: 50px 0;
    }

    .sec4-con {
        margin-top: 0;
    }

    .sec4-con .sec4-1 {
        width: 100%;
        float: none;
    }

    .sec4-con .sec4-1 ul li a {
        padding-left: 60px;
    }

    .sec4-con .sec4-1 ul li dt {
        font-size: 24px;
        top: 20px;
    }

    .sec4-con .sec4-1 ul li a h3 {
        font-size: 16px;
    }

    .sec4-con .sec4-1 ul li a h4 {
        font-size: 14px;
        margin-top: -20px;
    }

    .sec4-con .sec4-2 {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }

}

@media (max-width: 767px) {
    .sec4-con .sec4-2 .sec4-2-tab ul li {
        margin-left: 10px;
        margin-bottom: 15px;
    }

    .sec4-con .sec4-2 .sec4-2-tab ul li a {
        padding: 0 10px;
    }

}


/*第五屏*/
.section5 {}

.sec5-con {
    max-width: 1690px;
    margin-top: 0px;
}

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

.sec5-con .sec5-1 .sec5-tlt h3 {
    font-size: 60px;
    font-weight: bold;
    color: rgba(51, 51, 51, 0.11);
    text-transform: uppercase;
}

.sec5-con .sec5-1 .sec5-tlt h4 {
    font-size: 30px;
    color: #333333;
    font-weight: bold;
    margin-top: -35px;
}

.sec5-con .sec5-1 .sec5-tlt p {
    font-size: 12px;
    text-transform: uppercase;
    color: rgba(51, 51, 51, 0.59);
    padding-left: 24px;
    line-height: 24px;
    /* background: url(//cdn.myxypt.com/2570610c/22/08/b631f879a7251c77085f6a5cf1bd138d249f120e.png) no-repeat left center; */
    margin-top: 5px;
}

.sec5-con .sec5-1 ul li {
    display: inline-block;
    padding: 0 20px;
    /* background: url(//cdn.myxypt.com/2570610c/22/08/ad23917173205b463e344660dd694f1b4b125a12.png) no-repeat right center; */
    line-height: 30px;
}

.sec5-con .sec5-1 ul li a {
    display: block;
    font-size: 18px;
    color: #333333;
}

.sec5-con .sec5-1 ul li:last-child {
    padding-right: 0;
    background: none;
}

.sec5-con .sec5-1 ul li.cur a {
    color: #c01202;
}

.sec5-con .sec5-2 {
    margin-top: 30px;
}

.sec5-con .sec5-2 ul {
    display: none;
    margin-left: -1%;
    margin-right: -1%;
}

.sec5-con .sec5-2 ul li {
    width: 23%;
    margin: 0 1%;
    float: left;
}

.sec5-con .sec5-2 ul li a {
    display: block;
}

.sec5-con .sec5-2 ul li .img {
    overflow: hidden;
    border-radius: 8px;
}

.sec5-con .sec5-2 ul li .img img {
    width: 100%;
    transition: .5s;
}

.sec5-con .sec5-2 ul li a:hover .img img {
    transform: scale(1.1);
}

.sec5-con .sec5-2 ul li h3 {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec5-con .sec5-2 ul li h3 span {
    display: inline-block;
    padding-left: 25px;
    /* background: url(//cdn.myxypt.com/2570610c/22/08/b631f879a7251c77085f6a5cf1bd138d249f120e.png) no-repeat left center; */
    font-size: 18px;
    color: #2b2b2b;
    line-height: 52px;
}

.sec5-con .sec5-2 ul li a:hover h3 span {
    color: #1e57a5;
}

@media (max-width: 1440px) {
    .sec5-con {
        padding: 0 10%;
        margin-top: 60px;
    }

    .sec5-con .sec5-1 .sec5-tlt h3 {
        font-size: 50px;
    }

    .sec5-con .sec5-1 .sec5-tlt h4 {
        font-size: 24px;
        margin-top: -25px;
    }

    .sec5-con .sec5-1 ul li a {
        font-size: 16px;
    }

    .sec5-con .sec5-2 ul li h3 span {
        font-size: 16px;
    }

    .sec5-con .sec5-2 {
        margin-top: 20px;
    }

}

@media (max-width: 991px) {
    .sec5-con {
        padding: 0 15px;
    }

    .sec5-con .sec5-1 .sec5-tlt h3 {
        font-size: 40px;
    }

    .sec5-con .sec5-1 ul li {
        padding: 0 10px;
    }

    .sec5-con .sec5-1 ul li a {
        font-size: 14px;
    }

    .sec5-con .sec5-2 ul li h3 span {
        font-size: 14px;
    }

}

@media (max-width: 767px) {
    .sec5-con .sec5-1 {
        display: block;
    }

    .sec5-con .sec5-1 ul {
        margin-top: 15px;
    }

    .sec5-con .sec5-2 {
        margin-top: 20px;
    }

    .sec5-con .sec5-2 ul li {
        width: 48%;
    }

}


/* 核心优势 */
.sec5-con .sec3-tlt h3 {
    color: #fff;
}

.sec5-con .sec3-tlt h4 {
    color: #fff;
}

.sec5-con .sec3-tlt h5 {
    color: #fff;
}

.sec5-con .sec3-tlt2 h3 {
    color: #fff;
}

.yscon {
    margin-top: 2.6vw;
}

.yslist li {
    background: #fff;
    border-radius: 24px;
    width: 23%;
    text-align: center;
    position: relative
}

.yslist li .img2 img{
    width: 100%;
    border-radius: 24px;
    opacity: 0;
}

.yslist li a{
    padding: 3.65vw 1.5625vw;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.yslist li .img1 {
    margin-bottom: 1.3vw;
    text-align: center;
}

.yslist li .img1 img {
    max-width: 100%;
    margin: 0 auto;
}

.yslist li .img1 img.im2 {
    display: none;
}

.yslist li .wza {
    color: #5b5b5b;
    font-size: 22px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yslist li .wzb {
    color: #989898;
    font-size: 14px;
    font-family: "Arial";
    text-transform: uppercase;
    margin-top: 0.8vw;
    margin-bottom: 0.8vw;
}

.yslist li .wzx1 {
    height: 36px;
}

.yslist li .wzx {
    width: 36px;
    height: 2px;
    background: #0068b7;
    margin: 1.5vw auto;
}

.yslist li .wzc {
    font-size: 14px;
    color: #737373;
    padding: 10px 15px;
    display: inline-block;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-top: 2.6vw;
}

.yslist li:hover {
    
}

.yslist li:hover a{
     background: rgba(0,104,183,.5);
}

.yslist li:hover .img2 img{
    opacity: 1;
}

.yslist li:hover .img1 img.im1 {
    display: none;
}

.yslist li:hover .img1 img.im2 {
    display: block;
}

.yslist li:hover .wza {
    color: #fff;
}

.yslist li:hover .wzb {
    color: #fff;
}

.yslist li:hover .wzx {
    background: #fff;
    width: 2px;
    height: 36px;
}

.yslist li:hover .wzc {
    color: #fff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

@media(max-width:767px) {
    .yslist li {
        width: 48%;
        margin-bottom: 4%;
        
    }
    
    .yslist li a{
        padding: 30px 10px;
    }

    .yslist li .img1 img {
        max-width: 30px;
        width: 100%;
    }

    .yslist li .wza {
        font-size: 18px;
    }

    .yslist li .wzc {
        margin-top: 5px;
    }
}

/*第六屏*/
.sec6-con {
    max-width: 1230px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
    margin-top: 90px;
}

.sec6-con .sec6-1 {
    width: 31.25%;
    float: left;
}

.sec6-con .sec6-tlt {
    margin-bottom: 3vw;
    font-size: 14px;
    color: #4d4d4d;
    text-transform: uppercase;
}

.sec6-con .sec6-tlt span {
    font-size: 30px;
    font-weight: bold;
    color: #2357b7;
    margin-right: 15px;
}

.sec6-con .sec6-tlt a {
    font-size: 14px;
    color: #858585;
    float: right;
    line-height: 2;
    display: block;
    margin-top: 5px;
}

.sec6-con .sec6-1 ul li a {
    display: block;
}

.sec6-con .sec6-1 ul li h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec6-con .sec6-1 ul li a:hover h3 {
    color: #2357b7;
}

.sec6-con .sec6-1 ul li .info {
    font-size: 13px;
    color: #333333;
    line-height: 1.8;
    margin: 1.5vw auto;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.sec6-con .sec6-1 ul li .img {
    overflow: hidden;
    margin-top: 30px;
}

.sec6-con .sec6-1 ul li .img img {
    width: 100%;
    transition: .5s;
}

.sec6-con .sec6-1 ul li .img:hover img {
    transform: scale(1.1);
}

.sec6-con .sec6-1 ul li .ckxq dd {
    /* background: url(//cdn.myxypt.com/2570610c/22/08/f94b1267cee9c3dee27568af6bb67ca383fd7619.png) center no-repeat; */
    display: inline-block;
    width: 105px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    position: relative;
    border-radius: 0;
    color: #333;
}

.sec6-con .sec6-1 ul li .ckxq dd:after {
    content: "";
    position: absolute;
    /* background: url(//cdn.myxypt.com/2570610c/22/08/08eb5d62ed84be85c721acd4f10dd90a5df1f69e.png) center no-repeat; */
    width: 28px;
    height: 9px;
    top: 50%;
    margin-top: -4.5px;
    right: -17px;
    -moz-transition: all 0.36s ease-in-out;
    -webkit-transition: all 0.36s ease-in-out;
    -o-transition: all 0.36s ease-in-out;
    -ms-transition: all 0.36s ease-in-out;
    transition: all 0.36s ease-in-out;
}

.sec6-con .sec6-1 ul li .ckxq dd:hover {
    background: #1e57a5;
    color: #fff;
}

.sec6-con .sec6-1 ul li .ckxq dd:hover:after {
    right: -50px;
    opacity: 0;
}

.sec6-con .sec6-2 {
    width: 31.25%;
    margin: 0 3.125%;
    float: left;
}

.sec6-con .sec6-2 .sec6-2-box {
    border: 1px solid #bfbfbf;
    padding: 27px 27px 10px;
    position: relative;
}

.sec6-con .sec6-2 .sec6-2-box::before {
    content: '';
    width: 72px;
    height: 2px;
    background: #2357b7;
    position: absolute;
    left: 0;
    top: 0;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li a {
    display: block;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li .img {
    overflow: hidden;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li .img img {
    width: 100%;
    transition: .5s;
    max-height: 197px;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li .img:hover img {
    transform: scale(1.1);
}

.sec6-con .sec6-2 .sec6-2-box .list1 li h3 {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-top: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li a:hover h3 {
    color: #2357b7;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li .date {
    font-size: 20px;
    font-family: Impact;
    color: #333;
    margin-top: 15px;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li .info {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 10px auto;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sec6-con .sec6-2 .sec6-2-box .list1 li dd {
    font-size: 12px;
    color: #2357b7;
    text-decoration: underline;
}

.sec6-con .sec6-2 .sec6-2-box .list2 {
    margin-top: 10px;
}

.sec6-con .sec6-2 .sec6-2-box .list2 li a {
    display: block;
    padding: 6px 90px 6px 8px;
    position: relative;
    /* background: url(//cdn.myxypt.com/2570610c/22/08/6c292b338102e215c11c1c150e144d5b92b2d07d.png) no-repeat left center; */
}

.sec6-con .sec6-2 .sec6-2-box .list2 li a h3 {
    font-size: 13px;
    color: #626262;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sec6-con .sec6-2 .sec6-2-box .list2 li a span {
    font-size: 13px;
    color: #626262;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sec6-con .sec6-2 .sec6-2-box .list2 li a:hover h3 {
    color: #1e57a5;
}

.sec6-con .sec6-2 .sec6-2-box .list2 li a:hover span {
    color: #1e57a5;
}


@media (max-width: 1440px) {
    .sec6-con {
        max-width: 1030px;
    }

    .sec6-con .sec6-tlt span {
        font-size: 24px;
    }

    .sec6-con .sec6-tlt {
        font-size: 12px;
    }

    .sec6-con .sec6-1 ul li h3 {
        font-size: 16px;
    }

    .sec6-con .sec6-2 .sec6-2-box .list1 li h3 {
        font-size: 16px;
        margin-top: 10px;
    }

    .sec6-con .sec6-2 .sec6-2-box .list1 li .date {
        font-size: 18px;
        margin-top: 10px;
    }

}

@media (max-width: 991px) {
    .section6 {
        padding: 50px 0;
    }

    .sec6-con {
        margin-top: 0;
    }

    .sec6-con .sec6-tlt span {
        font-size: 20px;
        margin-right: 10px;
    }

    .sec6-con .sec6-1 ul li h3 {
        font-size: 15px;
    }

    .sec6-con .sec6-2 .sec6-2-box .list1 li h3 {
        font-size: 15px;
    }

}

@media (max-width: 767px) {
    .sec6-con .sec6-1 {
        width: 100%;
        float: none;
    }

    .sec6-con .sec6-2 {
        width: 100%;
        float: none;
        margin: 30px 0;
    }

}


/*第七屏*/
.sec7-con {
    max-width: 1660px;
    padding: 15px;
    margin: 0 auto;
    margin-top: 80px;
    position: relative;
}

.sec7-con .sec7-1 {
    text-align: center;
    position: relative;
    padding-bottom: 3vw;
}

.sec7-con .sec7-1 .sec7-tlt {
    display: inline-block;
    text-align: center;
}

.sec7-con .sec7-1 .sec7-tlt h3 {
    font-size: 16px;
    color: #1e57a5;
    letter-spacing: 5px;
}

.sec7-con .sec7-1 .sec7-tlt h4 {
    font-size: 48px;
    color: #1e57a5;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

.sec7-con .sec7-1 .sec7-tlt h4 span {
    font-size: 16px;
    color: #444444;
    text-transform: uppercase;
    margin-right: 5px;
    display: block;
    font-weight: 400;
    margin-top: 10px;
}

.sec7-con .sec7-1 .sec7-tlt h5 {
    color: #1e57a5;
    font-size: 35px;
    font-weight: 400;
    margin-top: 10px;
}


.sec7-con .sec7-1 .sec7-tlt::before {
    content: '';
    width: 62%;
    height: 1px;
    background: #ddd;
    position: absolute;
    left: -20%;
    bottom: 71px;
}

.sec7-con .sec7-1 .sec7-tlt::after {
    content: '';
    width: 62%;
    height: 1px;
    background: #ddd;
    position: absolute;
    right: -20%;
    bottom: 71px;
}

.sec7-con .sec7-2 {
    margin-top: 20px;
}

.sec7-con .sec7-2 .sec7-2-left {
    width: calc(95% - 445px);
    float: left;
    margin-top: 20px;
}

.sec7-con .sec7-2 .sec7-2-left .fnav {
    display: flex;
    justify-content: space-between;
}

.sec7-con .sec7-2 .sec7-2-left .fnav>li>a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 2;
    margin-bottom: 10px;
}

.sec7-con .sec7-2 .sec7-2-left .fnav .x-nav-menu dd {
    font-size: 14px;
    line-height: 2;
}

.sec7-con .sec7-2 .sec7-2-left .fnav .x-nav-menu dd a {
    color: #666;
}

.sec7-con .sec7-2 .sec7-2-left .fnav .x-nav-menu dd a:hover {
    color: #1e57a5;
}

.sec7-con .sec7-2 .sec7-2-left .sec7-add {
    margin-top: 5vw;
}

.sec7-con .sec7-2 .sec7-2-left .sec7-add h3 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0068b7;
}

.sec7-con .sec7-2 .sec7-2-left .sec7-add h4 {
    font-size: 16px;
    color: #555555;
}

.sec7-con .sec7-2 .sec7-2-left .sec7-add h4 a {
    font-size: 16px;
    color: #1e57a5;
    display: inline-block;
    padding-left: 25px;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/a9372a106c0494e8caa8aeb13a85bddee4cdebfd.png) no-repeat left center;
    margin-left: 15px;
    line-height: 25px;
}


.wwmm {
    width: 265px;
    margin-top: 2vw;
    margin-left: 3.5vw;
}

.wwmm img {
    max-width: 100%;
    margin-bottom: 10px;
}

.wwmm p {
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #666666;
    text-align: center;
}




.sec7-con .sec7-2 .sec7-2-right {
    width: 445px;
    float: right;
}

.sec7-con .sec7-2 .sec7-2-right .box {
    position: relative;
    width: 445px;
    height: 445px;
}

.sec7-con .sec7-2 .sec7-2-right .box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/16b604068e04f35b6b313c1722f0d5f945aafe56.png) center no-repeat;
    width: 445px;
    height: 445px;
    z-index: 0;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation: play 25s linear infinite;
    -moz-animation: play 25s linear infinite;
    animation: play 25s linear infinite;
}

.xtable {
    display: table;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    height: 100%;
}

.xtable_cell {
    display: table-cell;
    vertical-align: middle;
}

.sec7-con .sec7-2 .sec7-2-right .box .con {
    display: inline-block;
    width: 321px;
    height: 321px;
    width: 360px;
    height: 360px;
    background: #fff;
    position: relative;
    border-radius: 100%;
    padding: 0 49px;
}

.sec7-con .sec7-2 .sec7-2-right .box .con .icon {
    display: inline-block;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/c8b42c8fc1f98bb83ff37b1881e29ede94d5db65.png) center no-repeat;
    width: 226px;
    height: 221px;
    margin: 12px 0 0;
    padding: 90px 0 0;
}

.sec7-con .sec7-2 .sec7-2-right .box .con .icon h5 {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    margin-top: 7px;
}

.sec7-con .sec7-2 .sec7-2-right .box .con .con_b {
    text-align: center;
    margin-top: -8px;
}

.sec7-con .sec7-2 .sec7-2-right .box .con .con_b h5 {
    font-size: 14px;
    color: #333333;
}

.sec7-con .sec7-2 .sec7-2-right .box .con .con_b h4 {
    font-size: 22px;
    color: #1e57a5;
    font-weight: bold;
    margin-top: 5px;
}

.sec7-con .sec7-2 .sec7-2-right .box .con {
    width: 290px;
    height: 290px;
    padding: 0 35px;
}

@-webkit-keyframes play {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes play {
    0% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(360deg);
    }
}

@keyframes play {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);

    }
}


@media (max-width: 1600px) {
    .sec7-con .sec7-2 .sec7-2-left {
        width: calc(96% - 360px);
    }

    .sec7-con .sec7-2 .sec7-2-right {
        width: 360px;
    }

    .sec7-con .sec7-2 .sec7-2-right .box {
        width: 360px;
        height: 360px;
    }

    .sec7-con .sec7-2 .sec7-2-right .box:before {
        width: 360px;
        height: 360px;
        background-size: 100% 100%;
    }

    .sec7-con .sec7-2 .sec7-2-right .box .con .icon {
        width: 190px;
        height: 190px;
        padding-top: 75px;
    }

    .sec7-con .sec7-2 .sec7-2-left .fnav>li>a {
        font-size: 16px;
    }

    .sec7-con .sec7-2 .sec7-2-left .fnav .x-nav-menu dd {
        font-size: 13px;
    }

    .sec7-con .sec7-2 .sec7-2-right .box .con .con_b {
        margin-top: 10px;
    }

    .sec7-con .sec7-2 .sec7-2-right .box .con .con_b h4 {
        font-size: 18px;
    }

}

@media (max-width: 1440px) {
    .sec7-con {
        padding: 0 5%;
    }

    .sec7-con .sec7-1 .sec7-tlt h4 span {
        font-size: 30px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h3 {
        font-size: 20px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h4 {
        font-size: 14px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h4 a {
        font-size: 14px;
    }

}

@media (max-width: 991px) {
    .section7 {
        padding: 50px 0;
    }

    .sec7-con {
        margin-top: 0;
        padding: 0 15px;
    }

    .sec7-con .sec7-1 .sec7-tlt {
        /*padding-left: 60px;*/
        background-size: 50px 48px;
    }

    .sec7-con .sec7-1 .sec7-tlt h3 {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .sec7-con .sec7-1 .sec7-tlt h4 {
        font-size: 16px;
    }

    .sec7-con .sec7-1 .sec7-tlt h4 span {
        font-size: 24px;
    }

    .sec7-con .sec7-2 .sec7-2-left {
        width: 100%;
        float: none;
    }

    .sec7-con .sec7-2 .sec7-2-right {
        float: none;
        margin-top: 30px;
    }

}

@media (max-width: 767px) {
    .sec7-con .sec7-2 .sec7-2-left .fnav {
        flex-wrap: wrap;
        display: none;
    }

    .sec7-con .sec7-2 .sec7-2-left .fnav li {
        margin-bottom: 15px;
    }

    .sec7-con .sec7-2 .sec7-2-left .fnav .x-nav-menu dd {
        font-size: 12px;
    }


    .sec7-con .sec7-2 .sec7-2-left .sec7-add {
        float: none;
        width: 100%;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h3 {
        font-size: 16px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h4 {
        font-size: 13px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add h4 a {
        display: block;
        margin-left: 0;
        margin-top: 10px;
    }

    .sec7-con .sec7-2 .sec7-2-right .box:before {
        width: 200px;
        height: 200px;
        display: none;
    }

    .wwmm {
        margin-left: 0;
        float: none;
        width: 100%;
    }

}

.section8 {
    background: #fff;
}

.sec8-con {
    max-width: 1660px;
    padding: 15px;
    margin: 0 auto;
}

.copyr {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
}

.copyr a {
    color: #666666;
}





.w1420 {
    max-width: 1450px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.n_nav_box {
    position: relative;
    line-height: 60px;
    z-index: 2;
    background: #f8f9fb;
    margin-bottom: 0rem;
}

.ny {
    /*display: flex;*/
    /*justify-content: space-between;*/
    /*align-items: center;*/
}

.n_nav {
    float: left;
}

.n_position {
    float: right;
}

/* .xypg-left-nav {
    margin: 0;
    font-size: 0;
}

.xypg-left-nav>li {
    border: none;
    display: inline-block;
    vertical-align: middle;
}

.xypg-left-nav>li>a {
    position: relative;

}

.xypg-left-nav>li>a:before {
    content: "";
    width: 0;
    height: 1px;
    display: block;
    background: #c01202;
    position: absolute;
    bottom: 0px;
    left: 50%;
    margin-left: -4rem;
    transition: .5s;
}

.xypg-left-nav>li:hover>a::before {
    width: 8rem;
}

.xypg-left-nav>li.clicked>a::before {
    width: 8rem;
}

.xypg-left-nav>li .first-nav-btn {
    display: none;
}

.xypg-left-nav>li .xypg-left-subnav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
}

.xypg-left-nav>li:hover .xypg-left-subnav {
    display: block;
} */

.n_position {
    text-align: right;
    font-size: 13px;
    color: #6a6a6a;
}

.n_position a {
    font-size: 13px;
    color: #7b7b7b;
    position: relative;
    line-height: 44px;
}

.page-wrap-right1 {
    width: 100%;
    padding-top: 3.11111%;
}

#n_news {
    /*background: #fff;*/
    width: 100%;
    overflow: hidden;
    position: relative;
}

#n_news .s_tt {
    text-align: center;
    margin-bottom: 3.2rem;
}

#n_news .s_tt span {
    font-size: 1.625rem;
    color: #3c3c3c;
    font-family: arial;
    text-transform: uppercase;
}

#n_news .s_tt h3 {
    font-size: 1.125rem;
    color: #3c3c3c;
}

#n_news .container {
    padding-top: 0;
}

#n_news ul {
    margin-top: -3rem;
    display: flex;
    flex-wrap: wrap;
}



#n_news li {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-top: 1px solid #e6e6e6;
}

#n_news li a {
    display: block;
    max-width: 480px;
    margin: 0 auto;
}

#n_news li .img {
    margin-top: 1.5625rem;
    overflow: hidden;
}

#n_news li .img img {
    transition: 1s;
    width: 100% !important;
}

#n_news li .img:hover img {
    transform: scale(1.1);
}

#n_news li span {
    font-size: 13px;
    color: #b2b2b4;
}

#n_news li h5 {
    text-align: left;
    font-size: 1rem;
    color: #222225;
    margin-top: 1.1rem;
    margin-bottom: 1.175rem;
    line-height: 1.4;
    height: 1.4rem;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#n_news li i {
    display: block;
    width: 15px;
    height: 3px;
    background: #828286;
    transition: .3s;
}

#n_news li:hover i {
    width: 55px;
    background: #c01202;
}

#n_news li p {
    font-size: 14px;
    color: #868686;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    margin-top: 1.125rem;
    margin-bottom: 1.5625rem;
}

#n_news li .more {
    font-size: 14px;
    color: #868686;
    font-family: arial;
    transition: .3s;
}

#n_news li .more:hover {
    color: #076c88;
}

li.am-pagination-select select {
    padding: 0;
}

@media(max-width: 767px) {
    .n_case .fl01 ul li {
        width: 50%;
    }
}



/*页面底部*/
.footbg {
    background: url(//cdn.myxypt.com/2d77efc7/24/11/9c234dd56e4bcca5bb04f2296707a2cd2847a58a.jpg) no-repeat center;
    background-size: cover;
}

.foot1 {
    padding: 6vw 0;
}

.foot1 .ff1 {
    width: calc(90% - 380px);
    float: left;
}

.foot1 .ff1 .fnav {
    display: flex;
    justify-content: space-between;
}

.foot1 .ff1 .fnav>li>a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    line-height: 2;
    margin-bottom: 10px;
}

.foot1 .ff1 .fnav .x-nav-menu dd {
    font-size: 14px;
    line-height: 2;
}

.foot1 .ff1 .fnav .x-nav-menu dd a {
    color: #666;
}

.foot1 .ff1 .fnav .x-nav-menu dd a:hover {
    color: #1e57a5;
}

.foot1 .ff2 {
    width: 380px;
    float: right;
}

.foot1 .ff2 .fewm {
    display: flex;
    align-items: flex-end;
}

.foot1 .ff2 .fewm dd {
    width: 90px;
    padding-right: 10px;
}

.foot1 .ff2 .fewm dd img {
    max-width: 100%;
}

.foot1 .ff2 .fewm dl span {
    display: block;
    font-size: 18px;
    color: #000;
}

.foot1 .ff2 .fewm dl em {
    font-size: 14px;
    color: #000000;
    font-style: normal;
}

.foot1 .ff2 .lxfs {
    margin-top: 20px;
}

.foot1 .ff2 .lxfs li {
    display: inline-block;
    padding-left: 25px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    font-size: 14px;
    color: #000000;
    line-height: 2;
}

.foot1 .ff2 .lxfs li:nth-child(2) {
    /* margin-left: 20px; */
}

.foot2 {
    border-top: 1px solid #dedede;
    padding: 20px 0;
    font-size: 14px;
    color: #999999;
    line-height: 2;
    text-align: center;
}

.foot2 img {
    margin-top: -3px;
}

.foot2 a {
    color: #999;
}

@media(max-width: 1440px) {
    .foot1 .ff1 .fnav>li>a {
        font-size: 16px;
    }

    .foot1 .ff1 .fnav .x-nav-menu dd {
        font-size: 13px;
    }

}

@media(max-width: 1199px) {
    .foot1 .ff1 {
        width: calc(95% - 300px);
    }

    .foot1 .ff2 {
        width: 300px;
    }

    .foot1 .ff2 .lxfs li {
        display: block;
        margin-left: 0 !important;
    }

}

@media(max-width: 991px) {
    .foot1 .ff1 {
        width: 100%;
        float: none;
    }

    .foot1 .ff2 {
        width: 100%;
        float: none;
        margin-top: 30px;
    }
}

@media(max-width: 767px) {
    .foot1 .ff1 .fnav {
        flex-wrap: wrap;
        display: none;
    }

    .foot1 .ff1 .fnav>li {
        margin-bottom: 20px;
    }

    .foot1 .ff1 .fnav>li>a {
        font-size: 15px;
    }

    .foot1 .ff1 .fnav .x-nav-menu dd {
        font-size: 12px;
    }

    .foot2 {
        font-size: 12px;
        line-height: 22px;
    }

}


/*内页左侧样式*/

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



.n_case .fl01 ul {
    font-size: 0;
    margin: 0 -0.8125rem
}

.n_case .fl01 ul li {
    display: inline-block;
    width: 33.333333%;
    padding: 0 0.8125rem;
    text-align: center;
    overflow: hidden;
}

.n_case .fl01 ul li a {
    display: block
}

.n_case .fl01 ul li a .img {
    overflow: hidden;
    position: relative
}

.n_case .fl01 ul li a .img img {
    width: 100% !important;
    object-fit: cover
}

.n_case .fl01 ul li a .img .top {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s
}

.n_case .fl01 ul li a .img .top h5 {
    font-size: 15px;
    color: #fff;
    padding: 0 15px;
    line-height: 30px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s
}

.n_case .fl01 ul li a .con h5 {
    font-size: 15px;
    color: #747474;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 1.875rem 0 1.375rem;
    transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1) 0s
}

/*图片放大*/

.slow img {
    -moz-transition: all 0.9s ease-in-out;
    -webkit-transition: all 0.9s ease-in-out;
    -o-transition: all 0.9s ease-in-out;
    -ms-transition: all 0.9s ease-in-out;
    transition: all 0.9s ease-in-out;
}

.table {
    display: table;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    height: 100%
}

.table_cell {
    display: table-cell;
    vertical-align: middle
}

.slow img:hover {
    transform: scale(1.05);
}

@media(min-width: 768px) {
    .n_case ul li a:hover .img .top {
        background: rgba(0, 0, 0, 0.5);
        top: 0
    }

    .n_case ul li a:hover .img img {
        transform: scale(1.06)
    }

    .n_case ul li a:hover .con h5 {
        opacity: 0;
        transform: scale(0.5)
    }

    .n_case ul li a:hover .img .top h5 {
        opacity: 1;
        transform: scale(1)
    }
}

@media(max-width: 767px) {
    .n_case .fl01 ul li {
        width: 50%;
    }

    body {
        padding-bottom: 50px;
    }
}





@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@media (min-width: 991px) {
    .active .lr_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInLeftBig;
        animation-name: fadeInLeftBig;
    }

    .active .rr_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInRightBig;
        animation-name: fadeInRightBig;
    }

    .active .up_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-name: fadeInUp;
        animation-name: fadeInUp;
    }

    .active .down_a1 {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        animation-delay: 0.5s;
        -webkit-animation-delay: 0.5s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
    }

}



.flex1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}



/* 导航样式 */
.x-menu {
    width: 72.75%;
    float: left;
}

.x-menu>li {
    width: 14%;
    margin: 0;
    text-align: center;
    float: none;
}

.x-menu>li>a {
    font-size: 18px;
    color: #000000;
    line-height: 90px;
    display: block;
}

.x-menu>li>a:hover {
    color: #2357b7;
}

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

.x-menu {
    float: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}


.x-menu .lastli {
    width: 28%;
    margin-left: 4%;
}

.x-menu .lastli .so {
    line-height: 90px;
}

.x-menu .lastli .so3 {
    line-height: 90px;
}

.x-menu>li.active>a,
.x-menu>li>a:hover {}

.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);
}

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

.x-sub-menu>li>a {
    display: block;
    text-align: center;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    padding: .5em;
}

.x-sub-menu>li>a:hover {
    background: #e9eaeb;
}

.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;
}





.dso {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 2%;
    font-family: "Microsoft Yahei";
}

.dsoa {
    max-width: 1620px;
    margin: 0 auto;
    padding: 0 2%;
    font-family: "Microsoft Yahei";
}

.dso li {
    width: 18%;
    margin: 0 1%;
    position: relative;
    cursor: pointer;
}

.disndhbei {
    position: absolute;
    bottom: 10px;
    left: 0px;
    width: 100%;
    text-align: left;
    box-sizing: border-box;
    padding-left: 4%;
}

.flex1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.disndh_a img {
    width: 100%;
    height: auto;
}

.disndhbei_a {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #000;
}

.disndhbei_a a {
    color: #000;
}

.disndhbei_b {
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 19px;
    letter-spacing: 0px;
    color: #000;
    text-transform: uppercase;
}

.dsunj {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 40px;
    border-bottom: #eeeeee 1px solid;
}

.dsunj a {
    color: #000000;
}

.dsoa li {
    width: 14%;
    text-align: left;
    margin: 0 1%;
    position: relative;
    cursor: pointer;
}

.wreue dd {
    color: #666666;
    font-size: 14px;
    line-height: 32px;
}

.wreue dd a {
    color: #666666;
    display: block;
}

.toptop:hover {
    background: #fff;
}

.toptop:hover .djsid {
    display: none;
}

.toptop:hover .dlogoopdkj {
    display: block;
}

.toptop:hover .x-menu>li>a {
    color: #333;
}

.toptop:hover .x-menu>li>a {
    color: #333;
}

.dsunj img {
    width: 100%;
    height: auto;
}

.toptop:hover .x-menu>li>a:hover {
    color: #fff;

}

.wreue dd:hover a {
    color: #1e57a5;
}

.dsoa li:hover .dsunj a {
    color: #1e57a5;
}

.dso li:hover .disndhbei_a a {
    color: #1e57a5;
}

.dso li:hover .disndhbei_b {
    color: #1e57a5;
}


.dso li .com-img {
    overflow: hidden;
}

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

.dso li:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}


.dsoa li:hover .disndhbei_a a {
    color: #1e57a5;
}

.dsoa li:hover .disndhbei_b {
    color: #1e57a5;
}

.dsoa li .com-img {
    overflow: hidden;
}

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

.dsoa li:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -ms-transform: scale(1.2);
}




.x-banner {
    overflow: hidden;
    position: relative;
}

.x-banner .owl-carousel {
    position: relative;
}

.x-banner .owl-carousel .banner-item a {
    display: block;

}

.x-banner .owl-carousel .banner-item img {
    width: 100%;
    height: 100vh;

}

/* .x-banner .owl-carousel .banner-item video{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: fill;
} */





.x-banner .owl-carousel .owl-nav .owl-prev {
    left: 0;
}

.x-banner .owl-carousel .owl-nav .owl-next {
    right: 0;
}

.x-banner .owl-carousel .owl-nav button.owl-prev,
.x-banner .owl-carousel .owl-nav button.owl-next {
    outline: none;
    position: absolute;
    top: 50%;
    z-index: 9999;
    background: #424246;
    height: 65px;
    width: 50px;
    margin-top: -32.5px;
    border-radius: 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.x-banner .owl-carousel .owl-nav button.owl-prev:hover,
.x-banner .owl-carousel .owl-nav button.owl-next:hover {
    background: #c01202;
}

.x-banner .owl-carousel .owl-nav .icon-font {
    display: block;
    width: 100%;
    height: 100%;
}

.x-banner .owl-carousel .owl-nav .icon-left-arrow:after {
    background-position: -34px -180px;
}

.x-banner .owl-carousel .owl-nav .icon-right-arrow:after {
    background-position: -26px -480px;
}

@media (max-width: 991px) {
    .x-banner {
        height: auto;
    }

    .x-banner .owl-carousel .banner-item a img {
        height: auto;
    }

    .x-banner .owl-carousel .owl-nav button.owl-prev,
    .x-banner .owl-carousel .owl-nav button.owl-next {
        height: 40px;
        width: 30px;
        margin-top: -20px;
    }

    .x-banner .owl-carousel .owl-nav .iconfont {
        font-size: 20px;
    }
}

.x-banner .owl-carousel .owl-dots {
    position: absolute;
    z-index: 999;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0;
    bottom: 5%;
    display: none;
}

.x-banner .owl-carousel .owl-dots button.owl-dot {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin: 0 .5em;
    outline: none;
    background: #fff;
    border-radius: 50%;
    width: 1em;
    height: 1em;
}

.x-banner .owl-carousel .owl-dots button.owl-dot.active {
    background: #c01202;
}

.x-banner {
    width: 100vw;
    height: 100vh;
}

.x-banner video,
.x-banner iframe {
    width: 100vw;
    height: 100vh;
    -o-object-fit: fill;
    object-fit: fill;
}

@media (max-width: 990px) {
    .x-banner {
        padding-top: 60px;
    }

    .x-banner .owl-carousel .owl-dots button.owl-dot {
        font-size: 12px;
    }
    
    .x-banner video,
.x-banner iframe {
    width: 100%;
    height: 100%;

}
}




/* 新闻资讯 */
.flex_xx {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.xw_tt {
    color: #333333;
    font-size: 35px;
    font-weight: 600;
}

.xw_tt span {
    color: #666666;
    font-size: 16px;
    margin-top: 5px;
    font-weight: 400;
    display: block;
}

.xw_rot li {
    width: 131px;
    height: 43px;
    background-color: #e5e5e5;
    color: #333333;
    text-align: center;
    margin: 0 8px
}

.xw_rot li a {
    font-size: 17px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 43px;
    letter-spacing: 0px;
    color: #333333;
}


.xw_rot li.on {
    background-color: #2357b7;
}



.xw_rot li.on a {
    color: #fff;
}




.pp_ll {
    height: 0;
    overflow: hidden;
}

.pp_ll.aa {
    height: auto;
}



.pp_1 {
    overflow: hidden;
    margin-top: 30px;
}

.b1b_index li .b1img1 {
    width: 100%;
    height: 350px
}

.b1b_index li .b1img1 img {
    width: 100%;
    height: 100%
}

.b1b_index li .dgg {
    padding: 25px 0;
}

.b1b_index li .dgg h2 {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #777777;
}

.b1b_index li .dgg h4 {
    font-size: 18px;
    font-weight: 600;
    font-stretch: normal;
    line-height: 30px;
    letter-spacing: 0px;
    color: #333333;
    height: 30px;
    overflow: hidden;
}

.b1b_index li .dgg h5 {
    font-family: MicrosoftYaHei;
    font-size: 15px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 25px;
    letter-spacing: 0px;
    color: #666666;
    height: 25px;
    overflow: hidden;
    margin-top: 8px;
}

.ma {
    width: 95px;
    height: 35px;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/9e74d89a0f012a91b35ba8857450db8a8348e3d6.png) no-repeat;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 35px;
    letter-spacing: 0px;
    color: #999999;
    padding-left: 15px;
    margin-top: 10px;
}

.b1b_index li:hover h4 {
    color: #2357b7;
}

.b1b_index li:hover .ma {
    background: url(//cdn.myxypt.com/2d77efc7/24/11/be8dc5de76f1fa696d97c4f5ae05b6303f9188d1.png) no-repeat;
    color: #2357b7;
}






@media (max-width: 1440px) {
    .b1b_index li .b1img1 {
        width: 100%;
        height: 250px
    }
}


@media (max-width: 1440px) {
    .x-menu {
        width: 63.75%;
    }
}


@media (max-width: 1360px) {
    .x-menu {
        width: 60.75%;
    }

    .top-head .max1440 {
        position: static;
        padding-right: 0px;
    }


    .sec7-con .sec7-1 .sec7-tlt h4 {
        font-size: 30px;
    }

    .sec7-con .sec7-1 .sec7-tlt h5 {
        font-size: 20px;
    }

    .sec7-con .sec7-1 .sec7-tlt h4 span {
        font-size: 16px;
    }

    .sec7-con .sec7-1 .sec7-tlt::before {
        content: '';
        width: 26%;
        height: 1px;
        background: #ddd;
        position: absolute;
        left: -20%;
        bottom: 83px;
    }

    .sec7-con .sec7-1 .sec7-tlt::after {
        content: '';
        width: 26%;
        height: 1px;
        background: #ddd;
        position: absolute;
        right: -20%;
        bottom: 83px;
    }

    .sec7-con .sec7-1 {
        padding-bottom: 0px;
    }

    .sec7-con .sec7-2 {
        margin-top: 0px;
    }

    .sec7-con .sec7-2 .sec7-2-left .sec7-add {
        margin-top: 10px;
    }

    .wwmm {
        margin-top: 10px;
        margin-left: 3.5vw;
    }

    .b1b_index li .dgg {
        padding: 10px 0;
    }

    .b1b_index li .dgg h4 {
        height: 25px;
        line-height: 25px;
        font-size: 16px;
    }

    .b1b_index li .dgg h5 {
        font-size: 14px;
        line-height: 22px;
        height: 22px;
        overflow: hidden;
        margin-top: 5px;
    }

    .xw_tt {
        color: #333333;
        font-size: 25px;
        font-weight: 600;
        margin-top: 35px;
    }

    .xw_tt span {
        color: #666666;
        font-size: 16px;
        margin-top: 5px;
        font-weight: 400;
        display: block;
    }

    .sec3-con .shuzi li h3 span {
        font-size: 30px;
    }

    .sec3-con .shuzi {
        padding: 10px 0;
        display: flex;
    }

}



@media (max-width: 1300px) {
    .xw_rot ul {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .xw_rot li {
        width: 111px;
        height: 35px;
        background-color: #e5e5e5;
        color: #333333;
        text-align: center;
        margin: 0 8px
    }

    .xw_rot li a {
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 35px;
        letter-spacing: 0px;
        color: #333333;
    }
}


@media (max-width: 1024px) {
    .xw_rot ul {
        width: 100%;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .xw_rot li {
        width: 111px;
        height: 35px;
        background-color: #e5e5e5;
        color: #333333;
        text-align: center;
        margin: 0 8px
    }

    .xw_rot li a {
        font-size: 14px;
        font-weight: normal;
        font-stretch: normal;
        line-height: 35px;
        letter-spacing: 0px;
        color: #333333;
    }

    .b1b_index li {
        width: 100%;
        margin-bottom: 10px;
    }
}

@media(max-width:767px) {
    .xw_rot {
        width: 100%;
    }

    .pp_1 {
        margin-top: 0;
    }

    .xw_rot li {
        width: 30%;
        margin: 0 5px;
    }
}



/* 翻盘导航文字 */
.full_menu1 {
    position: fixed;
    right: 54px;
    top: 50%;
    transform: translate(0, -50%);
    list-style-type: none;
    z-index: 70;
    transition: all .3s;
    height: 80vh;
    width: 70px;
}

.full_menu1 .fpdhnr {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}



.full_menu1 li {
    width: 100px;
    position: relative;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    margin: 8px 0;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/ab46d36e7aa0a07ec3ca95f94a924d4d737d58b0.png) no-repeat center right;
}

.full_menu1 li.active {
    background: url(//cdn.myxypt.com/2d77efc7/24/11/44e4330e9482591eace3a87a3e990b7197eeaa78.png) no-repeat center right;
}

.full_menu1 li a {
    display: block;
}

/* .full_menu1 li.active span{transform: translateY(-22px);line-height: 22px;
 } */



.full_menu1 li span {
    display: block;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 1);
    width: 55px;


}


.full_menu1 li span em {
    display: none;
    color: rgba(255, 255, 255, 1);
    font-style: normal;
    font-size: 14px;
    background: url(//cdn.myxypt.com/2d77efc7/24/11/0ea7d86154c905b1a3e46a37da0aafec832eb9a4.png) no-repeat left center;
    padding-left: 9px;
    width: 55px;
}

.full_menu1 li.active em {
    display: block;
}


@media (max-width: 1024px) {
    .full_menu1 {
        display: none;
    }

    .sec2-slick .slick-con .s2_on a::after {
        position: absolute;
        z-index: -1;
        background: #fff;
        width: 50px;
        height: 0px;
        background: #fff;
        left: 0px;
        top: 0px;
        content: "";
        transition: all .3s;
        display: none;
    }

}

/* 友情链接 */

.c-link {
    /* padding: 20px 0; */
    font-size: 14px;
    color: #666;
    line-height: 24px;
}

.c-link .con {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.c-link span {
    cursor: pointer;
    display: block;
    color: #666;
}

.c-link dd {
    width: calc(100% - 70px)
}

.c-link .sec {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    background: rgba(255, 255, 255, .6);
    padding: 10px;
    min-width: 120px;
    z-index: 999;
}

.c-link a {
    color: #666;
    padding: 0 4px;
    font-size: 14px;
    line-height: 24px;
}

@media (max-width: 992px) {
    .c-link {
        display: none;
    }
}


/* 手机页脚 */
.footer3 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #222;
}

.footer3 ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer3 ul li {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
    color: #ffffff;
    line-height: 50px;
    font-size: 0;
}

.footer3 ul li a {
    display: block;
    color: #ffffff;
}

.footer3 ul li .iconfont {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.footer3 ul li span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    color: #ffffff;
}

@media(max-width:767px) {
    .section8 {
        padding-bottom: 20%;
    }
}