html {
    --color: #0804C8;
    --color-active:#F39800;
    --font-family: 'Arial';
}

a:hover {
    color: var(--color);
}

.w1600 {
    width: 100%;
    max-width: 1600px;
    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;
}
.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;
}
.menu {
    display: none;
}

.menu_down {
    display: none;
}


/* p,
a {
    font-size: initial;
} */

header{
    position: absolute;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;

}
header .top{
    width: 100%;
}
header .top .w1200{
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap:30px;
}
header .top .item{
    cursor: pointer;
   height: 100%;
   padding: 0 20px;
}
header .top .item p{
    height: 100%;
    font-size: 16px;
    color:#fff ;
    display: flex;
    align-items: center;
}
header .top .item .icon{
    font-size: 20px;
    margin-right: 8px;
    -webkit-text-stroke-width:0;
}
header .top .lang-item{
    position: relative;
}
header .top .lang-item .lang{
	z-index:11;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,0);
    background: rgba(240,255,255,1);
    width: 150px;
    padding: 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 0 3px 1px rgba(60,60,60,0.1);
    opacity: 0;
    transition: all .3s ease;
    clip-path: inset(0 0 100% 0);
} 
header .top .lang-item:hover .lang{
    opacity: 1;
    clip-path: inset(0);
}
header .top .lang-item .lang .language-flag span{
    padding: 0 0 0 40px;
}

header .bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    width: 100%;

}
header .bottom .search-btn{
    display: none;
}
header .bottom .nav{
    flex: 1;
    align-items: center;
    gap:50px;
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
header .bottom .nav>li>a{
    display: block;
    height: 100%;
    color: #fff;
    font-size: 18px;
    height: 70px;
    line-height: 70px;
    font-weight: bold;
    padding: 0 10px;
	    text-transform: uppercase;
		letter-spacing: 1px;
}
header .bottom .nav li:hover a{
    color: #f00;
    /* background: rgba(255,255,255,0.2); */
}
header .bottom .nav li{
    /* position: relative; */
}
header .bottom .nav2{
    clip-path: inset(0 0 100% 0);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    background: #fff;
    transition: all .3s ease;
    overflow: hidden;
    padding: 30px 0;
}
header .bottom .nav2 .w1400{
    gap: 30px;
}
header .bottom .nav2 li>a{
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
}
header .bottom .nav2 li>a .info{
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #fff;
    
    text-align: left;
}
header .bottom .nav2 li>a .info .icon{
    display: inline-block;
    transform: rotate(-45deg);
    font-size: 36px;
    margin-bottom: 10px;
    -webkit-text-stroke-width:0;
}
header .bottom .nav2 li>a .info p{
    font-size: 16px;
}
header .bottom .nav li:hover .nav2{
    clip-path: inset(0);
}
header .bottom .nav2.product .w1400{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 20px 5%;
}
header .bottom .nav2.product .w1400  li p{
    font-size: 16px;
    color: #666;
    text-align: center;
    padding-top: 10px;
}
header .bottom .nav2.product .w1400  li:hover p{
    color: #f00;
}


header .bottom .left-nav{
    padding-right: 70px;
    justify-content: flex-end;
}
header .bottom .right-nav{
    padding-left: 70px;
}
header .bottom .logo{
    width: 190px;
    height: 70px;
   position: relative;
  
}
header .bottom .logo img{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 190px;
    object-fit: contain;
}
.search{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 999;
    display: none;
}
.search-w{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.search .w1400 {
    position: relative;
}
.search .w1400 .w{
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    
}
.search .w1400 input{
    flex: 1;
    height: 60px;
    line-height: 60px;
     
    padding: 0 30px ;
    font-size: 18px;
}
.search .w1400 .icon{
    display: inline-block;
    font-size: 30px;
    color: #f00;
    cursor: pointer;
    padding: 0 30px;
    height: 100%;
}
.search .close{
    position: absolute;
    top: 20%;
    right: 10%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
     
    display: flex;
    align-items: center;
    justify-content: center;
}




.index-banner img{
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
}

.index-page1{
    background: url('../images/index_bg_1.jpg') no-repeat center;
    background-size: cover;
}
.index-page1 .swiper-slide{
    padding: 90px 5% 110px;
    
}
.index-page1 .swiper-slide h3{
    font-size: 100px;
    font-weight: 500;
       font-style: italic;
    line-height: 1;
    margin-bottom: 50px;
    color: #000;
	font-family: 'frick_regular';
}

.index-page1 .swiper-slide .w{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.index-page1 .swiper-slide .l{
    width: 50%;
}
.index-page1 .swiper-slide .l img{
    width: 100%;
    object-fit: contain;
    max-height: 600px;
}
.index-page1 .swiper-slide .r{
    width: 45%;
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
.index-page1 .swiper-slide .r li+li{
    margin-top: 40px;
}
.index-page1 .swiper-slide .r h4{
    font-size: 48px;
    line-height: 1;
    color: #000;
    font-weight: 500;
    font-style: italic;
	 font-family: 'frick_regular';
}
.index-page1 .swiper-slide .r p{
    font-size: 16px;
    color: #444;
}
.index-page1 .swiper .btns{
    position: absolute;
    top: 23%;
    right: 24%;
    z-index: 9;
    display: flex;
    gap: 20px;
    align-items: center;
}
.index-page1 .swiper .btns .icon{
    font-size: 40px;
    cursor: pointer;
    color: #f00;
}
.index-page1 .swiper .btns .swiper-btn-next .icon{
    display: inline-block;
    transform: rotate(180deg);
}

.index-page1 .swiper .btns .swiper-button-disabled .icon{
    color: #ccc;
}
.index-page2{
    background: url('../images/index_bg_2.jpg') no-repeat center;
    background-size: cover;
    padding: 100px 0 75px;
}
.index-page2 .w1400{
    position: relative;
}
.index-page2 h3{
    font-size: 72px;
    color: #000;
    font-weight: 500;
    line-height: 1;
	 font-family: 'frick_regular';
	     font-style: italic;
}
.index-page2 .swiper-nav{
    position: absolute;
    top: 120px;
    right: 0;
    z-index: 9;
    max-width: 360px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 20px;
    margin-right: 30px;
    gap: 15px;
}
.index-page2 .swiper-nav::-webkit-scrollbar{
    width: 6px;
}
.index-page2 .swiper-nav::-webkit-scrollbar-thumb{
    background: rgba(100,100,100,0.2);
    border-radius: 3px;
}
.index-page2 .swiper-nav li{
    text-align: right;
    padding: 9px 25px 5px 0;
    position: relative;
    line-height: 1.2;
    color: #666;
    font-size: 16px;
    cursor: pointer;
}
.index-page2 .swiper-nav li::after{
    content: '';
    display: inline-block;
    width: 4px;
    height: 60%;
    background: #f00;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
   
}
.index-page2 .swiper-nav li.active{
    color: #f00;
}
.index-page2 .swiper-nav li.active::after{
    opacity: 1;
}
.index-page2 .swiper-list{
    margin-top: 60px;
}
.index-page2 .swiper-list li{
    display: none;
}
.index-page2 .swiper-list li:first-child{
    display: block;
}
.index-page2 .swiper1{
    height: 500px;
}
.index-page2 .swiper1 .swiper-slide{
    padding: 0 25% 0 15%;
    text-align: center;
}
.index-page2 .swiper1 .swiper-slide a{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;

}
.index-page2 .swiper1 .swiper-slide a img{
    height: 100%;
    object-fit: contain;
}
.index-page2 .swiper1 .swiper-slide a p{
    font-size: 20px;
    color: #000;
}
.index-page2 .swiper .btns{
    position: absolute;
    top: 50%;
   left: 5%;
   transform: translateY(-50%);
    z-index: 9;
    display: flex;
    gap: 20px;
    align-items: center;
}
.index-page2 .swiper .btns .icon{
    font-size: 40px;
    cursor: pointer;
    color: #f00;
}
.index-page2 .swiper .btns .swiper-btn-next .icon{
    display: inline-block;
    transform: rotate(180deg);
}

.index-page2 .swiper .btns .swiper-button-disabled .icon{
    color: #ccc;
}

.index-page2 .swiper2{
    margin-top: 40px;
    background: #F6F6F6;
    border-radius: 20px;
    padding:  20px 6% ;
}
.index-page2 .swiper2 .swiper-slide{
     cursor: pointer;
     border: 1px solid transparent;
     /* padding: 5px; */
     border-radius: 10px;
     overflow: hidden;
}
.index-page2 .swiper2 .swiper-slide.swiper-slide-thumb-active{
    border: 1px solid #f00;
}

.index-page3{
   background: #fff;
    padding: 75px 0 100px;
}

.index-page3 .top{
    align-items: flex-end;
    justify-content: space-between;
}
.index-page3 .top h3{
    font-size: 72px;
    line-height: 1;
    font-weight: 500;
	 font-family: 'frick_regular';
	     font-style: italic;
}
.index-page3 .top h3 b{
    color: #f00;
}
.index-page3 .top .icon{
    display: inline-block;
    font-size: 48px;
    color: #666;
    transform: translateY(10px);
}
.index-page3 .list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    margin-top: 40px;
}
.index-page3 .list li{
    box-shadow: 0 0 5px 5px rgba(100,100,100,0.1);
    padding: 30px 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.index-page3 .list li img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0;
    transition: all .3s ease;
}
.index-page3 .list li h6{
    font-size: 18px;
    color: #333;
   
}
.index-page3 .list li h5{
    font-size: 30px;
    line-height: 1.4;
    color: #333;
    font-weight: bolder;
    margin-top: 20px;
}
.index-page3 .list li .editor{
     color: #666;
    line-height: 1.6;
    margin:30px 0 0 ;
    font-size: 18px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}
.index-page3 .list li .editor p{
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}
.index-page3 .list li a{
    display: flex;
    align-items: center;
    width: fit-content;
    padding: 5px 30px 5px 30px;
    font-size: 12px;
    color: #666;
    border-radius: 20px;
    border: 1px solid #ccc;
    margin:30px 0 0 ;
}
.index-page3 .list li a::after{
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
   background: #ccc;
   margin-left:  20px ;
   
}
 
.index-page3 .list li:hover img{
    opacity: 1;
}
.index-page3 .list li:hover h6,
.index-page3 .list li:hover h5,
.index-page3 .list li:hover .editor,
.index-page3 .list li:hover .editor p{
    color: #fff;
}
.index-page3 .list li:hover a{
    color: #fff;
    background: #f00;
    border-color: #f00;
}




.about-page{
    width: 100%;
    min-height: 500px;
    position: relative;
}

.about-page img.bg{
    width: 100%;
    height: 100%;
    object-fit: contain;
    
}
.about-page .w1400{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    padding-bottom: 40px;
}
.about-page .w1400 .icon{
    font-size:60px;
    color: #f00;
}
.about-page .w1400 h3{
    font-size: 90px;
    line-height: 1;
    font-weight: 500;
    color: #fff;
    margin-top: 60px;
	 font-family: 'frick_regular';
	     font-style: italic;
}
.about-page .editor{
    padding: 60px 0 80px;
    font-size: 22px;
    color: #ddd;
    line-height: 2;
}
.about-page .editor p{
    font-size: 22px;
    color: #ddd;
    line-height: 2;
}


.common-banner{
    width: 100%;
    position: relative;
}
.common-banner img{
    width: 100%;
    object-fit: contain;
}
.common-banner .info{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.common-banner .info h3{
    color: #fff;
    font-size: 88px;
    font-weight: 500;
      font-style: italic;
    line-height: 1;
	 font-family: 'frick_regular';
}


.news-page{
    background: #F4F4F4;
    padding: 60px 0 120px;
}
.news-page .list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.news-page .list li a{
    background: #fff;
    padding-bottom: 30px;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.news-page .list .img{
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}
.news-page .list img{
   width: 100%;
    object-fit: contain;
    transition: all .3s ease;
}
.news-page .list .editor{
    padding: 0 20px;
    margin: 25px 0;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    display:-webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-emphasis: ellipsis;
}
.news-page .list .editor p{
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.news-page .list span{
    display: inline-block;
    padding: 0 20px;
    color: #F00;
    margin: 0 20px;
    border: 1px solid #F00;
    border-radius: 20px;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
}

.news-page .list li:hover img{
    transform: scale(1.1);
}
.news-detail-page{
    padding: 60px 0 120px;

}
.news-detail-page h6{
    text-align: center;
}
.news-detail-page h6 span{
    display: inline-block;
    padding: 0 20px;
    color: #F00;
    margin: 0 20px;
    border: 1px solid #F00;
    border-radius: 20px;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto;
}
.news-detail-page h3{
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 20px;
    text-align: center;
    color: #333;
}
.news-detail-page .editor{
    margin-top: 40px;
    font-size: 18px;
    line-height: 2;
    color: #333;
}
.news-detail-page .editor p{
    font-size: 18px;
    line-height: 2;
    color: #333;
}

.news-detail-page  .bottom{
   
    border-top: 1px solid rgba(204,204,204,.5);
    padding-top: 35px;
    margin-top: 40px;
}
.news-detail-page  .bottom .flex-x{
    gap: 30px;
    align-items: center;
}
.news-detail-page  .bottom a{
    display: inline-block;
    padding: 0 20px;
    height: 50px ;
    line-height: 50px;
    border: 1px solid rgba(204,204,204,.5);
    border-radius: 30px;
    font-size: 18px;
    color: #333;
}
.news-detail-page  .bottom a .icon{
    font-size: 26px;  
    display: inline-block;
    color: #999;
}
.news-detail-page  .bottom a:first-child{
    transform:rotate(180deg);
}
.news-detail-page  .bottom a:nth-child(2) .icon{
    transform: translateY(-3px);
    
}
.news-detail-page  .bottom a:hover{
    border-color: #f00;
    color: #f00;
}
.news-detail-page  .bottom a:hover .icon{
    color: #f00;
}



.product-page{
    padding: 60px 0 120px;
}
.product-page .top{
    justify-content: space-between;
}
.product-page .top>h3{
    font-size: 46px;
    font-weight: bold;
    color: #f00;
    line-height: 1;
}
 .nav-phone{
    display: none;
}
.product-page .top .nav{
    gap: 1px;
    width: 70%;
    height: 100%;
    
}
.product-page .top .nav>li{
    flex: auto;
    position: relative;
    min-width: 0;
	max-width:33.3%
}
.product-page .top .nav>li>a::before{
    content: '';
    display: inline-block;
    width: 0;
    height: 3px;
    background: #f00;
    position: absolute;
    bottom:   0;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s ease;
}
.product-page .top .nav>li>a{
    display: flex;
    padding: 0 40px 0 20px;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: bold;
    color: #666;
    background: #F4F4F4;
    white-space: nowrap;
   
   
     
}
.product-page .top .nav>li>a span{
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
	text-align:center;
}
.product-page .top .nav>li:first-child a{
    /* border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    overflow: hidden; */
}
.product-page .top .nav>li>a::after{
    content: '';
    display: inline-block;
    border-top: 10px solid #999999;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    margin-left: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.product-page .top .nav2{
    clip-path: inset(0 0 100% 0);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: all .3s ease;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    overflow: hidden;
}
.product-page .top .nav2 li{
    /* height: 36px; */
}
.product-page .top .nav2 li a{
    display: inline-block;
    width: 100%;
    /* height: 36px; */
    line-height: 1.4;
    padding: 10px 20px;
    background: #f4f4f4;
    border-bottom: 1px solid rgba(255,255,255);
    color: #666;
    font-size: 16px;
    /* overflow: hidden;
    white-space: nowrap;
     text-overflow: ellipsis; */
}
.product-page .top .nav2 li a:hover{
    color: #f00;
}

.product-page .top .nav>li:hover .nav2{
    clip-path: inset(0);
}
.product-page .top .nav>li.active>a{
    color: #f00;
}
.product-page .top .nav>li:hover>a{
    color: #f00;
}
.product-page .top .nav>li:hover>a::before{
    width: 100%;
}
.product-page .top .nav>li:hover>a::after{
    border-top-color: #f00;
}
.product-page .list{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px 3%;
    margin-top: 60px;
    text-align: center;
}
.product-page .list a{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 15px ;
}
.product-page .list li:hover{
    border-radius: 20px;
    box-shadow: 0 0 5px 5px rgba(100,100,100,0.1);
}
.product-page .list img{
    width: 100%;
    object-fit: contain;
}
.product-page .list p:nth-of-type(1){
    font-size: 18px;
    line-height: 1.2;
    color: #f00;
    margin-top: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.product-page .list p:nth-of-type(2){
    font-size: 16px;
    color: #999;
    margin-top: 5px;
}

.common-banner .info2{
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 130px 0 0;
    align-items: flex-end;
    justify-content: space-between;
    overflow: hidden;
}

.common-banner .info2 .l{
    width: 40%;
  
}
.common-banner .info2 .r{
    width: 55%;
    height: 100%;
}

.common-banner .info2 .l h3{
    display: inline-block;
    font-size: 60px;
    line-height: 1;
    padding-bottom: 30px;
    position: relative;
    color: #fff;
        font-weight:500;
		 font-family: 'frick_regular';
		     font-style: italic;
}
.common-banner .info2 .l h3::after{
    content: '';
    display: inline-block;
    width: 80%;
    height: 3px;
    background: #f00;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.common-banner .info2 .l .list{
    margin-top: 40px;
    display: grid;
    grid-template-columns: 150px auto;
    gap: 40px 20px;
    color: #fff;
}
.common-banner .info2 .l .list h4{
    font-size: 32px;
    line-height: 1;
    font-weight: bold;
}
.common-banner .info2 .l .list p{
    font-size: 16px;
}

.product-detail-banner .swiper1{
    height: 100%;
    overflow: hidden;
}
.product-detail-banner .swiper1 img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-detail-banner .swiper2 {
    margin:100px 0;
}
.product-detail-banner .swiper2 .swiper-slide{
    background: rgba(255,255,255,0.6);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.product-detail-banner .swiper2 .swiper-slide.swiper-slide-thumb-active{
    background: rgba(255,255,255,1);
    border: 1px solid #f00;
}

.product-detail-page .title{
        width: 100%;
        border-bottom: 1px solid #f4f4f4;
}
.product-detail-page .title h3{
    font-size: 24px;
    height: 70px;
    line-height: 70px;
    font-weight: bold;
    color: #f00;
} 

.product-detail-page .editor{
    padding: 40px 0 80px;
    font-size: 16px;
    line-height: 2;
    color: #000;
	overflow:hidden;
}

.product-detail-page .editor p{
    font-size: 16px;
    line-height: 2;
    color: #000;
}
.product-detail-page .editor table{
	border:1px solid #ccc !important;
}

.product-detail-page .editor table td{
    padding: 5px 30px !important;
    line-height: 1.4;
	border-color:#ccc !important;
	    word-break: break-word;
		overflow-wrap: break-word;
}



.part-page .nav{
    width: 100%;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 9;
}
.part-page .nav .flex-x{
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.part-page .nav li{
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    border: 1px solid #ccc;
    padding: 0 20px;
    border-radius: 20px;
}

.part-page .nav li a{
    display: block;
    height: 100%;
    font-size: 16px;
    color: #666;
}
.part-page .nav li:hover {

    border-color: #f00;
    background: #f00;
}
.part-page .nav li:hover a{
    color: #fff;
}
.part-page .nav li.active{
    border-color: #f00;
    background: #f00;
}
.part-page .nav li.active a{
    color: #fff;
}
 

.part-page .side-bar{
    position: sticky;
    top: 0px;
    width: 300px;
    height: auto;
    border-right: 1px solid #eee;
    padding: 20px 0;
    overflow-y: auto;
}
.part-page .side-bar::-webkit-scrollbar{
    width: 5px;
}
.part-page .side-bar::-webkit-scrollbar-track{
    background: #fff;
}
.part-page .side-bar::-webkit-scrollbar-thumb{
    background: #f00;
    border-radius: 3px;

}
.part-page .side-bar a{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 0 15%;
    margin: 10px 0;
    font-size: 14px;
    line-height: 1.3;
    color: #666;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;

}
.part-page .side-bar li{
    border-bottom: 1px solid #eee;
}
.part-page .side-bar li:hover a{
    color: #f00;
}
.part-page .side-bar li.active a{
    color: #f00;
}
.part-page .list{
    flex: 1;
    height: 100%;
    padding: 50px 0 30px 4%;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px ;
    overflow: hidden;
}

.part-page .list .img{
    width: 100%;
	height:240px;
    max-height: 500px;
    overflow: hidden;
    border: 1px solid #eee;
    border-radius: 10px;
}

.part-page .list img{
    width: 100%;
	height:100%;
    object-fit: cover;
    transition: all 0.5s ease;
   

}
.part-page .list li:hover img{
    transform: scale(1.1);
}
.part-page .list li{
    min-width: 0; 
}
.part-page .list li a{
    display: block;
    width: 100%;
    height: 100%;
     
}
.part-page .list li .info{
   width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    overflow: hidden;
}
.part-page .list li .info p{
    width: 80%;
    height: 30px;
    font-size: 16px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.part-page .list li  .icon{
    font-size: 20px;
    color: #333;
     
}

.part-detail-page .content{

}
.part-detail-page .content .top{
    display: flex;
    border-bottom: 1px solid #eee;
}
.part-detail-page .content .top .l{
    width: 45%;
    border-right: 1px solid #eee;
    padding: 2%;
}
.part-detail-page .content .top .r{
    width: 55%;
   
}
.part-detail-page .content .top .r .title{
    padding: 30px 7%;
    font-size: 30px;
    line-height: 1.3;
    color: #000;
    font-weight: bolder;
    border-bottom: 1px solid #eee;
}
.part-detail-page .content .top .r .editor{
    padding: 30px 7%;
    font-size: 16px;
    line-height: 1.5;
}
.part-detail-page .content .top .r .editor p{
    font-size: 16px;
    line-height: 1.5;
}
.part-detail-page .content .bottom h3{
    font-size: 18px;
    font-weight: bold;
    color: #f00;
    padding: 0 5%;
    height: 60px;
    line-height: 60px;
    border-bottom: 1px solid #eee;
}
.part-detail-page .content .bottom  .editor{
    padding: 30px 5%;
    font-size: 16px;
    line-height:2;
}

.part-detail-page .content .bottom .editor ul{
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:30px;
}
.part-detail-page .content .bottom .editor ul li a{
	color:#666;
}
.part-detail-page .content .bottom .editor ul li img{
	width:100%;
	max-height:400px;
	object-fit:contain;
}
.part-detail-page .content .bottom .editor ul li p{
	line-height:2;
	font-size:16px;
	text-align:center;
	margin-top:10px;
}
.service-page{
    padding: 60px 0 40px;
}
.service-page .top .nav li a{
    padding: 0 5%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    justify-content: center;
}
.service-page .nav li a::after{
    display: none !important;
}
.service-page .top .nav li.active a::before{
    width: 100% !important;
}
.service-page2{
    padding: 0 0 100px;
}
.service-page2  .list{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    text-align: left;
}
.service-page2  .list h5,
.service-page2 .list .editor{
    position: relative;
    padding: 20px 30px 20px 60px;
    font-size: 16px;
}
.service-page2  .list h5{
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #fff;
    color: #666;
}
.service-page2  .list li{
    background: #f4f4f4;
    border-radius: 10px;
   
}
.service-page2  .list li.active h5{
    border-color: #CD0202;
    background: #CD0202;
    color: #fff;
    cursor: pointer;
}
.service-page2  .list li:first-child .editor{
    display: block;
}
.service-page2 .list .editor{
    font-size: 16px;
    color: #666;
    display: none;
}
.service-page2 .list .editor p{
    font-size: 16px;
    color: #666;
}
 
.service-page2 .list .icon{
    position: absolute;
    left: 15px;
    top: 22px;
    font-size: 18px;
    color: #999;
}
.service-page2  .list h5 .icon{
    font-size: 30px;
    margin-left: -3px;
    margin-top: -7px;
}


.contact-page .w1200{
    padding: 0 0 200px;
    align-items: flex-end;
    justify-content: space-between;
}
.contact-page .w1200 .l{
    width: 40%;
}
.contact-page .w1200 .r{
    width: 50%;
}
.contact-page .w1200 h3{
    font-size: 46px;
    color: #fff;
    font-weight: bolder;
	font-style: normal;
}
.contact-page .w1200 .editor .item{
    display: flex;
    position: relative;
    padding-left: 38px;
    font-size: 18px;
    color: #fff;
    line-height: 1.2;
    gap: 5px;

}
.contact-page .w1200 .editor .item+.item{
    margin-top: 30px;
}
.contact-page .w1200 .editor .item span:nth-of-type(1){
	white-space:nowrap;
}
.contact-page .w1200 .editor .item span:nth-of-type(2){
	 flex:1;
}

.contact-page .w1200 .editor .item .icon{
    position: absolute;
    left: 0;
    top: -2px;
    color: #CD0202;
    font-size: 16px;
    border-radius: 50%;
    border: 1px solid #CD0202;
    margin-right: 10px;
    display: flex;
    width: 27px;
    height: 27px;
    align-items: center;
    justify-content: center;
}
.contact-page .w1200 .links {
    margin-top: 40%;
    padding: 30px 25px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    justify-content: space-between;
    align-items: center;
    line-height: 1;
    
}
.contact-page .w1200 .links li{
    position: relative;
}
.contact-page .w1200 .links .img{
    position: absolute;
    bottom: 50px;
    right: 0;
    transform: translateX(50px);
    width: max-content;
    height:max-content;
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    display: none;
}
.contact-page .w1200 .links li:hover .img{
    display: block;
}
.contact-page .w1200 .links .img img{
    width: 100px;
}
.contact-page .w1200 .links .img::after{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    border-top: 8px solid #fff;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;

}
.contact-page .w1200 .links .icon{
    font-size: 20px;
    color: #fff;
    -webkit-text-stroke-width: 0px;
    line-height: 1;
}
.contact-page .w1200 .links li:hover .icon{
    color: #CD0202;
}

.contact-page .r .form{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 40px;
    border-radius: 20px;
    font-size: 16px;
}
.contact-page .r .form h5{
    width: 100%;
    color: #fff;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 10px;
    font-weight: bold;
}
.contact-page .r .form input{
    width: calc(50% - 10px);
    height: 45px;
    line-height: 45px;
    background: #999999;
    border-radius: 10px;
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
}
.contact-page .r .form input::placeholder{
    color: #fff;
}
.contact-page .r .form textarea{
    width: 100%;
    height: 160px;
    background: #999999;
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    font-size: 16px;
}
.contact-page .r .form textarea::placeholder{
    color: #fff;
}
.contact-page .r .form textarea::-webkit-scrollbar{
    width: 5px;
}

.contact-page .r .form textarea::-webkit-scrollbar-thumb{
    background: #f00;
    border-radius: 3px;
}
.contact-page .r .form .yzm{
    width: calc(50% - 10px);
    height: 45px;
    line-height: 45px;
    background: #999;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.contact-page .r .form .yzm input{
    width: 100%;
    padding: 0 100px 0 20px;
}
.contact-page .r .form .yzm .img{
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    text-align: center;
}
.contact-page .r .form .yzm .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.contact-page .r .form button{
    width: calc(50% - 10px);
    height: 45px;
    line-height: 45px;
    background: #CD0202;
    border-radius: 10px;
    color: #fff;
}























footer{
    width: 100%;
    background: url('../images/footer_bg.jpg') no-repeat center;
    background-size: cover;
}
footer .top{
    padding: 50px 0 40px;
}
footer .top .links .icon{
    background: #f00;
    color: #fff;
    margin-right: 10px;
    padding: 3px;
    border-radius: 5px;
}
footer .top .logo img{
    width: 145px;
    object-fit: contain;
}
footer .top .nav1{
    flex: 1;
    justify-content: flex-end;
    gap: 5%;
}
footer .top .nav2 li{
   padding: 8px 0;
   max-width: 260px;
   position: relative;
}
footer .top .nav2 li .img{
    display: none;
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
}
footer .top .nav2 li:hover .img{
    display: block;
}
footer .top .nav2 li .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}
footer .top .nav2 a{
    color: rgba(255,255,255,0.7);
    font-size: 16px;
}
footer .top .nav2 li:first-child a{
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}
footer .top .nav2 a:hover{
    color: #fff;
}


footer .bottom{
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.3);
}
footer .bottom p{
    color: rgba(255,255,255,0.5);
}
footer .bottom img{
    height: 20px;
    object-fit: contain;
}
.page {
	margin-top: 10px;
	padding: 14px 0 15px;
	text-align: center;
}
.page a {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span {
	border: 1px solid #CCCCCC;
	margin-right: 5px;
	padding: 4px 7px;
}
.page span.current {
	background: #f00;
	border: 1px solid #f00;
	color: #FFFFFF;
	font-weight: bolder;
}
