html {
    --color: #37487E;
    --color2: #0426A0;
    --font-family: 'Arial';
}

a:hover {
    color: var(--color);
}

.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;
}

.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;
}

.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: initial;
} */

.menu {
    display: none;
}

.menu_down {
    display: none;
}


body {
    background: #fff;
}


header {
    width: 100%;
    height: 100px;
    background: none;
    font-size: 16px;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    z-index: 100;
    transition: all .8s ease;

}
.header2{
    /* position: fixed; */
    z-index: 999;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
}
.header2-bg{
    background: #fff;
    color: #000;
}
header.header2-bg .nav>li a {
    color: #000;
}

header.header2-bg .header-right .btn .icon {
    color: var(--color);
}
header.header-bg {
    background: #fff;
    color: #000;
}

header.header-bg .nav>li a {
    color: #000;
}

header.header-bg .header-right .btn .icon {
    color: var(--color);
}
header:hover{
    background: #fff;
    color: #000;
}
header:hover .nav>li a {
    color: #000;
}

header:hover .header-right .btn .icon {
    color: var(--color);
}

header.header-animate {
    transform: translateY(-100%);
    opacity: 0;
}

header>.w1400 {
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
header .w1400>.right{
    display: flex;
    flex-direction: row;
    align-items: center;
}
header .logo {
    width: 10%;
    height: 60px;
    position: relative;
}

header .logo a {
    display: inline-block;
    height: 100%;
}

header .logo img {
    height: 100%;
}

header .logo .logo1 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transition: all .5s ease;
}

header.header-bg .logo1 {
    opacity: 0;
}
header.header2-bg .logo1 {
    opacity: 0;
}

header .logo .logo2 {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all .5s ease;
}

header.header-bg .logo2 {
    opacity: 1;
}
header.header2-bg .logo2 {
    opacity: 1;
}

header:hover .logo2 {
    opacity: 1;
}
header:hover .logo1 {
    opacity: 0;
}

header .nav {
    width: 65%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

}

header .nav>li>a {
    display: block;
    height: 100px;
    line-height: 100px;
    padding: 0 20px;
    font-size: 16px;
    color: #fff;
}

header .nav>li::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color);
    position: absolute;
    bottom: 0;
    left: 0;
    display: none;
}

header .nav>li+li {
    margin-left: 10px;
}

header .nav>li.active>a {
    color: #fff;
	background:var(--color);
}

header .nav>li:hover>a {
    color: #fff;
	background:var(--color);
}

header .nav2 {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 9;
    transition: .5s ease;
    clip-path: inset(0 0 100% 0);
    /* border-top: 1px solid #ddd; */
}

header .nav2>.w1400 {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
}

header .nav2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
    z-index: 100;
}

header .nav>li:hover .nav2 {
    clip-path: inset(0 0 0 0);
}

header .nav2 .nav2-list {
    min-width: 400px;
    padding: 50px 80px 50px 50px;
    border-right: 1px solid #ddd;
}

header .nav2 .nav2-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

header .nav2 .nav2-list li a {
    flex: 1;
    font-size: 18px;
    line-height: 2;
    height: auto;
    color: #000;
}

header .nav2 .nav2-list li:hover a {
    color: var(--color);
}

header .nav2 .nav2-list li::after {
    content: '>';
    font-size: 18px;

}

header .nav2 .right {
    flex: 1;

}

header .nav2 .right .nav3 {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

header .nav2 .right .nav2-list-item {
    display: none;
	width:100%;
}

header .nav2 .right .nav2-list-item.active {
    display: block;
}

header .nav2 .nav3-list {
    min-width: 40%;
    /* min-width: 200px; */
    max-height: 600px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

header .nav2 .nav3-list li {
    margin: 10px 30px;
}

header .nav>li:hover .nav2 .nav3-list a {
    height: auto;
    font-size: 18px;
    line-height: 2;
	color:#000;
}
header .nav>li:hover .nav2 .nav3-list a:hover{
	 color:var(--color2);
}
header .nav2 .nav3-list-img {
    max-width: 500px;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

header .nav2 .nav3-list-img li {
    display: none;
	width:100%;
	background:#F4F4F4;
}
header .nav2 .nav3-list-img li  a{
	
	display:flex;
	align-items:center;
	justify-content:center;
	width:100%;
	height:100%;
	padding:30px;

}
header .nav2 .nav3-list-img li.active {
    display: block;
}

header .nav2 .nav3-list-img img {
		max-height:360px;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-right {
    display: flex;
    flex-direction: row;

    align-items: center;
    margin-right: 30px;
}

.header-right .btn {
    margin-left: 18px;
    cursor: pointer;
    display: flex;
    /* align-items: center; */
}

.header-right .icon {
    color: #fff;
}

.header-right .search-btn .icon {
    font-size: 20px;
}

.header-right .email-btn .icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right .language-btn {
    position: relative;
}

.header-right .language-btn .icon {
    font-size: 18px;
}

.header-right .language-btn:hover .language-list {
    display: block;
}

header .language-list {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: -15px;
    z-index: 2;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
    width: 100px;
    margin-top: -1px;
    padding: 20px 10px;
    line-height: 36px;
    text-align: center;
}

header .language-list::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
}

header .language:hover .language-list {
    display: block;
}

.search {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    /* display: flex;
    align-items: center;
    justify-content: center; */
    display: none;
}

.search-box {
    width: 40%;
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translateY(-50%);
}

.search-box h2 {
    font-size: 36px;
    line-height: 110px;
    font-weight: bold;
    color: #fff;
}

.search-box .input-box {
    position: relative;
}

.search-box input {
    width: 100%;
    height: 70px;
    border-radius: 10px;
    background: #FDFDFA;
    padding: 0 70px 0 25px;
    font-size: 16px;
}

.search-box .input-box .icon {
    font-size: 30px;
    color: #fff;
    background: #0B52A8;
    padding: 10px 15px;
    border-radius: 10px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.search-box h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #ccc;
    margin: 25px 10px 15px;
}

.search-box ul {
    color: #ccc;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 10px;
}

.search-box ul li {
    line-height: 2;
    font-size: 16px;
    margin-right: 20px;
}

.search .search-close {
    position: absolute;
    top: 20%;
    right: 20%;
    cursor: pointer;
}

.search .search-close .icon {
    font-size: 40px;
    color: #fff;
}

.banner {
    /* height: 100vh; */
    margin-top: 100px;
}
.index-banner{
    margin-top: 0;
}

.banner .swiper .swiper-slide {
    height: 100vh;
    position: relative;
	background:url(../images/video2bg.jpg) no-repeat center;
}

.banner .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-banner .swiper .swiper-slide video{
    width: 100%;
    height: 100%;
    object-fit: cover;
	
}
.index-banner .swiper .swiper-slide2 .info-img{
    background: rgba(0, 0, 0, .6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: end;
    align-items: end;
    text-align: center;
}
.index-banner .swiper .swiper-slide2 .info-img .info-img-w{
    width: 70%;
    height: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}   
.index-banner .swiper .swiper-slide2 .info-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .swiper .info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 10;
}

.banner .swiper .info h1 {
    font-size: 75px;
    line-height: 1.2;
    font-weight: bold;
}

.banner .swiper .info h2 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: bold;
    margin-bottom: 10%;
}
.banner .swiper .info a{
	color:#fff;
}
.banner .swiper .info i {
    display: inline-block;
    transform: rotate(90deg);
    font-size: 36px;
}

.banner .swiper .swiper-pagination-bullet {
    background: #fff !important;
    opacity: 1;
    width: 15px;
    height: 15px;
    margin: 0 10px !important;
}

.banner .swiper .swiper-pagination-bullet-active {
    background: #3A4A7E !important;
}

.index-page1 {
    padding: 100px 0;
    background: url('../images/index_page1_bg.png') no-repeat;
    background-size: 1300px auto;
    background-position: 100% -40%;
    /* height: 1000px; */
}

.index-page1 .top {
    justify-content: space-between;
    margin-bottom: 120px;
}

.index-page1 .top h4 {
    color: #0426a0;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
}

.index-page1 .top h2 {
    color: #666;
    font-size: 50px;
    font-weight: bold;
    line-height: 1.1;
}

.index-page1 .top .editor {
    max-width: 600px;
    margin-top: 120px;
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

.index-page1 .top .editor p {
    font-size: 18px;
    line-height: 30px;
    color: #666;
}

.index-page1 .bottom {
    position: relative;
    height: 300px;
    width: calc(50% + 700px);
    left: calc(50% - 700px);
    overflow: hidden;
}
.index-page1 .bottom ul{
    display: flex;
    flex-direction: row;
    width: 100%;
    overflow: hidden;
}
.index-page1 .bottom  li{
    width: 560px !important;
    border: 4px solid #666;
    border-radius: 20px;
    overflow: hidden;
}
.index-page1 .bottom  li:hover{
    border-color: #0427A0;
}
.index-page1 .bottom  li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index-page1 .bottom .swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    height: 100%;
}

.index-page1 .bottom .swiper .swiper-slide {
    width: 560px !important;
    border: 4px solid #666;
    border-radius: 20px;
    overflow: hidden;
}

.index-page1 .bottom .swiper .swiper-slide:hover {
    border-color: #0427A0;
}

.index-page1 .bottom .swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-page2 {
    background: url('../images/index_page2_bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
}

.index-page2 .item{
    display: none;
    position: relative;
    padding-top: 150px;
}
.index-page2 .item:first-child {
    display: block;
}
.index-page2 .item .title{
    position: absolute;
    top: 0;
    left: 50%;
	transform:translateX(-50%);
}
.index-page2 .item .title h2{
    font-size: 86px;
    color: #0426a0;
    font-weight: bold;
    line-height: 1;
}
.index-page2 .item .title li{
    display: none;
}
.index-page2 .item .title li:nth-child(2){
    display: block;
}
.index-page2 .item .title h3{
    font-size: 60px;
    color: #0426a0;
    margin-bottom: 30px;
    line-height: 1;
}
.index-page2 .item .title a{
    display: inline-block;
    border-radius: 25px;
    padding: 0 30px;
    line-height: 50px;
    height: 50px;
    font-size: 14px;
    border: 1px solid #ccc;
}
.index-page2 .swiper{
    height: 600px;
    margin-bottom: 120px;
}
.index-page2 .swiper-slide {
    width: 100%;
    height: 100%;
    transform: scale(0.4) translateY(50%);
    transition: all .5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.index-page2 .swiper-slide>p{
/*     display: none; */
    margin-top: 10px;
    height: 20%;
}
.index-page2 .swiper-slide img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.index-page2 .swiper-slide-active,
.swiper-slide-duplicate-active {
    transform: scale(1.2) translateY(0);

}

.index-page2 .swiper-slide-active p{
	font-size:30px;
    font-weight: bold;
	    color: #0426a0;
}

.index-page2 .swiper .swiper-slide-prev {
    transform-origin: left;
}
.index-page2 .swiper .swiper-slide-prev p{
    display: block;
    font-size: 44px;
    height: 44px;
    line-height: 1;
}
.index-page2 .swiper .swiper-slide-next {
    transform-origin: right;
}
.index-page2 .swiper .swiper-slide-next p{
    display: block;
    font-size: 44px;
    height: 44px;
    line-height: 1;
}
.index-page2 .cut_jump{
    position: absolute;
    bottom: 0px;
    width: calc(50% - 400px);
    height: 250px;
    background: #EDEDED;
    cursor: pointer;
   
}
.index-page2 .cut_jump.prev{
    left: 0;
    border-top-right-radius: 125px;
    border-bottom-right-radius: 125px;
}
.index-page2 .cut_jump p{
    font-size: 16px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-page2 .cut_jump.prev p{
    width: calc(100% - 250px);
    text-align: center;
    line-height: 250px;
    
}
.index-page2 .cut_jump.prev p span{
    display: inline-block;
    width: 0;
  height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 10px solid #0427A0;
   margin-right: 10px;
}
.index-page2 .cut_jump.next p{
    width: calc(100% - 250px);
    text-align: center;
    line-height: 250px;
    margin-left: auto;
}
.index-page2 .cut_jump.next p span{
    display: inline-block;
    width: 0;
  height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #0427A0;
   margin-left: 10px;
}
.index-page2 .cut_jump.next{
    right: 0;
    border-top-left-radius: 125px;
    border-bottom-left-radius: 125px;
}



.index-page2 .classify {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 80px;
    left: 50%;
    z-index: 10;
    transform: translateX(-50%);
}

.index-page2 .classify li {
    margin: 0 10px;
    padding: 0 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid #ccc;
    color: #999;
    font-size: 16px;
    cursor: pointer;
}

.index-page2 .classify li.active {
    background: #0427A0;
    color: #fff;
    border-color: #0427A0;
}
.index-page2 .classify li.active a{
	 background: #0427A0;
    color: #fff;
    border-color: #0427A0;
}
.index-page2 .classify li:hover {
    background: #0427A0;
    color: #fff;
    border-color: #0427A0;
}
.index-page2 .classify li:hover a{
	 background: #0427A0;
    color: #fff;
    border-color: #0427A0;
}

.index-page3 {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height:calc(100vh - 100px);
}
.index-page3 img{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 10;
}
.index-page3 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
   /*  max-width: 1400px; */
    margin:  1px auto;
}

.index-page4{
    background: url('../images/index_page4_bg.jpg') no-repeat center;
    background-size: cover;
    height: 800px;
    width: 100%;
    padding: 150px 0 200px;
    color: #fff;
}
.index-page4 .w1400{
   align-items: end;
}
.index-page4 .left{
    width: 500px;
}
.index-page4 .left h2{
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 20px;
}
.index-page4 .left a{
    display: inline-block;
    border: 1px solid #999;
    border-radius: 25px;
    color: #999;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    margin-bottom: 120px;
}
.index-page4 .left  p{
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 50px;
}

.index-page4 .right{
    width: 620px;
}
.index-page4 .right img{
    width: 350px;
    object-fit: contain;
}
.index-page4 .right p{
    font-size: 50px;
    white-space: nowrap;
    font-weight: bold;
    margin-top: 40px;
    line-height: 1;
}
.index-page5{
    background: url('../images/index_page5_bg.jpg') no-repeat top center;
    background-size: cover;
    min-height: 400px;
    padding: 90px 0 90px calc(50% - 700px);

}
.index-page5 .title{
    font-size: 88px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 50px;
    color: #0427A0;
}
.index-page5 .bottom{
    display: flex;
    flex-direction: row;
}
.index-page5 .left{
    width: 35%;
    height: 500px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    margin-right: 100px;
}
.index-page5 .left img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;

}
.index-page5 .left img:first-child{
    display: block;
}
.index-page5 .right{
    flex: 1;
    padding-top: 30px;
}
.index-page5 .right li{
    border-bottom: 1px solid #e8e8e8;
    padding:30px 40px;
}
.index-page5 .right li:hover{
    background: #F9F9F9;
}
.index-page5 .right .info{
    width: 80%;
    align-items: end;

}
.index-page5 .right .info .info-left{
    width: 80%;
}
.index-page5 .right .info .info-left h3{
    font-size: 20px;
    line-height: 1.2;
    color: #0426A0;
    margin: 10px 0;
}
.index-page5 .right .info .info-left p{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 2;
    color: #666;
}

.index-page5 .right .info .info-right i{
    font-size: 30px;
    color: #999;
}



.banner2{
    position: relative;
    background: #fff;
   /*  height: calc(100vh - 100px); */
	height: 100vh;
    text-align: center;
    background: url('../images/banner_bg.jpg') no-repeat top center;
    background-size: cover;
}
.banner2 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    min-width: 1400px;
}
.banner2 video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0 auto;
    min-width: 1400px;
}
.banner2 .top{
    position: absolute;
    top:0;
    left: 50%;
   transform: translateX(-50%);
   /* width: 100%; */
   height: 600px;
    z-index: 7;
    /* background: #000; */
    display: flex;
    align-items: center;
}

.banner2  .w1400 .title{
    width: 100%;
    text-align: left;
    padding-top: 10%;
}
.banner2  .w1400 .title1{
   /* clip-path: inset(0 0 0% 0); */
  
}
.banner2  .w1400 .title2{
    
    /* clip-path: inset(100% 0 0 0); */
}
.banner2 .w1400 .color{
    font-size: 16px;
    color: #000;
    line-height: 2;
    margin-bottom: 15px;
    font-weight: bold;
}
.banner2 .w1400 .p1{
    font-size: 72px;
    font-weight: bold;
    color: var(--color2);
    line-height: 1;
}
.banner2 .w1400 .title2 .color{
    color: #fff;
}
.banner2 .w1400 .title2 .p1{
    color: #fff;
}
.w{
    /* height: 1000px; */
}
.about-nav{
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
}
.about-nav.page-nav-animate{
    transition: all .3s ease-in-out;
    /* position: fixed; */
    /* position: sticky; */
    top: 100px;
}
.about-nav ul li{
    height: 70px;
    line-height: 70px;
    margin-right: 5%;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    position: relative;
}
.about-nav ul li:hover{
    color: #0426A0;
}
.about-nav ul li:hover::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0426A0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.about-nav ul li.active{
    color: #0426A0;
   
}
.about-nav ul li.active::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0426A0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-nav{
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 100;
    background: #fff;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
}
.page-nav.page-nav-animate{
    /* top: 100px !important; */
    /* transform: translateY(-100px) !important; */
    transition: all .3s ease-in-out;
    /* position: fixed; */
    /* position: sticky; */
    top: 100px;
}
.page-nav ul li{
    height: 70px;
    line-height: 70px;
    margin-right: 5%;
    cursor: pointer;
    color: #666;
    font-size: 16px;
    position: relative;
}
.page-nav ul li:hover{
    color: #0426A0;
}
.page-nav ul li:hover::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0426A0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-nav ul li.active{
    color: #0426A0;
   
}
.page-nav ul li.active::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0426A0;
    position: absolute;
    bottom: 0;
    left: 0;
}
.page-item{
    /* display: none; */
    padding: 100px 0 60px;
}
/* .about-page1{
    display: block;
} */
/* .page-item:first-child{
    display: block;
} */


.about-page .about-page-title{
    display: inline-block;
    font-size: 18px;
    color: #fff;
    height: 40px;
    line-height: 40px;
    background: #0427A0;
    padding: 0 20px;
    margin: 40px 0 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.about-page1{
   padding-top:100px;
    padding-bottom: 40px;
}
.about-page1 .content{
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}
.about-page1 .content .title{
    width: 45%;
    font-size: 36px;
    line-height: 60px;
    font-weight: bold;
}
.about-page1 .content .editor{
    width: 45%;
    margin-top: 70px;
    font-size: 16px;
    line-height: 36px;
}

.about-page1 .bottom h1{
    text-align: center;
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    margin: 50px 0;
}
.about-page1 .bottom .video{
    width: 100%;
/* 	 height:600px; */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.about-page1 .bottom .video video{
    width: 100%;
    height:650px;
    background: #000;
}
.about-page1 .bottom .video span{
	display:none;
}
.about-page1 .bottom .video .play{
    position: absolute;
    bottom: 10%;
    right: 8%;
    z-index: 5;
    color: #fff;
    cursor: pointer;
    text-align: center;
}
.about-page1 .bottom .video .bg{
	 position: absolute;
	 left:50%;
	 top:50%;
	 transform:translate(-50%,-50%);
		width:100%;
	height:100%;
	object-fit:cover;
	z-index:2;
}
.about-page1 .bottom .video iframe{
   width:100%;
   height:600px;
}
.about-page1 .bottom .video .play img{
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.about-page1 .bottom .video .play p{
    font-size: 18px;
    line-height: 1;
}
.about-page2{
    width: 100%;
    background: url('../images/about_page2_7.png') no-repeat bottom center;
    background-size: cover;
}
.about-page2 .top{
    /* margin-bottom: -50px; */
}
.about-page2 .top p{
    width: 55%;
    font-size: 24px;
    line-height: 2;
}
.about-page2 .bottom{
    width: 100%;
    min-height: 750px;
    position: relative;
}

.about-page2 .bottom .time-list{
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
}
.about-page2 .bottom .time-list .bg{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.about-page2 .bottom .time-list .swiper{
    position: absolute;
    top: 0;
    left: 0;
   width: 100%;
   height: 100%;
}
.about-page2 .bottom .swiper .swiper-slide{
    height: auto;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    transform: translateY(-5px);
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(1){
    bottom: 0%;
    left: 12%;
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(2){
    bottom: 24%;
    left: 26%;
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(3){
    bottom: 17.5%;
    left: 40.5%;
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(4){
    bottom: 39%;
    left: 55%;
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(5){
    bottom: 28%;
    left: 70%;
}
.about-page2 .bottom .swiper .swiper-slide:nth-child(6){
    bottom: 59%;
    left: 84%;
}


.about-page2 .bottom .swiper .swiper-slide p{
    margin-bottom: 20px;
    font-size: 32px;
    color: #666;
}
.about-page2 .bottom .swiper .swiper-slide span{
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid #0427A0;
}
/* .about-page2 .bottom .swiper .swiper-slide-active span{
    background: #0427A0 !important;
} */
.about-page2 .bottom .swiper .swiper-slide-thumb-active span{
    background: #0427A0;
}
.about-page2 .bottom .swiper2{
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

.about-page2 .bottom .swiper2 .swiper-slide{
    padding:0 10%;
   
}
.about-page2 .bottom .swiper2 .swiper-slide .info{
    padding: 30px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #Fff;
    border-radius: 20px;
}
.about-page2 .bottom .swiper2 .swiper-slide .info p{
    font-size: 16px;
    line-height: 2.2;
    flex: 1;
    color: #666;
}
.about-page2 .bottom .swiper2 .swiper-slide .info .time{
    margin-left: 30px;
    font-size: 90px;
    line-height: 1;
    height: auto;
    color: #ccc;
}
.about-page3{
    /* height: calc(100vh - 70px); */
    /* overflow: hidden; */
    /* margin-top: 50px; */
    padding: 60px 0 120px;
}
.about-page3-w{
 
}
.about-page3 .flex-x{
    justify-content: space-between;
    padding-bottom: 100px;
    
}
.about-page3 .left {
    width: 40%;
    /* height: 100vh; */
    position: sticky;
    top: 160px;
    left: 0;
    float: left;
}
.about-page3 .left .editor{
    margin-bottom: 100px;
}
.about-page3 .left .editor p{
    font-size: 26px;
    line-height: 1.8;
}

.about-page3 .right{
    /* width: 53%;
    margin-top: 40px; */
    width: 50%;
    float: right;
     /*padding: 20px; */
}
.about-page3 .right .imgs{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}
.about-page3 .right img{   
    box-shadow: 4px 5px 5px 1px rgba(60, 60, 60, .8);
}

.about-page3 .right img:nth-child(odd){
    transform: translateY(50px);
}
.about-page4{
    background: #F6F6F6;
    padding: 60px 0 60px;
}
.about-page4 .top{
    justify-content: space-between;
}
.about-page4 .top .left{
    width: 36%;
}
.about-page4 .top .left h2{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    color: #0426A0;
    margin-bottom: 120px;
}
.about-page4 .top .left ul{
    width: 80%;
}
.about-page4 .top .left li{
    /* height: 50px; */
    line-height: 20px;
    padding: 15px 30px;
    border-radius: 25px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    text-align: center;
}

.about-page4 .top .left li+li{
    margin-top: 20px;
}
.about-page4 .top .left li.active{
    background: #0427A0;
    border-color: #0427A0;
    color: #fff;
}
.about-page4 .top .left li:hover{
    background: #0427A0;
    border-color: #0427A0;
    color: #fff;
}
.about-page4 .top .right{
    width: 50%;
}
.about-page4 .top .right .item{
    display: none;
    width: 100%;
    height: 100%;
}
.about-page4 .top .right .item:first-child{
    display: block;
}
.about-page4 .top .right .item ul{
    width: 100%;
    /* height: 100%; */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    align-items: center;
}
.about-page4 .top .right .item ul li{
	height:100%;
    background: #fff;
    padding: 50px 40px;
    /* height: 100%; */
    box-shadow: 0 0 10px 5px rgba(60, 60, 60, .1);
}
.about-page4 .top .right .item ul li:nth-child(odd){
    transform:translateY(30px);
}
.about-page4 .top .right .item ul li h3{
    font-size: 32px;
    line-height: 1;
    color: #0426A0;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 15px;
}
.about-page4 .top .right .item ul li h4{
    font-size: 22px;
    line-height: 1;
    color: #000;
    margin-bottom:25px;
}   
.about-page4 .top .right .item ul li p{
    font-size: 18px;
    color: #666;
}
.about-page4 .bottom{
    margin-top: 80px;
    width: 100%;
    background: url('../images/about_page4_1.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
}
.about-page4 .bottom h2{
    height: 150px;
    line-height: 150px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    color: #fff;
}
.about-page4 .bottom ul{
    border-top: 1px solid rgba(255, 255, 255, .23);  
    height: 250px;
}
.about-page4 .bottom ul li:nth-child(1){
    width: 33.333%;
    border-right: 1px solid rgba(255, 255, 255, .23);
}
.about-page4 .bottom ul li:nth-child(2){
    flex: 1;
}
.about-page4 .bottom ul li:nth-child(3){
    width: 33.333%;
    border-left: 1px solid rgba(255, 255, 255, .23);
}
.about-page4 .bottom ul li{
    display: flex;
    padding: 40px;
    color: #fff;
    align-items: flex-start;
}
.about-page4 .bottom ul li>div{
	flex:1;
}
.about-page4 .bottom ul li img{
    width: 55px;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
}
.about-page4 .bottom ul li h4{
    font-size: 20px;
    margin-bottom: 10px;
}
.about-page4 .bottom ul li p{
    font-size: 16px;
    line-height: 2;
}

.about-page5 h1{
    font-size: 48px;
    font-weight: bold;
    color: #0426A0;
    line-height: 1.4;
}

.about-page5 ul{
    width: 100%;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin:50px 0 60px;
}
.about-page5 ul li{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.about-page5 ul li p{
	height:100%;
}
.about-page5 ul li .title{
    max-width: 100%;
    overflow: hidden;
    white-space:nowrap;
    text-overflow: ellipsis;
position: absolute;
bottom: 5%;
left: 0;
z-index: 2;
    padding: 0 40px;
    height: 50px;
    line-height: 50px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #485587;
    font-size: 20px;
    color: #Fff;
}
.about-page5 ul li img{
    height: 100%;
    object-fit: cover;
}
.about-page5 ul li .info{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(47,64,114,.8);
    padding: 40px;
    opacity: 0;
    transition: all .3s;
}
.about-page5 ul li .info .flex-y{
    height: 100%;
    justify-content: center;
   
}
.about-page5 ul li .info h3{
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.about-page5 ul li .info p{
    font-size: 16px;
    line-height: 1.8;
    color: #Fff;
    overflow : hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
}

.about-page5 ul li:hover .info{
    /* display: flex; */
    opacity: 1;
}
.about-page5 ul li:hover .title{
    display: none;
}
.about-page6{
    background: #F6F6F6;
}
.about-page6 .top h1{
    width: 40%;
    font-size: 48px;
    line-height: 1.2;
    color: var(--color2);
    font-weight: bold;
}
.about-page6 .top p{
    width: 50%;
    max-width: 600px;
    font-size: 16px;
    line-height: 2;

}
.about-page6 .bottom{
    padding: 50px 0 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.about-page6 .bottom .left{
   width: 70%;
   margin-right: 50px;
   margin-left: -100px;
}
.about-page6 .bottom .left img{
    width: 100%;
    object-fit: contain;
}
.about-page6 .bottom .right {
    width: 40%;
    max-width: 500px;
    padding-top: 30px;
}

.about-page6 .bottom .right .item{

    color: #666;
    font-size: 16px;
    line-height: 2;
    position: relative;
}
.about-page6 .bottom  .img-dialog2{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, .8);
    z-index: 999;
   
}
.about-page6 .bottom  .img-dialog{
    display: none;
    margin: 0px 0 15px;
}

.about-page6 .bottom .right .item .img-dialog img{
    width: 100%;
   max-height: 500px;
    object-fit: contain;
}

.about-page6 .bottom .right .item .title{
    
    cursor: pointer;
    border-top: 1px dashed #ccc;
    border-bottom: 1px dashed #ccc;
    padding: 20px 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.about-page6 .bottom .right .item .title img{
    width: 30px;
}
.about-page6 .bottom .right .item .title p{
    color: #666;
    font-weight: bold;
    font-size: 16px;
}
.about-page6 .bottom .right .item.active .title p{
    color: var(--color2);
}
.about-page6 .bottom .right .item:hover .title{
    color: var(--color2);
}
.about-page6 .bottom .right .item .info{
    color: #000;
    padding: 15px 30px;
    /* margin: 15px 0; */
    /* height: 0; */
    display: none;
    overflow: hidden;
    /* transition: all 1s; */
}
.about-page6 .bottom .right .item:first-child .info{
    display: block;
}
.about-page6 .bottom .right .item .info em{
	display:inline-block;
	vertical-align:middle;
	margin-right:10px;
}

.product-page {
   /*  margin: 50px 0; */
}
.product-page li{
    border: 1px solid #eaeaea;
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
}
.product-page li a{
  
    padding: 40px 0 ;
    display: flex;
    flex-direction: row;
    align-items: center;
   
}
.product-page li .left{
    width: 50%;
    text-align: center;
}
.product-page li .left img{
	max-height:400px;
}
.product-page .right {
    width: 50%;
    padding-right: 10%;
}
.product-page .right h2{
    font-size: 48px;
    line-height: 1.2;
    color: #000;
    font-weight: bold;
}
.product-page .right .editor{
    font-size: 16px ;
    line-height: 2;
    color: #666;
    margin: 40px 0 50px;
}
.product-page .right .editor p{
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}
.product-page .right .btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: #000;
}
.product-page .right span{
    display: flex;
    border: 1px solid #ccc;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    transform: rotate(45deg);
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.product-page .right span i{
    transform: rotate(-45deg);
    font-size: 12px;
    color: #000;
}

.product-page li:hover{
    background: #F4F4F4;
    transition: all .8s;
}
.product-page li:hover .right span{
    border-color: var(--color2);
    background: var(--color2);
    transition: all .8s;
}
.product-page li:hover .right span i{
    color:#fff;
}

.product-detail-page{
    margin-top: 100px;
}
.product-detail-page .top{
    background: url('../images/product_detail_bg.jpg') no-repeat center center;
    min-height: 500px;
}
.product-detail-page .top .nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.product-detail-page .top .nav li{
    display: flex;
    font-size: 16px;
    color: #999;
    align-items: center;
    padding: 30px 0;
}
.product-detail-page .top .nav li a{
    line-height: 1;
    font-size: 16px;
    color: #999;
}
.product-detail-page .top .nav li::after{
    content: ">";
    font-size: 16px;
    line-height: 1;
   margin: 2px 10px 0 10px;
    color: #999;
    display: inline-block;
}
.product-detail-page .top .nav li:last-child a{
    color: #000;
}
.product-detail-page .top .nav li:last-child::after{
    display: none;
}
.product-detail-page .top .info{
    padding: 60px 0;
}
.product-detail-page .top .info .left{
    width: 50%;
}
.product-detail-page .top .info .left h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: bold;
}
.product-detail-page .top .info .left .editor{
    margin:30px 0;
    font-size: 18px ;
    line-height: 2;
    color: #444;
    width: 75%;
}
.product-detail-page .top .info .left a{
    padding: 10px 20px;
    display: inline-block;
    background: #0427A0;
    color: #fff;
    border-radius: 10px;
}
.product-detail-page .top .info .right{
    width: 50%;
}
.product-detail-page .bottom{
    padding: 50px 0;
}
.product-detail-page .bottom .title{
    font-size: 36px;
    font-weight: bold;
}
.product-detail-page .bottom .editor{
    margin: 40px 0;
    font-size: 18px ;
    line-height: 2;
    color: #444;
    padding: 0 80px;
}

.service-page{
    padding: 80px 0;
}
.service-page .top{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.service-page .top .left{
    width: 46%;
}
.service-page .top .left h2{
    font-size: 60px;
    color: var(--color2);
    line-height: 1.2;
    font-weight: bold;
}
.service-page .top .left h3{
    font-size: 48px;
    line-height: 1.2;
    color: #666;

}
.service-page .top .right{
    width: 46%;
    margin: 100px 0 40px; 
    font-size: 30px;
    line-height: 1.4;
    color: #666;
}
.service-page .bottom ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 20px  400px  400px;
    grid-gap: 40px;
}
.service-page .bottom li:first-child{
    grid-row: 1/4;
}
.service-page .bottom li:nth-child(2){
    grid-row: 2/3;
}
.service-page .bottom li:nth-child(3){
    grid-row: 3/4;
}
.service-page .bottom li{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.service-page .bottom li img{
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.service-page .bottom li:first-child a{
    position: relative;
    display: flex;
}

.service-page .bottom li:first-child img{
    width: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.service-page .bottom li .info{
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #fff;
   
}
.service-page .bottom li .info p{
    font-size: 30px;
}
.service-page .bottom li .info span{
    display: flex;
    border: 1px solid #fff;
    width: 25px;
    height: 25px;
    border-radius: 3px;
    transform: rotate(45deg);
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.service-page .bottom li .info span i{
    transform: rotate(-45deg);
    font-size: 12px;
    color: #fff;
}
.service-page .bottom li:hover .info span{
    border-color: var(--color2);
    background: var(--color2);
    transition: all .3s;
}


.service-detail-page{
    padding: 80px 0 ;
}
.service-detail-page h2{
    font-size: 48px;
    font-weight: bold;
    line-height: 1.8;
    color: #333;
}
.service-detail-page h4{
    font-size: 22px;
    margin-bottom: 30px;
}
.service-detail-page1  ul{
    display: flex;
    flex-direction: column;
    border-top: 1px solid #ccc;
}
.service-detail-page1 ul li{
    border-bottom: 1px solid #ccc;
}

.service-detail-page1 ul li i{
    position: absolute;
    left: 0px;
    top: 25px;
    display: inline-block;
    transform:  rotate(90deg) ;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    margin: 0 20px  0 0;
    transition: all .5s;
}
.service-detail-page1 ul li .name{
    padding: 20px 0 20px 40px;
    position: relative;
    font-size: 24px;
    line-height: 1.6;
    cursor: pointer;
}
.service-detail-page1 ul li .value{
    padding: 20px 0 20px 40px;
    border-top: 1px solid #ccc;
    font-size: 20px;
    line-height: 1.6;
    display: none;
}

.service-detail-page1 ul li.active i{
    transform: rotate(-90deg);
}
.service-detail-page1 ul li.active .name{
    color: var(--color2);
}
.service-detail-page2 ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.service-detail-page2 ul li{
    border-radius: 10px;
    overflow: hidden;
    font-size: 0;
    position: relative;
    cursor: pointer;
}

.service-detail-page2 ul li .play{
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.service-detail-page2 ul li:hover .play{
    display: flex;
}
.service-detail-page2 ul li video{
    width: 100%;
    height: 350px;
    /* height: 100%; */
    object-fit: cover;
    margin: 0;
    padding: 0;
    
}
.service-detail-dialog{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    display: none;
}
.service-detail-dialog .dialog-w{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-detail-dialog video{
    width: 50%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 10%;
    padding: 0;
    background: #000;
}
.service-detail-dialog iframe{
    width: 50%;
    height: 60vh;
    object-fit: contain;
    margin: 0 10%;
    padding: 0;
    background: #000;
}
.service-detail-dialog .close{
   position: absolute;
   right: 10%;
   top: 10%;    
  
}
.service-detail-dialog .close i{
    cursor: pointer;
    font-size: 20px;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
}

.service-detail-page3 ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.service-detail-page3 ul li {
   display: flex;
   flex-direction: column;
   border-bottom: 1px solid #ccc;
}
.service-detail-page3 ul li:hover{
    border-color: var(--color2);
    transform: translateY(-10px);
    transition: all .5s;
}
.service-detail-page3 ul li:hover img{
    border-color: var(--color2);
}
.service-detail-page3 ul li:hover .download-a{
    color: var(--color2);
}
.service-detail-page3 ul li img{
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: 1px solid #ccc;
}
.service-detail-page3 ul li .download-a {
    padding: 20px 0;
    font-size: 18px;
    color: #666;
}
.service-detail-page3 ul li .download-a i{
    font-size: 20px;
}

.news-page{
    padding: 60px 0;
}
.news-page .swiper{
    padding-bottom: 40px;
}
.news-page .swiper-slide{
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}
.news-page .swiper-slide img{
    width: 40%;
    object-fit: cover;
}
.news-page .swiper-slide .info{
    flex: 1;
    padding:40px 50px;
    background: #F6F6F6;
    color: #333;
}
.news-page .swiper-slide .info .classify{
    display: inline-block;
    background: #E0E5EE;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--color2);
}
.news-page .swiper-slide .info h2{
    margin: 25px 0;
 
    font-size: 30px;
    line-height: 1.2;
    font-weight: bold;
}
.news-page .swiper-slide .info h4{
    font-size: 16px;
}
.news-page .swiper-slide .info .editor{
    margin: 25px 0;
    color: #999;
    font-size: 16px;
    line-height: 1.4;
}
.news-page .swiper-slide .info .btn{
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    color: #000;
}
.news-page .swiper-slide .info span{
    display: flex;
        border: 1px solid #ccc;
        width: 25px;
        height: 25px;
        border-radius: 3px;
        transform: rotate(45deg);
        align-items: center;
        justify-content: center;
        margin-right: 20px;
}
.news-page .swiper-slide .info span i{
    transform: rotate(-45deg);
    font-size: 12px;
    color: #000;
}
.news-page .swiper-slide:hover .info span{
    border-color: var(--color2);
    background: var(--color2);
    transition: all .8s;
}
.news-page .swiper-slide:hover .info span i{
    color: #fff;
}
.news-page .swiper .swiper-pagination{
    bottom: 0px;
}
.news-page .swiper .my-bullet{
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid var(--color2);
    border-radius: 10px;
    background: #fff;
    opacity: 1;
    margin: 0 5px !important;
    cursor: pointer;
}
.news-page .swiper .my-bullet-active{
    background: var(--color2)
}
.news-page .list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
}
.news-page .list li{
    border-top: 2px solid var(--color2);
    padding: 30px 0 10px;
}
/* .news-page .list li:hover{
    border-color: var(--color2);
    transition: all .5s;
} */
.news-page .list li .img{
    width: 100%;
    height: 300px;
   overflow: hidden;
    border-radius: 10px;
}
.news-page .list li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s;
}
.news-page .list li:hover .img img{
    transform: scale(1.1);
}

.news-page .list li .info .top{
    padding: 20px 0;
}
.news-page .list li .info .top .classify{
    display: inline-block;
    background: #E0E5EE;
    padding: 5px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    color: var(--color2);
}
.news-page .list li .info .top .date{
    font-size: 16px;
    color: #333;
}
.news-page .list li .info p{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #333;
}
.news-page .list li:hover .info p{
    color: var(--color2);
}

.news-detail-page{
    margin-top: 160px;
}
.detail-nav{
    width: 100%;
    position: fixed;
    top: 100px;
    left: 0;
    transition: .5s ease;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, .1);
}
.nav-animate{
    top: 0;
    transition: all .5s;
}
.detail-nav ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 60px;
}
.detail-nav li{
        display: flex;
        font-size: 16px;
        line-height: 1;
        color: #999;
        align-items: center;
}
.detail-nav li::after{
    content: ">";
    font-size: 16px;
    line-height: 1;
    margin: 2px 10px 0 10px;
    color: #999;
    display: inline-block;
}
.detail-nav li a{
    line-height: 1;
    font-size: 16px;
    color: #999;
}
.detail-nav li:last-child a{
    color: #000;
}
.detail-nav li:last-child::after{
    display: none;
}
.news-detail-info{
    padding: 60px 0;
    justify-content: space-between;
}
.news-detail-info .left{
    width: 70%;
}
.news-detail-info .left .title{
    font-size: 42px;
    line-height: 1.2;   
    font-weight: bold;
    color: #333;
}
.news-detail-info .left .date{
    padding: 20px 0 30px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    color: #333;
}
.news-detail-info .left .editor{
    padding: 40px 0;
    line-height: 2;
    font-size: 16px;
    color: #444;
}
.news-detail-info .right{
    width: 25%;
    height: 100%;
    position: sticky;
    top: 100px;
    background: #F6F6F6;
    padding: 20px 40px;
    border-radius: 10px;
}
.news-detail-info .right h2{
    font-size: 28px ;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color2);
    margin-bottom: 30px;
}
.news-detail-info .right ul li{
    margin-bottom: 40px;
}
.news-detail-info .right ul li img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
.news-detail-info .right ul li .date{
    font-size: 14px;
    line-height: 2;
    color: #666;
    padding: 10px 0;
}
.news-detail-info .right ul li .title{
    font-size: 14px;
    line-height: 1.2;
    color: #222;
}
.contact-page{
   margin: 100px 0;
}
.contact-page .w1400{
    justify-content: space-between;
}
.contact-page .left{
    width: 40%;
    
}
.contact-page .left img{
    width: 155px;
    margin-top: 20px;
}
.contact-page .left h4{
    font-size: 20px;
    color: var(--color2);
    margin: 10px 0;
}
.contact-page .left .ewm{
    width: 170px;
    padding: 8px;
    border: 1px solid #333;
}
.contact-page .left span{
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}
.contact-page .right{
    width: 55%;
}
.contact-page .right h2{
    font-size: 36px;
    font-weight: bold;
    color: var(--color2);
}
.contact-page .right .editor{
    margin-top: 30px;
}
.contact-page .right .editor li{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 30px 0;
}
.contact-page .right .editor li i{
    color: var(--color2);
    font-size: 20px;
    padding: 15px ;
    border-radius: 50%;
    border: 1px solid var(--color2);
    margin-right: 20px;
}
.contact-page .right .editor li span{
    color: #333;
    font-size: 18px;
    line-height: 1.2;
}
.contact-page .right .editor li p{
    line-height: 1;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}





.message{
    background: #F6F7F8;
    padding: 60px ;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 60px auto;
}
.message .left {
    width: 47%;
    display: flex;
    flex-direction: column;
}
.message .left h2{
    font-size: 47px;
    line-height: 1.4;
    font-weight: bold;
}
.message .left h3{
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: bold;
}
.message .left img{
    flex:1;
    object-fit: cover;
    border-radius: 10px;
}

.message .right {
    width: 48%;
}
.message .right li {
    margin-bottom: 20px;
}
.message .right li:last-child{
    margin-top: 30px;
}
.message .right li p{
    font-size: 16px;
    line-height: 2;
}
.message .right li input{
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
}
.message .right li input::placeholder{
    color: #999;
}
.message .right li textarea{
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    resize: none;
}
.message .right li textarea::placeholder{
    color: #999;
}
.message .right button{
    width: 100%;
    font-size: 16px;
    line-height: 3;
    color: #fff;
    background: var(--color2);
    border-radius: 5px;
}



/* footer */
footer {
    width: 100%;
    background: url('../images/footer_bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
}

footer .top {
    padding: 100px 0 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .top .left {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: end;
    margin-top: -40px;
}

footer .top .left .flogo {
    width: 100%;
    object-fit: contain;
}

footer .top .left .ewm {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: center;
}

footer .top .left .ewm img {
    width: 100px;
    border: 5px solid #fff;
    object-fit: contain;
    border-radius: 3px;
}

footer .top .left .ewm p {
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 2.4;
    color: #ccc;
    border-bottom: 1px solid #666;
}

.share-list {
    display: flex;
    flex-direction: row;
    justify-content: right;
    margin-bottom: 20px;
}

.share-list li {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #666666;
    display: flex;
    align-items: center;
    margin-left: 6px;
}

.share-list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-list li .icon {
    font-size: 16px;
    color: #fff;
}

footer .form {
    text-align: right;
}

footer .form input {
    width: 100%;
    height: 40px;
    line-height: 40px;
    border-radius: 5px;
    background: #fff;
    padding: 0 10px;
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

footer .form button {
    padding: 0 20px;
    height: 40px;
    line-height: 40px;
    background: #0427A0;
    border-radius: 5px;
    color: #Fff;
}

footer .top .nav a {
    color: #ccc;
    font-size: 16px;
    line-height: 3;
}

footer .top .product {
    display: flex;
    flex-direction: column;
    max-height: 500px;
    flex-wrap: wrap;
}

footer .top .product>li {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 10px; */
    margin: 0 20px 10px;
    max-width: 200px;
}

footer .top .product>li>a {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
}

footer .top .product .list li::before {
    content: '-';
}

footer .top .product .list a {
    font-size: 14px;
    color: #ccc;
    line-height: 2;
}

footer .top .info {
    width: 25%;
}

footer .top .info .title {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

footer .top .info ul {
    display: flex;
    flex-direction: column;
}

footer .top .info ul li {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    line-height: 2;
    color: #ccc;
    margin-bottom: 15px;
}

footer .top .info ul li .icon {
    margin-right: 10px;
    color: #fff;
}



footer .bottom {
    height: 70px;
    line-height: 70px;
    border-top: 1px solid #666;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, .23);
}

footer .bottom img {
    height: 20px;
    object-fit: contain;
}
