* {
    padding: 0px;
    margin: 0px;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
}

.center {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

html {
    --navHeight: 90px;
}

body {
    overflow-x: hidden;
}

/* 导航 */
.nav {
    background: #fff;
    position: relative;
}

.nav .nav-out {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navHeight);
}

.nav .nav-out ul {
    display: flex;
    height: 100%;
    align-items: center;
}



.nav .nav-out ul li {
    height: 100%;
    display: flex;
    align-items: center;
}

/* .nav .nav-out ul li:hover .title::after {
    display: block;
} */

.nav .nav-out ul li.all .title::after {
    display: block;
}

.nav .nav-out ul li .title {
    height: 100%;
    line-height: var(--navHeight);
    position: relative;
}

.nav .nav-out ul li .title::after {
    content: '';
    width: 71px;
    height: 7px;
    background: #E50014;
    position: absolute;
    left: 50%;
    margin-left: -35.3px;
    bottom: 0px;
    display: none;
}

.nav .nav-out ul li .title a {
    color: #333;
    padding: 0px 25px;
    font-size: 20px;
    height: 100%;
    display: block;

}

.nav .nav-out ul li .qwepe-box {
    position: absolute;
    width: 100%;
    background: #fff;
    top: var(--navHeight);
    left: 0px;
    z-index: 99999;
    border-top: 1px solid #E2E2E2;
    display: none;
    box-sizing: border-box;
    padding: 20px 0px;
    box-sizing: border-box;
}

.nav .nav-out ul li .qwepe-box a {
    color: #999999;
    font-size: 18px;
    display: inline-block;
    margin: 0px 25px;
    padding-bottom: 10px;
}
.nav .nav-out ul li .qwepe-box a:hover{
    color: #e50013;
}
.nav .nav-out ul li:hover .title a {
    color: #E50014;
}

.nav .nav-out ul li.all .title a {
    color: #E50014;
}

/* banner */
.banner>img {
    width: 100%;
}

.banner .banenr-swiper .swiper-slide {
    width: 100%;
}

.banner .banenr-swiper .swiper-slide .banner-img {
    width: 100%;
}

.banner .banenr-swiper .swiper-slide .banner-img img {
    width: 100%;
}

.banner .banenr-swiper .swiper-pagination {
    bottom: 43px;
}

.banner .banenr-swiper .swiper-pagination-bullet {
    width: 42px;
    height: 3px;
    background: #C2C9CA;
    border-radius: 0px;
}

.banner .banenr-swiper .swiper-pagination-bullet-active {
    background: #E50014;
}

/* 首页标题 */
.center-ttile {
    text-align: center;
}

.center-ttile h5 {
    font-size: 40px;
    letter-spacing: 2px;
    position: relative;
    z-index: 30;
    margin-bottom: 30px;
}

.center-ttile b {
    font-size: 40px;
    letter-spacing: 5px;
    color: #DDE0E5;
    opacity: 0.5;
    display: block;
    transform: translateY(-30px);
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.MORE-i {
    text-align: right;
}

.MORE-i a {
    display: flex;
    align-items: center;
    justify-content: right;
    color: #333;
}

.MORE-i img {
    height: 20px;
}

/* 产品中心 */
.product {
    width: 100%;
    padding: 77px 0px;
    overflow: hidden;
}

.product .out {
    margin-top: 20px;
}

.product .product-swiper .swiper-slide {
    width: 30%;
    background-size: cover;
    margin-right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.7s;
}

.product .product-swiper .swiper-slide .slide-out {
    position: relative;
    width: 100%;
    height: 533px;
    background: url(../images/p-beijin.png) no-repeat center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
}
.product .product-swiper .swiper-slide .slide-out>img{
    width: auto;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}
.product .product-swiper .swiper-slide .texz {
    margin-top: 34px;
}

.product .product-swiper .swiper-slide:hover .box {
    display: flex;
}

.product .product-swiper .swiper-slide>img {
    width: auto;
    max-width: 100%;
}

.product .product-swiper .swiper-slide .box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 55px;
    box-sizing: border-box;
    display: none;

}

.product .product-swiper .swiper-slide .box h5 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 27px;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product .product-swiper .swiper-slide .box b {
    width: 44px;
    height: 3px;
    background: #E50014;
    margin-bottom: 60px;
}

.product .product-swiper .swiper-slide .box p {
    color: #fff;
    text-align: left;
    font-size: 16px;
    line-height: 1.5em;
    letter-spacing: 2px;
    margin-bottom: 55px;

    display: -webkit-box;
    /**对象作为伸缩盒子模型展示**/
    -webkit-box-orient: vertical;
    /**设置或检索伸缩盒子对象的子元素的排列方式**/
    -webkit-line-clamp: 3;
    /**显示的行数**/
    overflow: hidden;
    /**隐藏超出的内容**/

}

.product .product-swiper .swiper-slide .box a {
    display: block;
    color: #fff;
    width: 138px;
    height: 36px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 36px;
    box-sizing: border-box;
}

.product .product-swiper .swiper-slide .box a:hover {
    background: #E50014;
    border: none;
}

.product .product-swiper .swiper-button-prev {
    background: url(../images/jiantou-1.png) no-repeat center;
    width: 40px;
    height: 40px;
}

.product .product-swiper .swiper-button-prev::after {
    display: none;
}

.product .product-swiper .swiper-button-next {
    background: url(../images/jiantou-2.png) no-repeat center;
    width: 40px;
    height: 40px;
}

.product .product-swiper .swiper-button-next::after {
    display: none;
}



/* 公司优势 */
.Advantage {
    background: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);
    overflow: hidden;
}

.Advantage .out {
    position: relative;
}

.Advantage .out .swiper-button-prev::after {
    color: #333;
    font-weight: 900;
    transform: translateX(-70px);
}

.Advantage .out .swiper-button-next::after {
    color: #333;
    font-weight: 900;
    transform: translateX(70px);
}

.Advantage .out .swiper-button-prev:hover::after {
    color: #E50014;
}

.Advantage .out .swiper-button-next:hover::after {
    color: #E50014;
}

.Advantage .Advantage-swiper .swiper-slide {
    width: 25%;
}

.Advantage .Advantage-swiper .swiper-slide .box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.Advantage .Advantage-swiper .swiper-slide .box .img-box {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px 1px #9999996e;
    overflow: hidden;
    background: #fff;
    margin-top: 41px;
}

.Advantage .Advantage-swiper .swiper-slide .box .img-box img {
    width: 100%;
    height: 100%;
}

.Advantage .Advantage-swiper .swiper-slide .box .text-box {
    margin-top: 36px;
    border: 1px solid #D0D0D0;
    border-bottom: 0px;
    border-top: 0px;
    padding-bottom: 77px;
}

.Advantage .Advantage-swiper .swiper-slide .box:nth-child(1) .text-box{
    border-left: none;
}

.Advantage .Advantage-swiper .swiper-slide-duplicate-prev .box .text-box{
    border-right: none;
}


.Advantage .Advantage-swiper .swiper-slide .box .text-box h5 {
    text-align: center;
    font-size: 20px;
    color: #333333;
    margin-bottom: 40px;
    padding: 0px 20px;
    box-sizing: border-box;
}

.Advantage .Advantage-swiper .swiper-slide .box .text-box p {
    font-size: 14px;
    color: #333;
    padding: 0px 54px;
    box-sizing: border-box;


    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.Advantage .Advantage-swiper .swiper-slide .box:hover {
    background: url(../images/bei224.png) no-repeat center;
    background-size: cover;
}

.Advantage .Advantage-swiper .swiper-slide .box:hover h5 {
    color: #fff;
}

.Advantage .Advantage-swiper .swiper-slide .box:hover p {
    color: #fff;
}

/* 项目案例 */
.WORKS {
    background: url(../images/937c4d94c16d236cb574d888395c9c5269405fd8351170-6mpmCM.png) no-repeat center;
    background-size: cover;
    width: 100%;
    padding: 77px 0px 62px 0px;
    overflow: hidden;
}

.WORKS .out .WORKS-swiper .swiper-slide {
    width: 100%;
    height: 310px;
    position: relative;
    width: 33.4%;
}

.WORKS .out .WORKS-swiper .swiper-slide .box {
    width: 100%;
    height: 100%;
    background-size: cover !important;

    z-index: 100;
}

.WORKS .out {
    position: relative;
}

.WORKS .out .WORKS-swiper {
    padding: 100px 0px;
}

.WORKS .out .WORKS-swiper .swiper-slide::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: #ffffff48;
    top: 0px;
    left: 0px;
    content: '';
}

.WORKS .out .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: #ffffff42;
    border-radius: 50%;
    transform: translateX(-70px);
}

.WORKS .out .swiper-button-prev::after {
    color: #E50014;
    font-size: 16px;
}

.WORKS .out .swiper-button-next {
    width: 40px;
    height: 40px;
    background: #ffffff42;
    border-radius: 50%;
    transform: translateX(70px);
}

.WORKS .out .swiper-button-next::after {
    color: #E50014;
    font-size: 16px;
}

.WORKS .out .swiper-button-prev:hover {
    background: #E50014;
}

.WORKS .out .swiper-button-prev:hover::after {
    color: #fff;
}

.WORKS .out .swiper-button-next:hover {
    background: #E50014;
}

.WORKS .out .swiper-button-next:hover::after {
    color: #fff;
}

.WORKS .out .WORKS-swiper .swiper-slide-active {
    z-index: 9999;
}

.WORKS .out .WORKS-swiper .swiper-slide-active .box {
    z-index: 9999;
    position: absolute;
    width: 616px;
    height: 392px;
    left: 50%;
    margin-left: -313px;
    top: 50%;
    margin-top: -196px;
}

.WORKS .out .WORKS-swiper .swiper-slide-active::after {
    display: none;
}

.WORKS .out .WORKS-swiper .swiper-slide .box .text {
    position: absolute;
    text-align: center;
    width: 100%;
    color: #666666;
    font-size: 20px;
    font-weight: 500;
    box-sizing: border-box;
    bottom: -68px;
}

.WORKS .out .WORKS-swiper .swiper-slide-active .box .text {
    color: #333;
    bottom: -40px;
}

.WORKS .out .WORKS-swiper .swiper-slide-prev .box .text {
    text-align: left;
    padding-left: 20px;
    box-sizing: border-box;
    width: 90%;
          white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
}

.WORKS .out .WORKS-swiper .swiper-slide-next .box .text {
    text-align: right;
    padding-right: 20px;
    box-sizing: border-box;
}

/* 关于我们 */
.About {
    background: #F2F2F2;
    width: 100%;
    padding-top: 57px;
    box-sizing: border-box;
    padding-bottom: 100px;
    overflow: hidden;
}

.About .out {
    display: flex;
    margin-top: 30px;
}

.About .out .left {
    width: 57%;
    position: relative;
    background: url(../images/386c194584e11e952c3f6db5e84791dfbe98b5311605b-enpzU1_fw1200.png) no-repeat center;
    background-position: top;
}

.About .out .left .box {
    width: 874px;
    border: 2px solid #fff;
    height: 407px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 49px;
    transform: translateX(100px);
    padding: 5% 27% 0px 4%;
    box-sizing: border-box;
}

.About .out .right {
    width: 43%;
}

.About .out .right img {
    width: 100%;
    height: 565px;
    object-fit: cover;
}

.About .out .left .box h5 {
    font-size: 30px;
    color: #2C415D;
}

.About .out .left .box span {
    font-size: 20px;
    color: #666666;
    display: block;
    margin: 20px 0px 30px 0px;
}

.About .out .left .box p {
    font-size: 16px;
    color: #666666;
    line-height: 2em;
    letter-spacing: 1px;
}

.About .out .left .box .qweq-botton {
    width: 100%;
    display: flex;
    justify-content: right;
    margin-top: 40px
}

.About .out .left .box .qweq-botton a {
    width: 121px;
    height: 37px;
    border: 1px solid #999999;
    text-align: center;
    line-height: 37px;
    color: #999999;
}

.About .out .left .box .qweq-botton a:hover {
    color: #fff;
    background: #E50014;
}

/* 新闻中心 */
.NEWS {
    background: url(../images/bei88.png) no-repeat center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 75px 0px;
    box-sizing: border-box;
    overflow: hidden;
}

.NEWS .title-box {
    display: flex;
    justify-content: right;
    margin-bottom: 40px;
    margin-top: 31px;
}

.NEWS .title-box a {
    color: #333333;
    font-size: 22px;
    display: flex;
    align-items: center;
    margin-left: 26px;
    transition: 0.6s;
}

.NEWS .title-box a:hover {
    color: #E50014;
}

.NEWS .title-box a:hover::before {
    width: 26.95px;
    height: 2px;
    background: #E50014;
    content: '';
    display: block;
    margin-right: 10px;
}

.NEWS .title-box a.all {
    color: #E50014;
}

.NEWS .title-box a.all::before {
    width: 26.95px;
    height: 2px;
    background: #E50014;
    content: '';
    display: block;
    margin-right: 10px;
}

.NEWS .out {
    display: flex;
    justify-content: space-between;
}

.NEWS .out>a {
    width: 30%;
}

.NEWS .out .box {
    width: 100%;
    border-bottom: 1px solid #999999;
    padding-bottom: 40px;
}

.NEWS .out .box .img {
    width: 100%;
    height: 276px;
}

.NEWS .out .box .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.NEWS .out .box .text {
    padding: 0px 50px;
    box-sizing: border-box;
}

.NEWS .out .box .text .time {
    margin-top: 20px;
    font-size: 14px;
    color: #888888;
}

.NEWS .out .box .text h5 {
    color: #333333;
    font-size: 20px;
    margin-top: 18px;
    margin-bottom: 22px;

    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.NEWS .out .box .text p {
    color: #AAAAAA;
    font-size: 16px;
    line-height: 1.5em;

    display: -webkit-box;
    /**对象作为伸缩盒子模型展示**/
    -webkit-box-orient: vertical;
    /**设置或检索伸缩盒子对象的子元素的排列方式**/
    -webkit-line-clamp: 3;
    /**显示的行数**/
    overflow: hidden;
    /**隐藏超出的内容**/

}

.NEWS .out .box .text .yequw {
    width: 91px;
    height: 21px;
    background: #E50014;
    border-radius: 10px;
    display: block;
    text-align: center;
    font-size: 13px;
    color: #fff;
    line-height: 21px;
    margin-top: 24px;
    transition: 0.6s;
}

.NEWS .out .box .text .yequw b {
    display: none;
    transition: 0.3s;
}

.NEWS .out .box .text .yequw img {
    margin-left: 8px;
    width: 5px;
    transition: 0.1s;
}

.NEWS .out .box:hover .text .yequw {
    width: 35px;
    height: 21px;
    background: #fff;
}

.NEWS .out .box:hover .text .yequw img {
    opacity: 0;
}

.NEWS .out .box:hover .text .yequw span {
    opacity: 0;
}

.NEWS .out .box:hover .text .yequw b {
    display: block;
    color: #E50014;
}

.NEWS .out .box:hover {
    background: #E50014;
}

.NEWS .out .box:hover .text .time {
    color: #ECECEC;
}

.NEWS .out .box:hover .text h5 {
    color: #FFFFFF;
}

.NEWS .out .box:hover .text p {
    color: #EEEEEE;
}

/* 底部0 */
.footer {
    background: #2B2B2B;
    width: 100%;
    min-height: 564px;
    overflow: hidden;
}

.footer .box-1 {
    display: flex;
    justify-content: space-between;
    padding-top: 64px;

}

.footer .box-1 .b-1 span {
    display: block;
    color: #AAAAAA;
    font-size: 18px;
    margin-bottom: 28px;
}

.footer .box-1 .b-1 h5 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.footer .box-1 .b-2 ul {
    display: flex;
    justify-content: space-between;
}

.footer .box-1 .b-2 ul li {
    margin-left: 69px;
}

.footer .box-1 .b-2 ul li:nth-child(1) {
    margin-left: 0px;
}

.footer .box-1 .b-2 ul li span {
    font-size: 14px;
    color: #FFFFFF;
    display: block;
    margin-bottom: 8px;
}

.footer .box-1 .b-2 ul li a {
    display: block;
    color: #AAAAAA;
    font-size: 12px;
    margin-bottom: 16px;
}

.footer .box-1 .b-3 img {
    /*width: 100%;*/
}

.footer .box-2 {
    /* padding-bottom: 57px;
    border-bottom: 1px solid #484848; */
}

.footer .box-2 span {
    color: #fff;
    font-size: 16px;
    display: block;
    margin-bottom: 24px;
}

.footer .box-2 .box-2-box {
    display: flex;
    flex-wrap: wrap;
}

.footer .box-2 .box-2-box a {
    width: 90px;
    height: 36px;
    background: #484848;
    border-radius: 36px;
    display: block;
    text-align: center;
    line-height: 36px;
    color: #fff;
    margin-left: 20px;
    margin-bottom: 30px;
}

.footer .box-3 {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 30px;
    align-items: center;
}

.footer .box-3 span {
    display: block;
    color: #AAAAAA;
    font-size: 12px;
    margin-bottom: 14px;
}

.footer .box-3 .tewx {
    color: #AAAAAA;
    font-size: 12px;
}
.footer .box-3 a{
     color: #AAAAAA;
}
.footer .box-3 .tewx a{
    color: #AAAAAA;
}


/* 关于我们页面 */
.Abou-body .About-tile {
    text-align: left;
}

.Abou-body .About-tile h5 {
    font-size: 42px;
    color: #333333;
    transform: translateX(100px);
}

.Abou-body .About-tile h5::after {
    content: '';
    width: 100px;
    height: 5px;
    background: #E50014;
    display: block;
    margin-top: 20px;
}

.Abou-body .gundong-box {
    width: 90%;
    display: flex;
    /* justify-content: space-between; */
    transform: translateX(100px);
    margin-top: 50px;
}

.Abou-body .gundong-box .g-tr {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #D2D2D2;
}

.Abou-body .gundong-box .g-tr:last-child {
    border-right: none;
}

.Abou-body .gundong-box .g-tr span {
    font-size: 66px;
    color: #E50014;
    font-weight: 900;
}

.Abou-body .gundong-box .g-tr .txt {
    text-align: center;
    font-size: 22px;
    color: #555555;
    margin-top: 12px;
}

.Abou-body .company .About-tile {
    text-align: right;
    margin-bottom: 30px
}

.Abou-body .company .About-tile h5 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.Abou-body .company {
    background: url(../images/A-226.png) no-repeat center;
    width: 100%;
    background-size: cover;
    background-color: #F1F1F1;
    padding-top: 62px;
    box-sizing: border-box;
}

.Abou-body .company .Advantage-swiper .swiper-slide .box .img-box {
    background: none;
    box-shadow: none;
    border-radius: 0px;
}

.Abou-body .company .Advantage-swiper .swiper-slide .box:hover .MORE-aout {
    display: flex;
}

.Abou-body .company .text-box .MORE-aout {
    width: 100%;
    display: flex;
    justify-content: right;
    padding-right: 31px;
    box-sizing: border-box;
    position: absolute;
    bottom: 20px;
    color: #fff;
    display: none;
}

.Abou-body .company .out .swiper-button-prev {
    width: 54.7px;
    height: 54.7px;
    border-radius: 50%;
    background: #00000021;
    transform: translateX(-100px);
}

.Abou-body .company .out .swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
    transform: translateX(0px);
}

.Abou-body .company .out .swiper-button-next {
    width: 54.7px;
    height: 54.7px;
    border-radius: 50%;
    background: #00000021;
    transform: translateX(100px);
}

.Abou-body .company .out .swiper-button-next::after {
    font-size: 14px;
    color: #fff;
    transform: translateX(0px);
}

.Abou-body .company .out .swiper-button-next:hover {
    background: #E50014;
}

.Abou-body .company .out .swiper-button-prev:hover {
    background: #E50014;
}

.Abou-body .glories {
    background: #F1F1F1;
    padding-top: 70px;
    box-sizing: border-box;
}

.Abou-body .glories-title {
    background: url(../images/---228.png) no-repeat center;
    width: 305.54px;
    height: 80px;
    margin: 0 auto;
    text-align: center;
    line-height: 80px;
    font-size: 42px;
    color: #333333;
    font-weight: bold;
}

.Abou-body .glories .out {
    margin-top: 60px;
    position: relative;
}

.Abou-body .glories .glories-swiper .swiper-slide {
    width: 33.3%;
    text-align: center;
    transform: scale(0.9);
}

.Abou-body .glories .glories-swiper .swiper-slide img {
    width: 400px;
}

.Abou-body .glories .glories-swiper .swiper-slide .text {
    font-size: 27px;
    font-weight: bold;
    margin-top: 20px;
}

.Abou-body .glories .glories-swiper .swiper-slide-active {
    transform: scale(1);
}

.Abou-body .glories .out .swiper-button-prev {
    width: 54.7px;
    height: 54.7px;
    border-radius: 50%;
    background: #00000021;
    transform: translateX(-100px);
}

.Abou-body .glories .out .swiper-button-prev::after {
    font-size: 14px;
    color: #fff;
    transform: translateX(0px);
}

.Abou-body .glories .out .swiper-button-next {
    width: 54.7px;
    height: 54.7px;
    border-radius: 50%;
    background: #00000021;
    transform: translateX(100px);
}

.Abou-body .glories .out .swiper-button-next::after {
    font-size: 14px;
    color: #fff;
    transform: translateX(0px);
}

.Abou-body .glories .out .swiper-button-next:hover {
    background: #E50014;
}

.Abou-body .glories .out .swiper-button-prev:hover {
    background: #E50014;
}

.Abou-body .development {
    background: #F1F1F1;
    padding-top: 70px;
    box-sizing: border-box;
}

.Abou-body .development .out .qweuqwe {
    background: url(../images/xian229.png) no-repeat center;
    width: 100%;
    min-height: 300px;
    margin-top: 170px;
    position: relative;
    z-index: 30;
}

.Abou-body .development .out {
    width: 100%;
    position: relative;
    height: 500px;
}

.Abou-body .development .out::after {
    background: url(../images/386c194584e11e952c3f6db5e84791dfbe98b5311605b-enpzU1_fw1200.png) no-repeat center;
    background-size: cover;
    z-index: 0;
    content: '';
    width: 70%;
    height: 350px;
    position: absolute;
    left: 50%;
    margin-left: -35%;
    top: 60px;
    opacity: 0.3;
}

.Abou-body .development .out .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 178px;
    position: absolute;
    left: 41px;
    top: 72%;
}

.Abou-body .development .out .box .text {
    text-align: center;
    margin-top: 28px;
}

.Abou-body .development .out .box .text h4 {
    font-weight: 400;
    font-size: 17px;
    margin: 21px 0px;
}

.Abou-body .development .out .box b {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    display: block;
    text-align: center;
}

.Abou-body .partner {
    background: url(../images/hezuohuoban299.png) no-repeat center;
    width: 100%;
    background-size: cover;
    padding-top: 70px;
    box-sizing: border-box;
    padding-bottom: 160px;
    box-sizing: border-box;
    background-color: #F1F1F1;
}

.Abou-body .partner h5 {
    text-align: center;
    font-size: 42px;
    color: #333333;
    margin-bottom: 80px;
}

.Abou-body .partner .out .box {
    margin-bottom: 30px;
    width:12.5%;
   box-shadow: 0px 0px 10px 1px #0000002b;
    background: #fff;
    transform: scale(0.9);
}

.Abou-body .partner .out .box-1 {
    display: flex;
    flex-wrap: wrap;
    /*justify-content: center;*/
}
.Abou-body .partner .out .box-1 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.Abou-body .partner .out .box-2 {
    display: flex;
    width: 100%;
    margin: 0 auto;
}

.Abou-body .partner .out .box-2 .box {
    /*margin-right: 140px;*/
}

.Abou-body .partner .out .box-2 .box:last-child {
    margin-right: 0px;
}

.Abou-body .partner .out .box-3 {
    display: flex;
    flex-wrap: wrap;
}

.Abou-body .partner .out .box-3 .box {
    margin-right: 60px;
    width: 13%;
}

.Abou-body .partner .out .box-3 .box img {
    width: 100%;
}

/*.Abou-body .partner .out .box-3 .box:nth-child(6n) {*/
/*    margin-right: 0px;*/
/*}*/

/*.Abou-body .partner .out .box-1 .box:nth-child(2) {*/
/*    margin: 0px 195px;*/
/*}*/

/* 新闻页面 */
.news-body .NEWS .out {
    flex-wrap: wrap;
    justify-content: left;
}

.news-body .NEWS .out>a {
    margin-right: 20px;
    width: 32%;
}

.news-body .NEWS .out>a:nth-child(3n) {
    margin-right: 0px;
}

.news-body .NEWS .out .box {
    margin-bottom: 30px;

}

.news-body .NEWS .out {
    padding-top: 20px;
}

.news-body .NEWS {
    padding-top: 0px;
}

.news-body .title-box {
    display: flex;
    justify-content: center;
    background: #fff;
    margin-top: 0px;
    margin-bottom: 0px;
    padding: 40px 0px;
}

.news-body .title-box a::before {
    display: none !important;
}

.news-body .title-box a {
    width: 161px;
    height: 41px;
    border-radius: 41px;
    text-align: center;
    display: inline-block;
    line-height: 41px;
}

.news-body .title-box a:hover {
    color: #fff;
    background: #e50013;
}

.news-body .title-box a.all {
    color: #fff;
    background: #e50013;
}

.paging-box {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    align-items: center;

    margin-top: 60px;
}

.paging-box .sum a {
    color: #999;
}

.paging-box ul {
    display: flex;
    align-items: center;
}

.paging-box ul li {
    margin: 0px 10px;
}

.paging-box ul li a {
    min-width: 25px;
    height: 25px;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    font-weight: bold;
    color: #333;
}

.paging-box ul li a:hover {
    background: rgba(125, 26, 55, 1);
    color: #fff;
}

.paging-box ul li a.all {
    background: rgba(125, 26, 55, 1);
    color: #fff;
}

.paging-box .sum-2 input {
    width: 60px;
    height: 25px;
    border: 1px solid #000;
    outline: none;
    text-align: center;
    margin-left: 5px;
}

.paging-box .sum-2 a {
    color: #000;
    margin-left: 5px;
}

.paging-box .teq {
    color: #999;
}

.paging-box .qweqw {
    color: rgba(125, 26, 55, 1);
}



/* 产品中心页面 */

.product-body .banner {
    position: relative;
}

.product-body .banner .title-box {
    position: absolute;
    bottom: 4px;
    left: 0px;
    width: 100%;
    display: flex;
    background: #ffffff5e;
}

.product-body .banner .title-box a {
    width: 20%;
    height: 67px;
    text-align: center;
    line-height: 67px;
    color: #333333;
    font-size: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.product-body .banner .title-box a:hover {
    background: #e50013;
    color: #fff;
}

.product-body .product .out {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-body .product .out .box {
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.product-body .product .out .box>img {
    width: 50%;
    height: 230px;
    object-fit: contain;
}

.product-body .product .out .box b {
    width: 1px;
    height: 196px;
    background: #e50013;
}

.product-body .product .out .box .text-box {
    text-align: right;
    width:49.9%;
}

.product-body .product .out .box .text-box h5 {
    font-size: 22px;
    font-weight: bold;
    margin-left: 20px;
    margin-bottom: 112px;
          white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      width: 90%;
}

.product-body .product .out .box .text-box a {
    width: 156px;
    height: 41px;
    border: 1px solid #e50013;
    border-radius: 41px;
    display: inline-block;
    text-align: center;
    color: #e50013;
    line-height: 41px;
}

.product-body .product .out .box .text-box a:hover {
    background: #e50013;
    color: #fff;
}

/* 产品详情页 */
.product-list-body .pr-out {
    margin-top: 71px;
}
.product-list-body .pr-out .jiesao-box p img{
    width: auto;
    max-width: 100%;
}

.product-list-body .pr-out .top-box {
    display: flex;
}

.product-list-body .pr-out .top-box .left {
    width: 40%;
}

.product-list-body .pr-out .top-box .left .adasd-swiper .swiper-slide {
    background: #F1F1F1;
}

.product-list-body .pr-out .top-box .left .adasd-swiper img {
    width: 100%;
    height: 378px;
    object-fit: contain;
}

.product-list-body .pr-out .top-box .left .xiao-swiper {
    margin-top: 20px;
}

.product-list-body .pr-out .top-box .left .xiao-swiper .swiper-slide {
    width: 109px;
    height: 66px;
    background: #F1F1F1;
}

.product-list-body .pr-out .top-box .left .xiao-swiper .swiper-slide-thumb-active {
    background: #e50013;
}

.product-list-body .pr-out .top-box .left .xiao-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.8);
}

.product-list-body .pr-out .top-box .left .xiao-sw-box {
    position: relative;
    margin-top: 30px;
}

.product-list-body .pr-out .top-box .left .xiao-swiper {
    width: 80%;
    margin: 0 auto;
}

.product-list-body .pr-out .top-box .left .swiper-button-prev::after {
    font-size: 18px;
    color: #666666;
    font-weight: bold;
}

.product-list-body .pr-out .top-box .left .swiper-button-next::after {
    font-size: 18px;
    color: #666666;
    font-weight: bold;
}

.product-list-body .pr-out .top-box .left .swiper-button-next:hover::after {
    color: #e50013;
}

.product-list-body .pr-out .top-box .left .swiper-button-prev:hover::after {
    color: #e50013;
}

.product-list-body .pr-out .top-box .right {
    width: 60%;
    padding-left: 70px;
    padding-top: 37px;
    box-sizing: border-box;
}

.product-list-body .pr-out .top-box .right h5 {
    font-size: 30px;
    color: #333;
}

.product-list-body .pr-out .top-box .right h5::after {
    content: '';
    width: 100px;
    height: 2px;
    background: #e50013;
    margin-top: 40px;
    display: block;
}

.product-list-body .pr-out .top-box .right p {
    color: #666666;
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 115px;
    width: 60%;
}

.product-list-body .pr-out .top-box .right a {
    width: 156px;
    height: 41px;
    border: 1px solid #999;
    display: inline-block;
    border-radius: 41px;
    margin-right: 30px;
    text-align: center;
    line-height: 41px;
    color: #555555;
    box-sizing: border-box;
}

.product-list-body .pr-out .top-box .right a:hover {
    background: #e50013;
    color: #fff;
    border:none;
}

.product-list-body .pr-out .jiesao-box {
    margin-top: 62px;
}

.product-list-body .pr-out .jiesao-box h5 {
    font-size: 22px;
    color: #333;
    margin-bottom: 14px;
}

.product-list-body .pr-out .jiesao-box p {
    line-height: 1.5em;
    font-size: 18px;
    color: #666666;
}

.product-list-body .pr-out .jiantou {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px 0px;
}

.product-list-body .pr-out .jiantou .jian-box {
    display: flex;
    align-items: center;
}

.product-list-body .pr-out .jiantou .jian-box img {
    width: 7.44px;
}

.product-list-body .pr-out .jiantou .jian-box .zuo {
    margin-right: 25px;
}

.product-list-body .pr-out .jiantou .jian-box .you {
    margin-left: 25px;
}

.product-list-body .pr-out .jiantou .jian-box span {
    color: #666666;
    font-size: 16px;
}

.product-list-body .pr-out .jiantou .jian-box a {
    color: #666666;
    font-size: 16px;
}

.product-list-body .pr-out .jiantou>a {
    width: 156px;
    height: 41px;
    border-radius: 41px;
    border: 1px solid #999;
    display: inline-block;
    text-align: center;
    line-height: 41px;
    color: #555555;
    box-sizing: border-box;
}

.product-list-body .pr-out .jiantou>a:hover {
    background: #e50013;
    color: #fff;
    border:none;
}

.product-list-body .Message h5 {
    font-size: 40px;
    color: #111111;
    margin-bottom: 50px;
}

.product-list-body .Message {
    position: relative;
}

.product-list-body .Message::after {
    position: absolute;
    background: url(../images/386c194584e11e952c3f6db5e84791dfbe98b5311605b-enpzU1_fw1200.png) no-repeat center;
    width: 60%;
    height: 344px;
    right: 150px;
    bottom: 0px;
    content: '';
    opacity: 0.4;
    z-index: 10;
}

.product-list-body .Message .box {
    position: relative;
    z-index: 20;
}

.product-list-body .Message .inut-box {
    display: flex;
    justify-content: space-between;
}

.product-list-body .Message .inut-box .input {
    width: 45%;
    margin-bottom: 30px;
}

.product-list-body .Message .inut-box .input label {
    display: block;
    font-size: 18px;
    color: #333333;
    margin-bottom: 10px;
}

.product-list-body .Message .inut-box .input input {
    border: none;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    height: 40px;
    outline: none;
    background: none;
}

.product-list-body .Message .textarea label {
    display: block;
    font-size: 18px;
    color: #333;
    margin-bottom: 25px;
}

.product-list-body .Message .textarea textarea {
    border: none;
    border-bottom: 1px solid #CCCCCC;
    width: 100%;
    background: none;
    outline: none;
}

.product-list-body .Message button {
    width: 180px;
    height: 46px;
    border-radius: 46px;
    background: #e50013;
    color: #fff;
    border: none;
    margin-top: 30px;
    margin-bottom: 70px;
    cursor: pointer;
    font-size: 20px;

}

/* 项目案例页面 */
.project-body .project {
    margin-top: 99px;
    overflow: hidden;
}

.project-body .project .box {
    display: flex;
    align-items: center;
    margin-bottom: 50px;

}

.project-body .project .box:nth-child(2n) {
    flex-direction: row-reverse;
}

.project-body .project .box .left {
    width: 50%;
    overflow: hidden;
}

.project-body .project .box .left img {
    width: 100%;
}

.project-body .project .box .right {
    width: 50%;
    padding-left: 82px;
    box-sizing: border-box;

}

.project-body .project .box .right h5 {
    font-size: 24px;
    color: #333333;
}

.project-body .project .box .right h5::after {
    width: 109px;
    height: 2px;
    background: #e50013;
    content: '';
    margin: 35px 0px;
    display: block;
}

.project-body .project .box .right p {
    color: #666666;
    font-size: 16px;
    line-height: 1.5em;
    width: 450px;
}

.project-body .project .box .right a {
    width: 156px;
    height: 42px;
    border: 1px solid #e50013;
    text-align: center;
    line-height: 42px;
    margin-top: 40px;
    border-radius: 42px;
    display: block;
    color: #e50013;
    box-sizing: border-box;
}
.project-body .project .box .right a:hover{
    background: #e50013;
    color:#fff;
}

/* 新闻详情页 */
.news-list-body .article {
    padding-top: 100px;
    box-sizing: border-box;
}

.news-list-body .article h5 {
    color: #333333;
    font-size: 30px;
    text-align: center;
    font-weight: 400;
}

.news-list-body .article .box {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-top: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    margin-top: 42px;
    color: #666666;
}

.news-list-body .article .text {
    padding: 48px 75px 70px;
    box-sizing: border-box;
    color: #333333;
    border-bottom: 1px solid #E3E3E3;
}
.news-list-body .article .text img{
    width:auto;
    max-width: 100%;
}
.news-list-body .article .text video{
    width: auto;
    max-width: 100%;
}
.news-list-body .article .text p {
    font-size: 16px;
    color: #333333;
    line-height: 1.5em;
}

.news-list-body .article .shang {
    margin-top: 35px;
    margin-bottom: 70px;
}

.news-list-body .article .shang a {
    display: block;
    color: #333333;
    margin-bottom: 15px;
}

.news-list-body .article .shang a:hover {
    color: #e50013;
}

/* 项目案例详情 */

.project-list-body .jiantou a {
    display: block;
    width: 126px;
    height: 46px;
    background: #E50014;
    border-radius: 46px;
    text-align: center;
    line-height: 46px;
    color: #fff !important;
}


/* 加入我们页面 */
.join-body .project .box .right span {
    font-size: 20px;
    margin-bottom: 36px;
    display: block;
}

.join-body .banner {
    position: relative;
}

.join-body .banner .title-box {
    display: flex;
    justify-content: center;
    position: absolute;
    bottom: 4px;
    left: 0px;
    width: 100%;
}

.join-body .banner .title-box a {
    display: block;
    width: 50%;
    max-width: 700px;
    height: 61px;
    text-align: center;
    line-height: 61px;
    color: #333333;
    font-size: 20px;
    background: #ffffff48;
}

.join-body .banner .title-box a:hover {
    background: #e50013;
    color: #fff;
}

.join-body .banner .title-box a.all {
    background: #e50013;
    color: #fff;
}

/* 联系我们页面 */
.contact-body .contact {
    margin-top: 70px;
}

.contact-body .contact .center {
    display: flex;
    align-items: center;
}

.contact-body .lft {
    width: 80%;
}

.contact-body .lft .text-box {
    display: flex;

}

.contact-body .lft i {
    width: 200px;
    height: 2px;
    background: #e50013;
    display: block;
    margin-top: 35px;
    margin-bottom: 32px;
}

.contact-body .lft .text-box h5 {
    margin-right: 105px;
    font-size: 26px;
}

.contact-body .lft .out {
    display: flex;

}

.contact-body .lft .out .box {
    width: 50%;
}

.contact-body .lft .out .box span {
    display: block;
    margin-bottom: 10px;
    color: #333333;
    font-size: 18px;
}

.contact-body .right {
    width: 20%;
}

.ditu {
    width: 100%;
    height: 716px;
    margin-bottom: 50px;
}

.ditu #container {
    width: 100%;
    height: 716px;
}

.min-nav-title{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 10px 4px #eeeeeebe;
    cursor: pointer;
    position: relative;
    display: none;
}
.min-nav-title img{
    width: 100%;
    height: 100%;
    transform: scale(0.7);
    opacity: 0.4;
    transition:all 0.2s;
}
.min-nav-title:active{
    box-shadow: inset 0px 0px 10px 4px #EEEEEE;
}
.min-nav-title:active img{
    transform: scale(0.6);
    opacity: 0.2;
}

.min-nav-ul-box{
    width: 100%;
    position: absolute;
    top: var(--navHeight);

    background: #fff;
    z-index: 9999;
    display: none;
}
.min-nav-ul-box .title{
    display: flex;
    border-bottom: 1px solid #99999973;
    align-items: center;
    justify-content: space-between;
}
.min-nav-ul-box .title img{
  padding-right: 20px;
  box-sizing: border-box;
  cursor: pointer;
}
.min-nav-ul-box .title a{
    width: 70%;
    padding: 5px 20px ;
    box-sizing: border-box;
    color: #333;
   
    display: block;
}
.min-nav-ul-box .qwepe-box{
    width: 100%;
    padding:5px 30px;
    box-sizing: border-box;
    display: none;
}
.min-nav-ul-box .qwepe-box a{
    display: block;
    color: #444;
    margin: 10px 0px;
}

.join-body .Jobs-box {
    margin-top: 50px;
    padding-bottom: 100px;
}
.join-body .Jobs-box li{
    display: flex;
    border-bottom: 1px solid #999;
}
.join-body .Jobs-box .title span{
    background: #e50013;
    color: #fff;
}
.join-body .Jobs-box li span{
    width: 25%;
    text-align: center;
    height: 50px;
    line-height: 50px;
    display: inline-block;
}

#xuangua-click {
    position: fixed;
    bottom: 0px;
    width: 100%;
    display: none;
    text-align: center;
    z-index: 999999;
    box-shadow: 0px 0px 10px 1px #66535399;
}
#xuangua-click .xuangua-box {
    display: flex;
    height: 60px;
}
#xuangua-click a {
    width: 50%;
    height: 100%;
    text-align: center;
    background: #e50013;
    cursor: pointer;
    border-right: 2px solid #ffffff1f;
    padding: 5px 0px;
    box-sizing: border-box;
}
#xuangua-click img {
    width: 30px;
    transform: scale(0.8);
}
#xuangua-click span {
    display: block;
    transform: translateY(-4px);
    font-size: 12px;
    text-align: center;
    color: #fff;
}

@media (max-width:767px) {

    #xuangua-click{
        display: block;
    }
    .min-nav-title{
        display: block;
    }
    html {
        --navHeight: 60px;
    }

    /* 导航 */
    .nav .nav-out ul {
        display: none;
    }

    .nav .nav-out {
        padding: 0px 30px;
        box-sizing: border-box;
    }

    .nav .nav-out .logo img {
        width: 100px;
    }

    /* banner */
    .banner .banenr-swiper .swiper-slide .banner-img img {
        height: 160px;
        object-fit: cover;
    }

    .banner .banenr-swiper .swiper-pagination-bullet {
        width: 22px;
    }

    .banner .banenr-swiper .swiper-pagination {
        bottom: 13px;
    }

    /* 产品中心 */
    .product {
        padding: 20px 0px;
    }

    .center-ttile h5 {
        font-size: 30px;
    }

    .center-ttile b {
        font-size: 30px;
        letter-spacing: 0px;
        transform: translateY(-23px);
    }

    .product .product-swiper .swiper-slide {
        width: 100%;
        transform: scale(0.9);
    }

    .MORE-i a {
        margin-right: 10px;
    }

    .product .product-swiper .swiper-slide .slide-out {
        height: 300px;
    }

    /* 关于我们 */
    .About .out .left .box {
        width: 100%;
    }

    /* 公司优势 */
    .Advantage .Advantage-swiper .swiper-slide {
        width: 100%;
        transform: scale(0.9);
    }

    .Advantage .out .swiper-button-prev::after {
        transform: translateX(0px);
    }

    .Advantage .out .swiper-button-next::after {
        transform: translateX(0px);
    }

    /* 项目案例 */
    .WORKS .out .WORKS-swiper .swiper-slide {
        width: 100%;
    }

    .WORKS .out .WORKS-swiper .swiper-slide-active .box {
        width: 100%;
        left: 0px;
        margin-left: 0px;
        margin-top: 0px;
        height: 200px;
        top: 0px;
    }

    .WORKS .out .WORKS-swiper {
        padding: 0px 0px;
    }

    .WORKS .out .WORKS-swiper .swiper-slide .box .text {
        bottom: -40px;
    }

    .WORKS .out .WORKS-swiper .swiper-slide {
        height: 200px;
    }

    .WORKS .out .swiper-button-prev {
        transform: translateX(0px);
    }

    .WORKS .out .swiper-button-next {
        transform: translateX(0px);
    }

    /* 关于我们 */
    .About {
        padding-bottom: 0px;
    }

    .About .out {
        display: block;
        margin-top: 0px;
    }

    .About .out .left {
        width: 100%;
    }

    .About .out .left .box {
        transform: translateX(0px);
        padding: 5% 4% 5% 4%;
        margin-top: 0px;
        height: auto;
    }

    .About .out .left .box h5 {
        font-size: 18px;
    }

    .About .out .left .box span {
        font-size: 14px;
        margin: 10px 0px 10px 0px;
    }

    .About .out .left .box p {
        font-size: 12px;
    }

    .About .out .right {
        width: 100%;
    }

    .About .out .right img {
        height: auto;
        transform: translateY(-100px);
    }

    /* 新闻中心 */
    .NEWS {
        padding: 25px 0px;
    }

    .NEWS .title-box {
        justify-content: center;
    }

    .NEWS .out {
        display: block;
    }

    .NEWS .out .box {
        margin-bottom: 10px;
    }

    /* 底部 */
    .footer .box-1 {
        display: block;
        padding: 0px 10px;
        padding-top: 25px;
        box-sizing: border-box;
    }

    .footer .box-1 .b-1 h5 {
        font-size: 18px;
    }

    .footer .box-2 span {
        margin-left: 20px;
    }

    .footer .box-1 .b-1 h5 {
        margin-bottom: 10px;

    }

    .footer .box-1 .b-1 span {
        margin-bottom: 5px;
        font-size: 14px;
    }

    .footer .box-1 .b-2 ul {
        margin-top: 20px;
    }

    .footer .box-1 .b-2 ul li {
        margin-left: 0px;
    }

    .footer .box-3 {
        display: block;
        text-align: center;
        padding-bottom: 80px;
    }

    .Abou-body .About-tile h5 {
        transform: translateX(0px);
        margin-bottom: 30px;
        font-size: 30px;
    }

    .Abou-body .About-tile h5::after {
        width: 50px;
    }

    .Abou-body .glories .glories-swiper .swiper-slide img {
        width: 100%;
    }

    .Abou-body .glories .glories-swiper .swiper-slide .text {
        font-size: 14px
    }

    .Abou-body .glories .out {
        margin-top: 30px;
    }

    .Abou-body .gundong-box {
        display: none;
    }

    .Abou-body .company .out .swiper-button-prev {
        transform: translateX(0px);
    }

    .Abou-body .company .out .swiper-button-next {
        transform: translateX(0px);
    }

    .Abou-body .glories {
        padding-top: 30px;
    }

    .Abou-body .glories-title {
        font-size: 30px;
        width: 50%;
        background-size: cover;
    }

    .Abou-body .glories .out .swiper-button-prev {
        transform: translateX(0px);
        width: 30px;
        height: 30px;
    }

    .Abou-body .glories .out .swiper-button-next {
        transform: translateX(0px);
        width: 30px;
        height: 30px;
    }

    .Abou-body .partner .out .box-1 {
        justify-content: space-between;
    }

    .Abou-body .partner {
        padding: 0px 10px;
        box-sizing: border-box;
        padding-bottom: 30px;
        padding-top: 40px;
    }

    .Abou-body .partner .out .box-2 .box {
        margin-right: 0px;
    }

    .Abou-body .partner .out .box-2 .box {
        width: 24%;
    }

    .Abou-body .partner .out .box-3 .box {
        margin-right: 0px;
        width: 25%;
        transform: scale(0.95);
    }

    .Abou-body .partner .out .box-2 {
        justify-content: space-between;
    }

    .Abou-body .partner h5 {
        font-size: 30px;
        margin-bottom: 30px;
    }

    .Abou-body .partner .out .box {
        width: 32%;
    }

    .Abou-body .partner .out .box img {
        width: 100%;
    }

    .Abou-body .partner .out .box-1 .box:nth-child(2) {
        margin: 0px;
    }

    .Abou-body .development {
        display: none;
    }

    .banner>img {
        height: 160px;
        object-fit: cover;
    }

    .product-body .banner .title-box {
        position: relative;
        flex-wrap: wrap;
    }

    .product-body .banner .title-box a {
        width: 50%;
        font-size: 0.875rem;
        border: 1px solid #999;
        box-sizing: border-box;
    }

    .product-body .product .out {
        display: block;
    }

    .product-body .product .out .box {
        width: 100%;
        display: block;
    }

    .product-body .product .out .box>img {
        text-align: center;
        width: 100%;
        image-rendering: -moz-crisp-edges;         /* Firefox */
        image-rendering: -o-crisp-edges;         /* Opera */
        image-rendering: -webkit-optimize-contrast;/* Webkit (non-standard naming) */
        image-rendering: crisp-edges;
        -ms-interpolation-mode: nearest-neighbor;  /* IE (non-standard property) */

    }

    .product-body .product .out .box .text-box {
        text-align: center;
    }

    .product-body .product .out .box .text-box h5 {
        margin-bottom: 30px;
    }

    .paging-box ul li {
        margin: 0px 0.3125rem;
    }

    .paging-box ul li a {
        min-width: 1.5625rem;
        height: 1.5625rem;
        display: inline-block;
        text-align: center;
        line-height: 1.5625rem;
        font-weight: bold;
        color: #333;
        font-size: 0.75rem;
    }

    .paging-box .sum {
        display: none;
    }

    .paging-box .sum-2 {
        display: none;
    }

    .product-list-body .pr-out .top-box {
        display: block;
    }

    .product-list-body .pr-out .top-box .left {
        width: 100%;
    }

    .product-list-body .pr-out .top-box .left .adasd-swiper img {
        object-fit: contain;
    }

    .product-list-body .pr-out .top-box .right {
        width: 80%;
        margin: 0 auto;
        padding-left: 0px;
    }

    .product-list-body .pr-out .top-box .right .anniu-box {
        display: flex;
    }

    .product-list-body .pr-out .top-box .right h5 {
        font-size: 24px;
    }

    .product-list-body .pr-out .top-box .right p {
        margin-bottom: 50px;
    }

    .product-list-body .pr-out .jiesao-box {
        padding: 0px 20px;
        box-sizing: border-box;
    }

    .product-list-body .pr-out .jiantou {
        flex-direction: column;
        align-items: center;
    }

    .product-list-body .pr-out .jiantou>a {
        margin: 20px 0px;
    }

    .product-list-body .Message {
        padding: 0px 20px;
        box-sizing: border-box;
    }

    .project-body .project .box {
        display: block;
    }

    .project-body .project .box .left {
        width: 100%;
    }

    .project-body .project {
        margin-top: 40px;
        overflow: hidden;
    }

    .project-body .project .box .right {
        width: 100%;
        padding-left: 0px;
        padding: 0px 10px;
        box-sizing: border-box;
        margin-bottom: 20px;
    }

    .project-body .project .box .right p {
        width: 100%;
    }

    .news-list-body .article {
        padding-top: 30px;
    }

    .news-list-body .article h5 {
        font-size: 24px;
    }

    .news-list-body .article .text {
        padding: 48px 20px 70px;
    }

    .join-body .banner .title-box a {
        height: 40px;
        line-height: 40px;
        font-size: 14px;
    }

    .contact-body .contact {
        margin-top: 20px;
    }

    .contact-body .contact .center {
        display: block;
    }

    .contact-body .lft {
        width: 100%;
    }

    .contact-body .lft .text-box {
        display: block;
    }

    .contact-body .lft .text-box h5 {
        margin-right: 0px;
        font-size: 18px;
        margin-bottom: 15px;
        padding-left: 10px;
        box-sizing: border-box;
    }

    .contact-body .lft i {
        margin-left: 10px;
    }

    .contact-body .lft .out {
        display: block;
        padding: 0px 10px;
        box-sizing: border-box;
    }

    .contact-body .lft .out .box {
        width: 100%;
    }

    .ditu #container {
        height: 200px;
    }

    .ditu {
        height: auto;
    }

    .product .product-swiper .swiper-slide .box b {
        margin-bottom: 10px;
    }

    .product .product-swiper .swiper-slide .box p {
        margin-bottom: 10px;
    }
}


@media screen and (min-width:768px) and (max-width:1199px) {
    .footer .box-1 .b-3 img{
        width: 130px;
    }
    .min-nav-title{
        display: block;
    }
    .project-body .project .box .right p {
        width: 100%;
    }

    .nav .nav-out ul {
        display: none;
    }

    .banner .banenr-swiper .swiper-pagination {
        bottom: 23px
    }

    .product .product-swiper .swiper-slide {
        width: 50%;
    }

    .Advantage .Advantage-swiper .swiper-slide {
        width: 50%;
    }

    .Advantage .out .swiper-button-prev::after {
        transform: translateX(0px);
    }

    .Advantage .out .swiper-button-next::after {
        transform: translateX(0px);
    }

    .About .out .left .box {
        width: 140%;
        transform: translateX(13px);
        padding: 5% 17% 5% 4%;
    }

    .About .out .left .box h5 {
        font-size: 20px;
    }

    .About .out .left .box span {
        font-size: 16px;
    }

    .About .out .left .box p {
        font-size: 12px;
    }

    .About .out .left .box {
        height: auto;
    }

    .NEWS .out>a {
        width: 32%;
    }

    .NEWS .out .box .text {
        padding: 0px 10px;
    }

    .footer .box-1 .b-2 ul li {
        margin-left: 0px;
    }

    .footer .box-1 .b-1 h5 {
        font-size: 18px;
    }

    .footer .box-1 .b-1 span {
        font-size: 14px;
    }

    .WORKS .out .swiper-button-prev {
        transform: translateX(0px);
    }

    .WORKS .out .swiper-button-next {
        transform: translateX(0px);
    }

    .Abou-body .About-tile h5 {
        transform: translateX(13px);
    }

    .Abou-body .gundong-box {
        transform: translateX(13px);
    }

    .Abou-body .gundong-box .g-tr span {
        font-size: 40px;
    }

    .Abou-body .gundong-box .g-tr .txt {
        font-size: 14px;
    }

    .Abou-body .company .About-tile h5 {
        transform: translateX(0px);
    }

    .Abou-body .glories .glories-swiper .swiper-slide img {
        width: 100%;
    }

    .Abou-body .development {
        display: none;
    }

    .Abou-body .partner .out .box-1 {
        justify-content: space-between;
    }

    .Abou-body .partner .out .box-1 .box {
        width: 32%;
    }

    .Abou-body .partner .out .box-1 .box img {
        width: 100%;
    }

    .Abou-body .partner .out .box-1 .box:nth-child(2) {
        margin: 0px 0px;
    }

    .Abou-body .partner .out .box-2 {
        justify-content: space-between;
    }

    .Abou-body .partner .out .box-2 .box {
        margin-right: 0px;
        width: 24%;
    }

    .Abou-body .partner .out .box-2 .box img {
        width: 100%;
    }

    .Abou-body .partner .out .box-3 .box {
        margin-right: 0px;
        width: 16.6%;
    }

    .product-body .banner .title-box {
        position: relative;
        flex-wrap: wrap;
    }

    .product-body .banner .title-box a {
        width: 50%;
        border: 1px solid #999;
    }

    .product-body .product .out {
        display: block;
    }

    .product-body .product .out .box {
        width: 100%;
        padding: 0px 30px;
        box-sizing: border-box;
    }

    .news-body .NEWS .out>a {
        width: 33.3%;
        margin-right: 0px;
        transform: scale(0.95);
    }
}


@media screen and (min-width:1200px) and (max-width:1400px) {
    .Abou-body .gundong-box .g-tr span {
        font-size: 40px;
    }

    .Abou-body .company .About-tile h5 {
        transform: translateX(0px);
    }

    .Abou-body .company .out .swiper-button-prev {
        transform: translateX(0px);
    }

    .Abou-body .company .out .swiper-button-next {
        transform: translateX(0px);
    }

    .Abou-body .glories .glories-swiper .swiper-slide img {
        width: 80%;
    }

    .Abou-body .glories .out .swiper-button-prev {
        transform: translateX(0px);
    }

    .Abou-body .glories .out .swiper-button-next {
        transform: translateX(0px);
    }

    .Abou-body .development {
        display: none;
    }

    .Abou-body .partner .out .box-2 .box {
        margin-right: 0px;
    }

    .Abou-body .partner .out .box-2 {
        justify-content: space-between;
    }

    .Abou-body .partner .out .box-3 .box {
        width: 16.6%;
        margin-right: 0px;
    }

    .product-body .product .out {
        padding: 0px 30px;
        box-sizing: border-box;
    }

    .product-body .product .out .box {
        width: 48%;
    }
}