html {
    --color: #26428E;
    --font-family: 'Arial';
    --border-color: rgba(102, 102, 102, 0.2);
}

a:hover {
    color: unset;
}

.bowen {
    position: relative;
}

.bowen::after,
.bowen::before {
    content: '';
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   

}

.bowen::after{
  animation-delay: 0.7s;
}
@keyframes eff68{
  0%{
    box-shadow: 0 0 0 0px #0093E9;
    opacity: 0.3;
  }
  100%{
    box-shadow: 0 0 0 30px #0093E9;
    opacity: 0;
  }

}
.bowen:hover{
    transform: scale(0.96);
}
.bowen:hover::after,
.bowen:hover::before {
    /* animation-play-state: paused; */
    animation: eff68 0.8s linear infinite;
}


.w1600 {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.w1520 {
    width: 100%;
    max-width: 1520px;
    margin: 0 auto;
}

.w1500 {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
}

.w1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    /* transform: translateX(-100px); */
}

.w1250 {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.w1200 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.w1000 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.w850 {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.flex-x {
    display: flex;
    flex-direction: row;
}

.flex-y {
    display: flex;
    flex-direction: column;
}

.flex-align {
    justify-content: space-between;
    align-items: center;
}

button {
    cursor: pointer;
}

p,
a {
    font-size: inherit;
    color: inherit;
}

.menu {
    /* display: none; */
}

/*手机导航开始menu*/
.menu {
    display: block;
    cursor: pointer;
}


.menu span.icon-bar {
    background: var(--color);
    width: 30px;
    height: 2px;
    display: block;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
	margin : 0 auto;
}

.menu .sr-only {
    /* display: none; */
    display: block;
    margin-top: 10px;
    color: var(--color);
}
.menu .icon-bar:nth-child(1) {
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
    transform-origin: top left;
}
.menu .icon-bar:nth-child(2) {
    margin-top: 8px;
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
    transform-origin: top left;
}

.menu .icon-bar:nth-child(3) {
    margin-top: 8px;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    /* -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center; */
    transform-origin: top left;
}

/* .menu .icon-bar:nth-child(4) {
    margin-top: 15px;
    -webkit-transform: rotate(0deg) translate(0, 0);
    -moz-transform: rotate(0deg) translate(0, 0);
    -ms-transform: rotate(0deg) translate(0, 0);
    transform: rotate(0deg) translate(0, 0);
    transform-origin: top left;
} */

.xz .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(0,0);
    -moz-transform: rotate(45deg) translate(0,0);
    -ms-transform: rotate(45deg) translate(0,0);
    transform: rotate(45deg) translate(4px,-6px);
    transform-origin: 0 0;
}

.xz .icon-bar:nth-child(2) {
    opacity: 0;
}

.xz .icon-bar:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(0,0);
    -moz-transform: rotate(-45deg) translate(0,0);
    -ms-transform: rotate(-45deg) translate(0,0);
    transform: rotate(-45deg) translate(4px,4px);

}

/*手机导航结束*/

.menu_down {
    display: none;
}


body {
    background: #fff;
    max-width: 1920px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px ;
}
header{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    width: 80px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    box-shadow: 0 0 5px 3px rgba(0,0,0,.2);
}
header .logo{
    width: 80%;
    padding: 30px 0;
    margin: 0 auto;

}
header .toContact{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    background: #A8A9AD;
    color: #fff;
    cursor: pointer;
   
}
header .toContact:hover{
    background: var(--color);
}
header .toContact i{
    font-size: 30px;
}

.nav{
    position: fixed;
    top: 0;
    left:-100%;
    z-index: 9;
    background: rgba(45,72,145,1);
    width: 100%;
    height: 100%;
    /* padding: 6% 0 6% 100px; */
    padding-left: 100px;
    transition: all .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.nav.active{
    left: 0;
    top: 0;
}
.nav .top{
    border-bottom: 1px solid rgba(255,255,255,.1);
    width: 100%;
    color: #fff;
    padding-bottom: 3%;
}
.nav .top .nav1{
    justify-content: space-between;
}
.nav .top .nav1>li{
    padding-right: 50px;
}
.nav .top .nav1>li .nav2>li{
    font-size: 16px;
    line-height: 1.6;
    margin: 10px 0;
    max-width: 400px;
}
.nav .top .nav1>li .nav2>li:first-child{
    font-size: 30px;
    padding-bottom: 15px;
    position: relative;
    margin:  0 0 20px;
    font-weight: bold;
}
.nav .top .nav1>li .nav2>li:first-child::after{
    content: '';
    width: 30px;
    height: 5px;
    background: #D80213;
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav .bottom{
    width: 100%;
    padding: 50px 0 30px;
    color: #fff;
}
.nav .bottom h3{
    font-size: 30px;
    padding-bottom: 15px;
    position: relative;
    margin:  0 0 10px;
    font-weight: bold;
}
.nav .bottom h3::after{
    content: '';
    width: 30px;
    height: 5px;
    background: #D80213;
    position: absolute;
    bottom: 0;
    left: 0;
}
.nav .bottom ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}
.nav .bottom ul li{
    font-size: 18px;
    line-height: 1.6;
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-right: 50px;
}
.nav .bottom ul li i{
    color: #0050FF;
    margin-right: 10px;
    font-size: 24px;
}
.nav .bottom ul li:first-child{
    width: 100%;
    font-size: 26px;
    flex-direction: column;
    align-items: flex-start;
}
.nav .bottom ul li:first-child i{
    font-size: 30px;
    margin-bottom: 5px;
    line-height: 1;
}

.nav .close-btn{
    position: absolute;
    top: 6%;
    right: 6%;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
}
.banner{
    width: 100%;
    height: 100vh;
    overflow: hidden;

}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper-slide{
    width: 100%;
    height: 100vh;
    position: relative;
}
.banner .swiper-slide img{
    width: 100%;
    height: 100%;
}
.banner .info{
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 40%;
    max-width: 600px;

}
.banner .info h2{
    font-size: 60px;
    line-height: 1.2;
    color: #fff;
    font-weight: bold;
}

.index-page1{
    width: 100%;
    height: 100vh;
    background: url('../images/index_page1_bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.index-page1 h2{
    font-size: 150px;
    font-weight: bold;
    color: #000;
}
.index-page1 h5{
    font-size: 24px;
    color: #333;
    margin: 60px 0;
    padding-bottom: 50px;
    position: relative;
    width: 85%;
    line-height: 1.6;
}
.index-page1 h5::after{
    content: '';
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: var(--color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.index-page1 .bottom{
    justify-content: space-between;
    align-items: flex-end;
}
.index-page1 .bottom ul{
    gap: 100px;
    padding-bottom: 20px;
}
.index-page1 .bottom ul li{
    text-align: center;
}
.index-page1 .bottom ul li img{
    width: 58px;
    object-fit: contain;
    margin-bottom: 20px;
}
.index-page1 .bottom ul li .p1{
    font-size: 28px;
    line-height: 1.6;
    color: #666;
}
.index-page1 .bottom ul li .p2{
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}
.index-page1 .bottom  .more span{
    font-size: 16px;
    color: #666;
    margin-right: 20px;
}
.index-page1 .bottom  .more:hover .bowen{
	transform: scale(0.96);
}
.index-page1 .bottom  .more:hover .bowen::after,
.index-page1 .bottom  .more:hover .bowen::before {
    /* animation-play-state: paused; */
    animation: eff68 0.8s linear infinite;
}
.index-page1 .bottom  .more i{
    font-size: 24px;
    padding: 16px;
    border-radius: 50%;
    background: var(--color);
    color: #fff;
}

.index-page2{
    width: 100%;
    background: url('../images/index_page2_bg.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;

}
.index-page2 ul{
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.index-page2 ul li{
    padding-top: 160px;
    position: relative;
}
.index-page2 ul li:nth-child(odd) .img1{
    width: 66%;
    object-fit: contain;
    position: relative;
    z-index: 5;
}
.index-page2 ul li:nth-child(odd) .img2{
    width: 300px;
    object-fit: contain;
    position: absolute;
    z-index: 1;
    top: 120px;
    left: calc(66% - 300px);
}
.index-page2 ul li:nth-child(odd) .img3{
    position: absolute;
    bottom: -20px;
    left: calc(66% - 200px);
    width: 340px;
    z-index: 7;
}
.index-page2 ul li:nth-child(odd) .w-bg{
    height: 230px;
    width: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    left: calc(66% - 180px);
    z-index: 6;
}
.index-page2 ul li .bg{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #fff;
}
.index-page2 ul li:nth-child(odd) .info{
    width: 40%;
    position: absolute;
    right: 0;
    top: 0;
    padding: 40px 5% 40px 10%;
    border: 3px  solid #fff;
}
.index-page2 ul li .info h3{
    font-size: 28px;
    color:#000;
    font-weight: bold;
}
.index-page2 ul li .info p{
    font-size: 14px;
    line-height: 2;
    color: #666;
    margin: 60px 0;
}
.index-page2 ul li .info .more{
    font-size: 14px;
    color:#000;
    text-decoration: underline;
	transition: 0.3s ease-in-out;
}
.index-page2 ul li .info .more:hover{
	display:inline-block;
	font-weight:bold;
	transform:translateX(10px);
}
.index-page2 ul li .info .more:hover{
    color: #f00;
}

.index-page2 ul li:nth-child(even) .img1 {
    width: 66%;
    margin-left: 34%;
    object-fit: contain;
    position: relative;
    z-index: 5;
}
.index-page2 ul li:nth-child(even) .img2 {
    width: 300px;
    object-fit: contain;
    position: absolute;
    z-index: 1;
    top: 120px;
    left:40%;
}
.index-page2 ul li:nth-child(even) .img3 {
    position: absolute;
    bottom: -30px;
    right: calc(66% - 160px);
    width: 340px;
    z-index: 7;
}
.index-page2 ul li:nth-child(even) .w-bg{
    height: 230px;
    width: 300px;
    overflow: hidden;
    position: absolute;
    bottom: 0px;
    right: calc(66% - 180px);
    z-index: 6;
}
.index-page2 ul li:nth-child(even) .info{
    width: 40%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 40px 10% 40px 5%;
    border: 3px  solid #fff;
}
.index-page3{
    height: 520px;
    background: url('../images/index_page3_bg.jpg') no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.index-page3 .w1000{
    height: 100%;
    position: relative;
}
.index-page3 .swiper{
    height: calc(100% + 50px);
   padding-bottom: 50px;
}
.index-page3 .swiper-slide{
    width: 100%;
    height: 100%;
    padding: 60px 40px;
    color: #fff;
}
.index-page3 .swiper-slide .info h4{
    font-size: 30px;
    font-weight: bold;
}
.index-page3 .swiper-slide .info p{
    font-size: 16px;
    line-height: 30px;
    margin: 20px 0 40px;
    width: 45%;
}
.index-page3 .swiper-slide .info .more{
    font-size: 14px;
    color:#fff;
    text-decoration: underline;
}
.index-page3 .swiper-slide .info .more:hover{
    color: #f00;
}
.index-page3 .swiper-slide .img{
    width: 450px;
    position: absolute;
    bottom: -50px;
    right:20px;
}
.index-page3 .my-swiper-button{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
   cursor: pointer;
    color: #Fff;
}
.index-page3 .my-swiper-button i{
    font-size: 20px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.index-page3 .my-swiper-button.my-swiper-button-next{
    right: 0;
}
.index-page3 .my-swiper-button.my-swiper-button-next i{
    display: inline-block;
    transform: rotate(180deg);
}
.index-page3 .my-swiper-button.my-swiper-button-prev{
    left: 0;
}

.index-page4{
    background: url('../images/index_page4_bg.jpg') no-repeat  top right;
    background-size: cover;
    width: 100%;
    padding: 50px 0 100px;
}
.index-page4 .w1400{
   align-items: end;
}
.index-page4 .w1400 h2{
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 50px;
    font-weight: bold;
}
.index-page4 ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    gap: 30px;
    padding: 0 50px;
}

.index-page4 ul li .top{
    padding: 80px 0 20px;
    position: relative;
    background: #D2D5D9;
    transform: skewX(25deg);

}
.index-page4 ul li .top span{
    position: absolute;
    top: 15px;
    left: 10%;
    background: #D2D5D9;
    transform: skew(-24deg);
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}
.index-page4 ul li .top h4{
    width: 80%;
    height: 120px;
    margin: 0 auto;
    font-size: 32px;
    line-height: 40px;
    font-weight: bold;
    transform: skew(-24deg) translateX(5%);
}
.index-page4 ul li p{
    width: 95%;
    transform: translateX(55px);
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
}

.index-page5{
    padding: 100px 0;
}
.index-page5 h2{
    font-size: 80px;
    font-weight: bold;
    color: var(--color);
}
.index-page5 .form{
    margin: 100px 0 50px;
}
.index-page5 .form .title{
    font-size: 16px;
    line-height: 40px;
}
.index-page5 .form input{
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}
.index-page5 .form .top{
    margin-bottom: 20px;
}
.index-page5 .form .top ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.index-page5 .form .top ul li{
    width: 49%;
}
.index-page5 .form .bottom ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}
.index-page5 .form .bottom li{
    width: 49%;
}
.index-page5 .form .bottom li .w{
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
}
.index-page5 .form .bottom li .input-list{
    background: none;
    cursor: pointer;
    width: 80%;
    border: 0;
    pointer-events: none;
}
.index-page5 .form .bottom li .w::after{
    content: '';
    display: inline-block;
    border-top: 14px solid #ccc;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);

}
.index-page5 .form .bottom li.li-list{
    position: relative;
}
.index-page5 .form .bottom li.li-list .pList{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    display: none;
    padding: 10px 0;
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.1);
    max-height: 300px;
    overflow-y: auto;
}
.index-page5 .form .bottom li.li-list .pList li{
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    /* border-bottom: 1px solid #ccc; */
}
.index-page5 .form .bottom li.li-list .pList li:hover{
    background: #eeeeee66;
}
.index-page5 .submit{
    text-align: right;
}
.index-page5 .submit button{
    padding: 15px 40px;
	background: var(--color);
   
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
	transition:0.5s ease-in-out;
}
.index-page5 .submit button:hover{
	 background:#f00;
}




.banner2 {
        width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.banner2 .img {
    width: 100%;
    height: 100%;
}

.banner2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner2 .w1400 {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    /* width: 100%; */
    color: #fff;
}

.banner2 .w1400 h2 {
    font-size: 120px;
    line-height: 1.4;
}

.banner2 .w1400 h3 {
    font-size: 24px;
    line-height: 1.2;
}
.about-page1{
    width: 100%;
    padding: 100px 0;
    background: #F1F1F1;
	overflow:hidden;
}
.about-page1 .w1400{
    justify-content: space-between;
    align-items: flex-end;
}
.about-page1 .left{
    width: 46%;
}
.about-page1 .left h3{
    font-size: 72px;
    color: var(--color);
    font-weight: bold;
    margin-bottom: 10px;
}
.about-page1 .left .editor{
    font-size: 24px;
    line-height: 2;
}
.about-page1 .right{
    width: 46%;
}
.about-page1 .right img{
    width: 100%;
    object-fit: contain;
}
.about-page2{
    background: url('../images/about_page_2.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 140px 0;
    text-align: center;
}
.about-page2 h4{
    font-size: 36px;
    line-height: 1.6;
    font-weight: bold;
}
.about-page2 h2{
    font-size: 58px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--color);
}
.about-page2 .editor{
    text-align: center;
    font-size: 26px;
    line-height: 50px;
}

.service-title h4{
   font-size: 30px;
   line-height: 1.6;
   font-weight: bold;
}
.service-title h2{
    font-size: 48px;
    line-height: 1;
    font-weight: bold;
    color: var(--color);
    padding-bottom: 40px;
    position: relative;
}
.service-title h2::after{
    content: '';
    display: inline-block;
    width: 60px;
    height: 6px;
    border-radius: 3px;
    background: #f00;
    position: absolute;
    bottom: 0;
    left: 0;
   
}

.service-page1{
    padding: 100px 0;
    background: url('../images/service_page_1.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.service-page1 ul{
    margin-top: 80px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 80px;
}
.service-page1 ul li{
    width: 50%;
    padding-right: 10%;
}
/* .service-page1 ul li:last-child{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.service-page1 ul li:last-child h3{
    font-size: 36px;
    color:var(--color);
    font-weight: bold;
    line-height: 1.2;
    padding: 5px 0 10px;
} */
.service-page1 ul li .tit{
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.service-page1 ul li .tit span{
    font-size: 50px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 50%;
    background: var(--color);
    color: #fff;
    margin-right: 20px;
}
.service-page1 ul li .tit span.bowen::after,
.service-page1 ul li .tit span.bowen::before {
    content: '';
    width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   

}
.service-page1 ul li:hover .tit span.bowen{
    transform: scale(0.96);
}
.service-page1 ul li:hover .tit span.bowen::after,
.service-page1 ul li:hover .tit span.bowen::before {
    /* animation-play-state: paused; */
    animation: eff68 0.8s linear infinite;
}

.service-page1 ul li .tit h3{
    font-size: 36px;
    color:var(--color);
    font-weight: bold;
    line-height: 1.2;
	flex:1;
}
.service-page1 ul li .editor{
    font-size: 24px;
    line-height: 2;
    color: #333;
}
.service-page2{
    padding: 40px 0 40px calc(50% - 700px);
    justify-content: space-between;
    align-items: center;
}
.service-page2 .left{
    width: 46%;
}
.service-page2 .left .editor{
    margin-top: 30px;
    font-size: 24px;
    line-height: 2;
    color: #333;
}
.service-page2 .right{
    width: 50%;
}
.service-page2 .right img{
    height: 100%;
    object-fit: cover;
}
.service-page3{
    background: #f1f1f1;
    padding: 100px 0;
}
.service-page3 ul{
    margin-top: 30px;
    border: 1px solid #ccc;
    display: flex;
    flex-direction: row;

}
.service-page3 ul li{
    width: 25%;
    border-right: 1px solid #ccc;
    padding: 40px 25px;
}
.service-page3 ul li:last-child{
    border-right: none;
}

.service-page3 ul li .p1{
    font-size: 24px;
    color: var(--color);
    line-height: 1.1;
    margin-bottom: 30px;
}
.service-page3 ul li .p2{
    font-size: 18px;
    line-height: 30px;
    color: #333;
}

.contact-page{
    width: 100%;
    padding: 120px 0 90px;
    background: url('../images/index_page4_bg.jpg') no-repeat center;
    background-size: cover;
}
.contact-page .flex-x{
    justify-content: space-between;
}
.contact-page .left{
    width: 48%;
}
.contact-page .left .title{
    font-size: 80px;
    font-weight: bold;
    line-height: 1;
    color: var(--color);
}
.contact-page .left .editor{
    font-size: 20px;
    line-height: 2;
    margin: 20px 0 30px;
}
.contact-page .left img{
    width: 100%;
    object-fit: contain;
}
.contact-page .right{
    width: 44%;
    padding-top: 180px;
}
.contact-page .right .form .title{
    font-size: 16px;
    line-height: 40px;
}
.contact-page .right .form input{
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.contact-page .right .form .top{
    margin-bottom: 20px;
}
.contact-page .right .form .top ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.contact-page .right .form .top ul li{
    width: 49%;
}
.contact-page .right .form .bottom>ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-page .right .form .bottom .w{
    cursor: pointer;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    border: 1px solid #ccc;
    background: #fff;
}
.contact-page .right .form .bottom .w::after{
    content: '';
    display: inline-block;
    border-top: 14px solid #ccc;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
.contact-page .right .form .bottom .w .input-list{
    background: none;
    cursor: pointer;
    width: 80%;
    border: 0;
    pointer-events: none;
}
.contact-page .right .form .bottom li.li-list{
    position: relative;
}
.contact-page .right .form .bottom li.li-list .pList{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #f1f1f1;
    display: none;
    padding: 10px 0;
    box-shadow: 0 2px 3px 1px rgba(0,0,0,.1);
    max-height: 300px;
    overflow-y: auto;
}
.contact-page .right .form .bottom li.li-list .pList li{
    padding: 10px 20px;
    cursor: pointer;
    width: 100%;
    /* border-bottom: 1px solid #ccc; */
}
.contact-page .right .form .bottom li.li-list .pList li:hover{
    background: #eeeeee66;
}
.contact-page .right .submit{
    text-align: right;
    margin-top: 20px;
}
.contact-page .right .submit button{
    padding: 15px 40px;
    background: var(--color);
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}



.product-page{
    padding: 100px 0;
    background: url('../images/product_page_bg.jpg') no-repeat top center;
    background-size: 100% auto;
}
.product-page .title{
    justify-content: space-between;
    align-items: flex-start;
}
.product-page .title .left h2{
    font-size: 90px;
    font-weight: bold;
}
.product-page .title .right{
    width: 45%;
    padding-right: 20px;
    padding-top: 20px;
    font-size: 24px;
    line-height: 1.2;
    color: #444;
}
.product-page .title .right a{
    display: inline-block;
    margin-top: 30px;
    color: var(--color);
    font-weight: bold;
    padding: 0  0 10px;
    border-bottom: 1px solid #ccc;
}
.product-page .title .right a:hover{
	color:#f00;
}
.product-page .title .right a i{
    font-size: 26px;
    margin-left: 10px;
    color: #f00;
}
.product-page .product-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
    flex-wrap: wrap;
    gap: 50px;
    padding: 120px 0 0px;
    border-bottom: 1px solid rgba(0,0,0,.1);
}
.product-page .product-list li{
    text-align: center;
    padding-bottom: 20px;
}
.product-page .product-list li.active{
    border-bottom: 3px solid #1A4ACF;
}
.product-page .product-list li:hover{
    border-bottom: 3px solid #1A4ACF;
}
.product-page .product-list li img{
    height: 60px;
    margin-bottom: 20px;
}
.product-page .product-list li p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    color: #333;
}
.product-page .product-info{
    margin-top: 40px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    padding: 70px 8%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.product-page .product-info .left{
    width: 48%;
}
.product-page .product-info .left h5{
    font-size: 22px ;
    color: #999;
    line-height: 2;
}
.product-page .product-info .left h3{
    font-size: 48px;
    font-weight: bold;
    color: var(--color);
    padding-bottom: 40px;
    position: relative;
    margin-bottom: 30px;
}
.product-page .product-info .left h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 6px;
    background: #f00;
}
.product-page .product-info .left  h4{
    font-size: 22px;
    line-height: 2;
    color: var(--color);
}
.product-page .product-info .left .editor{
    font-size: 16px;
    line-height: 30px;
    height: 150px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 20px 0;
}
.product-page .product-info .left a{
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    color: #fff;
    background: var(--color);
    border-radius: 20px;
}
.product-page .product-info .left a:hover{
	background:#f00;
}
.product-page .product-info .left a i{
    font-size: 16px;
    margin-right: 15px;
    -webkit-text-stroke-width:0px;
}
.product-page .product-info .right{
    width: 48%;
}
.product-page .product-info .right img{
    width: 100%;
    object-fit: contain;
	transition:0.5s ease-in-out;
}
.product-page .product-info .right:hover img{
	transform: scale(1.05);
	
}
.product-page .product-other-info{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 15px;
}
.product-page .product-other-info .p-nav{
    width: 100%;
    border-bottom: 1px  solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: row;
}
.product-page .product-other-info .p-nav li{
    max-width: 50%;
    border-right: 1px solid rgba(0,0,0,.1);
}
.product-page .product-other-info .p-nav li a{
   display: inline-block;
    padding: 30px 50px;
    font-size: 16px;
    color: #666;
    
}
.product-page .product-other-info .p-nav li.active a{
    background: var(--color);
    color: #FFf;
}
.product-page .product-other-info .p-nav li:hover a{
    background: var(--color);
    color: #FFf;
}
.product-page .product-other-info .other-info{
    padding: 70px 50px 30px;
}
.product-page .product-other-info .other-info .title{
    font-size: 30px;
    line-height: 1.6;
    font-weight: bold;
    color: var(--color);
    margin-bottom: 20px;
}
.product-page .product-other-info .swiper1{
    border:1px solid rgba(0,0,0,.1);
   
}
.product-page .product-other-info .swiper1 .swiper-slide{
    height: auto;
    border-left: 1px solid rgba(0,0,0,.1);
    padding: 30px 25px 80px;
    position: relative;
}
.product-page .product-other-info .swiper1 .swiper-slide:first-child{
    border-left-width:0px;
}
.product-page .product-other-info .swiper1 .swiper-slide h3{
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
    color: #ccc;
    font-weight: bold;
}
.product-page .product-other-info .swiper1 .swiper-slide .editor{
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
}
.product-page .product-other-info .swiper1 .swiper-slide .img{
    width: 100%;
    text-align: right;
    position: absolute;
    bottom: 30px;
    right: 0;
}
.product-page .product-other-info .swiper1 .swiper-slide .img img{
    height: 50px;
    object-fit: contain;
    margin-right: 30px;
}

.product-page .product-other-info .other-info2 .bottom{
    position: relative;
}
.product-page .product-other-info .other-info2 .other-info2-info{
    position: absolute;
    left: 0 ;
    top: 0;
    width: 30%;
    z-index: 6;
    padding: 60px 20px;
    min-height: 80%;
    background: var(--color);
    color: #fff;
}
.product-page .product-other-info .other-info2 .other-info2-info h4{
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.product-page .product-other-info .other-info2 .other-info2-info .editor{
    line-height: 2;
    font-size: 16px;
}
.product-page .product-other-info .other-info2 .swiper2{
    width: 80%;
    margin-left: 20%;
    padding-bottom: 40px;  
}
.product-page .product-other-info .other-info2 .swiper2 .swiper-slide img{
    width: 100%;
    object-fit: contain;
}
.product-page .product-other-info .other-info2 .swiper2 .my-bullet{
    width: 40px;
    height: 8px;
    display: inline-block;
    background: #ccc;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
}
.product-page .product-other-info .other-info2 .swiper2 .my-bullet.my-bullet-active{
    background: var(--color);
}














footer{
    width: 100%;
    background: #F1F1F1;
    padding-top: 50px;
}
footer .top{
    padding: 40px 0 30px 10%;
    border-top: 1px solid rgba(0,0,0,.1);
    border-bottom: 1px solid rgba(0,0,0,.1);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
footer .top .logo{
    width: 100px;
}
footer .top .logo img{
    width: 100%;
    object-fit: contain;
}
footer .top ul{
    display: flex;
    flex-direction: row;
}
footer .top ul i{
    color: #999;
    font-size: 24px;
}
footer .top ul li a{
    display: inline-block;
    padding-left: 20px;;
}
footer .bottom{
    padding: 30px 0 30px 10%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    color: #666;
}
footer .bottom ul li{
    font-size: 16px;
    padding-right: 60px;
    position: relative;
}
footer .bottom ul li::after{
    content: '/';
    position: absolute;
    right: 28px;
    color: rgba(102,102,102, 0.2);
}
footer .bottom ul li:last-child::after{
    display: none;
}
footer .bottom>p{
    font-size: 14px;
}

.newslist{
  /*  background: #f2f5fa;   */
}
.news_con{
    padding:5% 0;
}
.news_con ul{
    padding-bottom: 1%;
}
.news_con li {
     background: #fff; 
    padding: 35px 30px;
  /*  box-shadow: 0 0 6px #ccc;  */
    margin-top: 20px;
}

.news_con li a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.news_con li figure {
    max-width:47%;
}
.news_con li figure h3 {
    font-size: 23px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news_con li figure p {
    font-size: 14px;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 25px 0 40px;
}
.news_con li figcaption {
    width: 50%;
    height: 35rem;
    overflow: hidden;
}
.news_con li figcaption img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news_con li figure h3:before{
    width: 0;
    content: '';
    display: inline-block;
    height: 1px;
    background: #0a4397;
    transition: ease .3s;
    vertical-align: middle;

}
.news_con li:hover h3{
    color: #0a4397;
}
.news_con li:hover h3:before{
    width: 40px;
    margin-right: 5px;
}
.news_con li:hover p{
    color: #444;
}
.news_con li:hover div{
    color: #444;
}
.news_all {
  /*  background: #f2f5fa;   */
    padding: 50px 0;
}
.newsdetail {
    max-width: 1400px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 90px;
    border-radius: 30px;
    overflow: hidden;
}
.newsdetail aside {
    width: 100%;
    text-align: center;
    color: #999;
    font-size: 14px;
}
.newsdetail h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #0a4397;
    padding: 20px 0 20px;
}
.news_eidt {
    font-size: 16px;
    line-height: 48px;
    color: #666;
}