@charset "utf-8";

/* CSS Document */
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 12px;
    font-family: "微软雅黑", "黑体";
    color: #898989;
    line-height: 1;
    background: #FFF;
}

ul,
li,
dl,
dd,
dt,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ol,
form,
input {
    margin: 0px;
    padding: 0px;
}

input,
textarea {
    font-family: "微软雅黑";
    border: none;
    outline: none;
    background: none;
}

ul,
li {
    list-style: none
}

img {
    border: 0px;
    padding: 0px;
    display: block;
}

a {
    color: #5c5c5c;
    text-decoration: none
}

h2,
h3,
h4,
b,
strong {
    font-weight: normal;
}

em,
i {
    font-style: normal;
}

.clear {
    zoom: 1;
}

.clear:after {
    content: '';
    display: block;
    clear: both;
}

.fl {
    float: left
}

.fr {
    float: right
}

/*transition*/
.tran200 {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.tran300 {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.tran400 {
    -webkit-transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -ms-transition: all 0.4s linear;
    transition: all 0.4s linear;
}

.tran500 {
    -webkit-transition: all 0.5s linear;
    -moz-transition: all 0.5s linear;
    -ms-transition: all 0.5s linear;
    transition: all 0.5s linear;
}

.tran1000 {
    -webkit-transition: all 1s linear;
    -moz-transition: all 1s linear;
    -ms-transition: all 1s linear;
    transition: all 1s linear;
}

.tran5000 {
    -webkit-transition: all 5s linear;
    -moz-transition: all 5s linear;
    -ms-transition: all 5s linear;
    transition: all 5s linear;
}

.scaleimg:hover img,
.scaleimg:hover .pic em {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.rotateY:hover {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.translateX:hover {
    -webkit-transform: translateX(-6px);
    -moz-transform: translateX(6px);
    -ms-transform: translateX(-6px);
    transform: translateX(-6px);
}

.hidden {
    display: none;
    background: url() no-repeat center;
}

.flexBetween {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexStart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexCenter {
    display: -webkit-flex;
    /* Safari */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flexEnd {
    display: -webkit-flex;
    /* Safari */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-justify: distribute-all-lines;
}

.ellipsis2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-justify: distribute-all-lines;
}

.ellipsis3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-justify: distribute-all-lines;
}

.ellipsis4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-justify: distribute-all-lines;
}

.ellipsis5 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-justify: distribute-all-lines;
}

.header {
    position: fixed;
    z-index: 100;
    width: 100%;
    top: 0;
    left: 0;
    height: 95px;
    transition: All 0.4s ease-in-out;
    /* background: rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .2); */

}

.headerbox {
    width: 96%;
    margin: 0 auto;
    max-width: 2480px;
}

.logo {
    float: left;
    width: 160px;
    padding-top: 25px;
    position: relative;
}

.logo img {
    width: 100%;
    filter: grayscale(100%) brightness(0) invert(1);
    /* 可选：如果需要兼容旧版IE，可加-ms-filter（非必需） */
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(grayscale=1) brightness=0 invert=1";
}

.lxdh {
    float: right;
    width: 185px;
    border-radius: 19px;
    background: #e22122;
    margin-top: 29px;
}

.lxdh p {
    color: #fff;
    text-align: center;
    line-height: 38px;
    font-size: 16px;
}

.lxdh p img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 10px 0 0;
}

.ssbtn {
    background: url(../images/a_09_b.png);
    width: 20px;
    height: 21px;
    cursor: pointer;
    float: right;
    margin: 38px 36px 0 10px;
    position: relative;
}

.ssbtn p {
    width: 20px;
    height: 21px;
}

.ssnr {
    position: absolute;
    width: 250px;
    height: 40px;
    border: 1px solid #ddd;
    top: 24px;
    right: 0;
    background: #fff;
    display: none;
    z-index: 10;
}

.wby5 {
    width: 100%;
    padding: 0 10px;
    height: 38px;
    line-height: 38px;
}

.btn5 {
    cursor: pointer;
    background: url(../images/a_09.png);
    width: 20px;
    height: 21px;
    right: 10px;
    position: absolute;
    border: none;
    top: 50%;
    transform: translateY(-50%);
}

.header.fixed,
.header:hover {
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: #3D3D3D;
}

.header.fixed .logo img,
.header:hover .logo img {
    width: 160px;
    filter: none;
}

.header.fixed .logo img.d,
.header:hover .logo img.d {
    opacity: 0;
}

.header.fixed .logo img.o,
.header:hover .logo img.o {
    opacity: 1;
}

.header.fixed .ssbtn,
.header:hover .ssbtn {
    background: url(../images/a_09.png);
}

.header.fixed .form .subm,
.header:hover .form .subm,
.header.fixed .searchBtn,
.header:hover .searchBtn {
    filter: brightness(0) invert(0.3);
}

.header.fixed .nav h3 a {
    color: #000;

}

.header:hover .nav h3 a {
    color: #000;
}

.header:hover .nav h3 a:hover {
    color: #e70012;

}






.nav {
    float: right;
}

.nav li {
    float: left;
    padding: 0 32px;
    position: relative;
}

.nav h3 a {
    color: #fff;
    font-size: 18px;
    line-height: 95px;
    position: relative;
}

.nav h3 a:hover {
    color: #e70012;
}


/*.nav .on h3 a { color: #e70012; }*/



.nav b {
    background: url(../images/d3.png);
    width: 20px;
    height: 20px;
    background-size: 100%;
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 5px;
}

.sub {
    width: 100%;
    position: absolute;
    background: #fff;
    left: 0;
    top: 95px;
    display: none;
}

.sub dt a {
    display: block;
    text-align: center;
    line-height: 22px;
    padding: 10px 0px;
    font-size: 15px;
    color: #333;
    transition: all 0.4s ease-in-out;
    font-weight: normal;
}

.sub dt a:hover {
    color: #fff;
    background: #036eb8;
}

.banner {
    position: relative;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.banner .swiper-pagination {
    bottom: 35px;
}

.banner .swiper-pagination-bullet {
    opacity: 1;
    width: 60px;
    height: 4px;
    background: #fff;
    border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
    background: #58c318;
}

.banner_text {
    position: absolute;
    /* width: 1200px; */
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner_text h3 {
    font-size: 64px;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    margin-top: -20px;
    letter-spacing: 2px;

}

.banner_text h3 img {
    width: 100%;
}

.banner_text p {
    color: #fff;
    line-height: 1.6;
    font-size: 22px;
    text-align: center;
}

.banner_text h2 {
    width: 796px;
    margin: 0 auto;
}

.bywm_bj {
    background: url(../images/index_about-bg.jpg) no-repeat center center;
    background-size: cover;
}

.bywm {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
    overflow: hidden;
    padding: 145px 0 50px;
    position: relative;


}

.wywm_left {
    float: left;
    width: 50%;
    padding-right: 80px;
    position: relative;
    z-index: 1;
}

.wywm_left h2 {
    font-weight: bold;
    font-size: 36px;
    color: #e70012;
    margin-bottom: 10px;
}

.wywm_left h3 {
    line-height: 1.6;
    font-size: 26px;
    color: #000;
    margin-bottom: 40px;
}

.wywm_left h4 {
    color: #FFFFFF;
    font-size: 120px;
    font-weight: 700;
    line-height: 1.4;
    position: absolute;
    left: 0;
    top: -80px;
    z-index: -1
}

.wywm_left p {
    font-size: 16px;
    color: #333;
    line-height: 34px;
    word-break: break-all;
    text-align: justify;
    max-width: 33.75rem;
    width: 81%;
}

.wywm_left a {
    display: block;
    text-align: center;
    width: 180px;
    line-height: 52px;
    background: #e70012;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-top: 50px;
    transition: All 0.4s ease-in-out;
}

.wywm_left a:hover {
    background: #ad000e;
}

.wywm_left a img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 9px;
}



.btn_r a {
    display: block;
    text-align: center;
    width: 180px;
    line-height: 52px;
    background: #e70012;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-top: 40px;
    transition: All 0.4s ease-in-out;
}

.btn_r a:hover {
    background: #ad000e;
}

.btn_r a img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 9px;
}

.gywm_right {
    position: absolute;
    text-align: right;
    width: 61%;
    padding-bottom: 50%;
    max-width: 57.1875rem;
    right: 0;
    top: 0px;
    z-index: 0;
}

.gywm_right em {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.gywm_right em {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

.gywm_right:hover em {
    -webkit-transform: scale(1.06);
    transform: scale(1.06);
}

/* .gywm_right img {
    width: 100%;

} */


.bfbtn {
    cursor: pointer;
    width: 105px;
    height: 105px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(../images/icon-video.png) center no-repeat;
}

.bfbtn,
.bfbtn:before,
.bfbtn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 75px;
    width: 75px;
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
    -webkit-animation: pulse-animation 3s infinite;
    -khtml-animation: pulse-animation 3s infinite;
    -moz-animation: pulse-animation 3s infinite;
    -ms-animation: pulse-animation 3s infinite;
    -o-animation: pulse-animation 3s infinite;
    animation: pulse-animation 3s infinite;
}

.pulse-animation:before {
    -webkit-animation-delay: 0.9s;
    -khtml-animation-delay: 0.9s;
    -moz-animation-delay: 0.9s;
    -ms-animation-delay: 0.9s;
    -o-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.pulse-animation:after {
    -webkit-animation-delay: 0.6s;
    -khtml-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    -ms-animation-delay: 0.6s;
    -o-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes pulse-animation {
    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes pulse-animation {
    70% {
        -webkit-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 60px rgba(255, 255, 255, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -khtml-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.dhbj {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    display: none;
}

.tvbox {
    position: fixed;
    width: 1280px;
    max-width: 90%;
    z-index: 101;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    border-radius: 15px;
    display: none;
}

.ggbtn {
    position: absolute;
    background: url(../images/d2.png) no-repeat center center;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    top: -15px;
    right: -15px;
    cursor: pointer;
    border-radius: 50%;
    background-size: 20px 20px;
    transition: All 0.4s ease-in-out;
}

.ggbtn:hover {
    transform: rotate(180deg);
}

.wzlc {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
}

.wzlcbox {
    padding: 20px 0 80px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    padding: 45px 0 32px; */

}

.wzlcbox ul {
    overflow: hidden;
}

.wzlcbox li {
    float: left;
    width: 25%;
    position: relative;
    text-align: center;
}

.wzlcbox li:before {
    position: absolute;
    content: "";
    border-right: 1px solid #eee;
    height: 100%;
    top: 0;
    right: 0;
}

.wzlcbox h2 {
    color: #777;
    font-size: 15px;
    margin-bottom: 15px;
}

.wzlcbox h2 span {
    font-size: 60px;
    color: #333;
    font-weight: 700;
}

.wzlcbox p {
    font-size: 15px;
    color: #666;
}

.wzlcbox li:last-child:before {
    border: none;
}

.zyyw {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
}

.zyyw_title {
    text-align: center;
    padding: 95px 0 50px;
}

.zyyw_title h2 {
    font-weight: bold;
    font-size: 48px;
    color: #333333;
    padding-bottom: 48px;
    position: relative;
}

.zyyw_title h2:before {
    position: absolute;
    content: "";
    border-bottom: 5px solid #036eb8;
    width: 70px;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.zyyw_title p {
    font-size: 18px;
    line-height: 26px;
    color: #999;
    padding: 0 15%;
}

.zyyw_nr {
    padding-bottom: 97px;
}

.zyyw_nr ul {
    overflow: hidden;
    margin-left: -30px;
}

.zyyw_nr li {
    float: left;
    width: 25%;
    padding-left: 30px;
}

.zyywbox {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.zyywbox img {
    width: 100%;
    transition: All 0.4s ease-in-out;
}

.zyyw_text {
    position: absolute;
    width: 100%;
    padding: 0 30px 35px 30px;
    left: 0;
    bottom: 0;
    transition: All 0.4s ease-in-out;
}

.zyyw_text h2 {
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

.zyyw_text h3 {
    color: #fff;
    font-size: 15px;
    margin: 15px 0;
}

.zyyw_text p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
    height: 0;
    overflow: hidden;
    transition: All 0.4s ease-in-out;
}

.zyyw_text a {
    display: block;
    width: 32px;
    height: 32px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    background: url(../images/a_04.png) no-repeat center center;
    transition: All 0.4s ease-in-out;
}

.zyywbox:hover .zyyw_text p {
    height: auto;
    padding-bottom: 20px;
}

.zyywbox:hover img {
    opacity: .6;
}

.zyyw_text a:hover {
    background: url(../images/a_04.png) no-repeat center center #036eb8;
    border: 1px solid #036eb8;
}


.cpzs_text {
    background: url(../images/a_36.png) no-repeat center center;
    background-size: cover;
    text-align: center;
    height: 282px;
    position: relative;
}

.cpzs_text:before {
    position: absolute;
    background: url(../images/a_10.png);
    width: 288px;
    height: 80px;
    content: "";
    left: 0;
    bottom: -1px;
    background-size: 100% 100%;
}

.cpzs_text:after {
    position: absolute;
    background: url(../images/a_11.png);
    width: 288px;
    height: 80px;
    content: "";
    right: 0;
    bottom: -1px;
    background-size: 100% 100%;
}

.cpzs_text h2 {
    color: #fff;
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    padding: 58px 0 48px;
    position: relative;
}

.cpzs_text h2:before {
    position: absolute;
    content: "";
    border-bottom: 5px solid #036eb8;
    width: 70px;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}

.cpzs_text p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    width: 940px;
    max-width: 94%;
    margin: 0 auto;
}

.cpzsbj {
    background: url(../images/a_12.png) no-repeat center center;
    background-size: cover;
}

.cpxq {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.cpzs_tt {
    overflow: hidden;
    padding: 0 75px;
}

.cpxq_left {
    float: left;
    width: 50%;
    padding-top: 30px;
}

.cpxq_left h2 {
    font-size: 24px;
    color: #333333;
    line-height: 64px;
    color: #333333;
    border-bottom: 1px solid #c1c1c1;
    margin-bottom: 35px;
    position: relative;
}

.cpxq_left h2:before {
    position: absolute;
    content: "";
    border-bottom: 3px solid #036eb8;
    width: 95px;
    left: 0;
    bottom: -2px
}

.cpxq_left p {
    font-size: 16px;
    color: #333333;
    line-height: 2;
    text-align: justify;
    word-break: break-all;
}

.cpxq_left a {
    display: block;
    text-align: center;
    width: 220px;
    line-height: 60px;
    background: #036eb8;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-top: 50px;
    transition: All 0.4s ease-in-out;
}

.cpxq_left a:hover {
    background: #236d03;
}

.cpxq_left a img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 15px;
}

.cpxq_right {
    float: right;
    width: calc(50%);
    padding-left: 70px;
}

.cpxq_right img {
    width: 100%;
}

.cpxq .swiper-button-next {
    background: url(../images/a_45.png);
    width: 32px;
    height: 32px;
    margin-top: -16px;
}

.cpxq .swiper-button-prev {
    background: url(../images/a_42.png);
    width: 32px;
    height: 32px;
    margin-top: -16px;
}

.pro_bg {
    background: url(../images/pro_bj.jpg) no-repeat center center;
    background-size: cover;
    margin-top: 110px;
}

.cplb {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
    padding: 95px 0 75px;
}

.cplb .tit_name {
    margin-bottom: 50px;
}

.cplbbox {
    border: 1px solid #e1e1e1;
    margin-bottom: 30px;
}

.cplbbox img {
    width: 100%;
}

.cplbtext {
    padding: 10px 20px 20px 20px;
    border-top: 1px solid #e1e1e1;
    background: #eaeaea;
    text-align: center;
    transition: All 0.4s ease-in-out;
}

.cplbtext h2 {
    color: #000;
    font-size: 22px;
    line-height: 54px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.cplbtext p {
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    opacity: .7;
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.cplb a:hover .cplbtext {
    background: #036eb8;
}

.cplb a:hover h2 {
    color: #fff;
}

.cplb a:hover p {
    color: #fff;
}

.cplb .swiper-button-next {
    width: 75px;
    height: 35px;
    right: calc(50% - 85px);
    margin-top: 0;
    top: auto;
    bottom: 0;
    background: url(../images/a_15.png) no-repeat center center #eaeaea;
    transition: All 0.4s ease-in-out;
}

.cplb .swiper-button-prev {
    width: 75px;
    height: 35px;
    left: calc(50% - 85px);
    margin-top: 0;
    top: auto;
    bottom: 0;
    background: url(../images/a_16.png) no-repeat center center #eaeaea;
    transition: All 0.4s ease-in-out;
}

.cplb .swiper-container {
    padding-bottom: 65px;
}

.cplb .swiper-button-next:hover {
    background: url(../images/a_15a.png) no-repeat center center #036eb8;
}

.cplb .swiper-button-prev:hover {
    background: url(../images/a_16a.png) no-repeat center center #036eb8;
}

.bj3 {
    background: url(../images/a_14.png) no-repeat center center;
    background-size: cover;
    padding-bottom: 55px;
}

.gxal {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
}

.gxal_title {
    text-align: center;
    padding: 95px 0 80px;
}

.gxal_title h2 {
    position: relative;
    font-weight: bold;
    color: #fff;
    font-size: 36px;
    padding-bottom: 45px;
}

.gxal_title h2:before {
    position: absolute;
    content: "";
    border-bottom: 5px solid #036eb8;
    width: 70px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.gxal_title p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    margin: 0 auto;
    width: 930px;
    opacity: .75;
    max-width: 94%;
}

.gxalbox {
    padding: 15px 15px 25px 15px;
    position: relative;
    background: #fff;
    transition: All 0.4s ease-in-out;
}

.gxalbox:before {
    border-bottom: 5px solid #036eb8;
    width: 100%;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

.gxalbox img {
    width: 100%;
}

.btn3 {
    display: block;
    text-align: center;
    width: 220px;
    line-height: 60px;
    background: #036eb8;
    border-radius: 30px;
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin: 45px auto 0 auto;
    transition: All 0.4s ease-in-out;
}

.btn3:hover {
    background: #236d03;
}

.btn3 img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 0 0 15px;
}

.gxal_nr .swiper-container {
    padding-bottom: 65px;
}

.gxal_nr .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: #fff;
}

.gxal_nr .swiper-pagination-bullet-active {
    background: #68cd3c;
}

/* 工程案例导航按钮样式 */
.gxal_nr .swiper-button-next,
.gxal_nr .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.gxal_nr .swiper-button-next::after,
.gxal_nr .swiper-button-prev::after {
    font-size: 20px;
    font-weight: bold;
    color: #036eb8;
}

.gxal_nr .swiper-button-next {
    right: -25px;
}

.gxal_nr .swiper-button-prev {
    left: -25px;
}

.gxal_nr .swiper-button-next:hover,
.gxal_nr .swiper-button-prev:hover {
    background: #036eb8;
    transform: translateY(-50%) scale(1.1);
}

.gxal_nr .swiper-button-next:hover::after,
.gxal_nr .swiper-button-prev:hover::after {
    color: white;
}

/* 移动端调整 */
@media (max-width: 768px) {

    .gxal_nr .swiper-button-next,
    .gxal_nr .swiper-button-prev {
        width: 40px;
        height: 40px;
        display: none;
        /* 移动端隐藏导航按钮，使用触摸滑动 */
    }

    .gxal_nr .swiper-container:hover .swiper-button-next,
    .gxal_nr .swiper-container:hover .swiper-button-prev {
        display: flex;
    }
}

.gxaltext h2 {
    font-size: 22px;
    line-height: 70px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gxaltext a {
    font-size: 14px;
    line-height: 38px;
    color: #333;
    border-bottom: 1px solid #dddddd;
    display: block;
    background: url(../images/a_15.png) no-repeat right center;
}

.gxalbox:hover {
    background: #036eb8;
}

.gxalbox:hover h2 {
    color: #fff;
}

.gxalbox:hover a {
    color: #fff;
    border-bottom: 1px solid #fff;
    background: url(../images/a_15a.png) no-repeat right center;
}

/* 工程案例卡片动画效果 */
.gxalbox {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease-in-out;
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

/* 工程案例卡片动画效果延迟 */
.gxalbox:nth-child(1) {
    animation-delay: 0.1s;
}

.gxalbox:nth-child(2) {
    animation-delay: 0.2s;
}

.gxalbox:nth-child(3) {
    animation-delay: 0.3s;
}

.gxalbox:nth-child(4) {
    animation-delay: 0.4s;
}

.gxalbox:nth-child(5) {
    animation-delay: 0.5s;
}

.gxalbox:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 案例指示器动画效果 */
.gxal_nr .swiper-pagination-bullet {
    transition: all 0.3s ease;
}

.gxal_nr .swiper-pagination-bullet.pulse {
    animation: pulseBullet 0.3s ease-out;
}

@keyframes pulseBullet {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.gxalbox:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* 工程案例图片放大效果 */
.gxalbox img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gxalbox:hover img {
    transform: scale(1.05);
}

/* 工程案例标题悬停效果增强 */
.gxaltext h2 {
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.gxalbox:hover .gxaltext h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gxalbox:hover .gxaltext h2::after {
    transform: scaleX(1);
}

/* 案例区域整体美化 */
.gxal_nr {
    position: relative;
    padding: 20px 0;
}

.gxal_nr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #036eb8, transparent);
    opacity: 0.5;
}

.news {
    width: 1500px;
    max-width: 94%;
    margin: 0 auto;
    padding-bottom: 82px;
}

.news .n_title {
    margin-bottom: 50px;
}

.news_nr {
    overflow: hidden;
}

.news_right {
    float: right;
    width: 50%;
    padding-left: 25px;
}

.news_right li {
    padding-bottom: 40px;
    margin-top: 10px;
}

.news_right ul li:last-child {
    padding-bottom: 0;
}

.newsbox {
    overflow: hidden;
}

.news_l {
    float: left;
    width: 85px;
    text-align: right;
}

.news_l h2 {
    font-weight: bold;
    font-size: 28px;
    color: #444;
    margin-bottom: 18px;
}

.news_l p {
    font-size: 13px;
    color: #979797;
}

.news_r {
    float: right;
    width: calc(100% - 130px);
    border-left: 1px solid #dbdbdb;
    padding-left: 24px;
}

.news_r h2 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news_r p {
    font-size: 15px;
    color: #333;
    line-height: 24px;
    opacity: 0.7;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    height: 48px;
}

.news_right a:hover h2 {
    color: #036eb8;
}

.news_left {
    float: left;
    width: calc(50% - 25px);
    position: relative;
    overflow: hidden;
}

.news_left a {
    display: block;
    height: 473px;
    overflow: hidden;
    position: relative;
}

.news_left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_left p {
    font-size: 22px;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    padding: 0 120px 0 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #fff;
    line-height: 60px;
}

.news_left .swiper-pagination {
    text-align: right;
    height: 28px;
    text-align: right;
    padding-right: 20px;
}

.news_left .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    opacity: 1;
    background: #fff;
}

.news_left .swiper-pagination-bullet-active {
    background: #036eb8;
}

.bj1 {
    background: #f2f2f2;
}

.hzhb {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
}

.hzhb_nr {
    margin-top: 50px;
}

.hzhb_nr ul {
    overflow: hidden;
    margin-left: -27px;
    padding-bottom: 5px;
}

.hzhb_nr li {
    float: left;
    width: 20%;
    padding: 0 0 20px 20px;
}

.hzhb_nr li a {
    display: block;
    overflow: hidden;
    border: 1px solid #d5dadd;
}

.hzhb_nr img {
    width: 100%;
}

.img2 {
    transition: All 0.4s ease-in-out;
    -webkit-transition: All 0.4s ease-in-out;
    -moz-transition: All 0.4s ease-in-out;
    -o-transition: All 0.4s ease-in-ou
}

.img2:hover {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
}

.bj2 {
    background: #0367ac url(../images/lybg.jpg) no-repeat center bottom;
    background-size: 100% 100%;
}

.tjxx {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
    padding: 45px 0;
}

.tjxx ul {
    overflow: hidden;
    margin-left: -70px;
}

.tjxx li {
    float: left;
    width: 25%;
    padding-left: 70px;
}

.wby2 {
    width: 100%;
    border-bottom: 1px solid #228dd6;
    padding: 0 0 0 35px;
    height: 50px;
    background: url(../images/a_66.png) no-repeat left center;
    color: #fff;
    line-height: 49px;
}

.wby2::-webkit-input-placeholder {
    color: #fff;
}

.wby3 {
    width: 100%;
    border-bottom: 1px solid #228dd6;
    padding: 0 0 0 35px;
    height: 50px;
    background: url(../images/a_68.png) no-repeat left center;
    color: #fff;
    line-height: 49px;
}

.wby3::-webkit-input-placeholder {
    color: #fff;
}

.wby4 {
    width: 100%;
    border-bottom: 1px solid #228dd6;
    padding: 0 0 0 35px;
    height: 50px;
    background: url(../images/a_71.png) no-repeat left center;
    color: #fff;
    line-height: 49px;
}

.wby4::-webkit-input-placeholder {
    color: #fff;
}

.btn4 {
    width: 100%;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    border: none;
    font-size: 24px;
    color: #024e9b;
    cursor: pointer;
}

.tjxx_top h2 {
    font-size: 26px;
    color: #fff;
    line-height: 1.5;
    margin: 65px 0 15px;
    text-align: center;
}

.tjxx_top p {
    line-height: 1.5;
    font-size: 14px;
    color: #fff;
    opacity: 0.6;
    text-align: center;
}

.footer {
    background: #e7edf2;
}

.footerbox {
    margin: 0 auto;
    width: 1500px;
    max-width: 94%;
    /*overflow: hidden; */
    padding: 30px 0 40px;
}

.foot_top {
    /*overflow: hidden;*/
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
    display: flow-root;
}

.foot_top h2 {
    float: left;
}

/*.foot_top ul{overflow: hidden; float: right;}
.foot_top li{float: left; padding-left: 6px;font-size: 14px; color: #333; line-height: 30px;}
.foot_top li img{transition: All 0.4s ease-in-out;}
.foot_top li a:hover img{opacity: 0.5;}*/
.foot_top .fenxian {
    float: right;
    padding-top: 15px;
}

.foot_bottom {
    overflow: hidden;
    padding-top: 50px;
}

.foot_left {
    float: left;
    width: calc(100% - 520px);
}

.foot_left ul {
    overflow: hidden;
}

.foot_left li {
    float: left;
    width: 25%;
}

.foot_left h2 {
    font-size: 22px;
    position: relative;
    padding-bottom: 30px;
    color: #3b3a3a;
}

.foot_left h2:before {
    position: absolute;
    content: "";
    border-bottom: 1px solid #b6babc;
    width: 65px;
    bottom: 15px;
    left: 0;
}

.foot_left dt {
    font-size: 15px;
    line-height: 32px;
}

.foot_left a {
    color: #666666;
}

.foot_left a:hover {
    color: #036eb8;
}

.foot_right {
    float: right;
    max-width: 520px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.rwm {
    float: right;
}

.rwm p {
    margin-left: 15px;
}

.rwm img {
    width: 100%;
}

.rwm_text {
    margin-top: 20px;
    width: calc(100% - 70px);
    text-align: right;
}

.rwm_text span {
    display: inline-block;
    line-height: 39px;
    font-size: 13px;
    color: #525252;
    padding: 0 15px;
    background: #cfcfcf;
    margin-bottom: 15px;
}

.rwm_text h2 {
    font-size: 28px;
    color: #036eb8;
    margin: 20px 0 10px;
}

.rwm_text h2 img {
    display: inline-block;
    vertical-align: middle;
    margin: -3px 14px 0 0;
}

.rwm_text p {
    font-size: 15px;
    line-height: 28px;
    color: #666666;
}

.bqxx {
    background: #fff;
    text-align: center;
}

.bqxx p {
    color: #3b3a3a;
    font-size: 15px;
    line-height: 28px;
    text-align: center;
    padding: 25px 3%;
}

.bqxx p span {
    padding: 0 10px;
}


/*首页行业案例*/
.title_01 .con1 {
    font-weight: bold;
    font-size: 36px;
    color: #e70012;
}

.title_01 .con2 {
    font-size: 17px;
    color: #666;
    margin-top: 20px;
}


.wMain {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
}

.pb {
    padding-bottom: 5.625rem;
}

.pt {
    padding-top: 5.625rem;
}

.Home_Product {
    position: relative;
}

.Home_Product .waves2 {
    height: 500px;
    width: 100%;
    position: absolute;
    bottom: -40px;
    left: 0;
}

/* 产品中心标题视觉设计 */
.product-title-section {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
}

.title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.title-bg-pattern {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    padding: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(3, 110, 184, 0.1);
}

.title-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 110, 184, 0.05) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

.title-bg-pattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.8) 100%);
    opacity: 0.7;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.title-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.title-main {
    margin-bottom: 30px;
}

.main-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
}

.title-text {
    font-size: 48px;
    font-weight: 700;
    color: #036eb8;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #036eb8, #58c318);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #036eb8, #58c318);
    border-radius: 2px;
}

.title-en {
    font-size: 18px;
    color: #666;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 5px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 25px 0;
}

.decoration-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(90deg, #e1e1e1, transparent);
    opacity: 0.6;
}

.right-line {
    background: linear-gradient(90deg, transparent, #e1e1e1);
}

.decoration-icon {
    margin: 0 20px;
    background: linear-gradient(135deg, #036eb8, #58c318);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(3, 110, 184, 0.3);
    animation: pulseIcon 3s infinite ease-in-out;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(3, 110, 184, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(3, 110, 184, 0.4);
    }
}

.layui-icon-chart {
    color: white;
}

.title-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    font-weight: 300;
    position: relative;
    display: inline-block;
}

.title-subtitle::before,
.title-subtitle::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #036eb8;
    font-size: 16px;
    opacity: 0.7;
}

.title-subtitle::before {
    left: -30px;
}

.title-subtitle::after {
    right: -30px;
}

.title-action {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: linear-gradient(90deg, #036eb8, #58c318);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(3, 110, 184, 0.3);
    position: relative;
    overflow: hidden;
}

.action-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.action-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 110, 184, 0.4);
}

.action-button:hover::before {
    left: 100%;
}

.action-button span {
    margin-right: 10px;
}

.action-button i {
    transition: transform 0.3s ease;
}

.action-button:hover i {
    transform: translateX(5px);
}

/* 标题悬停效果 */
.title-bg-pattern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title-bg-pattern {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .title-text {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .title-en {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .decoration-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .decoration-line {
        width: 60px;
    }

    .title-subtitle {
        font-size: 18px;
        padding: 0 10px;
    }

    .title-subtitle::before,
    .title-subtitle::after {
        font-size: 14px;
    }

    .title-subtitle::before {
        left: -20px;
    }

    .title-subtitle::after {
        right: -20px;
    }

    .action-button {
        padding: 10px 25px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .title-bg-pattern {
        padding: 25px 15px;
    }

    .title-text {
        font-size: 28px;
    }

    .title-en {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .decoration-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 15px;
    }

    .decoration-line {
        width: 40px;
    }

    .title-subtitle {
        font-size: 16px;
    }

    .title-subtitle::before,
    .title-subtitle::after {
        display: none;
    }

    .action-button {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* 手风琴效果样式 */
.accordion-container {
    width: 100%;
    overflow: hidden;
    margin-top: 45px;
}

.accordion-scroll {
    display: flex;
    width: 100%;
    gap: 10px;
}

.accordion-item {
    flex: 1;
    min-width: 0;
    transition: flex 0.4s ease-in-out, transform 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.accordion-item:hover {
    flex: 2.5;
    transform: scale(1.02);
    z-index: 5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.accordion-header {
    position: relative;
    height: 520px;
    overflow: hidden;

}

.accordion-header .img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.accordion-header .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.accordion-item:hover .accordion-header .img img {
    transform: scale(1.05);
}

.accordion-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    transition: all 0.4s ease-in-out;
    z-index: 2;
}

.accordion-item:hover .accordion-title {
    opacity: 0;
    transform: translateY(20px);
}

.accordion-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    background: rgba(3, 110, 184, 0.95);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 3;
    box-sizing: border-box;
}

.accordion-item:hover .accordion-content {
    opacity: 1;
    transform: translateY(0);
    border-radius: 8px;
}

.accordion-content .content1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 35px;
    text-align: center;
    line-height: 1.3;
}

.accordion-content .content2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 16px;
}

.accordion-content .content2 p {
    text-align: justify;
    padding-top: 10px;
    padding-bottom: 20px;
    line-height: 24px;
    text-align-last: center;
}

.accordion-content .content2 a {
    color: #fff;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: background 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.accordion-content .content2 a:hover {
    background: rgba(255, 255, 255, 0.3);
}

.accordion-content .content2 em {
    color: rgba(255, 255, 255, 0.6);
    line-height: 32px;
}

.accordion-content .content3 {
    text-align: center;
    margin-top: 20px;
}

.accordion-content .content3 a {
    display: inline-block;
    color: #fff;
    padding: 10px 25px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.accordion-content .content3 a:hover {
    background: #fff;
    color: #036eb8;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .accordion-scroll {
        flex-wrap: wrap;
        gap: 15px;
    }

    .accordion-item {
        flex: 0 0 calc(50% - 7.5px);
        height: 250px;
    }

    .accordion-header {
        height: 250px;
    }

    .accordion-title {
        font-size: 18px;
        padding: 15px;
    }

    .accordion-content {
        padding: 20px 15px;
    }

    .accordion-content .content1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .accordion-content .content2 {
        font-size: 14px;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .accordion-item {
        flex: 0 0 100%;
        height: 220px;
    }

    .accordion-header {
        height: 220px;
    }

    .accordion-title {
        font-size: 16px;
        padding: 12px;
    }

    .accordion-content .content1 {
        font-size: 20px;
    }

    .accordion-content .content2 {
        font-size: 13px;
    }
}

.Home_Product .box .item {
    margin-right: 10px;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.Home_Product .box .item:last-child {
    margin-right: 0;
}

.Home_Product .box .item .img {
    position: relative;
    overflow: hidden;
}

.Home_Product .box .item .img img {
    min-width: 100%;
    height: var(--h1);
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
}

.Home_Product .box .item .img::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.1)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.Home_Product .box .item .img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
    opacity: 0;
}

.Home_Product .box .item .one {
    bottom: 0.5rem;
    left: 0;
    width: 100%;
    position: absolute;
    z-index: 3;
    font-size: var(--f20);
    color: #fff;
    text-align: center;
    font-family: "MIB";
    line-height: 1.3;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.Home_Product .box .item .two {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    min-width: var(--w1);
    z-index: 4;
    width: 100%;
    padding: 0 0.5rem;
    opacity: 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.Home_Product .box .item .two>div {
    color: #fff;
}

.Home_Product .box .item .two>div .content1 {
    font-size: var(--f28);
    font-family: "MB";
    margin-bottom: 0.12rem;
}

.Home_Product .box .item .two>div .content1 br {
    display: none;
}

.Home_Product .box .item .two>div .content2 {
    font-family: "MM";
    font-size: var(--f20);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.Home_Product .box .item .two>div .content2 a {
    color: #fff;
    position: relative;
    margin-bottom: 0.1rem;
    padding-bottom: 3px;
}

.Home_Product .box .item .two>div .content2 a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: 0.4s;
}

.Home_Product .box .item .two>div .content2 a:hover::after {
    width: 100%;
}

.Home_Product .box .item .two>div .content2 em {
    margin: 0 0.1rem 0.1rem;
    opacity: 0.8;
    padding-bottom: 3px;
}

.Home_Product .box .item .two>div .content2 em:last-child {
    display: none;
}



.Home_Product .box .item .two>div .content3 {
    font-size: var(--f16);
    margin-top: 0.36rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.Home_Product .box .item .two>div .content3 i {
    font-size: var(--f16);
    margin: 5px;
    display: inline-block;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.Home_Product .box .item .two>div .content3:hover i {
    -webkit-transform: translateX(0.1rem);
    -ms-transform: translateX(0.1rem);
    transform: translateX(0.1rem);
}



/*首页案例*/
.index_case {
    width: 1500px;
    margin: 0 auto;
    max-width: 94%;
    padding: 55px 0 50px;
}


.homed .slide-d .item .imgBox {
    border-radius: .15rem;
    overflow: hidden;
    position: relative;
}

.homed .slide-d .item .imgBox:after {
    content: '';
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: url(../images/blackmsb.png) no-repeat bottom center;
    background-size: 100% 100%;
    height: 40%;
    z-index: 1;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
}

.homed .slide-d .item .imgBox:before {
    content: '';
    position: absolute;
    left: -1px;
    right: 0px;
    bottom: 0px;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    transition: .3s
}

.homed .slide-d .item .imgBox .img {
    padding-bottom: 46.3%;
    overflow: hidden;
}

.homed .slide-d .item .imgBox .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.homed .slide-d .item:hover .imgBox .img img {
    transform: scale(1.02);
}

.homed .slide-d .item.swiper-slide-active .imgBox:after {
    opacity: .6;
    visibility: visible;
}

.homed .slide-d .item.swiper-slide-active .imgBox:before {
    opacity: 0;
    visibility: hidden;
}

.homed .slide-d .item.swiper-slide-active .txt {
    opacity: 1;
    visibility: visible;
}

.homed .slide-d .item .txt {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 3;
    padding: 40px;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.homed .slide-d .item .txt .more {
    position: absolute;
    right: 40px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background: url(../images/arrmore.png) no-repeat center;
    z-index: 3
}

.homed .slide-d .item .txt .more:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, .6);
    transform: rotate(45deg)
}

.homed .slide-d .item .txt h4 {
    font-weight: normal;
    font-size: 26px;
}

.homed .slide-d .item .txt p {
    color: rgba(255, 255, 255, .8);
}

.homed .slide-d .item .txt p span {
    display: inline-block;
    margin-right: 25px;
    padding: 5px 0;
    font-size: 16px;
}

.homed .slide-d .swiBtn a {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .9);
    text-align: center;
    line-height: 50px;
    margin-top: -25px;
    transition: .3s
}

.homed .slide-d .swiBtn a:hover {
    background: #e60012;
    color: #fff
}

.homed .slide-d .swiBtn a.prev {
    left: calc(13.4% - 50px);
    background: url(../images/arr_l.png) no-repeat;
}

.homed .slide-d .swiBtn a.next {
    right: calc(13.4% - 49px);
    background: url(../images/arr_r.png) no-repeat;
}


.header00 {
    position: relative;
    text-align: center;
    background: #f2f2f2;

}

.inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0
}

.flex {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: 0px;
    max-height: 150px;
    margin-bottom: -2px;
}

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0)
    }

    100% {
        transform: translate3d(85px, 0, 0)
    }
}
@media screen and (max-width: 1450px) {
.nav li {  padding: 0 24px;}


}
@media screen and (min-width: 1200px) {
    .Home_Product .box .active {
        -webkit-box-flex: 2.9;
        -webkit-flex: 2.9;
        -ms-flex: 2.9;
        flex: 2.9;
    }

    .Home_Product .box .active .img img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    .Home_Product .box .active .img::before {
        opacity: 0;
    }

    .Home_Product .box .active .img::after {
        opacity: 1;
    }

    .Home_Product .box .active .one {
        opacity: 0;
    }

    .Home_Product .box .active .two {
        opacity: 1;
        left: 0;
    }
}



@media(max-width:1380px) {
    .header {
        height: 90px;
    }

    .nav li {
        padding: 0 15px;
    }

    .nav h3 a {
        font-size: 16px;
        line-height: 90px;
    }

    .lxdh {
        margin-top: 25px;
        width: 155px;
    }

    .lxdh p {
        font-size: 14px;
    }

    .logo {
        width: 180px;
        padding-top: 20px;
    }

    .ssbtn {
        margin-right: 20px;
        margin-top: 35px;
    }

    .banner_text h2 {
        width: 500px;
    }

    .banner_text h3 {
        font-size: 32px;
    }

    .banner_text p {
        font-size: 24px;
    }

    .gywm_right {
        padding-left: 0;
    }

    .wzlcbox h2 span {
        font-size: 40px;
    }

    .bywm {
        padding: 65px 0 50px;
    }

    .wywm_left h3 {
        font-size: 22px;
    }
}

@media(max-width:1200px) {



    .zyyw_nr li {
        width: 50%;
        padding-bottom: 20px;
    }

    .cpzs_text:after,
    .cpzs_text:before {
        width: 200px;
        height: 60px;
    }

    .cpxq_left {
        float: none;
        width: 100%;
    }

    .cpxq_right {
        float: none;
        width: 100%;
        padding: 0;
    }

    .news_left {
        float: none;
        width: 100%;
    }

    .news_left a {
        height: auto;
    }

    .news_right {
        width: 100%;
        padding: 30px 0 0 0;
    }

    .foot_left {
        float: none;
        width: 100%;
    }

    .foot_right {
        float: none;
        margin: 0 auto;
        padding-top: 30px;
    }
}

@media(max-width:1000px) {
    .header {
        height: 60px;
    }

    .logo {
        padding-top: 10px;
        width: 140px;
    }

    .lxdh {
        display: none;
    }

    .ssbtn {
        display: none;
    }

    .dhbtn {
        width: 30px;
        height: 30px;
        background: url(../images/d1.png) no-repeat center center #0267ab;
        background-size: 20px 20px;
        border-radius: 4px;
        right: 3%;
        top: 15px;
        position: absolute;
    }

    .wywm_left {
        float: none;
        width: 100%;
        padding: 0 0 30px;
    }

    .gywm_right {
        float: none;

        padding: 0;
    }

    .dhbtn.on {
        background: url(../images/d2.png) no-repeat center center #51a72c;
        background-size: 20px 20px;
    }

    .nav {
        width: 200px;
        height: calc(100% - 60px);
        left: -200px;
        top: 60px;
        background: #fff;
        position: fixed;
    }

    .nav li {
        float: none;
        padding: 0 15px;
        border-bottom: 1px solid #eee;
    }

    .nav h3 a {
        line-height: 50px;
    }

    .sub {
        position: static;
    }

    .sub dt a {
        text-align: left;
        padding-left: 15px;
    }

    .dhbj {
        position: fixed;
        z-index: 10;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .7);
        display: none;
    }

    .fgt {
        height: 60px;
    }

    .banner_text h2 {
        width: 260px;
    }

    .banner_text p {
        font-size: 14px;
    }

    .banner_text h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .banner .swiper-pagination {
        bottom: 10px;
    }

    .banner .swiper-pagination-bullet {
        width: 15px;
    }

    .bywm {
        padding: 50px 0 30px 0;
    }

    .wywm_left h2 {
        font-size: 24px;
    }

    .wywm_left h3 {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .wywm_left p {
        font-size: 14px;
        line-height: 1.7;
    }

    .wywm_left a {
        margin: 30px auto 0 auto;
    }

    .wzlcbox h2 span {
        font-size: 32px;
    }

    .wzlcbox li {
        width: 50%;
        margin-bottom: 25px;
    }

    .wzlcbox ul li:nth-child(2) {
        border: none;
    }

    .zyyw_title {
        padding: 50px 0 30px;
    }

    .zyyw_title p {
        padding: 0;
        font-size: 14px;
        line-height: 1.6;
    }

    .zyyw_title h2 {
        font-size: 24px;
    }

    .zyyw_nr li {
        width: 100%;
    }

    .zyyw_nr {
        padding-bottom: 40px;
    }

    .cpzs_text h2 {
        font-size: 24px;
        padding-top: 25px;
    }

    .cpzs_text p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cpxq_left h2 {
        font-size: 20px;
        line-height: 2;
        margin-bottom: 15px;
    }

    .cpzs_tt {
        padding: 0 50px;
    }

    .cpxq_left p {
        font-size: 14px;
        line-height: 1.6;
    }

    .cpxq_left a {
        margin: 20px auto 0 auto;
    }

    .cplb {
        padding: 50px 0;
    }

    .gxal_title {
        padding: 50px 0 30px;
    }

    .gxal_title h2 {
        font-size: 24px;
    }

    .gxal_title p {
        line-height: 1.6;
        font-size: 14px;
    }

    .gxaltext h2 {
        font-size: 18px;
        line-height: 45px;
    }

    .news_left p {
        font-size: 14px;
    }

    .news_l {
        width: 80px;
    }

    .news_r {
        width: calc(100% - 90px);
        padding-left: 10px;
    }

    .news_r h2 {
        font-size: 18px;
    }

    .news_r p {
        font-size: 13px;
    }

    .news_l h2 {
        font-size: 24px;
    }

    .hzhb_nr li {
        width: 33.33%;
        padding: 0 0 10px 10px;
    }

    .hzhb_nr ul {
        margin-left: -10px;
    }

    .tjxx li {
        float: none;
        width: 100%;
    }

    .btn4 {
        margin-top: 25px;zoom: 0.8;
    }

    .tjxx_top h2 {
        margin-top: 30px;
        font-size: 16px;
    }

    .foot_top h2 {
        float: none;
    }

    .foot_top h2 img {
        width: 180px;
        margin: 0 auto;
    }

    .foot_top ul {
        float: none;
        text-align: center;
        padding-top: 25px;
    }

    .foot_top li {
        display: inline-block;
        padding: 0 2px;
        float: none;
        vertical-align: middle;
    }

    .foot_left {
        display: none;
    }

    .foot_bottom {
        padding: 0;
    }

    .foot_right {
        float: none;
        width: 100%;
    }

    .rwm {
        float: none;
        /* width: 120px; */
        margin: 0 auto;
    }

    .rwm_text {
        float: none;
        width: 100%;
        padding-top: 25px;
        text-align: center;
    }

    .bqxx p {
        font-size: 12px;
        line-height: 1.6;
    }

    .bqxx p span {
        padding: 0 2px;
    }

    .nav b {
        position: absolute;
        right: 15px;
        top: 20px;
    }

    .foot_top .fenxian {
        float: none;
        text-align: center;
    }


}