html {
    --color: #FDD100;
    --color-active: #3BB3C3;
    --font-family: 'Arial';
}

a:hover {
    color: var(--color-active);
}

.bowen{
    position: relative;
}
.bowen::after,
.bowen::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50px;
}
.bowen::after{
    animation-delay: 0.7s;
}

@keyframes eff68{
    0%{
      box-shadow: 0 0 0 0px rgba(0, 0, 0);
      opacity: 0.1;
    }
    100%{
      box-shadow: 0 0 0 10px rgba(0, 0, 0);
      opacity: 0;
    }
  
  }
  .bowen:hover{
    /* transform: scale(0.96); */
  }
.bowen:hover::after,
.bowen:hover::before{
    animation: eff68  0.8s linear infinite;
}


.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;
}

.w1300 {
    width: 100%;
    max-width: 1300px;
    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;
}


button {
    cursor: pointer;
}

.phone-right {
    display: none;
}

.menu_down {
    display: none;
}


.opening-animation {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
	transition: 0.3s ease-in-out;
}

.opening-animation img {
    width: 100%;
   
    object-fit: cover;
    animation-name: opening;
    animation-duration: 0.8s;
    animation-timing-function: linear;
    animation-delay:0s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;  
}

@keyframes opening {
    0% {
		opacity:1;
        transform: scale(1);
    }

    80% {
		opacity:1;
        transform: scale(3);
    }

    100% {
		opacity:0;
        transform: scale(10);
        display: none;
		z-index:-1;
    }
	

}



.header {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    transition: all .5s ease;
}

header.header-animate {
    transform: translateY(-100%);
    opacity: 0;
}


.header.active,
.header:hover {
    position: fixed;
    background: var(--color);
}
.header.active .logo .logo1 ,
.header:hover .logo .logo1 {
    display: none;
}
.header.active .logo .logo2,
.header:hover .logo .logo2 {
    display: block;
}
.header.active>.w1400,
.header:hover>.w1400 {
    color: #000;
}
.header.active li a ,
.header:hover li a {
    color: #000;
    /* font-weight: bold; */
}
.header .r>ul>li>a,
.header .l>ul>li>a{
	position:relative;
	height:100%;
	display:flex;
	align-items: center;
}
.header .r>ul>li>a::after,
.header .l>ul>li>a::after{
	content:"";
	display:inline-block;
	width:0%;
	height:3px;
	position:absolute;
	bottom:0;
	left:50%;
	transform:translateX(-50%);
	transition:all 0.5s ease;
	background:#000;
}
.header .r>ul>li>a:hover::after,
.header .l>ul>li>a:hover::after{
	width:100%;
}
.header>.w1400 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    gap: 50px;
    color: #fff;
    transition: all 300ms ease-out;
}

.header .l,
.header .r {
    flex: 1;
}

.header ul.flex-x {
    gap: 30px;
    justify-content: space-between;
    align-items: center;

}

.header li {
    height: 100px;
    position: relative;
    cursor: pointer;
	display:flex;
	align-items:center;
}

.header li a {
    font-size: 18px;
    color: #fff;
}

.header .logo {
    padding: 0 20px;
    text-align: center;
}

.header .logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.header .logo .logo2 {
    display: none;
}

.header .r .other-li {
    gap: 20px;
    align-items: center;

    line-height: 1.4;
}

.header .r .language {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    cursor: pointer;
    position: relative;

}

.header .r .language .icon-duoyuyan {
    font-size: 20px;
}

.header .r .language .icon-xiasanjiao {
    font-size: 12px;
}

.header .r .language-list {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    background: #ccc;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transition: all .3s ease;
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;

}

.header .r .language-list li {
	height:auto;
    line-height: 1;
}

.header .r .language-list li a {
    font-size: 16px;
    line-height: 1.6;
}

.header .r .language:hover .language-list {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}


.header .erji {
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 11;
    width: 100vw;
    /* height: calc(100vh - 100px); */
    /* background: rgba(0,0,0,0.2); */
    background: #fff;
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    transition: all .8s ease;
}

.header .l>ul>li:hover .erji,
.header .r>ul>li:hover .erji {
    clip-path: inset(0 0 0 0);
    opacity: 1;
}



/* .header .erji .w{
    background: #fff;
    width: 100%;
} */
.header .erji .w1400 {
    display: flex;
    padding-top: 70px;
    padding-bottom: 50px;
}

.header .erji-l {
    flex: 1;
    padding-right: 5%;

}

.header .erji-l h3 {
    font-size: 36px;
    /* font-weight: bold; */
    line-height: 1;
    color: #000;
}

.header .erji-l ul {
    margin-top: 30px;
    width: max-content;
    display: flex;
    flex-direction: column;
    gap: 12px 4%;
	flex-wrap:wrap;
	height:200px;
	width: 100%;
		    
}

.header .erji-l li {
	height:auto;
    line-height: 30px;
	width:30%;
}

.header .erji-l li:hover {
    background: #E7E7E6;
}

.header .erji-l li a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    font-size: 18px;
    padding: 0 12px;
    color: #000;
	width:100%;
}

.header .erji-l li a span {
    /* font-weight: bold; */
	width:80%;
}


.header .erji-r {
    width: 25%;
    height: 100%;
    padding-left: 60px;
    border-left: 1px solid #000;
    color: #000;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
}

.header .erji-r .ewms {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.header .erji-r .ewms .ewm {
    flex: 1;
}

.header .erji-r .ewms .ewm img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header .erji-r .ewms .ewm p {
    font-size: 12px;
    line-height: 2;
}

.header .erji-r h3 {

    font-size: 29px;
    /* font-weight: bold; */
    margin-top: 10px;
}

.header .erji-r h6 {
    font-size: 12px;
    /* font-weight: bold; */
	display:none;

}

.header .erji-r h4 {
    font-size: 32px;
    /* font-weight: bold; */
    margin-top: 10px;
}



.search-box{
    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-w h3{
	font-size:48px;
	margin-bottom:30px;
	font-weight:bold;
	color:#fff;
	text-align:center;
}
.search-box .w1400 {
    position: relative;
}
.search-box .w1400 .w{
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    
}
.search-box .w1400 input{
    flex: 1;
    height: 60px;
    line-height: 60px;
     
    padding: 0 30px ;
    font-size: 18px;
}
.search-box .w1400 .icon{
    display: inline-block;
    font-size: 30px;
    color: #f00;
    cursor: pointer;
    padding: 0 30px;
    height: 100%;
}
.search-box .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;
}
















footer {
    background: #000;
    padding: 80px 0;
}

footer .top {
    padding: 0 50px;
    border-bottom: 2px solid #d2d2d2;
    color: #fff;
}

footer .top>ul {
    gap: 15px;
    padding: 40px 0 25px;
}

footer .top>ul img {
   
    height: 35px;
	object-fit:contain;
}

footer .top-t {
    gap: 7%;
}

footer .top-t .l img {
    height: 36px;
    object-fit: contain;
}

footer .top-t .l p {
    font-size: 16px;
    margin-top: 15px;
 
    text-align: center;
}

footer .top-t .r {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

footer .top-t .r .nav {
    gap: 50px;
	width:50%;
	justify-content: space-around;
}

footer .top-t .r .nav li {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

footer .top-t .r .nav li a {
    font-size: 18px;
    line-height: 1;
    padding: 0 10px;
    color: #fff;
	white-space: nowrap;
}

footer .top-t .r .nav li a:hover {
    color: var(--color);
}

footer .top-t .r .info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .top-t .r .info img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

footer .top-t .r .info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
}


footer .bottom {
    color: #d7d7d7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 30px 0 0;
	gap:10px;
}

footer .bottom p {
    font-size: 18px;
    line-height: 34px;
}

footer .bottom .search {
    height: 34px;
    line-height: 34px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 2px 0 15px;
    gap: 10px;
}

footer .bottom .search input {
    width: 170px;
    height: 100%;
    font-size: 16px;
}

footer .bottom .search button {
    height: 30px;
    line-height: 30px;
    padding: 0 35px;
    border-radius: 15px;
    background: #FDDB00;
    color: #000;
    font-size: 18px;
}


.index-banner {
    
    overflow: hidden;
	position:relative;
}
.index-banner .video-play{
	
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	z-index:3;
	display:flex;
	align-items:center;
	justify-content: center;
	width:60px;
	height:60px;
	border-radius:50%;
	background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
	display:none;
	cursor: pointer; 
	
}
.index-banner .video-play .iconfont{
	color: #fff;
	font-size:20px;
}
.index-banner video{
	width:100%;
	height:100vh;
	object-fit:cover;
}
.index-banner #video2{
	display:none;
}
.index-banner .swiper {
    height: 100%;
}

.index-banner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.index-banner .swiper-pagination {
    display: flex;
    flex-direction: column;
    align-items: end;
    left: 50% !important;
    transform: translateX(-50%);
    bottom: 20px;

}

.index-banner .index-banner-bullet {
    display: inline-block;
    width: 22px;
    height: 22px;
    /* border: 1px solid var(--color); */
    border-radius: 50%;
    margin: 6px 0;
    position: relative;
    cursor: pointer;
}

.index-banner .index-banner-bullet.index-banner-bullet-active {
    border: 1px solid var(--color);
}

.index-banner .index-banner-bullet::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ccc;
}

.index-banner .index-banner-bullet.index-banner-bullet-active::after {
    background: var(--color);
}



/* .index-page1 {
    background: url('../images/index_page_bg.jpg') no-repeat center bottom #f4f4f4;
    background-size: contain;
    padding: 110px 0 600px;
} */

.index-page1 {
    background:  #f4f4f4;
    position: relative;
    z-index: 2;
	 padding: 110px 0 0px;
}
.index-page1 .img1{
    margin-top: -30px;
    width: 100%;
    object-fit: contain;
}
.index-page1 .img2{
    position: absolute;
    bottom: 0;
    left:0;
    width: 100%;
    object-fit: contain;
    z-index: -1;
    max-height:650px;
}

.index-page1 h3 {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 72px;
    /* font-weight: bold; */
    line-height: 1.4;
}

.index-page1 h3 hr {
    height: 1px;
    background: #000;
    display: inline-block;
    width: 100%;
    flex: 1;
}

.index-page1 .info {
    justify-content: space-between;
}

.index-page1 .info .l h5 {
    font-size: 24px;
    line-height: 1;
    /* font-weight: bold; */
    margin: 20px 0 30px;
}

.index-page1 .info .l h2 {
    font-size: 40px;
    line-height: 1;
    /* font-weight: bold; */
}

.index-page1 .info .r {
    padding-right: 25px;
    text-align: right;
}

.index-page1 .info .r a {
    display: block;
    height: 36px;
    line-height: 36px;
    color: #000;
    padding: 0 30px;
    border-radius: 20px;
    background: #FDDB00;
    margin-top: 30px;
    font-size: 18px;
	    white-space: nowrap;
}


.index-page2 {
    padding: 110px 0 60px;
    background: url('../images/index_page2_bg.jpg') no-repeat center;
    background-size: cover;
}

.index-page2 h3 {
    font-size: 48px;
	line-height:1;
	 text-align: center;
    /* font-weight: bold; */
    
}

.index-page2 h5 {
    margin-top: 20px; 
    font-size: 20px;
    line-height:1.5;
    text-align: center;
}

/* .index-page2 .nav {
    margin-top: 50px;
    justify-content: center;
    align-items: center;
}

.index-page2 .nav li {
    width: 180px;
    padding: 15px 0;
    text-align: center;
    cursor: pointer;
    border-right: 1px solid #AEAEAE;
}

.index-page2 .nav li:last-child {
    border-right: none;
}

.index-page2 .nav li img {
    height: 40px;
    object-fit: contain;
}

.index-page2 .nav li p {
    font-size: 16px;
    line-height: 24px;

    margin-top: 15px;

	padding:0 5px;
}

.index-page2 .nav li.active,
.index-page2 .nav li:hover {
    background: var(--color);
}

.index-page2 .swiper-list {
    margin-top: 60px;

}

.index-page2 .swiper-list li {
    padding: 0 60px;
    position: relative;
    display: none;
}

.index-page2 .swiper-list li:first-child {
    display: block;
}

.index-page2 .swiper-list li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index-page2 .swiper-list li .swiper-button-disabled {
    opacity: 0.5;
}

.index-page2 .swiper-list li .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #999;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.index-page2 .swiper-list li .btn.l-btn {
    left: 0;

}

.index-page2 .swiper-list li .btn.l-btn .iconfont {
    transform: rotate(180deg);
}

.index-page2 .swiper-list li .btn.r-btn {
    right: 0;
}

.index-page2 .swiper-list li .btn .iconfont {
    font-size: 24px;
}

.index-page2 .swiper-list li .btn:hover {
    background: var(--color);
    color: #000;
} */

.index-page2 .swiper2 {
    margin-top: 50px;
    padding:0 50px;
}

.index-page2 .swiper2 .swiper-slide{
    padding: 15px 0;
    text-align: center;
    cursor: pointer;
    border-left: 1px solid #AEAEAE;
}

.index-page2 .swiper2 .swiper-slide:first-child {
    border-left: none;
}

.index-page2 .swiper2 .swiper-slide img {
    height: 40px;
    object-fit: contain;
}

.index-page2 .swiper2 .swiper-slide p {
    font-size: 16px;
    line-height: 24px;

    margin-top: 15px;

	padding:0 5px;
}

.index-page2 .swiper2 .swiper-slide-thumb-active,
.index-page2 .swiper2 .swiper-slide:hover {
    background: var(--color);
}

.index-page2 .swiper1 {
    margin-top: 60px;
	height:500px;
}

.index-page2 .swiper1 .swiper-slide{
    padding: 0 60px;
    position: relative;
    
}

 
.index-page2 .swiper1 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* .index-page2 .swiper1 .swiper-button-disabled {
    opacity: 0.5;
} */

.index-page2 .swiper1 .btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #999;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
}

.index-page2 .swiper1 .btn.l-btn {
    left: 0;

}

.index-page2 .swiper1 .btn.l-btn .iconfont {
    transform: rotate(180deg);
}

.index-page2 .swiper1 .btn.r-btn {
    right: 0;
}

.index-page2 .swiper1 .btn .iconfont {
    font-size: 24px;
}

.index-page2 .swiper1 .btn:hover {
    background: var(--color);
    color: #000;
}
























.index-page3 {
    padding: 100px 0 80px;
}

.index-page3 .w1400 {
    position: relative;
}

.index-page3 .list {
    background: url('../images/index_page3_bg.jpg') no-repeat center;
    background-size: cover;
    margin-left: 250px;
    box-shadow: 0 0 12px 12px rgba(160, 160, 160, 0.1);
}

.index-page3 .list li {
    display: none;
    padding: 140px 50px 30px;
}

.index-page3 .list li:first-child {
    display: block;
}

.index-page3 .list li img {
    width: 100%;
	height:500px;
    object-fit: cover;
}

.index-page3 .list li h5 {
    font-size: 24px;
    line-height: 1;
    /* font-weight: bold; */
    margin-top: 40px;
}

.index-page3 .list li .w {
    margin-top: 20px;
    color: #000;
}


.index-page3 .list li .w {
    align-items: center;
    gap: 5%;
}

.index-page3 .list li .w .editor {
    font-size: 16px;
    line-height: 1.5;
}

.index-page3 .list li .w .editor p {
    font-size: 16px;
    line-height: 1.6;
}

.index-page3 .list li .l {
    flex: 1;
}

.index-page3 .list li .r {
    padding-right: 20px;
}

.index-page3 .list li .r .iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
   
    font-size: 24px;
    cursor: pointer;
	 background: var(--color);
    color: #000;
    transition: all 0.3s ease;
}

.index-page3 .list li .r .iconfont:hover {
    background: #999;
    color: #fff;
}

.index-page3 .info {
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px 0 0 50px;
}

.index-page3 .info h2 {
    font-size: 60px;
    line-height: 1;
    /* font-weight: bold; */
}

.index-page3 .info h3 {
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    margin-top: 25px;
}

.index-page3 .info .nav {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px;
	    width: max-content;
}

.index-page3 .info .nav li {
    font-size: 24px;
    line-height: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}

.index-page3 .info .nav li span {
    width: 120px;
}

.index-page3 .info .nav li::after {
    content: '';
    display: inline-block;
    width: 0px;
    height: 2px;
    background: none;
    transition: all 0.3s ease;
    text-align: center;
}

.index-page3 .info .nav li:hover::after,
.index-page3 .info .nav li.active::after {
    width: 75px;
    background: #FDDB00;
}

.index-page4 {
    padding: 100px 0 120px;
    text-align: center;
}

.index-page4 h3 {
    font-size: 48px;
	line-height:1;
    /* font-weight: bold; */

}

.index-page4 h6 {
    font-size: 20px;
    margin-top: 20px;
}

.index-page4 .swiper {
    margin-top: 60px;
    height: 480px;
    padding: 10px;
}

.index-page4 .swiper::after {
    content: '';
    display: inline-block;
    width: 200px;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}

.index-page4 .swiper::before {
    content: '';
    display: inline-block;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 10%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

/* 走马灯 */
.index-page4  .swiper-wrapper {
    transition-timing-function: linear !important; 
  }
  
.index-page4 .swiper-slide {
    height: 100px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(60, 60, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
	padding:15px;
}

.index-page4 .swiper-slide.swiper-slide-blank{
	box-shadow:none;
}

.index-page4 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.index-page4 .pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.index-page4 .pagination .index-page4-bullet {
    height: 30px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
}

.index-page4 .pagination .index-page4-bullet::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.index-page4 .pagination .index-page4-bullet-active {
    border: 2px solid var(--color);
}



.index-page5 {
    position: relative;
	max-height:1000px;
	overflow:hidden;
	display: flex;
    align-items: center;
}
.index-page5 img{
	width:100%;
	
	object-fit:contain;
}
.index-page5 .w1300 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 70px;
}

.index-page5 .w1300 .top {
    justify-content: flex-end;
}

.index-page5 .w1300 .l {
    flex: 1;
    text-align: right;
    color: #fff;
}

.index-page5 .w1300 .l h3 {
    font-size: 50px;
    /* font-weight: bold; */
    line-height: 1;
    margin: 35px 0;
}

.index-page5 .w1300 .l .editor,
.index-page5 .w1300 .l .editor p {
    font-size: 16px;
    line-height: 36px;
}

.index-page5 .w1300 .r img {
    width: 400px;
    object-fit: contain;
}

.index-page5 .bottom {
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
}

.index-page5 #digital {

    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: rgba(255, 255, 255, 0.33);
    border-radius: 10px;
    overflow: hidden;
}

.index-page5 #digital li {
    padding: 40px 45px 30px;
    text-align: center;
    min-width: 240px;
}

.index-page5 #digital li p {
    font-size: 60px;
    line-height: 1.4;

}

.index-page5 #digital li:nth-child(3) p {
    min-width: 200px;
}

.index-page5 #digital li span {
    font-size: 20px;
    /* font-weight: bold; */
}


.index-page6 {
	width:100%;
	overflow:hidden;
    padding: 150px 0 120px;
    background: #F8F8F8;
}

.index-page6 .w {
    position: relative;
    padding-top: 70px;
	max-width:1920px;
	margin:0 auto;
}


.index-page6 .l {
    width: 60%;
    background: #FDDB00;
    padding: 20px 20px 20px calc(50% - 650px);

}

.index-page6 .l .title {
	width:70%;
    font-size: 48px;
    /* font-weight: bold; */
}

.index-page6 .l .editor {
	width:70%;
    margin-top: 10px;
    font-size: 16px;
    line-height: 30px;
    min-height: 340px;
}
.index-page6 .l .editor p{
	 font-size: 16px;
    line-height: 30px;
}
.index-page6 .l h5 {
    font-size: 26px;
    line-height: 1.6;
    font-weight: normal;
    display: flex;
    justify-content: end;
	display:none;
}


.index-page6 .r {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
}

.index-page6 .r img {
    max-width: 55%;
    object-fit: contain;
}


.index-page7 {
    padding: 120px 0;
}

.index-page7 h2 {
    font-size: 60px;
    /* font-weight: bold; */
}

.index-page7 h3 {
    font-size: 48px;
    /* font-weight: bold; */
}

.index-page7 ul {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.index-page7 ul li {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.index-page7 ul li a {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #000;
}

.index-page7 ul li .img {
    flex: 1;
    overflow: hidden;
}

.index-page7 ul li .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}

.index-page7 ul li a:hover img {
    transform: scale(1.1);
}

.index-page7 ul li .info {
    padding: 30px;
    background: #F8F8F8;
    margin-top: 3px;
}

.index-page7 ul li .info .time {
    font-size: 12px;
    color: #bbb;
    /* font-weight: bold; */
}

.index-page7 ul li .info .title {
    font-size: 20px;
    /* font-weight: bold; */
    margin: 10px 0 5px;
}

.index-page7 ul li .info .editor {
    font-size: 12px;
    line-height: 1.8;
    color: #999;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.index-page7 ul li .info .editor p {
    font-size: 12px;
    line-height: 1.8;
}

.index-page7 ul li .info .more {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}
.index-page7 ul li a:hover .info .more {
	color:var(--color);
}

.index-page7 ul li .info .more i {
    margin-left: 5px;
    font-size: 12px;
}


.index-page7 ul li:nth-child(3n+3) a {
    flex-direction: row;
	height: calc( ( 100% - 40px ) / 3);

}

.index-page7 ul li:nth-child(3n+3) .img {
    width: 200px;
    flex: none;
}

.index-page7 ul li:nth-child(3n+3) .info {
    flex: 1;
    padding: 0 0 0 20px;
    margin-top: 0;
    background: none;
    display: flex;
    flex-direction: column;
}

.index-page7 ul li:nth-child(3n+3) .info .title {
    font-size: 16px;
    flex: 1;
    display: flex;
    align-items: center;
}

.index-page7 ul li:nth-child(3n+3) .info .more {
    padding-bottom: 20px;
}






.common-banner {
    width: 100%;
    position: relative;
}

.common-banner img {
    width: 100%;
    object-fit: contain;
}
.common-banner .info{
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: right;
}
.common-banner .info h3{
    font-size: 60px;
    line-height: 1;
    padding-bottom: 18px;
    font-weight: bold;
    position: relative;
    padding: 0 30px 18px;
}
.common-banner .info h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 460px;
    height: 40px;
    background: var(--color);
    z-index: -1;
}
.common-banner .info h4{
    font-size: 36px;
	padding:0 15px;
}

.about-page1 {
    padding: 100px 0;
    overflow: hidden;
}

.about-page1 .info {
    gap: 10%;
}

.about-page1 .info .time {
    font-size: 100px;
    line-height: 1.1;
    /* font-weight: bolder; */
    font-family: Arial;
}

.about-page1 .info .editor {
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
    text-align: right;
    flex: 1;
    padding-right: 50px;
}

.about-page1 .info .editor p {
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
}

.about-page1 ul {
    margin-top: 100px;
    display: flex;
    padding: 0 10%;
    justify-content: space-around;
}

.about-page1 ul li {
    padding: 0 20px;
    text-align: center;
}

.about-page1 ul li p {
    color: var(--color);
    font-size: 72px;
    /* font-weight: bold; */
    line-height: 1.2;
}

.about-page1 ul li span {
    font-size: 20px;
    /* font-weight: bold; */
}


.about-page2 {
    position: relative;
}

.about-page2 .img {
    position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
    z-index: 2;
}
.about-page2 .img img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.about-page2 .img.hide {
    z-index: -2;
	opacity:0;
}

.about-page2 .play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: inline-block;
    width: 120px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    /* Safari 支持 */
    transition: all 0.3s ease;
}

.about-page2 .play:hover {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Safari 支持 */
    /* box-shadow: 0 0 10px 6px rgba(255,255,255,0.2); */
}

.about-page2 .play .iconfont {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.about-page2 iframe {
   
    width: 100%;
    height: 800px;
    object-fit: contain;
	
    /* z-index: 10; */
}
.about-page2 video {
    background:#000;
    width: 100%;
    height: 100%;
    object-fit: contain;
	max-height:calc(100vh - 100px);
    /* z-index: 10; */
}

.about-page3 {
    padding: 120px 0 0;
}

.about-page3 h3 {
    font-size: 48px;
	line-height:1;
    /* font-weight: bold; */
    text-align: center;
}

.about-page3 .editor {
    padding: 40px 0;
    font-size: 18px;
    line-height: 2;
    text-align: center;
}

.about-page3 .editor p {
    font-size: 18px;
    line-height: 2;
}

.about-page3>img {
    width: 100%;
    object-fit: contain;
}


.about-culture-page1{
	overflow:hidden;
}
.about-culture-page1 .top {
    padding: 80px 0 100px;
    gap: 10%;
    justify-content: space-between;
}
 
.common-about-title h4 {
    font-size: 48px;
    /* font-weight: bold; */
}

.common-about-title h5 {
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
}

.common-about-title h5 span {
    color: var(--color);
}
.common-about-title .yel 
{
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
    display: inline-block;
    color: var(--color);
}
.about-culture-page1 .top .r {
    text-align: right;
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.6;
}

.about-culture-page1 .top .r p {
    font-size: 18px;
}

.about-culture-page1 .bottom {
    height: 700px;
    background: url('../images/about_culture_page1_bg.jpg') no-repeat center;
    background-size: cover;
}

.about-culture-page1 .bottom ul {
    display: flex;
    height: 100%;
}

.about-culture-page1 .bottom ul li {
    height: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #eee;
    color: #fff;
    text-align: center;
    padding: 0 30px;
    transition: all 0.5s ease;
}

.about-culture-page1 .bottom ul li:last-child {
    border-right: none;
}

.about-culture-page1 .bottom ul li img {
    height: 80px;
    object-fit: contain;
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.about-culture-page1 .bottom ul li .p1 {
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.about-culture-page1 .bottom ul li .p2 {
    font-size: 18px;
    line-height: 30px;
    height: 60px;
    transition: all 0.5s ease;
}

.about-culture-page1 .bottom ul li:hover {
    flex: 1.5;
}

.about-culture-page1 .bottom ul li:hover img {
    height: 100px;
}

.about-culture-page1 .bottom ul li:hover .p1 {
    font-size: 40px;
    /* font-weight: bold; */
}

.about-culture-page1 .bottom ul li:hover .p2 {
    font-size: 30px;
    line-height: 40px;
    height: 80px;
    /* font-weight: bold; */
}

.about-culture-page2 {
    padding: 120px 0;
}

.about-culture-page2 h2 {
    font-size: 60px;
	line-height:1;
    /* font-weight: bold; */
    text-align: center;
}

.about-culture-page2 h4 {
    margin-top: 20px;
    font-size: 24px;
	line-height:1;
    /* font-weight: bold; */
    text-align: center;
}

.about-culture-page2 .editor {
    margin-top: 80px;
}



.about-culture-page2 .item{
    display: flex;
    gap: 30px;
    margin-bottom: 150px;
}
.about-culture-page2 .item:last-child{
	 margin-bottom: 0;
}
.about-culture-page2 .item img{
    width: 100%;
    object-fit: contain;
}
.about-culture-page2 .item .tit{
    font-size: 32px;
    line-height: 1;
    padding: 10px 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}
.about-culture-page2 .item .tit::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 160px;
    height: 20px;
    background: var(--color);
    z-index: -1;
   
}
.about-culture-page2 .item p{
    font-size: 13px;
    line-height: 2;
}
.about-culture-page2 .item1{
    align-items: flex-end;
}
.about-culture-page2 .item1 .r,
.about-culture-page2 .item3 .r{
    width: 67%;
    max-width: 870px;
}
.about-culture-page2 .item2 .l{
    width: 67%;
    max-width: 870px;
}
.about-culture-page2 .item2 .r img{
    margin-bottom: 40px;
}
.about-culture-page2 .item2 .r{
    text-align: right;
}
.about-culture-page2 .item2 .r .tit::after{
    left: auto;
    right: 0
}
.about-culture-page2 .item4 .l{
    width: 30%;
    max-width: 400px;
}
.about-culture-page2 .item4 .c{
    width: 33%;
    max-width: 430px;
}

.about-culture-page2 .item1 .r,
.about-culture-page2 .item2 .l,
.about-culture-page2 .item3 .r,
.about-culture-page2 .item4 .r{
    flex: 1;
}








.about-join-page1 {
    padding: 90px 0 0;
}

.about-join-page1 .top {
    justify-content: space-between;
    gap: 10%;
}

.about-join-page1 .r {
    width: 58%;
    padding: 10px 0;
    text-align: right;
    font-size: 18px;
    line-height: 30px;
    color: #000;
}

.about-join-page1 .r p {
    font-size: 18px;
    line-height: 30px;
    color: #000;
    /* font-weight: bold; */
}

.about-join-page1 .bottom {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}

.about-join-page1 .bottom a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 25px;
    height: 50px;
    line-height: 50px;
    border-radius: 30px;
    border: 1px solid #999;
    font-size: 18px;
    /* font-weight: bold; */
    color: #000;
    transition: all 0.3s ease;
}

.about-join-page1 .bottom img {
    width: 27px;
    object-fit: contain;
}

.about-join-page1 .bottom a:hover {
    background: var(--color);
    border-color: var(--color);
}


.about-join-page2 {
    padding: 90px 0;
}

.about-join-page2 ul {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.about-join-page2 ul li {
    background: #F4F4F4;
    border-bottom: 1px solid #fff;
    cursor: pointer;
}

.about-join-page2 ul li:first-child {
    background: var(--color);
    font-size: 20px;
    border-bottom: none;
}

.about-join-page2 ul li:first-child .list .item {
    font-size: 18px;
    /* font-weight: bold; */
    padding: 20px 10px;
}

.about-join-page2 ul li .list {
    display: flex;
    align-items: center;
}

.about-join-page2 ul li .list .item {
    width: 18%;
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
}

.about-join-page2 ul li .list .item:last-child {
    width: 10%;
}

.about-join-page2 ul li .list .item .icon-jiantou {
    display: inline-block;
    transform: rotate(-90deg);
    color: var(--color);
    font-size: 22px;
    transition: all 0.3s ease;
}

.about-join-page2 ul li.active .item .icon-jiantou {
    transform: rotate(90deg);
}





.about-join-page2 ul li .editor {
    background: #fff;
    border: 1px solid #ccc;
    padding: 25px 50px;
    font-size: 16px;
    line-height: 30px;
    color: #000;
    display: none;
}




.about-join-page2 ul li .editor h5 {
    font-size: 16px;
    line-height: 30px;
    color: #000;
    /* font-weight: bold; */
}

.about-join-page2 ul li .editor p {
    font-size: 16px;
    line-height: 30px;
    color: #000;
}

.about-join-page2 ul li .editor .more {
    display: inline-block;
    background: var(--color);
    color: #000;
    height: 40px;
    line-height: 40px;
    padding: 0 30px;
    font-size: 18px;
    /* font-weight: bold; */
    border-radius: 20px;
    margin-top: 30px;
}

.about-join-page3 {
    background: url('../images/about_join_page3_bg.png') no-repeat center;
    background-size: cover;
    padding: 80px 0;
}

.about-join-page3 h3 {
    font-size: 48px;
    color: var(--color);
    text-align: center;
}

.about-join-page3 .editor {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin-top: 50px;
    color: #fff;
}

.about-join-page3 .editor p {
    font-size: 18px;
    line-height: 2;
    color: #fff;
}

.about-join-page3 ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
}

.about-join-page3 ul li {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.about-join-page3 ul li .img {
    height: 80px;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.about-join-page3 ul li img {
    width: 100%;
    object-fit: contain;
}

.about-join-page3 ul li:nth-child(1) img {
    width: 95px;
}

.about-join-page3 ul li:nth-child(2) img {
    width: 90px;
}

.about-join-page3 ul li:hover {
    background: rgba(255, 255, 255, 0.2);
}

.about-join-page3 ul li p {
    font-size: 20px;
    color: #fff;
    margin-top: 25px;
}

.about-join-page4 {
    padding: 100px 0 120px;
    background: #F4F4F4;
}

.about-join-page4 h3 {
    font-size: 48px;
	line-height:1;
    text-align: center;
}

.about-join-page4 h6 {
    font-size: 18px;
    line-height: 1;
    text-align: center;
    margin-top: 20px;
}

.about-join-page4 ul {
    display: flex;
    gap: 25px;
    margin-top: 50px;
}

.about-join-page4 ul li {
    border-radius: 20px;
    background: var(--color);
    flex: 1;
    padding: 55px 55px 60px;
    color: #000;

    transition: all 0.5s ease;
}

.about-join-page4 ul li .title {
    font-size: 36px;
}

.about-join-page4 ul li .title2 {
    font-size: 18px;
    margin-top: 10px;
}

.about-join-page4 ul li .editor {
    opacity: 0;
    transition: all 0.5s ease;
    margin-top: 30px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.about-join-page4 ul li .editor p {
    font-size: 18px;
    line-height: 30px;
    color: #fff;
}

.about-join-page4 ul li.active {
    flex: 2;
    background: url('../images/about_join_page4_bg.jpg') no-repeat center;
    background-size: cover;
    color: #fff;
}

.about-join-page4 ul li.active .editor {
    opacity: 1;
}


.about-join-page5 {
    padding: 70px 0 120px;
}

.about-join-page5 h3 {
    font-size: 48px;
    text-align: center;
}

.about-join-page5 h6 {
    font-size: 18px;
    line-height: 2;
    text-align: center;
    margin-top: 35px;
}

.about-join-page5 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 90px;
}

.about-join-page5 ul li {
    padding: 0 30px;
    border-radius: 20px;
    background: #F4F4F4;
    display: flex;
    flex-direction: column;
	position:relative;
}


.about-join-page5 ul .img {
    width: 90px;
    height: 100px;
    background: var(--color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-20px);
}

.about-join-page5 ul img {
    object-fit: contain;
}

.about-join-page5 ul li:nth-child(1) img {
    height: 55px;
}

.about-join-page5 ul li:nth-child(2) img {
    height: 65px;
}

.about-join-page5 ul li:nth-child(3) img {
    height: 70px;
}

.about-join-page5 ul li:nth-child(4) img {
    height: 60px;
}

.about-join-page5 ul .editor {
    padding: 10px 0 40px;
    font-size: 18px;
    line-height: 2;
    flex: 1;
}

.about-join-page5 ul .editor p {
    font-size: 18px;
    line-height: 2;
}

.about-join-page5 ul .bottom {
    font-size: 22px;
    /* font-weight: bold; */
    text-align: right;
	position:absolute;
	top:0;
	right:0px;
	width:100%;
	padding: 25px 30px 25px 120px;
	text-align:center;
}

.about-history-page1 {
    padding: 90px 0;
}

.about-history-page2 {
    padding: 160px 0 200px;
    background: url('../images/about_history_page_bg.jpg') no-repeat top center;
    background-size: cover;
}

.about-history-page2 .w1300 {
    position: relative;
}

.about-history-page2 .swiper1 .swiper-slide {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.about-history-page2 .swiper1 h1 {
    font-size: 120px;
    /* font-weight: bold; */
    line-height: 1.5;
}

.about-history-page2 .swiper1 h5 {
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
}

.about-history-page2 .swiper1 .editor {
    font-size: 16px;
    line-height: 2;
    padding: 20px 0;
}

.about-history-page2 .swiper1 .editor p {
    font-size: 16px;
    line-height: 2;
}

.about-history-page2 .swiper2 {
    margin: 30px 50px 0;

}

.about-history-page2 .swiper2 .swiper-slide {
    padding: 40px 0 30px;
    position: relative;
    cursor: pointer;
}

.about-history-page2 .swiper2 .swiper-slide::after {
    content: '';
    display: inline-block;
    width: 2px;
    height: 100px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 30px;
    transition: all 0.5s ease;
}

.about-history-page2 .swiper2 .swiper-slide img {
    width: 100%;
    object-fit: contain;
}

.about-history-page2 .swiper2 .swiper-slide p {
    font-size: 22px;
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    padding: 10px 15px 0;
    line-height: 1.4;
}

.about-history-page2 .swiper2 .swiper-slide .lines {
    padding: 50px 0 0 25px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.about-history-page2 .swiper2 .swiper-slide .line1 {
    height: 32px;
    width: 2px;
    background: #000;
    margin-bottom: 9px;
}

.about-history-page2 .swiper2 .swiper-slide .line2 {
    height: 16px;
    margin-bottom: 17px;
    width: 2px;
    background: #000;
}

.about-history-page2 .swiper2 .swiper-slide .line3 {
    height: 50px;
    width: 2px;
    background: #000;

}

.about-history-page2 .swiper2 .swiper-slide.swiper-slide-thumb-active::after {
    height: 170px;
    bottom: 0;
    background: var(--color);
}

.about-history-page2 .swiper2 .swiper-slide.swiper-slide-thumb-active p {
    color: var(--color);
}

.about-history-page2 .btns {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-history-page2 .btns .btn {
    width: 50px;
	cursor:pointer;
}

.about-history-page2 .btns .iconfont {
    font-size: 36px;
    width: 30px;
    display: inline-block;
}

.about-history-page2 .btns .btn.l-btn .iconfont {
    display: inline-block;
    transform: rotate(180deg);
}


.about-history-page2 .btns .btn.l-btn {
    text-align: left;
}


.about-history-page2 .btns .btn.r-btn {
    text-align: right;
}


.about-media-page1 {
    padding: 90px 0;
}

.about-media-page2 {
    padding-bottom: 120px;
}

.about-media-page2 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.about-media-page2 ul li {
    border-radius: 20px;
    box-shadow: 0 0 5px 5px rgba(60, 60, 60, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 8%;
    gap: 30px;
}

.about-media-page2 ul li .l {
    flex: 1;
}

.about-media-page2 ul li .l p {
    font-size: 26px;
    /* font-weight: bold; */
    margin-bottom: 15px;
	/* text-align:center; */
	    white-space: nowrap;

}

.about-media-page2 ul li .l span {
    font-size: 20px;
}
.about-media-page2 ul li .xiaohao {
    font-size: 18px;
	/* text-align:center; */
	    white-space: nowrap;

}

.about-media-page2 ul li .r {
    width: 130px;
    text-align: center;
}

.about-media-page2 ul li .r img {
    width: 100%;
    object-fit: contain;
}

.project-page1 {
    padding: 90px 0;
}

.project-page2 {
    position: relative;
}

.project-page2 img {
    width: 100%;
    height: 1300px;
    object-fit: cover;
}

.project-page2 .info {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.project-page2 .info h2 {
    width: 54%;
    margin-bottom: 60px;
    font-size: 66px;
    line-height: 1.4;
    /* font-weight: bold; */
    text-align: right;
}

.project-page2 .info h5 {

    padding: 70px 0;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
}




.project-page2 .info ul {
    padding: 60px 50px;
    background: #fff;
    border-radius: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 40px;
	    width: 1200px;
    margin: 0 auto;
}

.project-page2 .info ul li {
    padding: 0 20px 25px;
    border-radius: 20px;
    border: 2px dashed var(--color);
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-page2 .info ul li .title {
    font-size: 22px;
 
    line-height: 30px;
	
    /* font-weight: bold; */
    margin:20px 5px;
}

.project-page2 .info ul li .w {
    margin-top: 10px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.project-page2 .info ul li .w p {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex: 1;
    font-size: 40px;
    line-height: 1;
    /* font-weight: bold; */
}

.project-page2 .info ul li .w p b {
    font-size: 100px;
    line-height: 0.85;
	font-weight:normal;
}

.project-page2 .info ul img {
    width: auto;
    height: 90px;
    object-fit: contain;
}

.project-page3 {
    padding-bottom: 100px;
}

.project-page3 .top {
    padding: 30px 0;
}

.project-page3 .top h3 {
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}

.project-page3 .top h5 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1;
    text-align: center;

}

.project-page3 ul {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-page3 ul li {
    padding: 35px 45px;
    border-radius: 20px;
    box-shadow: 0 0 5px 5px rgba(100, 100, 100, 0.1);
}

.project-page3 ul li h3 {
    font-size: 44px;
    line-height: 1.6;
    /* font-weight: bold; */
    padding: 0 20px;
}

.project-page3 ul li h5 {
    font-size: 22px;
    line-height: 2;
    /* font-weight: bold; */
    padding: 0 20px 0px;
    position: relative;
    width: max-content;
}

.project-page3 ul li h5::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 20px;
    background: var(--color);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.project-page3 ul li .editor {
    margin-top: 120px;
    font-size: 16px;
    line-height: 1.8;
}

.project-page3 ul li .editor p {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 2px;
}

.project-page3 ul li:hover {
    background: var(--color);
}
.project-page4 {
	display:none;
}
.project-page4 img {
    width: 100%;
    object-fit: contain;
}

.project-page5 {
    padding: 50px 0 0;
}

.project-page5 h1 {
    font-size: 80px;
    /* font-weight: bold; */
    text-align: center;
}

.project-page5 h1 span {
    position: relative;
}

.project-page5 h1 span::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 40px;
    background: var(--color);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: -1;
}

.project-page5 h5 {
    margin-top: 40px;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
}

.project-page5 .vr {
    margin-top: 80px;
    position: relative;
}

.project-page5 .vr img {
    width: 100%;
    object-fit: contain;
}

.project-page5 .vr a {
    display: flex;
    align-items: center;
    padding: 0 40px;
    gap: 10px;
    font-size: 30px;
    color: var(--color);
    border-radius: 26px;
    height: 55px;
    line-height: 55px;
    background: rgba(200, 200, 200, 0.2);
    border: 1px solid var(--color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.project-page5 .vr a img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.project-page5 .vr a:hover {
    background: rgba(200, 200, 200, 0.4);
}

.project-page6 {
    padding: 120px 0 0;
}

.project-page6 h2 {
    font-size: 48px;
    /* font-weight: bold; */
    line-height: 1;
    text-align: center;
}

.project-page6 h5 {
    margin-top: 30px;
    font-size: 24px;
    line-height: 1;
    text-align: center;
}

.project-page6 .w {
    margin-top: 60px;
    background: url('../images/project_page6_bg.jpg') no-repeat center;
    background-size: cover;
    padding: 120px 0 100px;
}

.project-page6 .w ul {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;

}

.project-page6 .w ul li {
    width: calc((100% - 100px)/3);
    background: rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-page6 .w ul li .title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 25px;
    color: var(--color);
}

.project-page6 .w ul li .title img {
    height: 45px;
}

.project-page6 .w ul li .editor {
    padding-top: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    min-height: 120px;
}

.project-page6 .w ul li .editor p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.project-page7 {
    padding: 90px 0;
}

.project-page7 h2 {
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}

.project-page7 ul {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 40px;
    justify-content: center;
}

.project-page7 ul li {
    border-radius: 20px;
    background: #F4F4F4;
    padding: 35px 25px;
    box-shadow: 0 0 8px 5px rgba(150, 150, 150, 0.2);
}

.project-page7 ul li h4 {
    font-size: 26px;
    line-height: 1.6;
    /* font-weight: bold; */
}

.project-page7 ul li .editor {
    font-size: 22px;
    line-height: 1.6;
    margin-top: 10px;
}

.project-page7 ul li .editor p {
    font-size: 22px;
    line-height: 1.6;
}

.project-page7 ul li:hover {
    background: var(--color);
}

.project-page8 {
    padding-bottom: 120px;
}

.project-page8>h3 {
    padding: 50px 0;
    font-size: 48px;
    /* font-weight: bold; */
}

.project-page8 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.project-page8 ul li {
    font-size: 0;
}

.project-page8 ul li a {
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.project-page8 ul li a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.project-page8 ul li:hover img {
    transform: scale(1.1);
}

.project-page8 ul li .info {
    border-left: 2px solid #ccc;
    padding-left: 15px;
    color: #333;
}

.project-page8 ul li .info h4 {
    padding: 30px 0;
    font-size: 20px;
    /* font-weight: bold; */
}

.project-page8 ul li .info h6 {
    margin-top: 10px;
    font-size: 16px;
    /* font-weight: bold; */
    line-height: 2;
}

.project-page8 ul li .info .editor {
    font-size: 14px;
    line-height: 1.4;
}

.project-page8 ul li .info .editor p {
    font-size: 14px;
    line-height: 1.4;
}

.project-page8 ul li .info .more {
    display: block;
    width: max-content;
    padding: 4px 10px;
    margin-top: 10px;
    margin-left: auto;
    text-align: right;
    font-size: 15px;
    line-height: 1;
    border: 1px solid #333;
    border-radius: 15px;
    color: #333;
}

.project-page8 ul li .info .more:hover {
    /* font-weight: bold; */
    color: #000;
    background: var(--color);
}

.project-robot-page1 {
    display: flex;
    justify-content: space-between;
    padding: 90px 0;
    gap: 5%;
    overflow: hidden;
}

.project-robot-page1 .common-about-title{
	max-width:50%;
}
.project-robot-page1 .common-about-title h5{
	margin-top:20px;
	line-height:1.5;
}

.project-robot-page1 .editor {
    max-width: 420px;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
    flex: 1;
}

.project-robot-page1 .editor p {
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
}

.project-robot-page2 {
    background: #f4f4f4;
}
.project-robot-page2>ul{
	max-width:1920px;
	margin:0 auto;
}
.project-robot-page2 li {
    padding: 90px 0;

}

.project-robot-page2 li .top {
    position: relative;
}

.project-robot-page2 .img {
    position: absolute;
    right: 0;
    top: 0px;
    /* width: calc(100% - 500px); */
    width: 70%;
    z-index: 5;

}

.project-robot-page2 .img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}

.project-robot-page2 .info {
    width: 500px;
	    position: relative;
    z-index: 6;
}

.project-robot-page2 .info .title {
    border-left: 4px solid var(--color);
    padding: 0 20px;
}

.project-robot-page2 .info .title .t1 {
    font-size: 48px;
    line-height: 1.2;
}

.project-robot-page2 .info .title .t2 {
    font-size: 28px;
    line-height: 1.2;
    margin-top: 10px;
}

.project-robot-page2 .info .t3 {
    margin-top: 40px;
    font-size: 24px;
    padding: 0 20px;
}

.project-robot-page2 .info .editor {
    margin-top: 20px;
    height: 210px;
    font-size: 16px;
    line-height: 30px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 20px;
}

.project-robot-page2 .info .editor p {
    font-size: 16px;
    line-height: 30px;
}

.project-robot-page2 li .bottom {
    margin-top: 60px;
    margin-left: calc(50% - 650px);
    background: var(--color);
    width: calc(50% + 650px);
    padding: 50px 60px;
}

.project-robot-page2 li .bottom ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    width: 100%;
    max-width: 1000px;
}

.project-robot-page2 li .bottom li {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0;
}

.project-robot-page2 li .bottom li .l img {
    width: 55px;
    object-fit: contain;
}

.project-robot-page2 li .bottom li .r {
    flex: 1;
}

.project-robot-page2 li .bottom li .r b {
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
}
.project-robot-page2 li .bottom li .r strong {
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
}
.project-robot-page2 li .bottom li .r p {
    font-size: 16px;
    line-height: 1.5;
}

.project-robot-page2>ul>li:nth-child(even) .img {
    left: 0;
    right: auto;
}

.project-robot-page2>ul>li:nth-child(even) .info {
    margin-left: auto;
    text-align: right;
}

.project-robot-page2>ul>li:nth-child(even) .info .title {
    border-right: 4px solid var(--color);
    border-left: 0px;
}

.project-robot-page2>ul>li:nth-child(even) .bottom {
    margin-left: 0;
    margin-right: calc(50% - 650px);

}

.project-robot-page2>ul>li:nth-child(even) .bottom ul {
    margin-left: auto;
	display:flex;
	flex-direction:row-reverse;
	flex-wrap:wrap;
	
}

.project-robot-page2>ul>li:nth-child(even) .bottom ul li {
    flex-direction: row-reverse;
    text-align: right;
	width:calc(50% - 15px);
}

.project-robot-page3 {
    display: flex;
    justify-content: space-between;
    padding: 120px 0;
}

.project-robot-page3 .l {
    width: 46%;
}

.project-robot-page3 .l h3 {
    font-size: 48px;
    /* font-weight: bold; */
    margin-top: 50px;
}

.project-robot-page3 .l .editor {
    font-size: 24px;
    line-height: 1.8;
    margin-top: 50px;
}

.project-robot-page3 .l .editor p {
    font-size: 24px;
    line-height: 1.8;
}

.project-robot-page3 .r {
    width: 52%;
}

.project-robot-page3 .r img {
    width: 100%;
    object-fit: contain;
}









.project-contact-page1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 90px 0;
}

.project-contact-page1 .editor {
    max-width: 420px;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
}

.project-contact-page1 .editor p {
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
}

.project-contact-page2 {
    padding-top: 30px;
}

.project-contact-page2 .img {
    margin-bottom: -80px;
}

.project-contact-page2 .img img {
    height: 360px;
    object-fit: contain;
    margin: 0 auto;
}

.project-contact-page2 .info {
    width: 100%;
    background: #f4f4f4;
    padding: 120px 0 80px;
}

.project-contact-page2 .info h3 {
    font-size: 48px;
    /* font-weight: bold; */
    text-align: center;
}

.project-contact-page2 .info ul {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.project-contact-page2 .info ul li {
    display: flex;
    align-items: center;
    gap: 15px;
}

.project-contact-page2 .info ul li .l {
    border-radius: 10px;
    background: var(--color);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-contact-page2 .info ul li .l img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.project-contact-page2 .info ul li .r {
    flex: 1;
}

.project-contact-page2 .info ul li .r h6 {
    font-size: 24px;
    line-height: 2;
    /* font-weight: bold; */
}

.project-contact-page2 .info ul li .r p {
    font-size: 16px;
    line-height: 1.6;
}

.project-contact-page3 {
    padding: 90px 0 120px;
}

.project-contact-page3 h3 {
    font-size: 48px;
    /* font-weight: bold; */
    line-height: 1;
    text-align: center;
}

.project-contact-page3 ul {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 50px;
}

.project-contact-page3 ul li {
    background: #f4f4f4;
    box-shadow: 0 0 3px 3px rgba(120, 120, 120, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
}
.project-contact-page3 ul li:hover{
    box-shadow: 0 0 8px 5px rgba(60, 60, 60, 0.2);
}
.project-contact-page3 ul li .title {
    font-size: 24px;
    /* font-weight: bold; */
}

.project-contact-page3 ul li .editor {
    flex: 1;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.project-contact-page3 ul li .editor p {
    font-size: 16px;
    line-height: 1.5;
}

.project-contact-page3 ul li .other {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    align-items: flex-end;
}

.project-contact-page3 ul li .other .l {
    height: 75px;
    width: 75px;
    line-height: 75px;
    text-align: center;
    border-radius: 50%;
    background: var(--color);
    font-size: 30px;
    /* font-weight: bold; */
}

.project-contact-page3 ul li img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.project-contact-page4 {
    display: flex;
	overflow:hidden;
}

.project-contact-page4 .l,
.project-contact-page4 .r {
    width: 50%;
    position: relative;
}

.project-contact-page4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-contact-page4 .info {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 700px;
    height: 100%;
    margin-left: auto;
    text-align: center;
    padding: 0 10%;
	transition:all 0.3s ease;
}

.project-contact-page4 .l:hover .info ,
.project-contact-page4 .r:hover .info {
	transform:scale(1.1);
	
}


.project-contact-page4 .r .info {
    left: 0;
    right: auto;
}

.project-contact-page4 .info .title {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--color);
}

.project-contact-page4 .editor {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
}

.project-contact-page4 .editor p {
    font-size: 20px;
    line-height: 1.5;
}

.project-contact-page5 {
    padding: 90px 0;
}

.project-contact-page5 h3 {
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}

.project-contact-page5 ul {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.project-contact-page5 ul li {
    background: #f4f4f4;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 0 3px 3px rgba(120, 120, 120, 0.1);
	transition:all 0.3s ease;
}

.project-contact-page5 ul li h6 {
    font-size: 24px;
    /* font-weight: bold; */
}

.project-contact-page5 ul li p {
    font-size: 24px;
    margin-top: 15px;
}
.project-contact-page5 ul li:hover{
	 background:var(--color);
}



.project-storage-page1 {
    display: flex;
    justify-content: space-between;
    padding: 90px 0;
    overflow: hidden;
}
.project-storage-page1 .common-about-title{
	max-width:50%;
}
.project-storage-page1 .common-about-title h5{
	margin-top:20px;
	line-height:1.5;
}
.project-storage-page1 .editor {
    max-width: 420px;
    font-size: 18px;
    line-height: 30px;
    text-align: right;
}

.project-storage-page1 .editor p {
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
}


.project-storage-page2 {
    width: 100%;
    background: #F4F4F4;
    padding: 60px 0;
}

.project-storage-page2 ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
}

.project-storage-page2 ul li {
    border-radius: 15px;
    background: var(--color);
    padding: 0 30px;
	transition:all 0.5s ease;
}
.project-storage-page2 ul li:hover{
	box-shadow:0 0 5px 5px rgba(60,60,60,0.2);
}
.project-storage-page2 ul li:hover a{
	 font-size: 30px;
}

.project-storage-page2 ul li a {
    display: flex;
    gap: 10px;
    line-height: 70px;
    align-items: center;
    font-size: 26px;
    color: #000;
	transition:all 0.5s ease;
}

.project-storage-page2 ul li img {
    height: 42px;
    object-fit: contain;
}
 

.project-storage-page3 {
    width: 100%;
    background: #f4f4f4;
    padding: 40px 0 120px;
}

.project-storage-common .title .t1 {
    font-size: 48px;
    /* font-weight: bold; */
    line-height: 1.4;
    text-align: center;
}

.project-storage-common .title .t2 {
    font-size: 24px;
    line-height: 1.4;
    text-align: center;

}
.project-storage-common .img{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 60px;
}
.project-storage-common .img img{
    width: 100%;
    object-fit: contain;
}
.project-storage-common .img .editor{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    
}
.project-storage-common .img .editor h5{
    font-size: 24px;
    line-height: 1;
    /* font-weight: bold; */
    margin-bottom: 10px;
}
.project-storage-common .img .editor p{
    font-size: 18px;
    line-height: 1.4;

}

.project-storage-common .item{
    margin-top: 70px;
   
}
.project-storage-common .item .name{
    width: max-content;
    padding: 0 40px;
    height: 42px;
    line-height: 42px;
    border-radius: 25px;
    background: var(--color);
    font-size: 18px;
    margin-bottom: 35px;
    /* font-weight: bold; */
}
.project-storage-common .item>.editor{
    border-top: 1px solid #ccc;
    padding: 30px 15px 10px;
    font-size: 18px;
    line-height: 30px;

}
.project-storage-common .item>.editor h6{
    font-size: 18px;
    line-height: 30px;
    /* font-weight: bold; */
}
.project-storage-common .item>.editor p{
    font-size: 18px;
    line-height: 30px;
}
.project-storage-common .item .list1{
    margin-top: 20px;
    display: flex;
    height: 350px;
    overflow: hidden;
}
.project-storage-common .item .list1 li{
    width: 95px;
    height: 100%;
   
    background: var(--color);
    border-left: 1px solid #fff;
    cursor: pointer;
    transition: all 0.5s ease;
}
.project-storage-common .item .list1 li .img2{
    padding: 25px 0;
    height: 100%;
    width: 100%;
    display: flex;
	flex-direction:column;
    align-items: center;
   justify-content: end;
}
.project-storage-common .item .list1 li .img2 p{
	font-size: 24px;
    flex:1;
    display: flex;
    align-items: center;
}
.project-storage-common .item .list1 li img{
    width: 55px;
    height: 45px;
    object-fit: contain;
}


 
.project-storage-common .item .list1 li .info {
    padding: 50px 40px 25px;
     height: 100%;
     overflow: hidden;
     display: flex;
     align-items: flex-end;
     justify-content: space-between;

     transition: all 0.5s ease;
     opacity: 0.6;
}
.project-storage-common .item .list1 li .info2{
    clip-path: inset(0 100% 0 0 );
}
.project-storage-common .item .list1 li .info .l{
     width: 60%;
     height: 100%;
     color: #fff;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     gap: 30px;
}
.project-storage-common .item .list1 li .info .l .tit{
    font-size: 24px;
    /* font-weight: bold; */
    line-height: 1.5;
}
.project-storage-common .item .list1 li .info .l .tit p{
    font-size: 24px;
    /* font-weight: bold; */
    line-height: 1.5;
}
.project-storage-common .item .list1 li .info .l .editor,
.project-storage-common .item .list1 li .info .l .editor p{
    font-size: 18px;
    line-height: 24px;
}



.project-storage-common .item .list1 li.active {
    width: 100%;
}
.project-storage-common .item .list1 li.active .img2{
    display: none;
}
 
.project-storage-common .item .list1 li.active .info{
    opacity: 1;
}


.project-storage-common .item .list2{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    background: #000;
    margin-top: 40px;
}
.project-storage-common .item .list2 li{
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    gap: 20px;
    cursor: pointer;
}
.project-storage-common .item .list2 li .info{
    position:absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--color);  
    z-index: -1;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    opacity: 0;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}
.project-storage-common .item .list2 li .ewaijia img{
    width: 75px;
    height: 75px;
    object-fit: contain;
}
.project-storage-common .item .list2 li .tit{
    font-size: 24px;
    color: #fff;
    /* font-weight: bold; */
    line-height: 1.5;
}
.project-storage-common .item .list2 li:hover .info{
     opacity: 1;
     z-index: 2;
}
.project-storage-common .item .list2 li .info .tit{
    display: flex;
    justify-content: space-between;
    color: #000;
}
.project-storage-common .item .list2 li .info .tit img{
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}
.project-storage-common .item .list2 li .info .editor{
    font-size: 18px;
    /* font-weight: bold; */
    line-height: 30px;
    max-height: 180px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}
.project-storage-common .item .list2 li .info .editor p{
    font-size: 18px;
    /* font-weight: bold; */
    line-height: 30px;
}

.project-storage-page4{
    padding: 100px 0 120px;
}
.project-storage-page5{
    padding: 100px 0 5	0px;
    background: #f4f4f4;
}



.project-storage-page6{
    padding: 120px 0;
    background: #f4f4f4;
}
.project-storage-page6 .w1400{
    display: flex;
    gap: 40px;
    align-items: center;
}
.project-storage-page6 .l,
.project-storage-page6 .r{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.project-storage-page6 .c{
    width: 410px;
}
.project-storage-page6 .c img{
    width: 100%;
    object-fit: contain;
}


 
.project-storage-page6 .l li,
.project-storage-page6 .r li{
    display: flex;
    align-items: center;
    gap: 25px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 3px 3px 3px rgba(60, 60, 60, 0.1);
   
}
.project-storage-page6 .l li{
    padding: 20px 25px 20px 35px;
}
.project-storage-page6 .l li:nth-child(odd){
    transform: translateX(70px);
}
.project-storage-page6 .r li{
    padding: 20px 35px 20px 25px;
}
.project-storage-page6 .r li:nth-child(odd){
    transform: translateX(-70px);
}


.project-storage-page6 .l .info,
.project-storage-page6 .r .info{
    flex: 1;
}
.project-storage-page6 .info h5{
    font-size: 24px;
    color: var(--color);
    margin-bottom: 10px;
    /* font-weight: bold; */
}
.project-storage-page6 .info p{
    font-size: 15px;
    line-height: 1.4;
    color: #000;
}


.project-storage-page6 .l .img,
.project-storage-page6 .r .img{
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--color);
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.project-storage-page6 .l .img img,
.project-storage-page6 .r .img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.project-storage-page7{
    padding: 120px 0;
}
.project-storage-page7 .top h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}
.project-storage-page7 .top h5{
    margin-top: 20px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
}

.project-storage-page7 ul{
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 50px;
}
.project-storage-page7 ul li{
    padding: 0 25px 20px;
    border-radius: 20px;
    border: 2px dashed var(--color);
	    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.project-storage-page7 ul li .title{
       font-size: 22px;
   
    line-height: 30px;
    /* font-weight: bold; */
	margin: 20px 5px;
  /*  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis; */
  
}
.project-storage-page7 ul li .w{
    margin-top: 10px;
    display: flex;
    gap: 30px;
    align-items: flex-end;
}
.project-storage-page7 ul li .w p{
    display: flex;
    align-items: flex-end;
    gap: 0px;
    flex: 1;
    font-size: 40px;
    line-height: 1;
    /* font-weight: bold; */
}
.project-storage-page7 ul li .w p b{
    font-size: 90px;
    line-height: 0.85;
	font-weight:normal;
}
.project-storage-page7 ul img{
    width: 100px;
    height: 80px;
    object-fit: contain;
}


.project-case-page1{
    padding: 90px 0;
}
.project-case-page2 h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}
.project-case-page2 h5{
    margin-top: 20px;
    font-size: 30px;
    line-height: 1.6;
    text-align: center;
}
.project-case-page2 ul{
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px 25px;
}
.project-case-page2 ul li{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 5px 3px rgba(60, 60, 60, 0.1);
    padding: 10px 20px;
     
}
.project-case-page2 ul li img{
    width: 100%;
    height: 100px;
    object-fit: contain;
    transition: all .5s ease; 
}
.project-case-page2 ul li:hover img{
    transform: scale(1.1);
    
}
.project-case-page2 button{
    height: 40px;
    line-height: 40px;
    padding: 0 40px;
    background: var(--color);
    border-radius: 20px;
    font-size: 18px;
    /* font-weight: bold; */
    margin: 50px auto;
    display: block;
}

.project-case-page3 h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
    text-align: center;
}
.project-case-page3 h5{
    margin-top: 20px;
}

.jjzz-page1{
    padding: 90px 0 80px;
}
.jjzz-page-w{
    padding: 0 0 60px;
    display: flex;
    gap: 60px;
}

.jjzz-page-w .sidebar{
	 
    max-width: 300px;
}
.jjzz-page-w .sidebar li{
   border-bottom: 3px solid #fff;
   background: #D9D9D9;
}
.jjzz-page-w .sidebar a{
    display: flex;
	gap:10px;
    width: 100%;
    height: 55px;
    line-height: 55px;
    
    font-size: 24px;
    color: #000;
    padding : 0 40px 0 55px;
    /* text-align: center; */
	    white-space: nowrap;
}
.jjzz-page-w .sidebar a span{
	 flex:1;
	 text-align: justify;
    text-align-last: justify; 
	
}
.jjzz-page-w .sidebar li.active,
.jjzz-page-w .sidebar li:hover{
    background: var(--color);
}

.jjzz-page-w .right{
     width: calc(100% - 260px);
}

.jjzz-page2{
    padding: 0 0 100px;
}

.jjzz-page2 .title{
     
    border-right: 3px solid var(--color);
    text-align: right;
    padding: 5px 8px ;
}
.jjzz-page2 .title .tit1{
    font-size: 48px;
    line-height: 1;
}
.jjzz-page2 .title .tit2{
    font-size: 30px;
    line-height: 1.4;
    margin-top: 10px;
}

.jjzz-page2 .imgs{
    margin-top: 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}
.jjzz-page2 .imgs img{
    width: 100%;
    object-fit: contain;
} 
.jjzz-page2 .imgs .info{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 50px;
    color: #fff;
}
.jjzz-page2 .imgs .info h6{
    font-size: 24px;
}
.jjzz-page2 .imgs .info p{
    font-size: 18px;
}

.jjzz-page2 .item .name{
    height: 40px;
    line-height: 40px;
    display: inline-block;
    padding: 0 40px;
    font-size: 18px;
    /* font-weight: bold; */
    border-radius: 20px;
    background: var(--color);
    margin: 30px 0 20px;
}
.jjzz-page2 .item .editor{
    padding: 15px 12px;
    border-top: 1px solid #ccc;
    font-size: 18px;
    line-height: 30px;
}
.jjzz-page2 .item .editor p{
    font-size: 18px;
    line-height: 30px;
}
.jjzz-page2 .item ul{
    padding: 60px 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10%;
    text-align: center;
}
.jjzz-page2 .item ul img{
    height: 63px;
    object-fit: contain;
}
.jjzz-page2 .item ul p{
    font-size: 18px;
    line-height: 2;
    margin-top: 10px;
}
.jjzz-page3,
.jjzz-page4 {
    padding: 0 0 80px;
}
.jjzz-page3 .top,
.jjzz-page4 .top{
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    border-bottom: 1px solid #ccc;
}
.jjzz-page3 .top h3,
.jjzz-page4 .top h3{
    font-size: 38px;
}

.common-swiper-btns{
    padding: 0 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}
.common-swiper-btns .btn{
    border: 1px solid var(--color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
	 background: var(--color);
}
/* .common-swiper-btns .btn.swiper-button-disabled{
    opacity: 0.5;
    cursor: not-allowed;
} */


.common-swiper-btns  .btn .iconfont{
    font-size: 26px;
     color: #000;
}
.common-swiper-btns .l-btn .iconfont{
     display: inline-block;
     transform: rotate(180deg);
}
.common-swiper-btns  .btn:hover{
    background:none;
}
.common-swiper-btns .btn:hover .iconfont{
    color: var(--color);
}



.jjzz-page3 .swiper{
    margin-top: 60px;
}
.jjzz-page3 .swiper-slide {
    border-radius: 10px;
    overflow: hidden;
    transition: background-color 0.3s ease;
}
.jjzz-page3 .swiper-slide:hover{
    background: var(--color);
   
}
.jjzz-page3 .swiper-slide a{
    padding: 10px;
    display: inline-block;
    width: 100%;
    height: 100%;
    color: #000;
}
.jjzz-page3 .swiper-slide .name{
    padding: 20px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 18px;
}
.jjzz-page3 .swiper img{
    width: 100%;
    object-fit: cover;
}
.jjzz-page3 .swiper .other{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.jjzz-page3 .swiper .other .iconfont{
    color: var(--color);
}
.jjzz-page3 .swiper-slide:hover .other .iconfont{
    color: #000;
}

.jjzz-page4 .swiper{
    margin-top: 60px;
    height: 400px;
    padding: 5px;
   
}
 
.jjzz-page4 .swiper-slide{
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px 25px;
 
    transition: box-shadow 0.3s ease;
}
.jjzz-page4 .swiper-slide:hover{
    box-shadow:  0 0 5px  2px rgba(0, 0, 0, 0.15);
 
}
.jjzz-page4 .swiper-slide .tit1{
    font-size: 18px;
    line-height: 1.6;
}
.jjzz-page4 .swiper-slide .tit2{
    font-size: 12px;
    line-height: 1.6;
}
.jjzz-page4 .swiper-slide a{
    display: inline-block;
    line-height: 20px;
    font-size: 12px;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid #aaa;
    color: #aaa;
}
.jjzz-page4 .swiper-slide a:hover{
    color: var(--color);
    border-color:var(--color) ;
}

.jjzz-page5{
    width: 100%;
    height: 410px;
    position: relative;
    display: flex;
    margin-bottom:120px;
}
.jjzz-page5 .l{
    width: 50%;
    height: 100%;
    background: url('../images/jjzz_page5_1.jpg') no-repeat center;
    background-size: cover;
}
.jjzz-page5 .r{
    width: 50%;
    height: 100%;
    background: var(--color);
	padding:0 5%;
}
.jjzz-page5 .w1400 {
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}
.jjzz-page5 .w1400 .l{
    background: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #fff;
}
.jjzz-page5 .w1400 .r{
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.jjzz-page5 .w1400 h6{
    font-size: 24px;
    /* font-weight: bold; */
    line-height: 1.4;
    margin-bottom: 10px;
}
.jjzz-page5 .w1400 p{
    font-size: 16px;
    line-height: 1.6;
}
.jjzz-page5 .w1400  a{
    margin-top: 10px;
    display:inline-block;
    line-height: 36px;
    padding: 0 36px;
    border: 1px solid #000;
    font-size: 18px;
    color: #000;
    border-radius: 20px;
}
.jjzz-page5 .w1400  a:hover{
    color: #000;
}



.product-page-w{
    display: flex;
    gap: 50px;
    padding: 80px 0;
}
.product-page-w .classify{
    display: none;
}

.product-page-w .flex-x-phone{
	  position: sticky;
    top: 20px;
	 align-self: flex-start; 
}
.product-page-w .sidebar{
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 3px;
  
	max-width:300px;
}
.product-page-w .sidebar li{
    background: #E1E1E1;
}
.product-page-w .sidebar li a{
    
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 40px 10px 30px;
    font-size: 18px;
    color: #000;
    /* font-weight: bold; */
}
.product-page-w .sidebar li img{
    width: 45px;
    height: 40px;
    object-fit: contain;
	    flex-shrink: 0;
}
.product-page-w .sidebar li.active,
.product-page-w .sidebar li:hover{
    background: var(--color);
}



.product-page-w .right{
    flex: 1;
    height: 100%;
}
.product-page-w .product-list{
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.product-page-w .product-list li{
    display: inline-block;
   height: 370px;
    transition: all 0.3s ease;
   
}
.product-page-w .product-list li a{
	 width: 100%;
	 height: 100%;
	  padding: 25px 60px;
	   color: #000;
     display: flex;
	   gap: 30px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
 
.product-page-w .product-list li .tit1{
    font-size: 28px;
    line-height: 1.2;
}
.product-page-w .product-list li .tit2{
    font-size: 18px;
    line-height: 1.6;
    margin-top: 10px;
}
.product-page-w .product-list li .more{
    display: block;
    font-size: 15px;
    line-height: 24px;
    padding: 0 15px;
    color: #aaa;
    border: 1px solid #aaa;
    border-radius: 20px;
    transition: all 0.5s ease;
}
.product-page-w .product-list li:hover{
    box-shadow: 0 0px 5px 3px rgba(0,0,0,0.15);

}
.product-page-w .product-list li .more:hover{
   background: var(--color);
    border-color: var(--color);
    color: #000;
}

.product-page-w .product-list2{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 45px;
}

.product-page-w .product-list2 li{
    height: 400px;
  
}
.product-page-w .product-list2 li a{
	padding:30px;
}
.product-page-w .product-list2 li .more{
    color: #000;
    border-color: #000;
}


.service-page1{
    display: flex;
    gap: 50px;
    justify-content: space-between;
    padding: 90px 0 ;
    overflow: hidden;
}
.service-page1 .editor{
    font-size: 18px;
    line-height: 2;
    /* font-weight: bold; */
    width: 42%;
}
.service-page1 .editor p{
    font-size: 18px;
    line-height: 2;
    /* font-weight: bold; */

}
.service-page2{
    background: url('../images/service_page2_1.jpg') no-repeat center;
    background-size: cover;
    padding: 150px 0 200px;
   color: #fff;
   text-align: center;
}
.service-page2  h3{
    font-size: 40px;
    color: var(--color);
    /* font-weight: bold; */
}
.service-page2 h4{
    display: inline-block;
    padding: 15px 50px;
    font-size: 18px;
    line-height: 1.4;
    border: 1px solid #fff;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.45);
    margin: 35px auto 0;
}
.service-page2  ul{
    margin-top: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
   
}
.service-page2  ul img{
    height: 115px;
    object-fit: contain;
}
.service-page2  ul p{
    font-size: 30px;
    line-height: 2;
    margin-top: 20px;
}


.service-page3{
    padding: 80px 0 150px;
    display: flex;
    gap: 10%;
}


.service-page3 .l {
    width: 22%;
}
.service-page3 .l h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
}

.service-page3 .l .editor{
    font-size: 20px;
    line-height: 1.8;
    margin-top: 35px;
    /* font-weight: bold; */
}
.service-page3 .l .editor p{
    font-size: 20px;
    line-height: 1.8;
}
.service-page3 .l .btns-list li{
    display: none;
}
.service-page3 .l .btns-list li:first-child{
    display: block;
}

.service-page3 .common-swiper-btns{
    margin-top: 50px;
    padding: 0;
}


.service-page3 .r{
    width: 68%;
}
.service-page3 .r .nav{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.service-page3 .r .nav li{
    line-height: 36px;
    padding:  0 25px;
    border-radius: 20px;
    border: 1px solid #d2d2d2;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: bold;
}
.service-page3 .r .nav li.active,
.service-page3 .r .nav li:hover{
    background: var(--color);
    border-color: var(--color);
}


.service-page3 .r .swiper-list{
    margin-top: 45px;
}
.service-page3 .r .swiper-list li{
    display: none;
}
.service-page3 .r .swiper-list li:first-child{
    display: block;
}
.service-page3 .r .swiper-list .swiper{
   
}
.service-page3 .r .swiper-list img{
    border: 1px solid #d2d2d2;
    height: 200px;
    object-fit: cover;
}

.service-page4{
    padding: 80px 0 100px;
    background: #EAEAEA;
}
.service-page4 .w1400>h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
}
.service-page4 .nav{
    margin-top: 40px;
    display: flex;
    gap: 10px;

}
.service-page4 .nav li{
    height: 60px;
    line-height: 60px;
    background: var(--color);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 22px;
    /* font-weight: bold; */
    border-top-right-radius: 20px;
    
}
.service-page4 .nav li img{
    filter: brightness(0) ;
    transition: filter 0.3s ease;
    height: 30px;
    width: 30px;
    object-fit: contain;
}
.service-page4 .nav li:hover,
.service-page4 .nav li.active{
    color: #fff;
}
.service-page4 .nav li:hover img,
.service-page4 .nav li.active img{
    filter: brightness(0%) invert(100%); /* 纯白 */
}

.service-page4 .list{
    padding: 70px 50px 35px;
    background: #fff;
}
.service-page4 .list li{
    display: none;
   
    
}
.service-page4 .list li:first-child{
    display: block;
}
.service-page4 .list li .editor{
    font-size: 18px;
    line-height: 1.8;
    padding-bottom: 20px;
}
.service-page4 .list li .editor p{
    font-size: 18px;
    line-height: 1.8;
}

 
.service-page4 .list li .more{
    width: max-content;
    height: 42px;
    line-height: 42px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 30px;
    background: var(--color);
    border-radius: 30px;
    font-size: 20px;
    color: #000;
    margin-left: auto;
}

.service-page4 .list li .more .iconfont{
    font-size: 20px;
    color: #000;
}


.service-page5{
    padding: 80px 0 120px;
}
.service-page5 h3{
    font-size: 48px;
    line-height: 1;
    /* font-weight: bold; */
}
.service-page5 h6{
    margin-top: 30px;
    font-size: 20px;
    line-height: 2;
    /* font-weight: bold; */
}
.service-page5 .form{
    margin-top: 40px;
    width: 100%;
    padding:  50px;
    background: #fff;
    box-shadow: 0 0 10px 10px rgba(200, 200, 200, 0.2);
    display: flex;
    flex-wrap: wrap;
    gap: 30px 80px;
}
.service-page5 .form label{
    width: calc(50% - 40px);
    height: 60px;
    line-height: 60px;
    background: #EAEAEA;
    border-radius: 5px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #ACACAC;
}
.service-page5 .form label.w100{
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    gap: 10px;
    padding: 20px;
    line-height: 30px;
}

.service-page5 .form label p{
    color: #ACACAC;
    font-size: 18px;
    white-space: nowrap;
}
.service-page5 .form label p span{
    color: #f00;
    margin-left: 5px;
    /* font-weight: bold; */
}
.service-page5 .form label input,
.service-page5 .form label textarea{
    flex: 1;
    font-size: 18px;
    line-height: 30px;
    background: none;
}
.service-page5 .form label textarea{
    width: 100%;
}
.service-page5 .form .bottom{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-page5 .form .bottom label{
    background: none;
    gap: 40px;
}

.service-page5 .form .bottom label input{
    height: 60px;
    line-height: 60px;
    border: 1px solid #aaa;
    border-radius: 30px;
    padding: 0 20px;
    flex: 1;
}
.service-page5 .form .bottom label .yzm-w{
    align-items: center;
    gap: 40px;
}
.service-page5 .form .bottom label .yzm{
    height: 40px;
}

.service-page5 .form .bottom button{
    height: 46px;
    line-height: 46px;
    padding: 0 45px;
    background: var(--color);
    color: #000;
    border-radius: 30px;
    font-size: 20px;
    /* font-weight: bold; */
}

.faq-page1{
    padding: 80px 0 ;
}
.faq-page2 {
    padding: 0px 0 120px;
}

.faq-page2 .nav{
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #acacac;
}

.faq-page2 .nav li{
    padding: 15px 50px;
    font-size: 20px;
    line-height: 1.5;
    /* font-weight: bold; */
    position: relative;
    transition: all .3s ease;
    cursor: pointer;
}

.faq-page2 .nav li::after{
    content: '';
    display: inline-block;
    width: 0%;
    height: 5px;
    position: absolute;
    bottom: -2px;
    left:50%;
    transform: translateX(-50%);
    background: transparent;
    transition: all .3s ease;
}
.faq-page2 .nav li.active,
.faq-page2 .nav li:hover{
    color: var(--color);
}
.faq-page2 .nav li.active::after,
.faq-page2 .nav li:hover::after{
    background: var(--color);
    width: 100%;
}

.faq-page2 .list{
    margin-top: 30px;
    padding: 30px 50px 30px;
    background: #EDEDED;
    border-radius: 20px;
}
.faq-page2 .list li{
    display: none;
}
.faq-page2 .list li:first-child{
    display: block;
}


.faq-page2  .tbody{
    overflow-y: auto;
    max-height: 550px;
}
.faq-page2  .tbody::-webkit-scrollbar {
    width: 3px;
    background: #acacac;
}
.faq-page2  .tbody::-webkit-scrollbar-thumb {
    background: #000;
}
.faq-page2  .th,
.faq-page2  .tr{
    display: flex;
    gap: 20px;
    padding: 20px 0;
}
.faq-page2  .th{
    padding: 0 0 20px;
}

.faq-page2  .th .td:nth-child(1),
.faq-page2  .tr .td:nth-child(1){
    width: 20%;
   
}
.faq-page2  .tr .td:nth-child(1){
    /* font-weight: bold; */
}
.faq-page2  .th .td:nth-child(2),
.faq-page2  .tr .td:nth-child(2){
    flex: 1;

}
.faq-page2  .th .td:nth-child(3),
.faq-page2  .tr .td:nth-child(3){
    width: 25%;

}
.faq-page2  .tr .td:nth-child(2) p,
.faq-page2  .tr .td:nth-child(3) p{
    color: #636161;
}
.faq-page2  .th .td:last-child,
.faq-page2  .tr .td:last-child{
    width: 60px;
    text-align: center;
     
}
.faq-page2 .th .td{
    font-size: 18px;
	font-weight:bold;
}
.faq-page2 .tr{
    border-bottom: 1px solid #ACACAC;
}
.faq-page2 .tr .td:first-child{
	font-weight:bold;
}
.faq-page2 .td{
    font-size: 16px;
    line-height: 30px;
	
}
.faq-page2 .td p{
    font-size: 16px;
}
.faq-page2 .tr.active .td:nth-child(1),
.faq-page2 .tr.active .td:nth-child(1) p{
  /*   color: var(--color); */
    transition: all 0.3s ease;
}

.faq-page2 .td .editor{
    display: none;
}
.faq-page2 .td .icon-jianqu{
    display: none;
    font-size: 26px;
    width: 30px;
    height: 30px;
	font-weight:normal;
	
}
.faq-page2 .td .icon-jia{
    display: inline-block;
    width: 30px;
    height: 30px;
    font-size: 28px;
	font-weight:normal;
}
.faq-page2 .tr.active .icon-jia{
    display: none;
}
.faq-page2 .tr.active .icon-jianqu{
    display: inline-block;
}

.news-page1{
    padding: 80px 0;
}
.news-page2{
    padding-bottom: 40px;
}
.news-page2 .select-list{
    display: flex;
    align-items: center;
    gap: 50px;
}

.news-page2 .select-list .select-item{
    border-radius: 15px;
    background: rgba(240,240,240);
    min-width: 280px;
    position: relative;
	transition: all 0s ease;
}
.news-page2 .select-list .select-item p{
    height: 60px;
    line-height: 60px;
   
    padding: 0 25px;
    border-bottom: 1px solid transparent;
    font-size: 18px;
    /* font-weight: bold; */
  
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 20;
}
.news-page2 .select-list .select-item p .iconfont{
    display: inline-block;
    transform: rotate(90deg);
    transition: all 0.3s ease;
    font-weight: normal;
    font-size: 24px;
}
 .news-page2 .select-list .select-item.open{
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
} 
.news-page2 .select-list .select-item.open p{
    border-bottom: 1px solid #acacac;
}
.news-page2 .select-list .select-item.open .iconfont{
    transform: rotate(-90deg);
}


.news-page2 .select-list .select-item .item-list{
    border-top:10px solid rgba(240,240,240);
    width: 100%;
    background: rgba(250,250,250);
    position: absolute;
    top: calc(100% - 10px);
    left: 0;
    width: 100%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    overflow: hidden;
    display: none;
    z-index: 2;
	 
}

.news-page2 .select-list .select-item ul{
    padding: 10px 0;
    max-height: 300px;
    overflow-y: auto;
}
.news-page2 .select-list .select-item ul::-webkit-scrollbar {
    width: 3px;
    background: #acacac;
}
.news-page2 .select-list .select-item ul::-webkit-scrollbar-thumb {
    background: #000;
}
.news-page2 .select-list .select-item ul li{
    padding: 0 25px;
    cursor: pointer;
    font-size: 16px;
    line-height: 2;
}
.news-page2 .select-list .select-item ul li a{
	display:inline-block;
	width:100%;
	height:100%;
	color:#000;
}
.news-page2 .select-list .select-item ul li:hover{
    background: var(--color);
}

.news-page2 .list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}
.news-page2 .list li{
    border-radius: 20px;
    background: #EAEAEA;
    overflow: hidden;
}
.news-page2 .list li .img{
    height: 250px;
    width: 100%;
    overflow: hidden;
}
.news-page2 .list li .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
   
}
.news-page2 .list li .info{
    padding: 30px;
}
.news-page2 .list li .info .time{
    padding: 10px 0;
    font-size: 16px;
    color: #9F9F9F;
}
.news-page2 .list li .info .title{
    font-size: 18px;
    /* font-weight: bold; */
    line-height: 30px;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
}
.news-page2 .list li .info .more{
    color: #9F9F9F;
    font-size: 16px;
    line-height: 2;
}
.news-page2 .list li:hover img{
        transform: scale(1.1);
}
.news-page2 .list li:hover .info .title{
    color: var(--color);
}
.news-page2 .list li:hover .info .more{
    color: var(--color);
}

.news-detail-page1{
	margin-top:100px;
    padding: 120px 0 60px;
}
.news-detail-page1 .title{
    font-size: 48px;
    line-height: 1.2;
    /* font-weight: bold; */
}
.news-detail-page1 .time{
    margin-top: 20px;
    color: #A4A4A4;
    font-size: 24px;
}


.news-detail-page1 .editor{
    margin-top: 40px;
    font-size: 24px;
    line-height: 2;
}
.news-detail-page1 .editor p{
    font-size: 24px;
    line-height: 2;
}
.news-detail-page1 a.return{
    display: inline-block;
    margin-top: 50px;
    background: var(--color);
    border-radius: 10px;
    padding: 5px 10px;
    margin-left: auto;
}
.news-detail-page1 a.return img{
    width: 40px;
    object-fit: contain;
}


.news-detail-page2{
    padding:60px 50px 120px;
    border-top: 2px solid #000;
}
.news-detail-page2 .title{
    font-size: 48px;
    /* font-weight: bold; */
    line-height: 2;
}

.news-detail-page2 ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.news-detail-page2 ul li{
    background: url('../images/news_detail_page_3.jpg') no-repeat center;
    background-size: cover;
    position: relative;
}
.news-detail-page2 ul li a{
    display: inline-block;
    width: 100%;
    height: 100%;
    padding: 30px 20px;
}
.news-detail-page2 ul li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   opacity: 0;
    transition: all 0.3s ease;
}

.news-detail-page2 ul li:hover img{
     opacity: 1;
}
.news-detail-page2 ul li .info{
    position: relative;
    z-index: 2;
    color: #B8B5B5;
}
.news-detail-page2 ul li .info h4{
    font-size: 24px;
    line-height: 1.5;
    /* font-weight: bold; */
    color: #000;
}
.news-detail-page2 ul li .info h6{

    font-size: 16px;
    line-height: 2;
}
.news-detail-page2 ul li .info .editor{
    font-size: 16px;
    line-height: 1.8;
    margin-top: 150px;
    padding: 5px 0 0;
    border-top: 1px solid #D5D5D5;
}
.news-detail-page2 ul li .info .editor p{
    font-size: 16px;
    line-height: 1.8;
}
.news-detail-page2 ul li:hover h4{
    color: var(--color);
}
.news-detail-page2 ul li:hover .info{
    color: #fff;
}
















.contact-page1{
    background: url('../images/contact_page_bg.jpg') no-repeat center;
    background-size: cover;
    padding-bottom: 100px;
}
.contact-page1 .common-about-title{
    padding: 80px 0;
}

.contact-page1 .editor{
    display: flex;
   
}
.contact-page1 .editor .l,
.contact-page1 .editor .c,
.contact-page1 .editor .r{
    padding: 40px 0;
    border-right: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.contact-page1 .editor .l{
    width: 25%;
    gap: 80px;
}
.contact-page1 .editor .c{
    width: 25%;
    align-items: center;
    gap: 60px;
   
}
.contact-page1 .editor .r{
    width: 50%;
    padding: 40px 50px;
    gap: 80px;
}
.contact-page1 .editor p{
    font-size: 18px;
    line-height: 2;
    color: #000;
	
}
.contact-page1 .editor .c p{
	width:160px;
}
.contact-page1 .editor .l .title{
    font-size: 20px;
    color: #797979;
    line-height: 1.6;
}
.contact-page1 .editor .item>p{
    margin-left: 40px;
}
 
.contact-page1 .editor .info{
    display: flex;
    align-items: flex-start;

}
.contact-page1 .editor .info .img{
    height: 36px;
    display: flex;
    align-items: center;
}
.contact-page1 .editor .info img{
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 15px;
}

.contact-page2{
    padding: 150px 0 120px;
}
.contact-page2 .title{
    font-size: 24px;
    line-height: 2;
    text-align: center;
}

.contact-page2 .form{
    margin-top: 60px;
    display: flex;
    gap: 30px 50px;
    flex-wrap: wrap;
}
.contact-page2 .form label{
    width: calc(50% - 25px);
    height: 50px;
    line-height: 50px;
    background: #E7E7E7;
    padding: 0 25px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-page2 .form label p{
    font-size: 20px;
    line-height: 50px;
    color: #aaa;
}
.contact-page2 .form label p span{
    margin-left: 5px;
    color: #f00;
   
}

.contact-page2 .form label.w100{
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 10px;
}
.contact-page2 .form label:first-child{
    padding: 0;
    position: relative;
    background: #E7E7E7;
}
.contact-page2 .form select{
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: transparent;
    appearance: none;
    outline: none;     
    -webkit-appearance: none;  /* Safari/Chrome */
    -moz-appearance: none;     /* Firefox */
    padding: 0 25px;
    font-size: 24px;
    color: #aaa;
    position: relative;
    z-index: 333;
}
.contact-page2 .form label:first-child .iconfont{
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    display: inline-block;
    font-size: 36px;
    color: #ccc;
}
 
.contact-page2 .form select option{
    font-size: 18px;
    border: 0;
    color: #333;
}
.contact-page2 .form input{
    flex:1;
    background: transparent;
    font-size: 18px;
    color: #333;
}
.contact-page2 .form textarea{
    width: 100%;
    height: 200px;
    line-height: 30px;
    background: transparent;
    font-size: 18px;
    color: #333;
   
}
.contact-page2 .form button{
    height: 50px;
    padding: 0 50px;
    font-size: 22px;
    /* font-weight: bold; */
    line-height: 50px;
    background: var(--color);
    margin: 0 auto;
    display: block;
     letter-spacing: 3px;
}



header.header2 {
    background: var(--color);
	 
}
header.header2 .w1400{
    color: #000;
}
header.header2 li a{
    color: #000;
}
header.header2 .logo .logo1{
    display: none;
}
header.header2 .logo .logo2{
    display: block;
}
.product-detail-page1 {
  min-height: 400px;
    display: flex;
	margin-top:100px;
    
}


.product-detail-page1 .l{
    width: 50%;
    background: url('../images/product_detail_page1_bg.jpg') no-repeat center;
    background-size: cover;
}
.product-detail-page1 .l img{
    width: 100%;
    height: 100%;
    object-fit: contain;
	padding:5%;
}
.product-detail-page1 .l .swiper{
	height:100%;
	width:100%;
	 --swiper-navigation-color: var(--color);
}
.product-detail-page1 .l .swiper-btn{
	opacity:0;
}
.product-detail-page1 .l .swiper:hover .swiper-btn.swiper-button-disabled{
	opacity:0.35;
}
.product-detail-page1 .l .swiper:hover .swiper-btn{
	opacity:1;
}


.product-detail-page1 .r{
    width: 50%;
    padding: 80px  calc(50% - 750px)  80px 4%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    

}
.product-detail-page1 .r .title{
    font-size: 36px;
    line-height: 1.2;
    /* font-weight: bold; */
}
.product-detail-page1 .r .editor{
    flex: 1;
    font-size: 18px;
    line-height: 2;
}
.product-detail-page1 .r .editor p{
    font-size: 18px;
    line-height: 2;
}

.product-detail-page1 .r a.more{
    font-size: 16px;
    height: 32px;
    line-height: 32px;
    display: inline-block;
    padding: 0 30px;
    border-radius: 20px;
    background: var(--color);
    color:#000;
    /* font-weight: bold; */
}

.product-detail-page2{
    padding: 40px 0 100px;
}
.product-detail-page2 .top{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10%;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.product-detail-page2 .top .nav{
    display: flex;
    align-items: center;
}
.product-detail-page2 .top .nav li{
    font-size: 24px;
    line-height: 1;
    /* font-weight: bold; */
    padding: 0 35px;
    cursor: pointer;
    position: relative;
}
.product-detail-page2 .top .nav li::after{
    content: '';
    display: inline-block;
    width: 0%;
    height: 3px;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    transition: all .3s ease;
}


.product-detail-page2 .top .nav li.active ,
.product-detail-page2 .top .nav li:hover{
    color: var(--color);
}
.product-detail-page2 .top .nav li.active::after,
.product-detail-page2 .top .nav li:hover::after{
    background: var(--color);
    width: 100%;
}
.product-detail-page2 .top .link-list{
    display: flex;
    align-items: center;
}
.product-detail-page2 .top .link-list li:last-child span{
    display: none;
}
.product-detail-page2 .top .link-list li a{
    color: #7E7E7E;
    font-size: 18px;
}
.product-detail-page2 .top .link-list li span{
    color: #7E7E7E;
    font-size: 18px;
    margin: 0 5px;
}

.product-detail-page2 .bottom .info-list li{
    display: none;
    padding: 40px 20px;
}
.product-detail-page2 .bottom .info-list li:first-child{
    display: block;
}



.links{
    position: fixed;
    right: 0;
    bottom: 20%;
   /*  overflow: hidden; */
    z-index: 90;
	display:none;
	transform:translateX(150px);
 
}
.links .item{
	width:100%;
   display:flex;
    
	transform:translateX(0px);
	margin-bottom:2px;
}
.links .item:first-child{
    border-top: none;
}
 
.links .item a{
    display: inline-block;
    width: 50px;
    height:50px;
    text-align: center;
    padding: 10px;
	 background: var(--color);
}
.links .item p{
	background:#000;
	    white-space: nowrap;
	color:#fff;
	width:150px;
	text-align:center;
	height:50px;
	line-height:50px;
}
.links img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) ;
    transition: all .3s ease;
}
.links .item:hover img{
    filter: brightness(0%) invert(100%);
}

/* .links li.toTop{
    display: none;
} */


.links .item .iconfont{
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-size: 20px;
    color: #000;
    transition: all .3s ease;
}
.links .item:hover .iconfont{
    color: #fff;
}
.links .item2{
	 transition: all .3s ease;
}
.links .item2:hover{
	transform:translateX(-150px);
}

 


.list-page{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 60px 0;
}
.list-page a{
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid ;
    border-color: transparent;
    position: relative;
}
.list-page a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #000;
}
.list-page li.active a,
.list-page li:hover a{
    border-color: var(--color);
}


.list-page2{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px 0 60px;
}

.list-page2 .iconfont{
    font-size: 24px;
}
.list-page2 a,
.list-page2 span{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid ;
    border-color: transparent;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    cursor: pointer;
}
.list-page2 .current,
.list-page2 .active,
.list-page2 a:hover,
.list-page2 span:hover {
    border-color: var(--color);
    color: var(--color);
}
.list-page2 span{
    pointer-events: none;
}


.list-page2 .prev .iconfont{
    display: inline-block;
    transform: rotate(180deg);
}
.list-page2 .disabled{
    display: none;
}
.list-page2 .prev,
.list-page2 .next{
     border-color: #999;
}



.index-page4 h3,
.about-join-page4 h3,
.about-join-page5 h3,
.about-culture-page2 h2,
.project-page3 .top h3,
.project-page6 h2,
.project-storage-common .title .t1,
.project-storage-page7 .top h3,
.project-case-page2 h3,
.service-page5 h3{
	font-size:48px;
	line-height:1;
}

.index-page4 h6,
.about-join-page4 h6,
.about-join-page5 h6,
.about-culture-page2 h4,
.project-page3 .top h5,
.project-page6 h5,
.project-storage-common .title .t2,
.project-storage-page7 .top h5,
.project-case-page2 h5,
.service-page5 h6{
	font-size:20px;
	line-height:1;
	margin-top:20px;
}



