
/* 预加载容器样式 */
/* .preloader {position: fixed; padding-bottom: 5%; top: 0;left: 0;width: 100vw;height: 100vh;background: #fff;display: flex; flex-direction: column; justify-content: center;align-items: center;z-index: 9999;transition: opacity 0.5s ease-out;}
.preloader .svgBox {width: 60%; height: 60%;}
.preloader svg {width: 100%; height: 100%;} 
.preloader.hidden {opacity: 0;pointer-events: none;}
.stroke-path { fill: transparent;  stroke: #A30C1A;  stroke-width: 1;   stroke-dasharray: var(--path-length);  stroke-dashoffset: var(--path-length);  transition: 1s;  animation: strokeAnimate 3s ease-in-out forwards}
.stroke-path2 {stroke: #d3d3d4;}
@keyframes strokeAnimate {to {stroke-dashoffset: 0; }}
.stroke-path.filled {fill: #A30C1A;}
.stroke-path2.filled {fill: #d3d3d4;} */

/* 预加载容器样式V2 */
.preloader {position: fixed; background: #fff; top: 0;left: 0;width: 100vw;height: 100vh;display: flex; flex-direction: column; justify-content: center;align-items: center;z-index: 9999;transition:  0.5s ease-out;}
.preloader .svgBox {width: 100%; height: 100%; transition: transform 1s ease-in-out;}
.preloader svg {width: 100%; height: 100%;} 
/* 动画结束后隐藏预加载层 */
.preloader.hidden {opacity: 0;pointer-events: none; background: none;}/* SVG路径统一样式 */
.stroke-path {fill: transparent; stroke: #fff;  stroke-width: 1;  /* 关键：设置虚线数组为路径全长，初始偏移量也为全长（完全隐藏） */  stroke-dasharray: var(--path-length);  stroke-dashoffset: var(--path-length);  transition: 1s;  /* 描边动画 */  animation: strokeAnimate 3s ease-in-out forwards}
.stroke-path2 {stroke: #fff;}
/* 定义描边动画 */
@keyframes strokeAnimate {to {stroke-dashoffset: 0; /* 偏移量归零，完整显示路径 */  }}
.preloader .svgBox g {transform: translateY(100%) scale(.5);  transform-origin: center;}
.preloader .svgBox #cup-mask rect {height: 100vh;     fill: #000000;}
.preloader .svgBox .bg-rect {mask: url(#cup-mask);fill: rgba(0, 0, 0, 0); height: 100vh; width: 100vw;  transform: translateY(-120%);}
.preloader .svgBox .bg-rect {fill: #A30C1A;}
.preloader.ani {background: transparent;}
.preloader.ani .svgBox {transform: scale(150);transform-origin: 45.2% 48%; transition-delay: .5s;}
.preloader.ani .svgBox .bg-rect {fill: #000000;}
.preloader.ani .svgBox #cup-mask rect {fill: #ffffff80;}
.preloader.ani .stroke-path {fill: revert-layer; stroke: #000000;}


@media screen and (max-width: 1024px) {
  .preloader {display: none;}
}


#c-placeholder {height: 6.25rem;}
header {position: fixed; left: 0; top: 0; z-index: 99; width: 100%; transition: .5s;background: rgba(89, 87, 87,.26); border-bottom: 1px solid transparent;}
header .headBox { position: relative; padding: 0 3% 0 10.625%; height: 6.25rem; transition: .5s;}
header .headBox .box {height: 100%;}
header .logo {max-width: 12%;}
header .logo a {flex-direction: column; text-align: justify;}
header .logo a img {max-width: 100%; object-fit: contain; max-height: 100%;}
header .logo a span {display: block; letter-spacing: .13rem;margin-top: .25rem;}
header .logo a .logo_white {display: block;}
header .logo a .logo_black {display: none;}
@media screen and (max-width: 1366px) {
  header .headBox {padding: 0 3% 0 5.78125%;}
}

/* 导航 */
nav {height: 100%; width: 54%;}
nav > ul {display: flex; height: 100%; align-items: center;justify-content: space-between; position: relative;}
nav > ul > li {height: 100%; display: flex; align-items: center; position: static;}
nav > ul > li > a {font-size: var(--font17); color: #fff; transition: .5s; position: relative;}
nav > ul > li > a::after {content: ''; position: absolute; left: 0; bottom: -0.313rem; width: 100%; height: 1px; background: #A30C1A; transform: scaleX(0); transition: .5s;}
nav > ul > li:hover > a::after , nav > ul > li.on > a::after {transform: scaleX(1);}

/* 导航下拉 */
.navDown {position: absolute; left: 0; top: 100%; width: auto; min-width: 40rem; width: 100%; left: 50%; transform: translateX(-50%); display: none; background: rgba(0, 0, 0, 0.5); padding: 2.5rem}
.navDown .w1500 {width: auto; padding: 0;}
.navDown .nav_box {display: flex;  align-items: flex-start; justify-content: space-around; gap: .625rem;}
.navDown .tit .t1{font-size: var(--font26); color: #fff; font-weight: 700;}
.navDown .tit .t2 {font-size: var(--font20); color: #fff; }
.navDown .con {display: grid; gap: 5rem;row-gap: 1rem;  grid-template-columns: repeat(2, 1fr);}
/* 情况1：a标签数量 ≤ 4 时，一行显示2个 */
/* .navDown .con:not(:has(a:nth-child(5))) {grid-template-columns: repeat(2, 1fr);} */
/* 情况2：a标签数量 > 4 时，一行显示3个 */
/* .navDown .con:has(a:nth-child(5)) {grid-template-columns: repeat(3, 1fr);} */
.navDown .con a {position: relative; display: inline-flex; font-size: var(--font18); color: #fff; align-items: center; gap: .625rem;}
.navDown .con a::before { left: 0; display: inline-block; width: .375rem; height: .375rem;  background: #c2c2c2; border-radius: 50%; content: ''; transition: .5s; }
.navDown .con a:hover {color: #A30C1A;}
.navDown .con a:hover::before {background: #A30C1A;}
.navDown .imgBox {width: 24%; border-radius: .625rem; overflow: hidden;display: none;}
.navDown .imgBox img {width: 100%; max-height: 100%; object-fit: contain;}

/* 头部右侧 */
header .head_re {gap: 2rem;}
/* 搜索 */
header .head_re .search {cursor: pointer;}
header .head_re .search img {width: 1.5rem;}
/* 搜索下拉 */    
.hadbox-sec4 {position: absolute;left: 0;top: 100%;width: 100%;display: none; box-sizing: border-box;}
.hadbox-sec4 {background-color: #fff;padding: 3.125rem 0; border-top: 1px solid #eee;  box-shadow: 0 2px 2px rgba(0, 0, 0,.1);}
.hadbox-sec4 .close {position: absolute; right: 2.5%; top: 5%; cursor: pointer; width: 1.25rem;}
.hadbox-sec4 .close svg {width: 100%; height: 100%;}
.hadbox-sec4 .f_tit {color: #222222;margin-bottom: 1.5rem;font-size: var(--font30);}
.hadbox-sec4 .form {display: flex; align-items: center; justify-content: space-between; padding-bottom: 1.25rem; border-bottom: 1px solid #dddddd;}
.hadbox-sec4 .form i { display: block; width: 1.875rem; overflow: hidden;}
.hadbox-sec4 .form i svg {width: 100%; height: 100%;}
.hadbox-sec4 .form input {width: calc(100% - 19.375rem);padding: 1rem 1.5rem; color: #333333; flex: 1;}
.hadbox-sec4 .form .f_sub {width: 10rem; height: 3.5rem; min-height: 40px; background: #A30C1A;border-radius: .313rem;font-size: var(--font20);color: #ffffff;cursor: pointer;}
@media screen and (min-width: 200px) and (max-width: 767px) {
  .hadbox-sec4 {padding: 1.75rem 1rem;}
  .hadbox-sec4 .form {padding-bottom: 1rem;}
  .hadbox-sec4 .f_tit {font-size: var(--font20);}
  .hadbox-sec4 .form .f_sub {width: 6rem; height: 3rem; font-size: var(--font18);}
}

/* 头部下滑 */
header.c-style3 .headBox .logo img {filter: brightness(100); -webkit-filter:brightness(100);}
header.c-style2 {background: #fff; box-shadow: 0 0 .625rem #00000020;}
header.c-style2 .headBox {height: 5rem;}
header.c-style2 .logo a span {color: #333;}
header.c-style2 .logo a .logo_white {display: none;}
header.c-style2 .logo a .logo_black {display: block;}
header.c-style2 nav > ul > li > a {color: #333;}
header.c-style2 .head_re img {filter: brightness(0); -webkit-filter:brightness(0);}
header.c-style2 .public_tle_box .p2 a {color: #333;}

header.c-head-move {transform: translateY(-100%);}

/* header.c-style3 {background: #595757;}
header.c-style3 .logo a span {color: #fff;}
header.c-style3 nav > ul > li > a {color: #fff;}
header.c-style3 .head_re img {filter: brightness(100); -webkit-filter:brightness(100);}
header.c-style3 .public_tle_box .p2 a {color: #fff;} */

/* =================头部 end!!!=================== */



/* ===============公用css star!!!!===================*/
.more1 {display: inline-block;overflow: hidden; background: #A30C1A; border: 1px solid #A30C1A; color: #fff; font-size: var(--font18); padding: .625rem 3.75rem; transition: .5s;position: relative;}
.more1::after {content: "→"; position: absolute; left: -100%; top: 0; width: 100%; height: 100%; transition: .5s; display: flex;justify-content: center;align-items: center;}
.more1 span {position: relative; left: 0; top: 0; width: 100%; height: 100%; display: flex;justify-content: center;align-items: center; transition: .5s;}
@media (any-hover: hover) {
 .more1:hover::after {left: 0;}
 .more1:hover span {transform: translateX(200%);}
 .more1:hover {background: none; color: #A30C1A; border: 1px solid #A30C1A;}
}


.public_tle_box {gap: .625rem;}
.public_tle_box .icBox {width: 1.25rem;}
.public_tle_box .icBox img {max-width: 100%; min-width: 90%;}
.public_tle_box .p2 {line-height: 1;}



/* ===============公用css end!!!!===================*/

/* =====首页 */
.indexBanner {position: relative; overflow: hidden;}
.indexBanner .swiper {}
.indexBanner .slide {overflow: hidden;}
.indexBanner .slide .slide-inner img {width: 100%; max-height: 100vh; object-fit: cover;}
.indexBanner .slide .box {}
.indexBanner .slide .con {width: 100%;}
.indexBanner .slide .con .p1 {line-height: 1.2; opacity: 0;}
.indexBanner .slide .con .p2 {margin-top: 2.25rem; opacity: 0;}
.indexBanner .slide .con .xian {width: 2.75rem; height: .188rem; background: #fff; margin-top: 5rem;opacity: 0;}
/* 控件 */
.indexBanner .pagtion span {width: .625rem; margin: 0 .35rem !important; height: .625rem; background: #fff; opacity: .3; border-radius: 50%;}
.indexBanner .pagtion .swiper-pagination-bullet-active {opacity: 1;}
.indexBanner .swjt.swiper-button-prev {left: 5%;}
.indexBanner .swjt.swiper-button-next {right: 5%;}
.indexBanner .swjt i {color: #fff; font-size: 3rem;}

/* =====首页 */
.indexTle .t1 {font-family: 'gilroy'; text-transform: uppercase; line-height: 1;}

.indexOne {padding: 5rem 0; position: relative; overflow: hidden; z-index: 1;}
.indexOne::after {content: ''; height: 12.5rem; position: absolute; left: 0; bottom: 0; background: #F4F4F4; width: 100%; z-index: -1;} 
.indexOne .desc {margin-top: 2.5rem;}
.indexOne .nav {margin-top: 2.5rem;border-bottom: 1px solid #eee;}
.indexOne .nav ul {display: flex; justify-content: space-between;}
.indexOne .nav ul li a { color: #898989; font-size: var(--font18); padding: 1rem 5.625rem;display: inline-block;border-radius: 6.25rem; transition: .5s; position: relative;}
.indexOne .nav ul li a::after {content: ''; position: absolute; bottom: 0; right: 0;  width: 0;  height: 1px; background: #A30C1A; transition: .5s;}
.indexOne .nav ul li.active a::after {width: 100%; left: 0; right: auto;}
.indexOne .nav ul li.active a {color: #A30C1A;}



.indexOne .itemlist {margin-top: 3.125rem;}
.indexOne .itemlist .item {display: none;}
.indexOne .itemlist .item.active {display: block; animation: fadeIn .5s forwards;}
.indexOne .itemlist .item ul {display: grid; grid-template-columns: repeat(3,1fr); gap: .625rem;}
.indexOne .itemlist .item li {position: relative; transition: .5s;}
.indexOne .itemlist .item li .imgBox {position: relative; overflow: hidden; z-index: 1; padding-bottom: 60%;}
.indexOne .itemlist .item li img {position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.indexOne .itemlist .item li .hide {display: flex; z-index: 1; opacity: 0; flex-direction: column; justify-content: space-between; padding: 1.25rem; position: absolute; background: #33333342; inset: 0; width: 100%; height: 100%; transition: .5s;}
.indexOne .itemlist .item li .more {justify-content: flex-end; color: #fff;}
@media (any-hover: hover) {
 .indexOne .itemlist .item li:hover {transform: scale(1.2); z-index: 2;}
 .indexOne .itemlist .item li:hover img {transform: scale(1.1);}
 .indexOne .itemlist .item li:hover .hide {opacity: 1;}
}

.indexTwo {padding: 3.75rem 0; padding-top: 0; padding-bottom: 10rem; background: #F4F4F4; position: relative;}
.indexTwo .list {margin-top: 3.75rem;}
.indexTwo .list ul {display: flex;}
.indexTwo .list li {flex: 1; margin: 0 .25rem; overflow: hidden; background: #fff; position: relative; height: 39.563rem; transition: .5s;}
.indexTwo .list li .imgBox {position: relative; height: 100%;}
.indexTwo .list li .imgBox img {width: 100%; height: 100%; object-fit: cover;}
.indexTwo .list li .imgBox::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:rgba(0, 0, 0, 0.3); transition: .5s; width: 100%; }
.indexTwo .list li .show { width: 100%; padding: 1.25rem .625rem; position: absolute; top: 0; left: 0%; transition: .5s;}
.indexTwo .list li .show .p1 {writing-mode: vertical-rl; letter-spacing: .25rem;}
.indexTwo .list li .hide {position: absolute; bottom: 0; transform: translateY(100%); padding: 1.25rem 2.5rem; z-index: 2; background: rgba(163, 12, 26,.8); opacity: 0; transition: .5s;}
.indexTwo .list li .hide .p2 {margin-top: .625rem; line-height: 1.8;}
.indexTwo .list li .hide .more {justify-content: flex-end; margin-top: 1rem;}
.indexTwo .list li.active {flex: 3.8;}
.indexTwo .list li.active .show {opacity: 0;}
.indexTwo .list li.active .hide {opacity: 1; transform: translateY(0); transition-delay: .5s;}

.indexThre {position: relative; z-index: 1; overflow: hidden;}
.indexThre .tle {z-index: 2;position: absolute; left: 10%; top: 10%; pointer-events: none;} 
.indexThre .list {position: relative; height: 100vh;overflow: hidden; }
.indexThre .list .bjBox {width: 100%; height: 100%;overflow: hidden;}
.indexThre .list .bjBox .img {position: absolute; left: 0; top : 0; right: 0; bottom: 0; overflow: hidden; opacity: 0; transform: scale(1.1); transition: opacity 1s cubic-bezier(.435, .25, .15, .965), transform 1.5s cubic-bezier(.435, .25, .15, .965);}
.indexThre .list .bjBox .img::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:rgba(0, 0, 0, 0.3); transition: .5s; width: 100%; }
.indexThre .list .bjBox img {width: 100%; height: 100%; object-fit: cover; display: block;}
.indexThre .list ul {display: flex; position: absolute; justify-content: space-between; width: 100%; height: 100%; left: 0; top: 0;}
.indexThre .list li {position: relative; height: 100%; bottom: 0;  width: calc(100% / 5); text-align: center; border-left: 1px solid rgba(255,255,255,0.27); z-index: 1; transition: .5s;}
.indexThre .list li::after {content: ''; z-index: -1; position: absolute; width: 100%; height: 0; left: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); transition: .5s;  }
.indexThre .list li a {display: block;}
.indexThre .list li .con {position: absolute;left: 50%; top: 50%;  transform: translate(-50%, 50%); transition: .5s;}
.indexThre .list li .icBox {height: 5rem; display: flex; align-items: center; justify-content: center;}
.indexThre .list li .icBox img {max-height: 100%; min-height: 90%; object-fit: contain;}
.indexThre .list li .tit {margin-top: 2.25rem;}
.indexThre .list li .jt {background: #A30C1A; width: 3.25rem; height: 3.25rem; margin: auto; margin-top: 2.5rem; border-radius: 50%; opacity: 0; transition: .5s;}
.indexThre .list li .jt i {transform: rotate(180deg); color: #fff; font-size: var(--font16);}
.indexThre .list li .imgBox {position: absolute; left: 0; top: 0; right: 0; bottom: 0; z-index: -1; opacity: 0;}
.indexThre .list li .imgBox img {width: 100%; height: 100%; object-fit: cover;}
.indexThre .list .bjBox .img.active {opacity: 1; transform: scale(1);}
.indexThre .list li.active {border-color: transparent;}
.indexThre .list li.active + li {border-color: transparent;}
.indexThre .list li.active .con {transform: translate(-50%, -50%);}
.indexThre .list li.active .jt {opacity: 1;}
.indexThre .list li.active::after {height: 100%;}
/* @media (any-hover: hover) {
  .indexThre .list li:hover {border-color: transparent;}
  .indexThre .list li:hover + li {border-color: transparent;}
  .indexThre .list li:hover .con {transform: translate(-50%, -50%);}
  .indexThre .list li:hover .jt {opacity: 1;}
  .indexThre .list li:hover::after {height: 100%;}
} */

.indexFour {padding-top: 6.25rem;}
.indexFour .right {width: 60%;}
.indexFour .right .text p {margin-bottom: 1rem; line-height: 1.7; text-indent: 2em; text-align: justify;}
.indexFour .list {margin-top: 5rem;}
.indexFour .list ul {display: flex; justify-content: space-between;} 
.indexFour .list li {background: #EDEDED; border-radius: .625rem; transition: .5s;}
.indexFour .list li a {display: block; padding: 1.25rem; min-width: 8.75rem; text-align: center;}
.indexFour .list li .icBox {height: 3.75rem; display: flex; align-items: center; justify-content: center;}
.indexFour .list li .icBox img {max-height: 100%; min-height: 90%; transition: transform .5s;}
.indexFour .list li .ic_txt {color: #595757; font-size: var(--font20); margin-top: .625rem; transition: .5s;}
.indexFour .list li:last-child {background: #A30C1A;}
.indexFour .list li:last-child .ic_txt {color: #fff;}
.indexFour .list li:last-child .icBox img {filter: brightness(100); -webkit-filter:brightness(100);}
.indexFour .big_img {margin-top: 6.25rem;  position: relative; overflow: hidden; padding-bottom: 20%;}
.indexFour .big_img img {position: absolute; top: 0; left: 0; width: 100%;  height: 200%;   object-fit: cover;will-change: transform;}
@media (any-hover: hover) {
  .indexFour .list li:hover {background: #A30C1A;}
  .indexFour .list li:hover .icBox img {filter: brightness(100); -webkit-filter:brightness(100); transform: rotateY(180deg);}
  .indexFour .list li:hover .ic_txt {color: #fff;}
}

.indexFive {background: url(../images/indexFive-bj.jpg) no-repeat center; background-size: cover; padding: 7.5rem 0;}
.indexFive .tle {gap: 1rem;}
.indexFive .list {margin-top: 5rem;}
.indexFive .list ul {display: flex; justify-content: space-between;}
.indexFive .list li {width: 19%; position: relative; height: 30.313rem; z-index: 1; display: flex; align-items: center; overflow: hidden;}
.indexFive .list li .imgBox {position: absolute; height: 100%; left: 0; top: 0; right: 0; bottom: 0; transition: .5s;}
.indexFive .list li .imgBox::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:rgba(36, 36, 36, 0.85); transition: .5s; width: 100%; }
.indexFive .list li .imgBox img {width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.indexFive .list li .con {position: relative; z-index: 2; padding: .625rem 3rem;}
.indexFive .list li .icBox {height: 3.875rem; display: flex; align-items: center; justify-content: flex-start;}
.indexFive .list li .icBox img {max-height: 100%; min-height: 90%; object-fit: contain;filter: brightness(100); -webkit-filter:brightness(100); transition: transform .5s ;}
.indexFive .list li .p1 {color: #fff; font-size: var(--font30); margin-top: 1.25rem; position: relative;}
.indexFive .list li .p1 .p1_out {position: absolute; top: 0; left: 0;width: 100%; transform: translateX(200%); transition: .5s;}
.indexFive .list li .p1 .p1_in {position: relative; transform: translateX(0%); transition: .5s;}


.indexFive .list li .xian {width: 1.625rem; height: .188rem; background: #FFFFFF; margin-top: 1.5rem;}
.indexFive .list li .text {margin-top: 1.75rem; color: #fff; position: relative;}
.indexFive .list li .text p {line-height: 2;}
.indexFive .list li .text_box1 {position: relative; transition: .5s;}
.indexFive .list li .text_box2 {position: absolute; top: 0; left: 0;width: 100%; transform: translateX(200%); transition: .5s;}

@media (any-hover: hover) {
  .indexFive .list li:hover .icBox img {filter: none; -webkit-filter:none; transform: rotateY(180deg);}
  .indexFive .list li:hover .imgBox {transform: scale(1.05);}

  .indexFive .list li:hover .p1_out {transform: translateX(0%);}
  .indexFive .list li:hover .p1_in {transform: translateX(-200%);}

  .indexFive .list li:hover .text_box2 { transform: translateX(0%);}
  .indexFive .list li:hover .text_box1 { transform: translateX(-200%);}




}

.indexSix {padding: 6.25rem 0; overflow: hidden; position: relative;}
.indexSix .thumbBox {width: 50%;}
.indexSix .swiper1 {border-bottom: 1px solid #D9D9D9;}
.indexSix .swiper1 .slide {padding: 1.75rem; padding-top: 0; text-align: center; cursor: pointer;}
.indexSix .swiper1 .slide::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px; background: #A30C1A; transition: .5s;}
.indexSix .swiper1 .slide .icBox {height: 2.5rem; display: flex; align-items: center; justify-content: center;}
.indexSix .swiper1 .slide .icBox img {max-height: 100%; min-height: 90%; object-fit: contain;filter: brightness(0); -webkit-filter:brightness(0); opacity: .5; transition: transform .5s;}
.indexSix .swiper1 .slide .ic_txt {font-size: var(--font20); color: #A9A9A9;display: block; margin-top: .625rem;}
.indexSix .swiper1 .slide.swiper-slide-thumb-active .icBox img {filter: none; -webkit-filter:none; opacity: 1; transform: rotateY(180deg);}
.indexSix .swiper1 .slide.swiper-slide-thumb-active::after {width: 100%;}
.indexSix .swiper1 .slide.swiper-slide-thumb-active .ic_txt {color: #333;}
.indexSix .swiperBox {margin-top: 5rem;}
.indexSix .swiper2 .slide {}
.indexSix .swiper2 .slide .imgBox {transform: scale(.8); border-radius: 1.25rem; overflow: hidden; transition: .5s; position: relative;}
.indexSix .swiper2 .slide .imgBox::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)); transition: .5s; width: 100%; }
.indexSix .swiper2 .slide .imgBox img {width: 100%;}
.indexSix .swiper2 .slide .con {position: absolute; bottom: 0; width: 100%; left: 0; padding: 5rem; padding-top: 2rem; transform: translateY(50%); opacity: 0; transition: .5s;}
.indexSix .swiper2 .slide .con_top {display: flex; justify-content: space-between; align-items: center;}
.indexSix .swiper2 .slide .tit {font-size: var(--font30); color: #FFFFFF; font-weight: 700;}
.indexSix .swiper2 .slide .icBox {height: 2.5rem; display: flex; align-items: center; justify-content: center;}
.indexSix .swiper2 .slide .icBox img {max-height: 100%; min-height: 90%; object-fit: contain;filter: brightness(100); -webkit-filter:brightness(100); }
.indexSix .swiper2 .slide .text {margin-top: 1.25rem; color: #fff; line-height: 1.7;}
.indexSix .swiper2 .slide.swiper-slide-active .imgBox {transform: scale(1);}
.indexSix .swiper2 .slide.swiper-slide-active .imgBox::after {background:linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .8)); }
.indexSix .swiper2 .slide.swiper-slide-active .con {opacity: 1; transform: translateY(0); }

.indexSen {background: #383636; padding: 7.5rem 0;overflow: hidden; position: relative;}
.indexSen .thumbBox {width: auto;}
.indexSen .swiper1 .slide {width: auto; text-align: center; margin-right: 5rem; padding-bottom: .5rem; cursor: pointer;}
.indexSen .swiper1 .slide::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: .188rem; background: #fff; transition: .5s;}
.indexSen .swiper1 .slide .ic_txt {font-size: var(--font20); color: #A9A9A9;display: block; margin-top: .625rem; transition: .5s;}
.indexSen .swiper1 .slide.swiper-slide-thumb-active .ic_txt {color: #fff;}
.indexSen .swiper1 .slide.swiper-slide-thumb-active::after {width: 100%;}
.indexSen .swiperBox {margin-top: 3.75rem; margin-left: 10.625%; position: relative;}
.indexSen .swiperBox::before {content: ''; width: calc(42.5% + 2.25rem); left: -2.25rem; background: #000000; height: 50%; bottom: -2.25rem; position: absolute;opacity: 0.1;}
.indexSen .swiper2 {padding-top: 3.75rem;}
.indexSen .swiper2 .slide {display: flex;}
.indexSen .swiper2 .slide .imgBox {width: 42.5%; margin-top: -3.75rem;}
.indexSen .swiper2 .slide .imgBox img {width: 100%; height: 100%; object-fit: cover;}
.indexSen .swiper2 .slide .con {background: #E5E5E5;flex: 1; padding: 5rem; padding-right: 12%;}
.indexSen .swiper2 .slide .con_top {align-items: flex-end;}
.indexSen .swiper2 .slide .icBox {height: 5rem; display: flex; align-items: center;}
.indexSen .swiper2 .slide .icBox img {max-height: 100%; min-height: 90%; object-fit: contain;}
.indexSen .swiper2 .slide .tit {font-size: var(--font34); font-weight: 700;color: #333333; margin-top: 1rem;}
.indexSen .swiper2 .slide .num {font-size: 3.625rem; color: #FFFFFF; font-weight: 700;}
.indexSen .swiper2 .slide .text {margin-top: 2.5rem; color: #4C4948; font-size: var(--font18); line-height: 1.8;}

/* 控件 */
.indexSen .contrals {display: flex; align-items: center; position: absolute; right: 0; top: 100%; background: #9F3035;width: calc(100% - 42.5%);}
.indexSen .contrals .link {background: #861E23;}
.indexSen .contrals .link2 {background: #861E2350;}
.indexSen .contrals .link a {padding: 1.25rem 3.75rem;}
.indexSen .contrals .link a .icBox img {width: 1.75rem;}
.indexSen .contrals .swjtBox {display: flex; gap: 1.5rem; margin-left: 5rem;}
.indexSen .contrals .swjt {position: relative;margin: 0; inset: 0; transform: none; width: 1.75rem; height: 1.75rem; border: 2px solid #fff; border-radius: 50%; }
.indexSen .contrals .swjt i {color: #fff; font-size: var(--font16);}

.indexEight {padding: 6.25rem 0; padding-bottom: 10rem;}
.indexEight .slide .imgBox {position: relative; padding-bottom: 60%; overflow: hidden;}
.indexEight .slide .imgBox img {position: absolute; inset: 0; height: 100%; width: 100%; object-fit: cover;transition: .5s;}
.indexEight .swiperBox {margin-top: 5rem;}
.indexEight .slide .con {padding-top: 1.25rem;}
.indexEight .slide .more {margin-top: 5rem; background: #A30C1A; border-radius: 6.25rem; color: #fff; padding: .5rem 1rem; display: inline-block; transition: .5s;}
@media (any-hover: hover) {
.indexEight .slide:hover .imgBox img {transform: scale(1.1);}
.indexEight .slide .more:hover {background: #861E23;}
}

/* =====底部 */
.footer {background: #373737;}
.footer .footerBox {padding: 2.75rem 0; padding-bottom: 3.75rem; display: flex; justify-content: space-between;}
.footer .left {width: auto;}
.footer_logo img {min-height: 2.375rem; object-fit: contain; max-width: 62%;}
.footer .left dl {margin-top: 1.875rem;}
.footer .left dl dd {margin-bottom: .625rem;}
.footer .left dl dd , .footer .left dl dd a {color: #BFBFBF; font-size: var(--font14);}
.foternav {display: flex; justify-content: space-between;width: 62%; gap: 1rem;}
.foternav dl {width: calc(100% / 6);}
.foternav dl dt {color: #fff; margin-bottom: 1.75rem;}
.foternav dl dd {margin-bottom: .3rem;font-size: var(--font15);color: #ffffff40;}
.foternav dl dd a {color: #ffffff40;}
.foternav dl dd a:hover {color: #fff;}
.footer .right {width: 9%;}
.footer .right .code {text-align: center;}
.footer .right .code img {width: 100%;}
.footer .right .code span {color: #AAAAAA; display: block; margin-top: .625rem;}
.foterCopy {padding: 1rem 0;border-top: 1px solid #F7F7F705; color: #AAAAAA48; text-align: center; font-size: var(--font13);}
.foterCopy a {color: #AAAAAA48;}
.foterCopy a:hover {color: #fff;}

/* =============================================================================内页================================================================================ */
/* =====内页公共 */
.ny-banner {position: relative; overflow: hidden; height: 100vh;}
.ny-banner .swiperBox {height: 100%;}
.ny-banner .swiperBox .swiper {height: 100%;}
.ny-banner .box {width: 100%; text-align: center; padding: 0 4%;}
.ny-banner .box .b1 {letter-spacing: .35rem;}
.ny-banner .swiper .swiper-slide {height: auto;}
.ny-banner .imgBox {height: 100%;}
.ny-banner .imgBox img {width: 100%; height: 100%; min-height: 16rem; object-fit: cover;}
.ny-banner .xian {margin-top: 3.75rem; width: 2.75rem; height: .188rem; display: inline-block; background: #FFFFFF;}
/* 控件 */
.ny-banner .pagtion span {width: .625rem; margin: 0 .35rem !important; height: .625rem; background: #fff; opacity: .3; border-radius: 50%;}
.ny-banner .pagtion .swiper-pagination-bullet-active {opacity: 1;}
.ny-banner .swjt.swiper-button-prev {left: 5%;}
.ny-banner .swjt.swiper-button-next {right: 5%;}
.ny-banner .swjt i {color: #fff; font-size: 3rem;}

.culture-date-banner {height: auto;}
.culture-date-banner .imgBox img { max-height: 60vh;}


/* =====内页公共  end!!*/


/* ===========关于禾也 */
.aboutOne {padding-top: 6.25rem;}
.aboutOne .indexTle .xian {margin-top: 5rem; width: 3.25rem; height: .313rem; display: inline-block; background: #A30C1A;}
.aboutOne .right {width: 60%; text-align: justify;}
.aboutOne .right .text p {margin-bottom: 1rem; line-height: 1.7; text-indent: 2em;}

.aboutTwo {margin-top: 7.5rem;}
.aboutTwo .list {background: url(../images/aboutTwo-bj.jpg) no-repeat center; background-size: cover; margin-top: 2.5rem;}
.aboutTwo .list ul {display: flex;}
.aboutTwo .list li {text-align: center; border-left: 1px solid rgba(255, 255, 255, .3); flex: 1; min-height: 47.5rem; display: flex; justify-content: center; flex-direction: column; align-items: center;transition: .5s;}
.aboutTwo .list li .icBox {height: 3.75rem; display: flex; justify-content: center; align-items: center;}
.aboutTwo .list li .icBox img {max-height: 100%; min-height: 80%; transition: .5s;}
.aboutTwo .list li .p1 {font-size: var(--font26); color: #fff; font-weight: 700; margin-top: 2.5rem;}
.aboutTwo .list li .p2 {color: #fff; font-size: var(--font18); margin-top: .313rem;}
.aboutTwo .list li:hover {background: rgba(163, 12, 26,.7); border-color: transparent;}
.aboutTwo .list li:hover + li {border-color: transparent;}
@media (any-hover: hover) {
  .aboutTwo .list li:hover .icBox img {transform: rotateY(180deg);}
}

.aboutThre {padding: 6.25rem 0; background: url(../images/aboutThre-bj.jpg) no-repeat center; background-size: cover;}
.aboutThre .swiperBox {margin-top: 3.25rem; background: #fff;}
.aboutThre .swiper1 .slide_box {display: flex; justify-content: space-between;}
.aboutThre .swiper1 .slide .imgBox {width: 50%;}
.aboutThre .swiper1 .slide .imgBox img {width: 100%; height: 100%; object-fit: cover;}
.aboutThre .swiper1 .slide .con {width: 50%; padding: 3.25rem; padding-left: 5rem;}
.aboutThre .swiper1 .slide .icBox {height: 3.75rem; display: flex; justify-content: flex-end; align-items: center;}
.aboutThre .swiper1 .slide .icBox img {height: 100%; object-fit: contain; filter: brightness(0); -webkit-filter:brightness(0); opacity: .2;}
.aboutThre .swiper1 .slide .p1 {margin-top: 1.5rem;}
.aboutThre .swiper1 .slide .p2 {margin-top: 2.25rem; line-height: 1.8;}
.aboutThre .thumbBox {margin-top: 5rem; position: relative;}
.aboutThre .swiper2 {border-bottom: .313rem solid rgba(88, 83, 80, .1); overflow: visible; box-sizing: border-box; position: static;}
.aboutThre .swiper2 .slide {display: flex; align-items: center; justify-content: center; gap: .5rem; padding-bottom: 1rem; font-size: var(--font20); cursor: pointer;}
.aboutThre .swiper2 .slide::after {content: ''; position: absolute; bottom: 0; transform: translateY(100%); left: 0; width: 0; height: .313rem; background: #A30C1A; transition: .5s;}
.aboutThre .swiper2 .slide .icBox {height: 2.25rem; display: flex; align-items: center;}
.aboutThre .swiper2 .slide .icBox img {max-height: 100%; min-height: 80%;filter: brightness(0); -webkit-filter:brightness(0); opacity: .2;}
.aboutThre .swiper2 .slide.slide.swiper-slide-thumb-active .icBox img {filter: brightness(1); -webkit-filter:brightness(1); opacity: 1;}
.aboutThre .swiper2 .slide.slide.swiper-slide-thumb-active::after {width: 100%;}
.aboutThre .swiper2 .slide.slide.swiper-slide-thumb-active {color: #A30C1A; font-weight: 700;}
/* 控件 */
.aboutThre .pagtion {color: #6F6F6F; font-size: var(--font16); text-align: right; padding-right: 3.25rem;}
.aboutThre .swiper-pagination-current {color: #A30C1A; font-size: var(--font30);}

/* ==========文化空间 */
.culture {position: relative;}
.culture .culture_nav {position: absolute;height: 100%; padding-top: 5rem; padding-left: 1rem;}
.culture .culture_nav ul {position: sticky; top: 7.5rem;    border-left: 2px solid #eee;}
.culture .culture_nav li {margin-bottom: 1.875rem; position: relative;padding-left: 2rem;}
.culture .culture_nav li a {color: #848484; position: relative;  }
.culture .culture_nav li::before {content: ''; position: absolute; height: 0; width: .188rem; background: #A30C1A; left: -2px;top: 0; transition: .5s;}
.culture .culture_nav li.active::before {height: 100%;}
.culture .culture_nav li.active a {color: #A30C1A; font-weight: 700;}
@media (any-hover: hover) {
  .culture .culture_nav li:hover::before {height: 100%;}
  .culture .culture_nav li:hover a {color: #A30C1A; font-weight: 700;}
}
.culture .item {padding: 5rem 0; border-top: 1px solid #D9D9D9;}
.culture .item:first-child { border-top: none;}
.culture .list {margin-top: 3rem;}
.culture .list ul {display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem;}
.culture .list li {text-align: center;}
.culture .list li .imgBox {width: 14.25rem; height: 14.25rem; margin: auto; border-radius: 50%; overflow: hidden;filter: grayscale(100%);-webkit-filter: grayscale(100%);}
.culture .list li .imgBox img {width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.culture .list li .p1 {margin-top: 1.5rem; color: #3E3A39;}
.culture .list li .p2 {margin-top: .625rem; padding-bottom: .25rem; display: inline-block; color: #3E3A39; position: relative;}
.culture .list li .p2::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #A30C1A; transition: .5s;}
.culture .list .more {margin-top: 5rem;}
.culture .list .more a {width: 3rem; height: 3rem;  margin: auto;border: 1px solid #AEAEAE; border-radius: 50%; transition: .5s;}
.culture .list .more a i {font-weight: 700; font-size: var(--font24); color: #AEAEAE;}
.culture .list .more a:hover {background: #A30C1A; border-color: #A30C1A;}
.culture .list .more a:hover i {color: #fff;}
@media (any-hover: hover) {
  .culture .list li:hover .imgBox {filter: none;-webkit-filter: none;}
  .culture .list li:hover .imgBox img {transform: scale(1.1);}
  .culture .list li:hover .p2::after {width: 100%;}
}

/* =====展厅详情 */
/* 面包屑 */
.mbx  {padding: 1.25rem 0;}
.mbx .layui-breadcrumb {position: relative;}
.mbx .layui-breadcrumb>* {font-size: var(--font14); opacity: 1; color: #747474 !important;}
.mbx .layui-breadcrumb a:hover {color: #A30C1A !important;}
.mbx .layui-breadcrumb span[lay-separator] {margin: 0 .625rem !important;}

/* 分享 */
.fixedShare {position: absolute; right: 0;top: 0; height: 100%;}
.fixedShare .sharelinks {text-align: center; position: sticky; top: 7rem; right: 0; transform: translateX(200%);}
.social-share {display: flex; flex-direction: column;}
.social-share .social-share-icon {}
/* qq空间样式修改 */
.fixedShare .social-share .icon-qzone {color: #838383;background: #f5f5f5; border-color: #f5f5f5;}

.exhibitOne {padding: 3.75rem 0;}
.exhibitOne .box {align-items: flex-start; position: relative;}
.exhibitOne .left {max-width: 48%; position: sticky; top: 6.5rem;}
.exhibitOne .left .tle .t1 {line-height: 1.3;}
.exhibitOne .left .tle .t2 {margin-top: 1rem;}
.exhibitOne .right {width: 50%;}
.exhibitOne .left .sign {margin-top: 8rem;}
.exhibitOne .right .text {color: #686868; font-size: var(--font15); text-indent: 2em; text-align: justify;}
.exhibitOne .right .text p {}
.exhibitOne .right .text p:last-child {margin-bottom: 0;}

.exhibitTwo {position: relative; margin-bottom: 6.25rem;}
.exhibitTwo .swiper {position: static;}
.exhibitTwo .slide img {width: 100%;}
.exhibitTwo .swiper .pagtion span {background: #fff; opacity: 1;}
.exhibitTwo .swiper .pagtion span.swiper-pagination-bullet-active {background: #8D0000;}
.exhibitTwo .swiperBox {position: relative;}
.exhibitTwo .swjt {width: 2.75rem; height: 2.75rem; border-radius: 50%; background: rgba(231, 231, 231, .5); transition: .5s;}
.exhibitTwo .swjt i {font-size: var(--font12); color: #828282;}
.exhibitTwo .swjt.swiper-button-prev {right: 0; top: auto; bottom: 0; left: auto; transform: translateX(200%) translateY(-150%) rotate(90deg);}
.exhibitTwo .swjt.swiper-button-next {right: 0; top: auto; bottom: 0; left: auto; transform: translateX(200%) rotate(90deg);}
.exhibitTwo .swjt:hover {background: #A30C1A;}
.exhibitTwo .swjt:hover i {color: #fff;}

.exhibitThre {background: #E5E5E5; padding: 6.25rem 0;}
.exhibitThre .swiperBox {margin-top: 5rem; position: relative;}
.exhibitThre .swiper {position: static;}
.exhibitThre .slide {text-align: center;}
.exhibitThre .slide .imgBox {width: 14.25rem; height: 14.25rem; margin: auto; border-radius: 50%; overflow: hidden;filter: grayscale(100%);-webkit-filter: grayscale(100%);}
.exhibitThre .slide .imgBox img {width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.exhibitThre .slide .p1 {margin-top: 1.5rem; color: #3E3A39;}
.exhibitThre .slide .p2 {margin-top: .625rem; padding-bottom: .25rem; display: inline-block; color: #3E3A39; position: relative;}
.exhibitThre .slide .p2::after {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #A30C1A; transition: .5s;}
.exhibitThre .slide.swiper-slide-active .imgBox {filter: none;-webkit-filter: none;}
@media (any-hover: hover) {
  .exhibitThre .slide:hover .imgBox {filter: none;-webkit-filter: none;}
  .exhibitThre .slide:hover .imgBox img {transform: scale(1.1);}
  .exhibitThre .slide:hover .p2::after {width: 100%;}
}
/* 控件 */
.exhibitThre .swjt {position: relative; inset: 0; margin: 0; transform: none; width: 2rem; height: 2rem; border-radius: 50%; border: 2px solid #4B4B4B20;  background: rgba(231, 231, 231, .5); transition: .5s;}
.exhibitThre .swjt i {font-size: var(--font14); color: #828282; font-weight: 700;}

@media (any-hover: hover) {
  .exhibitThre .swjt:hover {background: #A30C1A;}
  .exhibitThre .swjt:hover i {color: #fff;}
}

.exhibitFour img {max-width: 100%; height: auto !important; width: 100%;}




/* ==========互动科技 */
.interOne {padding-top: 3.75rem;}
.interOne .bjBox {position: relative; z-index: 1;}
.interOne .bjBox img {width: 100%;}
.interOne .bjBox video {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;}
.interOne .box {margin-top: 2.5rem; position: relative;}
.interOne .list {width: 50%; position: absolute; left: 0; bottom: 0; height: 100%; z-index: 2;}
.interOne .list ul {display: flex; height: 100%;}
.interOne .list li {flex: 1; padding: 3rem; padding-right: .625rem; display: flex; align-items: flex-end; border-left: 1px solid rgba(247, 247, 247, .2);}
.interOne .list li .p1 {font-size: var(--font22);color: #FFFFFF;}
.interOne .list li .more {color: #FFFFFF; font-size: var(--font14); margin-top: .5rem; transition: .5s;}
.interOne .list li a:hover .more {color: #A30C1A;}

.interTwo {padding-top: 3.75rem;}
.interTwo .list {margin-top: 3.25rem;}
.interTwo .list ul {display: flex; flex-wrap: wrap; gap: .313rem;}
.interTwo .list li {height: 16.25rem; position: relative;}
.interTwo .list li .video_box {width: 100%; height: 100%;position: relative;}
.interTwo .list li .video_box::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:linear-gradient(to bottom, rgba(0,0,0,.001) 0%, rgba(0,0,0,.5) 100%); z-index: 1;}
.interTwo .list li .video_box video {width: 100%; height: 100%; object-fit: cover;}
.interTwo .list li .con {position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.75rem; z-index: 2;}
.interTwo .list li .p1 {color: #fff; font-size: var(--font22);}
.interTwo .list li .p2 {color: #fff; font-size: var(--font14);}
.interTwo .list li.item1 {flex: 0 0 38%;}
.interTwo .list li.item2 {flex: 0 0 34%;}
.interTwo .list li.item3 {flex: 0 0 27.3%;}
.interTwo .list li.item4 {flex: 0 0 28%;}
.interTwo .list li.item5 {flex: 0 0 28%;}
.interTwo .list li.item6 {flex: 0 0 21.5%;}
.interTwo .list li.item7 {flex: 0 0 21.5%;}

.interThre {background: #F0F0F0; padding: 5rem 0; margin-top: 5rem;}
.interThre .box {margin-top: 2.5rem;}
.interThre .list {}
.interThre .list li {position: relative;  overflow: hidden}
.interThre .list ul {display: grid; grid-template-columns: calc(50% - (.313rem * 3)) 20% 30%; grid-template-rows: 15.5rem 15.5rem; gap: .313rem;}
.interThre .list li .video_box {width: 100%; height: 100%;position: relative;}
.interThre .list li .video_box::after {content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background:linear-gradient(to bottom, rgba(0,0,0,.001) 0%, rgba(0,0,0,.5) 100%); z-index: 1;}
.interThre .list li .video_box video , .interThre .list li .video_box img {width: 100%; height: 100%; object-fit: cover;}
.interThre .list li .con {position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.75rem; z-index: 2;}
.interThre .list li .p1 {color: #fff; font-size: var(--font22);}
.interThre .list li .p2 {color: #fff; font-size: var(--font14);}
.interThre .list li:nth-child(1) {grid-row: 1 / 3;}
.interThre .list li:nth-child(2) {grid-row: 1 / 3;}


.interThre2 {padding: 0; background: #fff;}
.interSen .list ul {grid-template-columns:repeat(2,1fr);}

.interSix {}
.interSix .list ul {grid-template-columns: repeat(3,1fr);    grid-template-rows: initial;}
.interSix .list li:nth-child(1) {grid-row:auto;}
.interSix .list li:nth-child(2) {grid-row:auto;}

.interEight .list ul {grid-template-columns: repeat(3,1fr);    grid-template-rows: initial;}
.interEight .list ul li {grid-row:auto !important;}

.interTen {padding: 5rem 0; margin-top: 5rem; background: #F0F0F0;}
.interTen .box {margin-top: 3rem;}


/* ==========智慧数字 */
.smart {padding: 6.25rem 0;}
.smart .list li {margin-bottom: 6rem;}
.smart .list li {display: flex;}
.smart .list li .imgBox {width: 56%; position: relative; overflow: hidden;}
.smart .list li .imgBox img {width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.smart .list li .con {width: 44%; padding-left: 5rem;}
.smart .list li .con_tle {margin-top: 3.75rem;}
.smart .list li .t1 {text-transform: uppercase;font-family: 'gilroy'; line-height: 1.2;}
.smart .list li .t2 {}
.smart .list li .text {margin-top: 2.25rem; text-align: justify;}
.smart .list li .more {margin-top: 5rem;;}
.smart .list li .more a {background: #A30C1A; border-radius: 6.25rem; display: inline-block; padding: .5rem .75rem;transition: .5s;}
.smart .list li:nth-child(2n) {flex-direction: row-reverse;}
.smart .list li:nth-child(2n) .con {padding-left: 0; padding-right: 5rem;}
@media (any-hover: hover) {
  .smart .list li .imgBox:hover img {transform: scale(1.1);}
  .smart .list li .more a:hover {box-shadow: 0 0 .625rem 0 rgba(163, 12, 26, .5);}
}

/* ==========新闻中心 */
.newsOne {padding: 5rem 0 8.125rem;}
.newsOne .box {margin-top: 3.25rem; position: relative;}
.newsOne .le {width: 50%;padding: 0 2.5rem; padding-left: 0;}
.newsOne .le .imgBox {overflow: hidden; height: 100%;}
.newsOne .le .imgBox img {width: 100%; height: 100%;  object-fit: cover; transition: .5s;}
.newsOne .le .imgBox a {display: none; height: 100%;}
.newsOne .le .imgBox a.active {display: block;}
.newsOne .re {width: 50%; padding: 0 2.5rem; padding-right: 0;}
.newsOne .re ul {height: 100%;}
.newsOne .re li {height: calc(100% / 3);}
.newsOne .re li .p1 {font-size: var(--font22); color: #3E3A39; font-weight: 500; transition: .5s;}
.newsOne .re li .p2 {margin-top: .625rem;}
.newsOne .re li .time {margin-top: 1.25rem;color: #3E3A39;}
.newsOne .xian {position: absolute; top: 0; height: 100%; width: 2px; left: 50%; transform: translateX(-50%); background: #F1F1F1;}
.newsOne .xian2 {position: absolute; top: 0; height: 20%; width: 2px; left: 50%; transform: translateX(-50%); background: #A30C1A;   transition: height 0.3s ease; /* 平滑过渡效果 */}
@media (any-hover: hover) {
  .newsOne .re li:hover .p1 {
    color: #A30C1A;
  }
  .newsOne .le .imgBox:hover img {transform: scale(1.1);}
}

.newsTwo .nav {border-bottom: 1px solid rgba(88, 83, 80, .2);}
.newsTwo .nav ul {display: flex; gap: 6.25rem;}
.newsTwo .nav li a {display: block; padding: 0 1.25rem; padding-bottom: 1.5rem; color: #333333; font-size: var(--font22); position: relative;}
.newsTwo .nav li.on a {color: #A30C1A;}
.newsTwo .nav li a::after {content: ''; position: absolute; left: 0; bottom: 0; left: 50%; width: 0; height: 2px; background: #A30C1A; transition: .5s;}
.newsTwo .nav li.on a::after {width: 100%; left: 0;}
@media (any-hover: hover) {
  .newsTwo .nav li a:hover {color: #A30C1A;}
  .newsTwo .nav li a:hover::after {width: 100%; left: 0;}
}

.newsTwo {padding-bottom: 5rem;}
.newsTwo .list li {padding: 2.75rem 0; border-bottom: 1px solid rgba(88, 83, 80, .2);}
.newsTwo .list li a {display: flex; justify-content: space-between; align-items: center;}
.newsTwo .list li .imgBox {width: 25%; overflow: hidden;}
.newsTwo .list li .imgBox img {width: 100%; height: 100%; object-fit: cover; transition: .5s;}
.newsTwo .list li .con {flex: 1; padding: 0 3.75rem;}
.newsTwo .list li .jt {width: 5rem; height: 5rem; border-radius: 50%; background: #E9E9E9;  transition: .5s;}
.newsTwo .list li .jt i {color: #A6A6A6; font-size: var(--font26);}
.newsTwo .list li .p1 {font-size: var(--font26); color: #3E3A39; transition: .5s;}
.newsTwo .list li .p2 {margin-top: 1.25rem;}
.newsTwo .list li .time {margin-top: 1.25rem;color: #3E3A39;}
@media (any-hover: hover) {
  .newsTwo .list li:hover .imgBox img {transform: scale(1.1);}
  .newsTwo .list li:hover .jt {background: #A30C1A;}
  .newsTwo .list li:hover .jt i {color: #fff;}
  .newsTwo .list li:hover .p1 {color: #A30C1A;}
}

/* 新闻详情 */
.newsDateMain {background: #f9f9f9; border-bottom: 1px solid #ddd;}
.newsDate {padding: 0 0 6.25rem;}
.newsxq-box {padding-top: 1.25rem; margin-bottom: 2.75rem; display: flex; justify-content: space-between; align-items: flex-start;}
.news-left {width: 68%;}
.news-left .newsCon {background: #ffffff;border-radius: .625rem;box-shadow: 0rem 0rem 2.5rem 0rem rgba(226,225,224,0.42); padding: 2.5rem; box-sizing: border-box;}
.newsxq-title {border-bottom: 1px solid #ddd; padding-bottom: 2.5rem;}
.newsxq-title strong {display: block; font-size: var(--font24); color: #333;line-height: 1.4; font-weight: 500;}
.newsxq-title span {display: block;margin-top: .625rem; color: #777;}
.newsxq-editbox {margin: 1.875rem 0;}
.newsxq-editbox img {max-width: 100%; height: auto !important;}
.newsxq-page {display: flex; justify-content: space-between; align-items: center; margin-top: 3.125rem;}
.newsxq-page a {display: flex; align-items: center;}
.news-prev,.news-next{transition:0.6s; display: flex; align-items: center; justify-content: center; width: 3.125rem;height: 3.125rem;min-width: 35px;min-height: 35px;   border: .125rem solid #eeeeee;border-radius: .313rem;}
.news-prev svg {transform: rotateY(180deg); -webkit-transform: rotateY(180deg);}
.news-prev svg ,.news-next svg {width: 30%; height: 30%;}
.newsxq-page em {display: inline-block; font-size: var(--font16); color: #333;}
.prev-link em {margin-left: 1rem;}
.next-link em {margin-right: 1rem;}
.next-link {flex-direction: row-reverse;}
.newsxq-page a:hover .news-prev,.newsxq-page a:hover .news-next {background: #A30C1A; }
.newsxq-page a:hover svg path {fill: #fff;}
.next-link.no .news-next {background: #eee !important; border-color: #eee;}
.next-link.no:hover svg path {fill: #333;}

.newsxq-box .news-right {width: 29%;background: #fff; border-radius: 1rem;box-shadow: 0rem 0rem 1.875rem 0rem rgba(226,225,224,0.42); padding: 2.5rem;box-sizing: border-box; position: relative;}
.newsxq-box .news-right {position: sticky; top: 7rem;}
.newsxq-box .news-right h2 {font-size: var(--font26); font-weight: 500;}
.newsDate .relist li a {display: flex; justify-content: space-between;}
.newsDate .relist .reImg {width: 35%;border-radius: .313rem; overflow: hidden; min-height: 5.625rem}
.newsDate .relist .reImg img {width: 100%; height: 100%;object-fit: cover; transition: .35s;}
.newsDate .relist .recon {width: 58%;}
.newsDate .relist li {margin-top: 1.875rem;}
.newsDate .relist span {color: #999999; font-size: var(--font14);}
.newsDate .relist h6 {color: #333333; transition: .35s; margin-top: .313rem}
.newsDate .news-right::after {content: "";  background:#A30C1A; width: 65%; position: absolute; left: 50%; bottom: -3%; height: .438rem; border-radius: .25rem; transform: translate(-50%, -50%);}
@media (any-hover:hover) {
  .newsDate .relist li:hover h6 {color: #A30C1A;}
  .newsDate .relist li:hover .reImg img {transform: scale(1.05);}
}


/* 资料录入样式调整 */
@media (max-width: 767px) { 
  /* 只对设置了text-indent: 2em的p标签内的多媒体元素生效 */
  .newsxq-editbox p[style*="text-indent: 2em"] video,
  .newsxq-editbox p[style*="text-indent: 2em"] img {
    margin-left: -2em; /* 仅抵消有缩进的情况 */
  }
}

/* ==========联系我们 */
.contactOne {padding: 5rem 0;} 
.contactOne .indexTle .xian {width: 3.25rem; border-radius: 6.25rem; height: .313rem; background: #A30C1A; display: inline-block; margin-top: 2.25rem;}
.contactOne .desc {margin-top: 3.25rem;}
.contactOne .list {margin-top: 3.25rem;}
.contactOne .list ul {display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem;}
.contactOne .list li {padding: 2.75rem .625rem; text-align: center; background: #F7F7F7; border-radius: .625rem;}
.contactOne .list li .icBox {margin: auto; width: 4.5rem; height: 4.5rem; border-radius: 50%; background: #ffffff; display: flex; justify-content: center; align-items: center;}
.contactOne .list li .icBox img {max-width: 50%; max-height: 50%; object-fit: contain;}
.contactOne .list li .p1 {margin-top: 2rem; color: #6D6D6D; font-size: var(--font18);}
.contactOne .list li .p2 {margin-top: 1rem;}
.contactOne .list li .p3 {color: #9B9B9B;}

.contactTwo {position: relative; overflow: hidden;}
.contactTwo img {width: 100%;}

.contactThre {background: url(../images/contactThre-bj.jpg) no-repeat center; background-size: cover; padding: 5rem 0;}
.contactThre .indexTle .xian {width: 3.25rem; border-radius: 6.25rem; height: .313rem; background: #A30C1A; display: inline-block; margin-top: 1rem;}
.contactThre .form {display: flex; row-gap: 1rem; flex-wrap: wrap; justify-content: space-between; width: 80%; margin-top: 3.25rem;}
.contactThre .form .inBox {width: 32%;}
.contactThre .form .inBox label {font-size: var(--font15);color: #3C3C3C; display: block; margin-bottom: .313rem;}
.contactThre .form .inBox input {border-radius: .5rem; padding: 0 1rem; height: 3.125rem; background: #FFFFFF;}
.contactThre .form .inBox input::placeholder {color: #B3B3B3; font-size: var(--font15); }
.contactThre .form .inBox textarea {border-radius: .5rem; padding: 1rem; height: 8.75rem; background: #FFFFFF;}
.contactThre .form .inBox.inSect {width: 66%;}
.contactThre .form .inBox.inTxtBox {width: 100%;}
.contactThre .form .inBox.inCode {width: 60%;}
.contactThre .form .code_box {position: relative;}  
.contactThre .form .code_box img {position: absolute; object-fit: contain; border-radius: 6.25rem; right: .5rem; height: calc(100% - 1rem); top: 50%; transform: translateY(-50%);}
.contactThre .form .sub {width: 100%; margin-top: 1rem;}
.contactThre .form .sub button {padding: 1rem 2.5rem; background: #A30C1A; border-radius: .625rem; cursor: pointer;}
.contactThre .form .sub button i {font-size: var(--font20); font-weight: 700;}
.layui-form-select dl {top: 100%;}
.layui-form-selectup dl {top: auto; bottom: 100%;}

/* ==========人才引进 */
.talentOne {padding: 5rem 0;}
.talentOne .indexTle .xian {width: 3.25rem; border-radius: 6.25rem; height: .313rem; background: #A30C1A; display: inline-block; margin-top: 2.25rem;}
.talentOne .right {width: 56%;}
.talentOne .right p {margin-top: 1rem; line-height: 1.8; text-indent: 2em; text-align: justify;}
.talentOne .imgBox {margin-top: 5rem;}

.talentTwo {background: url(../images/talentTwo-bj.jpg) no-repeat center; background-size: cover; padding: 6.25rem 0;}
.talentTwo .list {margin-top: 4rem;}
.talentTwo .list ul {display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;}
.talentTwo .list li {background: #fff; padding: 6.25rem 1.375rem; text-align: center;}
.talentTwo .list li .icBox {height: 5rem;}
.talentTwo .list li .icBox img {max-height: 50%; max-height: 100%; object-fit: contain;}
.talentTwo .list li .ic_tit {font-size: var(--font24);font-weight: bold; margin-top: 1.5rem;}
.talentTwo .list li .ic_txt {font-size: var(--font15); color: #888; line-height: 1.8; margin-top: 1.875rem;}

.talentThre {padding: 6.25rem 0;}
.talentThre .layui-collapse {border: 0;margin-top: 3.125rem;}
.talentThre .layui-colla-title {height: auto; background: none; line-height: initial; padding: 2.5rem 0;  font-weight: 700;  padding-right: 1.875rem; font-size: var(--font22);color: #333;}
.talentThre .layui-colla-title i {margin: 0; font-size: var(--font20); left: auto; right: 0; top: 40%; font-weight: normal;}
.talentThre .layui-colla-content {border: 0;padding: 0; padding-bottom: 1.875rem; font-size: var(--font16);}
.talentThre .layui-colla-content .more {margin-top: 2.5rem;}
.talentThre .layui-colla-content .more a {display: inline-block; background: #A30C1A; color: #fff; padding: 1rem 1.75rem;}