/* CSS Document*/
* {
  padding: 0px;
  margin: 0px;
  outline: 0 none;
}

a {
  text-decoration: none;
  color: #666;
  transition: all 0.5s ease 0s;
}

a:focus {
  outline: none;
}

a:hover {
  color: #f32735;
  text-decoration: none;
}

ul {
  list-style-type: none;
  margin-bottom: 0px;
}

li {
  vertical-align: bottom;
  zoom: 1;
}

img {
  border: 0px;
}

select {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
}

textarea {
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  color: #666;
  font-size: 12px;
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
}

th,
td {
  padding: 0;
}

input {
  vertical-align: middle;
  outline: none;
  font-size: 12px;
  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
  overflow: hidden;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  clear: both;
}

.hidden {
  display: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: inherit;
  margin: 0px;
}

p {
  margin: 0px;
}

em,
i {
  font-style: normal;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
}

input::-webkit-input-placeholder {
  color: #999;
}

input::-moz-input-placeholder {
  color: #999;
}

input::-ms-input-placeholder {
  color: #999;
}

textarea::-webkit-input-placeholder {
  color: #999;
}

textarea::-moz-input-placeholder {
  color: #999;
}

textarea::-ms-input-placeholder {
  color: #999;
}

.center {
  text-align: center;
}

/* 滚动条整体部分 */
::-webkit-scrollbar {
  width: 8px;
  /* 滚动条宽度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* 轨道颜色 */
  border-radius: 5px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #888;
  /* 滑块颜色 */
  border-radius: 5px;
  /* 滑块圆角 */
}

/* 滚动条滑块在鼠标悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* 滑块悬停颜色 */
}


body {

  font-family: "pingfang SC", "Microsoft YaHei", "黑体";
  background: #fff;
  background-size: 100%;
  color: #666;
  font-size: 14px;
  min-width: 1200px;
}

.container {
  margin: 0px auto;
  padding: 0px 100px;
  max-width: 1700px;
}

.header {
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 10;
}

.header.scroll {
  top: -100px;
  transition: all 0.3s;
}

.header.into {
  top: 0px;
  transition: all 0.3s;
}

.top {
  height: 100px;
  z-index: 999;
  width: 100%;
  transition: all 0.5s ease 0s;
  position: relative;

}

.top:hover::after,
.top.scope::after {
  position: absolute;
  left: 0px;
  top: 0px;
  content: '';
  width: 100%;
  height: 100%;
  background: #242520;
  z-index: -1;
}

.top .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_l,
.top_r {
  display: flex;
  align-items: center;
  height: 100%;
}

.top_l {
  width: 800px;
}

.top .logo {
  width: 40px;
  height: auto;
}

.top .logo img {
  height: auto;
  width: 100%;
}

.top .logo img:nth-child(2) {
  display: none;
}

.top .nav {
  z-index: 10;
  display: flex;
  align-items: center;
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 48px);
  height: 100%;
}

.top .nav .nLi {
  height: 100%;
  position: relative;
  flex: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top .nav .nLi h3 {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.top .nav .nLi h3 a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-size: 16px;
  position: relative;
  color: #fff;
  text-transform: capitalize;
  position: relative;
  transition: 0.6s;
}

.top .nav .nLi h3 a:hover {
  color: #D3FF35;
}

.top .nav .nLi.on h3 a {
  color: #D3FF35 !important;
}

.top_r {
  gap: 20px;
}

.top_r a {
  color: #fff;
  font-size: 16px;
}

.top_r a:hover{
    color: #D3FF35;
}

.top.on {
  background: #242520;
}

/* 搜索框样式 */
.search_box {
  position: fixed;
  align-items: center;
  top: -100px;
  left: 0;
  width: 100%;
  background: #242520;
  z-index: 9999;
  transition: all 0.3s ease;
  height: 100px;
}

.search_box.show {
  top: 0;
}

.search_box .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.search_content {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.search_input {
  flex: 1;
  height: 45px;
  padding: 0 50px 0 20px;
  border: 1px solid #ddd;
  border-radius: 22px;
  font-size: 16px;
  background: #fff;
  color: #333;
  box-sizing: border-box;
}

.search_input::placeholder {
  color: #999;
}

.search_btn {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  font-size: 18px;
  cursor: pointer;
}

.search_close {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  transition: color 0.3s;
}

.search_close:hover {
  color: #f32735;
}


.nav_warp {
  width: 100vw !important;
  height: auto !important;
  background: #242520;
  padding: 30px 0px;
  box-sizing: border-box;
  display: block;
  position: fixed;
  /* 新增：避免撑开触发元素 */
  top: 100px;
  /* 新增：与触发元素间距 */
  left: 0;
  z-index: 2;
  clip-path: inset(0 0 100% 0);
  transition: all 0.2s ease 0s;

}

/* 鼠标悬浮触发元素显示模块 */
.top .nav .nLi:hover .nav_warp {
  clip-path: inset(0 0 0 0);
  opacity: 1;
  transition: all 0.2s ease 0s;
}

.top .nav .nLi:hover::after {
  content: '';
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  transform: 0.2s;
}

.top .nav .nLi:nth-child(4):hover::after,
.top .nav .nLi:nth-child(5):hover::after,
.top .nav .nLi:nth-child(6):hover::after{
  opacity: 0;
}

.nav_warp .container {
  display: flex;
  align-items: flex-start;
}

.nav_warp .hd {
  width: 160px;
}

.nav_warp .hd ul {
  display: flex;
  flex-direction: column;
}

.nav_warp .hd ul li {
  font-size: 16px;
  padding: 20px 0px;
  cursor: pointer;
  text-transform: uppercase;
  color: #999;
}

.nav_warp .hd ul li.on {
  color: #fff;
}

.nav_warp .bd {
  padding-top: 20px;
  max-height: 60vh;
  width: calc(100% - 160px);
  overflow: auto;
}

.nav_warp .bd ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.nav_warp .bd ul li {
  margin: 0px 20px;
  box-sizing: border-box;
  margin-bottom: 40px;
  transition: all 0.3s;
}

.nav_warp .bd ul li:hover {
  transform: translate(0px, -20px);
  transition: all 0.3s;
}

.nav_warp .bd ul li .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 42/25;
  object-fit: cover;
}

.nav_warp .bd ul li h2 {
  text-align: center;
  padding: 10px 0px;
  font-size: 1.5vw;
  font-weight: bold;
  color: #333;
  overflow: hidden;
  /* 隐藏溢出的内容 */
  white-space: nowrap;
  /* 防止文本换行 */
  text-overflow: ellipsis;
  /* 显示省略号 */
}

.nav_warp .bd ul li h2 em {
  color: #f32735;
  padding-left: 15px;
}

.nav_warp .bd ul li span {
  border: 2px solid #333;
  transform: skew(-20deg);
  display: block;
  width: 70%;
  margin: 0px auto;
  height: 45px;
  margin-top: 20px;
}

.nav_warp .bd ul li span a {
  transform: skew(20deg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #333;
}

.nav_warp .bd ul li span:hover {
  background: #333;
}

.nav_warp .bd ul li span:hover a {
  color: #fff;
}


.top .nav .nLi .sub {
  /*display: grid;*/
  /*grid-template-columns: repeat(3, 1fr);*/
  display: flex;
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100vw;
  box-sizing: border-box;
  padding: 30px 40px;
  background: #242520;
  z-index: 2;
  gap: 30px;
  transition: all 0.2s ease 0s;
  clip-path: inset(0 0 100% 0);
}

.top .nav .nLi:hover .sub {
  clip-path: inset(0 0 0 0);
  transition: all 0.2s ease 0s;
}

.top .nav .nLi .sub::after {
  content: '';
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100vw;
  height: auto;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}


.top .nav .nLi .sub li {
  position: relative;
  overflow: hidden;
  flex: 1;
  max-width: 300px;
}

.top .nav .nLi .sub li .img {
  width: 100%;
  aspect-ratio: 34/22;
  overflow: hidden;
  border-radius: 8px;
}


.top .nav .nLi .sub li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease 0s;
  filter: grayscale(30%);
}

.top .nav .nLi .sub li:hover .img img {
  transform: scale(1.05);
  transition: all 0.3s ease 0s;
  filter: grayscale(0%);
}

.top .nav .nLi .sub li a {
  display: block;
  box-sizing: border-box;
  color: #fff;
  width: 100%;
}

.top .nav .nLi .sub li a:hover {
  color: #D3FF35;
}


.top .nav .nLi .sub li a h2 {
  font-size: 18px;
  padding: 10px 0px;
  font-weight: bold;
  text-align: center;
}


.tab-item {
  transition: all 0.2s;
  opacity: 0;
  transform: translateX(50px);
  animation: slideIn 0.5s forwards;
}


/* 最后一个层级移除划入动画 */
.tab-level.last-level .tab-item {
  opacity: 1;
  transform: translateX(20px);
}

/* 划入动画 */
@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 动画延迟 - 逐次划入（仅非最后层级生效） */

.nav li .sub .tab-item:nth-child(1) {
  animation-delay: 0.2s;
}

.nav li .sub .tab-item:nth-child(2) {
  animation-delay: 0.4s;
}

.nav li .sub .tab-item:nth-child(3) {
  animation-delay: 0.6s;
}

.nav li .sub .tab-item:nth-child(4) {
  animation-delay: 0.8s;
}

.nav li .sub .tab-item:nth-child(5) {
  animation-delay: 1s;
}


.top_gao {
  height: 100px;
}


.phone_btn {
  float: right;
  display: none;
}

.menu_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  background: rgba(0, 0, 0, 0.7);
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.menu_cot {
  width: 70%;
  height: 100%;
  background: #fff;
  transform: translateX(-100%);
  transition: all 0.3s ease;
}

.menu_box.into .menu_cot {
  transform: translateX(0);
  transition: all 0.3s 0.2s ease;
}

.menu_close {
  position: absolute;
  top: 0;
  right: 0;
  width: 30%;
  height: 100%;
}

.menu_close img {
  width: 40px;
}

.menu_close a {
  padding: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  box-sizing: border-box;
}


.in_banner {
  height: auto;
}

.in_banner .swiper-slide .bj {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj img {
  width: 100%;
  height: auto;
}

.in_banner .swiper-slide .bj .pc_img {
  height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.in_banner .swiper-slide .bj .pc_img img,
.in_banner .swiper-slide .bj .pc_img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.in_banner .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0px;
  box-sizing: border-box;
  padding-top: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  max-width: 90%;
}

.in_banner .swiper-slide .nr h2 {
  font-size: 5vw;
  color: #fff;
  font-weight: bold;
  font-style: italic;
  max-width: 1000px;
  padding-left: 40px;
}

.in_banner .swiper-slide .nr a {
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 50px;
}

.in_banner .swiper-slide .nr a span {
  background: #000;
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  display: flex;
  align-items: center;
  padding: 20px 40px;
  padding-right: 60px;
  opacity: 1;
}

.in_banner .swiper-slide .nr a span::after {
  content: '';
  width: 0px;
  height: 100%;
  background: #f32735;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  transition: 0.3s all 0s ease;
}

.in_banner .swiper-slide .nr a:hover span::after {
  content: '';
  width: 100%;
  height: 100%;
  transition: 0.3s all 0s ease;
}

.in_banner .swiper-slide .nr a i {
  border: 1px solid #fff;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 15px;
}

.in_banner .swiper-button-next,
.in_banner .swiper-button-prev {
  width: 64px;
  height: 64px;
  background: #1CA39D;
  color: #fff;
  right: 0px;
  top: auto;
  bottom: 0px;
}

.in_banner .swiper-button-prev {
  left: auto;
  right: 64px;
  background: #0866A8;
}

.in_banner .swiper-button-next::after,
.in_banner .swiper-button-prev::after {
  font-size: 20px;
}

.in_banner .swiper-pagination span {
  width: 12px;
  height: 12px;
  background: none;
  border: 1px solid #fff;
  opacity: 1;
  border-radius: 10px;
}

.in_banner .swiper-pagination span.swiper-pagination-bullet-active {
  background: #fff;
}

.in_box {
  padding: 100px 0px;
  background: #F8F9F3;
}

.in_box .hd ul {
  display: flex;
  border-bottom: 3px solid #D9D9D9;
  gap: 60px;
}

.in_box .hd ul li {
  font-size: 18px;
  border-bottom: 3px solid #d9d9d9;
  cursor: pointer;
  color: #666;
  line-height: 45px;
  margin-bottom: -3px;
}

.in_box .hd ul li.on {
  color: #333;
  border-bottom: 3px solid #333;
}

.in_box .bd {
  padding-top: 50px;
}

.in_box_qh {
  padding-bottom: 50px;
}

.in_box_qh .swiper-slide {
  position: relative;
}

.in_box_qh .swiper-slide .img {
  max-width: 1000px;
  margin: 0px auto;
  position: relative;
  height: 600px;
}

.in_box_qh .swiper-slide .img img {
  width: 100%;
  height: auto;
}

.in_box_qh .swiper-slide .dwz {
  font-size: 14vw;
  font-weight: bold;
  color: #D3FF35;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  white-space: nowrap;
}

.in_box_qh .swiper-slide .swz {
  max-width: 1400px;
  margin: 0px auto;
  text-transform: uppercase;
}

.in_box_qh .swiper-slide .swz h2 {
  font-size: 45px;
  color: #000;
  text-align: center;
}

.in_box_qh .swiper-slide .swz h2 em {
  color: #E30613;
}

.in_box_qh .swiper-slide .swz h3 {
  font-size: 20px;
  color: #000;
  text-align: right;
}

.in_box_qh .swiper-slide .swz h3 p:nth-last-child(1) {
  font-style: italic;
}

.in_box_qh .swiper-slide .wz {
  max-width: 1400px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}

.in_box_qh .swiper-slide .wz ul {
  display: flex;
  width: calc(100% - 200px);
  max-width: 600px;
}

.in_box_qh .swiper-slide .wz ul li {
  flex: 1;
  text-align: center;
}

.in_box_qh .swiper-slide .wz ul li:nth-last-child(1) {
  padding-bottom: 0px;
}

.in_box_qh .swiper-slide .wz ul li b {
  font-size: 30px;
  color: #333;
  font-weight: normal;
  padding-right: 3px;
}


.in_box_qh .swiper-slide .wz ul li p {
  font-size: 16px;
  color: #888;
}

.in_box_qh .swiper-slide .wz .right {
  position: absolute;
  right: 0px;
}

.in_box_qh .swiper-slide .wz .right a {
  background: #575757;
  color: #fff;
  font-size: 16px;
  padding: 20px 60px;
  border-radius: 30px 0px 0px 30px;
}

.in_box_qh .swiper-slide .wz .right a:hover {
  background: #333;
  color: #fff;
}

.in_box_qh .swiper-slide .wz .right a i {
  margin-left: 10px;
}

.in_box_qh .swiper-button-next,
.in_box_qh .swiper-button-prev {
  width: 55px;
  height: 55px;
  background: none;
}

.in_box_qh .swiper-button-next i,
.in_box_qh .swiper-button-prev i {
  font-size: 30px;
  color: #333;
}

.in_box_qh .swiper-button-next::after,
.in_box_qh .swiper-button-prev::after {
  display: none;
}

.in_box_qh .swiper-button-next:hover i,
.in_box_qh .swiper-button-prev:hover i {
  color: #D2FF00;
}

.in_box_qh .swiper-pagination {
  bottom: 0px;
}

.in_box_qh .swiper-pagination span {
  background: #999;
  width: 10px;
  height: 10px;
  opacity: 1;
}

.in_box_qh .swiper-pagination span.swiper-pagination-bullet-active {
  background: #000;
}

.ducati-360 {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  position: relative;
  cursor: grab;
  user-select: none;
  /* 禁止拖拽图片默认行为 */
  -webkit-user-drag: none;
  background: url(../images/360.svg) no-repeat;
  background-size: 100%;
  background-position: bottom 20px center;
  cursor: e-resize;
}

.ducati-360:active {
  cursor: e-resize;
}

.ducati-360 img {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0px;
  left: 0px;
  object-fit: contain;
  display: none;
  -webkit-user-drag: none;
}

.ducati-360 img.active {
  display: block;
}

.ducati-360 .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #888;
}

.in_box1 {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.in_box1 video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.in_box1 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.in_box1 h2 {
  font-size: 70px;
}

.in_box1 p {
  font-size: 26px;
  padding: 15px 0px;
}

.in_box1 span a {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
  padding: 10px 30px;
}

.in_box1 span a:hover {
  background: #000;
  color: #D2FF00;
  border: 1px solid #000;
}

.in_box2 {
  background: url(../images/in_box1_bj.png) no-repeat;
  height: 100vh;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.in_box2 .img {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}

.in_box2 .img img {
  width: 100%;
  height: auto;
}

.in_box2 .container {
  padding-top: 10%;
}

.in_box2 .container .wenzi {
  position: relative;
  z-index: 2;
}

.in_box2 h2 {
  width: 270px;
}

.in_box2 h2 img {
  width: 100%;
  height: auto;
}

.in_box2 p {
  font-size: 30px;
  color: #333;
  line-height: 1.4;
  padding: 20px 0px;
}

.in_box2 span a {
  display: inline-block;
  border: 1px solid #333;
  color: #333;
  font-size: 16px;
  padding: 10px 30px;
}

.in_box2 span a:hover {
  background: #D2FF00;
  border: 1px solid #D2FF00;
}

.in_box3 {
  padding: 100px 0px;
}

.in_box3 .container {
  display: flex;
  justify-content: space-between;
}

.in_box3 .left {
  width: 300px;
}

.in_box3 .left li {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.in_box3 .left h2 p {
  font-size: 20px;
  color: #333;
}

.in_box3 .left h2 b {
  font-size: 80px;
  display: block;
  color: #333;
}

.in_box3 .left h3 p {
  font-size: 20px;
  line-height: 1.6;
}

.in_box3_qh {
  width: calc(100% - 350px);
}

.in_box3_qh .swiper-slide img {
  width: 100%;
  aspect-ratio: 95/65;
  border-radius: 5px;
  object-fit: cover;
}

.in_box3_qh .swiper-button-next,.in_box3_qh .swiper-button-prev{
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,.3);
    border-radius: 50%;
}

.in_box3_qh .swiper-button-next:after,.in_box3_qh .swiper-button-prev:after{
    color: #fff;
    font-size: 20px;
}

.in_box3_qh .swiper-button-next:hover,.in_box3_qh .swiper-button-prev:hover{
    background: #D3FF35;
}

.in_box4 {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.in_box4::after {
  content: '';
  width: 100%;
  height: calc(100% - 100px);
  background: #C1E54E;
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.in_box4 .container {
  position: relative;
  z-index: 1;
}

.in_box4 .container h2 {
  padding-top: 20%;
  font-size: 30px;
  color: #333;
}

.in_box4 .img {
  position: absolute;
  width: 90%;
  left: 5%;
  z-index: 1;
}

.in_box4 .img img {
  width: 100%;
  height: auto;
}

.in_box4 .img1 {
  position: absolute;
  z-index: 2;
}

.in_box4 .img1 img {
  width: auto;
  height: 100%;

}


.di {
  background: #F5F5F5;
  padding-top: 60px;
}

.di1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.di1 .left {
  width: calc(100% - 150px);
  height: 1px;
  background: #ddd;
}

.di1 .right a {
  font-size: 14px;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.di1 .right a i {
  margin-bottom: 6px;
}

.di2 {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.di2 .logo {
  max-width: 335px;
  width: 280px;
}

.di2 .logo img {
  width: 100%;
}

.di2 .logo p {
  padding-top: 10px;
  font-size: 26px;
  color: #333;
}

.di2 .dy {
  width: calc(100% - 1100px);
  min-width: 400px;
}

.di2 .dy h2 {
  font-weight: bold;
  font-size: 26px;
  color: #333;
  padding-bottom: 30px;
}

.di2 .dy h3 p {
  font-size: 16px;
  color: #333;
  text-align: left;
  padding-bottom: 20px;
}

.di2 .dy h3 span {
  display: block;
  position: relative;
}

.di2 .dy h3 span input {
  width: 100%;
  height: 60px;
  box-sizing: border-box;
  padding: 0px 15px;
  font-size: 18px;
  border: 0px;
}

.di2 .dy h3 span button {
  position: absolute;
  width: 50px;
  height: 50px;
  background: #D2FF00;
  right: 5px;
  top: 5px;
  border: 0px;
  cursor: pointer;
  font-size: 26px;
}

.di2 .dy h4 {
  display: flex;
  padding-top: 30px;
}

.di2 .dy h4 a {
  margin-right: 10px;
}

.di2 .dy h4 a i {
  width: 36px;
  height: 36px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.di2 .dy h4 a svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

.di2 .dy h4 a:hover svg {
  fill: #f32735;
}

.di4 {
  display: flex;
  padding: 30px 0px;
}

.di4 .di_nav {
  width: calc(100% - 420px);
}

.di4 .di_nav ul {
  display: flex;
}

.di4 .di_nav ul h2 a {
  font-size: 16px;
  color: #333;
  padding-bottom: 15px;
  display: block;
}

.di4 .di_nav ul p a {
  display: block;
  padding: 7px 0px;
  color: #333;
}

.di4 .di_nav ul li {
  flex: auto;
}

.di4 .ewm {
  width: 370px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-content: space-between;
}

.di4 .ewm h2 {
  flex: 1;
  text-align: center;
  color: #fff;
  position: relative;
}

.di4 .ewm h2 img {
  width: 100px;
  height: 100px;
}

.di4 .ewm h2 p {
  color: #999;
  padding-top: 5px;
}

/* 社区模块样式 */
.community-container {
  display: flex;
  gap: 30px;
  padding: 40px 0;
}

.community-main {
  flex: 1;
  max-width: calc(100% - 550px);
}

.community-sidebar {
  width: 500px;
  flex-shrink: 0;
}

/* 帖子卡片 */
.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  margin-bottom: 24px;
}

.post-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.user-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info .username {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.post-time {
  font-size: 12px;
  color: #999;
}

.post-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.post-tags .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: rgba(211, 255, 53, 0.2);
  color: #333;
  font-size: 13px;
  border-radius: 20px;
}

.post-content {
  margin-bottom: 16px;
}

.post-content p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.post-images {
  margin-bottom: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.grid-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.post-video {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #0f0f0f;
}

.post-video video {
  display: block;
  width: 100%;
  max-height: 520px;
  height: auto;
  object-fit: contain;
  background: #0f0f0f;
}

.post-detail .post-video {
  margin-top: 16px;
  margin-bottom: 0;
}

.post-detail .post-video video {
  max-height: 640px;
}


.post-actions {
  display: flex;
  justify-content: space-around;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.action-stat {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  color: #666;
}

.action-stat i {
  font-size: 16px;
}

/* 评论区 */
.comments-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
}

.comments-title {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}

.comment-list {
  margin-bottom: 24px;
}

.comment-item {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid #f5f5f5;
}

.comment-item:last-child {
  border-bottom: none;
}

.comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.comment-username {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.comment-time {
  font-size: 12px;
  color: #999;
}

.comment-text {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 8px;
}

.comment-actions {
  display: flex;
  gap: 16px;
}

.reply-btn,
.like-comment {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
  background: none;
  border: none;
  font-size: 12px;
  color: #999;
  cursor: pointer;
}

.reply-btn:hover,
.like-comment:hover {
  color: #D3FF35;
}

.comment-input {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.comment-field {
  flex: 1;
  height: 44px;
  padding: 0 16px;
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.comment-field:focus {
  border-color: #D3FF35;
}

.submit-comment {
  padding: 0 24px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-comment:hover {
  background: #D3FF35;
  color: #333;
}

/* 侧边栏 */
.sidebar-section {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 20px;
  margin-bottom: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section-header h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.refresh-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #999;
}

.refresh-btn:hover {
  color: #D3FF35;
}

.hot-posts-list {
  list-style: none;
}

.hot-post-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.hot-post-item:last-child {
  border-bottom: none;
}

.hot-post-item .rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #999;
  border-radius: 50%;
  flex-shrink: 0;
}

.hot-post-item:first-child .rank {
  background: #f32735;
}

.hot-post-item:nth-child(2) .rank {
  background: #ff6b35;
}

.hot-post-item:nth-child(3) .rank {
  background: #ffc800;
}

.hot-post-item .post-title {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.hot-post-item .post-title:hover {
  color: #D3FF35;
}

/* APP下载 */
.app-download {
  text-align: center;
}

.qrcode {
  width: 180px;
  height: 180px;
  margin-bottom: 12px;
}

.download-text {
  font-size: 13px;
  color: #666;
}

.di3 {
  background: #333;
  padding: 15px 0px;
  color: #fff;
}

.di3 .container {
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.di3 p {
  font-weight: 100;
}

.di3 a {
  color: #fff;
}

.ny_banner {
  height: 100vh;
  background-size: cover;
}

.ny_banner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.ny_banner video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  object-fit: cover;
  z-index: 0;
}

.ny_banner h2 {
  font-size: 60px;
}

.ny_banner p {
  font-size: 20px;
  padding: 15px 0px;
}

.ny_banner span {
  display: flex;
  gap: 20px;
}

.ny_banner span a {
  display: inline-block;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 30px;
  margin-top: 20px;
}

.ny_banner span a:nth-last-child(1) {
  background: #fff;
  color: #333;
}

.ny_banner span a:hover {
  background: #D2FF00;
  color: #333;
  border: 1px solid #D2FF00;
}

.ny_banner1 .container {
  align-items: flex-start;
}

.ny_banner1 h2 {
  color: #333;
}

.ny_banner1 p {
  color: #333;
}

.ny_banner1 span a {
  background: #000 !important;
  color: #fff !important;
}

.ny_banner2 .container{
    align-items:flex-start;
    justify-content: end;
    box-sizing: border-box;
    padding-bottom: 10%;
}

.zona_nav {
  border-bottom: 1px solid #ECF1F7;
  padding: 20px 0px;
}

.zona_nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.zona_nav .left {
  width: calc(100% - 450px);
  display: flex;
  gap: 30px;
}

.zona_nav .left a {
  font-size: 16px;
  padding: 8px 0px;
  color: #333;
}

.zona_nav .left a.on {
  border-bottom: 2px solid #000;
}

.zona_nav .right {
  width: 400px;
  height: 50px;
  border: 1px solid #ddd;
}

.zona_nav .right form{
    display: flex;
}

.zona_nav .right .text {
  width: 350px;
  height: 50px;
  box-sizing: border-box;
  padding: 0px 15px;
  border: 0px;
  font-size: 16px;
}

.zona_nav .right .btn {
  width: 50px;
  height: 50px;
  border: 0px;
  background: none;
  cursor: pointer;
  font-size: 18px;
}

.pro_list {
  padding: 60px 0px;
}

.pro_list ul {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.pro_list ul li {
  transition: 0.3s;
}

.pro_list ul li:hover {
  transform: translatey(-20px);
  transition: 0.3s;
}

.pro_list ul li .img {
  width: 100%;
  padding-bottom: 30px;
  position: relative;
}

.pro_list ul li .img::after {
  content: '';
  width: 70%;
  height: 60px;
  background: #c2c2c2;
  border-radius: 0px 0px 50px 10px;
  position: absolute;
  bottom: 10px;
  left: 0px;
  z-index: -1;
}

.pro_list ul li:hover .img::after {
  background: #D2FF00;
}

.pro_list ul li .img a {
  display: block;
  background: #fff;
}

.pro_list ul li .img img {
  width: 100%;
  aspect-ratio: 43/30;
  object-fit: cover;
}

.pro_list ul li .nr h2 {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  padding: 10px 0px;
}

.pro_list ul li .nr span {
  display: block;
}

.pro_list ul li .nr span a {
  border: 1px solid #000;
  color: #000;
  padding: 10px 30px;
  display: inline-block;
}

.pro_list ul li .nr span a:hover {
  background: #D2FF00;
  border: 1px solid #D2FF00;
  color: #333;
}


.pro_list ul li .nr span a i {
  margin-left: 10px;
}

.fanye {
  padding-top: 40px;
  text-align: center;
}

.pro_box {
  padding: 100px 0px;
}

.pro_box_qh .swiper-slide {
  opacity: .6;
}

.pro_box_qh .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.pro_box_qh .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 80/40;
}

.pro_box_qh .swiper-slide .nr {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  box-sizing: border-box;
  padding: 5%;
  padding-bottom: 10%;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pro_box_qh .swiper-slide .nr h2 {
  font-size: 40px;
  background: linear-gradient(to right, #E7A2A3, #FBD0A6);
  /* 对于较新的浏览器，使用标准的CSS渐变 */
  background-clip: text;
  /* 仅将背景裁剪为文字形状 */
  color: transparent;
  /* 将文字颜色设置为透明，使背景色显示为文字颜色 */
  font-weight: bold;
  /* 设置字体粗细 */
}

.pro_box_qh .swiper-slide .nr h3 {
  font-size: 40px;
  padding: 30px 0px;
  background: linear-gradient(to right, #E7A2A3, #FBD0A6);
  /* 对于较新的浏览器，使用标准的CSS渐变 */
  background-clip: text;
  /* 仅将背景裁剪为文字形状 */
  color: transparent;
  /* 将文字颜色设置为透明，使背景色显示为文字颜色 */
  font-weight: bold;
  /* 设置字体粗细 */
}

.pro_box_qh .swiper-slide .nr span a {
  font-size: 16px;
  border: 1px solid #fff;
  padding: 15px 30px;
  display: inline-block;
  color: #fff;
}

.pro_box_qh .swiper-slide .nr span a i {
  margin-left: 10px;
}

.pro_box_qh .swiper-slide .nr span a:hover {
  background: #fff;
  color: #333;
}

.pro_box_qh .swiper-button-next,
.pro_box_qh .swiper-button-prev {
  color: #fff;
  width: 55px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.pro_box_qh .swiper-button-next:hover,
.pro_box_qh .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.7);
}

.pro_box_qh .swiper-button-next::after,
.pro_box_qh .swiper-button-prev::after {
  font-size: 24px;
}

.pro_box_qh .swiper-slide .video {
  width: 100%;
  height: 100%;
  position: relative;
}

.pro_box_qh .swiper-slide .video .play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
}

.pro_box_qh .swiper-slide .video .play i {
  font-size: 24px;
}

.pro_bt {
    padding: 60px 0px;
  text-align: center;
  color: #333;
}

.pro_bt h2 {
  font-size: 40px;
  font-weight: bold;
}

.pro_bt p {
  font-size: 18px;
}

.pro_bt1 {
  text-align: left;
}

.pro_box1 {
  padding-bottom: 100px;
}

.pro_box1_nr {
  position: relative;
  width: 100%;
  height: 80vh;
}

.pro_box1_nr .hd {
  position: absolute;
  z-index: 2;
  left: 10%;
  top: 50%;
  transform: translate(0, -50%);
}

.pro_box1_nr .hd ul li {
  cursor: pointer;
  color: #A6A7A3;
  font-size: 20px;
  border-left: 3px solid transparent;
  padding-left: 20px;
  margin: 20px 0px;
}

.pro_box1_nr .hd ul li.on {
  opacity: 1;
  color: #fff;
  border-left: 3px solid #D2FF00;
}

.pro_box1_nr .bd {
  width: 100%;
  height: 100%;
}

.pro_box1_nr .bd .bj {
  width: 100%;
  height: 100%;
}

.pro_box1_nr .bd .bj img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro_box2 {
  background-position: left center;
  background-size: cover;
  height: 100vh;
}

.pro_box2 .container {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  color: #fff;
}

.pro_box2 .nr {
  width: 480px;
}

.pro_box2 .nr h2 {
  font-size: 40px;
  padding-bottom: 20px;
  font-weight: bold;
}

.pro_box2 .nr h3 {
  font-size: 30px;
  padding-bottom: 10px;
}

.pro_box2 .nr p {
  font-size: 16px;
}

.pro_box2 .nr ul {
  padding-top: 40px;
  display: flex;
}

.pro_box2 .nr ul li {
  flex: auto;
  text-align: right;
}

.pro_box3 {
  padding: 100px 0px;
}

.pro_box31 {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.pro_box31 .left {
  width: 450px;
  position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
}

.pro_box31 .left h2 {
  font-size: 50px;
  padding-bottom: 30px;
  color: #fff;
  font-weight: bold;
}

.pro_box31 .left p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.pro_box31 .right {
  width: 100%;
}

.pro_box31 .right img {
  width: 100%;
  height: auto;
}

.pro_box3_qh {
  padding-top: 50px;
}

.pro_box3_qh .swiper-slide .img {
  width: 100%;
  aspect-ratio: 53/30;
  position: relative;
}

.pro_box3_qh .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro_box3_qh .swiper-slide .img span {
  position: absolute;
  bottom: 0px;
  left: 50%;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  transform: translate(-50%, 0px);;
  background: rgba(255,255,255,.7);
  padding: 10px;
  font-size: 18px;
  color: #333;
}

.pro_box3_qh .swiper-slide h2 {
  padding-top: 10px;
  font-size: 16px;
  color: #666;
  text-align: center;
}

.pro_box4 {
  padding-bottom: 100px;
}

.pro_box4 .nr p {
  font-size: 16px;
  line-height: 1.6;
  display: block;
  padding-bottom: 20px;
}

.pro_box4 .nr img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.pro_box5 {
  padding-bottom: 100px;
}

.pro_box5 .hd {
  width: 600px;
  margin: 0px auto;
}

.pro_box5 .hd ul {
  display: flex;
  justify-content: space-between;
}

.pro_box5 .hd ul li {
  flex: 1;
  line-height: 55px;
  text-align: center;
  font-size: 20px;
  color: #666;
  border-bottom: 2px solid #ddd;
  cursor: pointer;
}

.pro_box5 .hd ul li.on {
  border-bottom: 2px solid #D2FF00;
  color: #333;
}

.pro_box5 .bd {
  padding-top: 40px;
}

.pro_box5 .bd .jieshao {
  max-width: 1000px;
  margin: 0px auto;
  padding-bottom: 40px;
}

.pro_box5 .bd .jieshao p {
  font-size: 16px;
}

.pro_box5 .bd .jieshao1_a {
  padding-bottom: 40px;
  align-items: center;
  position: relative;
}

.pro_box5 .bd .jieshao1_a .left {
  width:100%;
}

.pro_box5 .bd .jieshao1_a .left img {
  width: 100%;
  height: auto;
}

.pro_box5 .bd .jieshao1_a .right {
  width: 450px;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    color: #fff;
}

.pro_box5 .bd .jieshao1_a .right h2 {
  font-size: 40px;
  color: #fff;
  padding-bottom: 15px;
  font-weight: bold;
}

.pro_box5 .bd .jieshao1_a .right p {
  font-size: 16px;
  line-height: 1.6;
}

.pro_box5 .bd .jieshao1 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.pro_box5 .bd .jieshao1 ul li {
  width: 100%;
}

.pro_box5 .bd .jieshao1 ul li img {
  aspect-ratio: 80/46;
  width: 100%;
}

.pro_box5 .bd .jieshao1 ul li h2 {
  font-size: 20px;
  color: #333;
  padding: 8px 0px;
}

.pro_box6 {
  padding-bottom: 100px;
  background: url(../images/pro_logo.png) no-repeat;
  background-size: 100%;
  background-position: bottom 140px center;
}

.pro_box6_nr {
  display: flex;
  justify-content: space-between;
}

.pro_box6_nr_l {
  width: 48%;
}

.pro_box6_nr_l .hd {}

.pro_box6_nr_l .hd ul {
  display: flex;
}

.pro_box6_nr_l .hd ul li {
  line-height: 45px;
  text-align: center;
  font-size: 18px;
  color: #666;
  border-bottom: 2px solid #ddd;
  cursor: pointer;
  padding: 0px 30px;
}

.pro_box6_nr_l .hd ul li.on {
  border-bottom: 2px solid #000;
  color: #333;
}

.pro_box6_nr_l .bd {
  padding-top: 30px;
}

.pro_box6_nr_l .bd ul li {
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  font-size: 16px;
  color: #333;
}

.pro_box6_nr_l .bd ul li h2 {
  color: #888;
}

.pro_box6_nr_l .xiazai {
  padding-top: 40px;
}

.pro_box6_nr_l .xiazai h2 a {
  font-size: 20px;
  background: #000;
  color: #D2FF00;
  padding: 20px 40px;
  display: inline-block;
  margin-bottom: 15px;
}

.pro_box6_nr_l .xiazai h2 a:hover {
  background: #D2FF00;
  color: #000;
}

.pro_box6_nr_l .xiazai p {
  color: #666;
  line-height: 1.6;
}

.pro_box6_nr_l .xiazai p em {
  color: #f32735;
}

.pro_box6_nr_r {
  width: 48%;
  height: 600px;
}

.pro_box7 {
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}

.pro_box7_qh {
  padding: 0px 40px;
  position: relative;
}

.pro_box7_qh .swiper-slide {
  position: relative;
}

.pro_box7_qh .swiper-slide .img {
  margin: 0px auto;
}

.pro_box7_qh .swiper-slide .img a img {
  aspect-ratio: 94/60;
  width: 100%;
  object-fit: cover;
}

.pro_box7_qh .nr {
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.pro_box7_qh .nr h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.pro_box7_qh .nr h3 {
  font-size: 16px;
  color: #666;
}

.pro_box7_qh .swiper-button-next,
.pro_box7_qh .swiper-button-prev {
  color: #333;
}

.news_list {
  padding: 100px 0px;
}

.news_list_qh {
    position: relative;
    padding: 0px 60px;
  padding-bottom: 40px;
}

.news_list_qh .swiper-slide {
  display: flex;
  justify-content: space-between;
}

.news_list_qh .swiper-slide .img {
  width: 55%;
}

.news_list_qh .swiper-slide .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 90/60;
}

.news_list_qh .swiper-slide .nr {
  width: 45%;
  box-sizing: border-box;
  padding: 0px 5%;
}

.news_list_qh .swiper-slide .nr p {
  font-size: 16px;
}

.news_list_qh .swiper-slide .nr h2 {
  font-size: 35px;
  color: #333;
  padding: 25px 0px;
}

.news_list_qh .swiper-slide .nr span a {
  border: 1px solid #000;
  color: #000;
  font-size: 16px;
  padding: 15px 40px;
  display: inline-block;
}

.news_list_qh .swiper-slide .nr span a:hover {
  border: 1px solid #000;
  background: #000;
  color: #D2FF00;
}

.news_list_qh .swiper-pagination span {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  opacity: 1;
}

.news_list_qh .swiper-pagination span.swiper-pagination-bullet-active {
  width: 25px;
  height: 10px;
  background: #333;
  border-radius: 20px;
}

.news_list_qh .swiper-button-next,
.news_list_qh .swiper-button-prev {
  color: #333;
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  border-radius: 50%;
  transition: all 0.3s;
}

.news_list_qh .swiper-button-next{
    right: 0px;
}

.news_list_qh .swiper-button-next:hover,
.news_list_qh .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
}

.news_list_qh .swiper-button-next::after,
.news_list_qh .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.news_list1 {
  padding-bottom: 100px;
}

.news_list1 .news_nav {
  display: flex;
  gap: 30px;
}

.news_list1 .news_nav a {
  border-radius: 25px;
  font-size: 16px;
  color: #333;
  background: #F5F5F5;
  padding: 10px 30px;
}

.news_list1 .news_nav a i {
  margin-left: 10px;
}

.news_list1 .news_nav a:hover,
.news_list1 .news_nav a.on {
  background: #000;
  color: #D2FF00;
}

.news_list1 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  padding-top: 40px;
}

.news_list1 ul li {
  flex: 1;
  transition: all .3s ease-in-out;
}

.news_list1 ul li:hover {
  transition: all .3s ease-in-out;
}

.news_list1 ul li .img a {
  display: block;
  overflow: hidden;
}

.news_list1 ul li .img a img {
  width: 100%;
  aspect-ratio: 53/32;
  object-fit: cover;
  transition: all .3s ease-in-out;
}

.news_list1 ul li .img a:hover img {
  transform: scale(1.1);
  transition: all .3s ease-in-out;
}

.news_list1 ul li .nr {
  text-transform: uppercase;
}

.news_list1 ul li .nr p {
  font-size: 14px;
  line-height: 1.6;
  color: #888;
}

.news_list1 ul li .nr h2 a {
  color: #000;
  font-size: 18px;
  padding: 10px 0px;
  display: block;
}

.news_list1 ul li .nr h2 a:hover {
  color: #D2FF00;
}

.news_list1 ul li .nr span a {
  display: inline-block;
  margin-top: 10px;
  font-size: 16px;
}

.news_list1 ul li .nr span a:hover {
  background: #000;
  color: #D2FF00;
  padding: 10px 30px;
}

.eventi_xx {
  padding-top: 80px;
  border-bottom: 1px solid #ddd;
}

.eventi_xx p {
  font-size: 16px;
}

.eventi_xx p span {
  padding-right: 15px;
  color: #f32735;
}

.eventi_xx h2 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  padding: 25px 0px;
  text-align: center;
}

.eventi_xx1 {
  padding: 50px 0px;
}

.eventi_xx1 p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  display: block;
  padding-bottom: 20px;
}

.eventi_xx1 img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.eventi_xx2 {
  padding-bottom: 100px;
}

eventi_xx2 ul {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
}

/* 社区详情页面样式 */
.detail-container {
  padding: 40px 0;
}

.detail-container .container {
  display: flex;
  gap: 50px;
}

.detail-container .fanhui {
  font-size: 16px;
  padding: 10px 30px;
  background: #000;
  color: #fff;
  display: inline-block;
  margin-bottom: 20px;
  border-radius: 3px;
}

.detail-container .fanhui i {
  margin-right: 10px;
}

.detail-container .fanhui:hover {
  color: #C1E54E;
}

/* 帖子详情 */
.post-detail {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.post-detail .post-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}

.post-detail .user-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.post-detail .user-info {
  flex: 1;
}

.post-detail .username {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}

.post-detail .post-time {
  font-size: 13px;
  color: #999;
}

.post-detail .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.post-detail .tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: rgba(211, 255, 53, 0.2);
  color: #333;
  font-size: 14px;
  border-radius: 20px;
}

.post-detail .post-content {
  margin-bottom: 25px;
}

.post-detail .post-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  padding-bottom: 10px;
}

.post-detail .post-content img {
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 0px;
}

.store_list {
  padding: 60px 0px;
  display: flex;
  gap: 40px;
}

.store_filter {
  width: 200px;
  flex-shrink: 0;
}

.store_filter h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.store_filter ul li {
  padding: 10px 0;
}

.store_filter ul li label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #666;
}

.store_filter ul li label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  accent-color: #D2FF00;
}

.store_filter ul li label span {
  line-height: 1;
}

.store_content {
  flex: 1;
  min-width: 0;
}

.store_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.store_header .count {
  font-size: 16px;
  color: #333;
}

.store_header .sort {
  display: flex;
  align-items: center;
  gap: 15px;
}

.store_header .sort span {
  font-size: 14px;
  color: #666;
}

.store_header .sort select {
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.store_header .view_mode {
  display: flex;
  gap: 5px;
}

.store_header .view_mode a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #666;
  font-size: 16px;
}

.store_header .view_mode a:hover,
.store_header .view_mode a.active {
  background: #D2FF00;
  border-color: #D2FF00;
  color: #333;
}

.store_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.store_items li {
  transition: 0.3s;
}

.store_items li:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.store_items li .img {
  width: 100%;
  margin-bottom: 15px;
  background: #f8f8f8;
}

.store_items li .img a {
  display: block;
  position: relative;
}

.store_items li .img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.store_items li .img a p{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.4);
    opacity: 0;
    color: #fff;
    font-size: 16px;
}

.store_items li:hover .img a p{
    opacity: 1;
}

.store_items li .nr {
  padding: 0 10px;
}

.store_items li .nr p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.store_items li .nr span {
  color: #666;
  font-size: 18px;
  padding-top: 5px;
  display: block;
}

.store_box {
  padding: 60px 0;
}

.store_detail {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.store_detail .detail_left {
  width: 50%;
  flex-shrink: 0;
}

.store_detail .detail_left .img {
  background: #f8f8f8;
}

.store_detail .detail_left .img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.store_detail .detail_left .detail_main_swiper {
  width: 100%;
  height: auto;
  position: relative;
  
  overflow: hidden;
}

.store_detail .detail_left .detail_main_swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  aspect-ratio: 67/50;
}

.store_detail .detail_left .detail_main_swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
}

.store_detail .detail_left .detail_main_swiper .swiper-button-next,
.store_detail .detail_left .detail_main_swiper .swiper-button-prev {
  color: #333;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: all 0.3s;
}

.store_detail .detail_left .detail_main_swiper .swiper-button-next:hover,
.store_detail .detail_left .detail_main_swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1);
}

.store_detail .detail_left .detail_main_swiper .swiper-button-next::after,
.store_detail .detail_left .detail_main_swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.store_detail .detail_right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store_detail .detail_right h1 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

.store_detail .detail_right .color_select {
  margin-bottom: 30px;
}

.store_detail .detail_right .color_select span {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.store_detail .detail_right .color_select ul {
  display: flex;
  gap: 30px;
}

.store_detail .detail_right .color_select ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s;
}

.store_detail .detail_right .color_select ul li span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 8px;
  display: block;
  border: 2px solid transparent;
}


.store_detail .detail_right .color_select ul li p {
  font-size: 12px;
  color: #666;
}

.store_detail .detail_right .size_select {
  margin-bottom: 30px;
}

.store_detail .detail_right .size_select span {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.store_detail .detail_right .size_select ul {
  display: flex;
  gap: 15px;
}

.store_detail .detail_right .size_select ul li {
  border: 2px solid #333;
  color: #333;
  font-size: 14px;
  padding: 10px 20px;
}

.store_detail .detail_right .price {
  display: flex;
  align-items: center;
  padding-bottom: 30px;
  font-size: 18px;
  color: #333;
}

.store_detail .detail_right .price .value {
  font-size: 30px;
  font-weight: bold;
  color: #666;
}


.store_detail .detail_right .buy_btn {
  width: 200px;
  height: 48px;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.store_detail .detail_right .buy_btn:hover {
  background: #D2FF00;
  color: #333;
}

.spec_param {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.spec_param h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.spec_param .spec_content {
  display: flex;
  gap: 60px;
}

.spec_param .spec_left {
  width: 30%;
  flex-shrink: 0;
}

.spec_param .spec_left h3 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.spec_param .spec_left p {
  font-size: 16px;
}

.spec_param .spec_left img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.spec_param .spec_right {
  flex: 1;
  background: #f8f8f8;
}

.spec_param .spec_right img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.more_recommend {
  padding-top: 40px;
}

.more_recommend .recommend_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.more_recommend .recommend_header h2 {
  font-size: 30px;
  font-weight: bold;
  color: #333;
}

.more_recommend .recommend_header .view_more {
  font-size: 14px;
  color: #666;
}

.more_recommend .recommend_header .view_more:hover {
  color: #f32735;
}

.more_recommend ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.more_recommend ul li {
  transition: 0.3s;
}

.more_recommend ul li:hover {
  transform: translateY(-5px);
}

.more_recommend ul li .img {
  background: #f8f8f8;
  margin-bottom: 15px;
}

.more_recommend ul li .img a {
  display: block;
}

.more_recommend ul li .img img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.more_recommend ul li p {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 10px;
}

.store_lujin {
  padding-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store_lujin h3 a {
  font-size: 18px;
}

.dealer {
  display: flex;
  width: 100vw;
  height: calc(100vh - 75px);
}

.dealer .left-panel {
  width: 35%;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  border-right: 1px solid #eee;
  display: flex;
  flex-direction: column;
}

.dealer .city-select {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 15px;
}

.dealer .city-select select {
  flex: 1;
  height: 40px;
  border: none;
  border-bottom: 1px solid #333;
  font-size: 16px;
  outline: none;
  appearance: none;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23333' d='M5 6L0 0h10z'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 12px;
  padding-right: 30px;
}

.dealer .store-count {
  padding: 10px 20px;
  color: #666;
  font-size: 14px;
}

.dealer .store-list {
  flex: 1;
  overflow-y: auto;
  padding: 10px 20px;
}

.dealer .store-item {
  padding: 20px 15px;
  margin-bottom: 15px;
  background: #f5f5f5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.dealer .store-item:hover {
  background: #eaeaea;
}

.dealer .store-item.active {
  background: #fff;
  border: 2px solid #007aff;
}

.dealer .store-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.dealer .store-address,
.store-phone {
  font-size: 14px;
  color: #666;
  margin: 5px 0;
}

.dealer .right-panel {
  flex: 1;
  height: 100%;
}

.dealer #map {
  width: 100%;
  height: 100%;
}

/* app_box模块样式 */
.app_box {
  position: relative;
  padding: 80px 0px 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  max-width: 1500px;
  margin: 0px auto;
}

.app_box .big img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.app_box .video {
  position: absolute;
  width: 25%;
  left: 15%;
  bottom: 10%;
  z-index: 2;
  max-width: 340px;
}

.app_box .video img {
  width: 100%;
  height: auto;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

.app_box .video video {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  left: 5px;
  top: 5px;
  object-fit: cover;
  z-index: 0;
  pointer-events: auto;
  border-radius: 40px;
}

.app_box .ewm {
  position: absolute;
  right: 22%;
  top: 35%;
  width: 15%;
}

.app_box .ewm img {
  width: 100%;
  height: auto;
}

/* about2_box 模块样式 */
.about2_box {
  width: 100%;
}

.about2_top {
  display: flex;
  width: 100%;
}

.about2_left {
  width: 55%;
  position: relative;
  background: url(../images/contact_pic.png) no-repeat;
  background-size: cover;
}

.about2_left img{
    width: 100%;
    height: 100%;
    object-fit:cover ;
}

.about2_right {
  width: 45%;
  background: #fff;
  padding: 80px 60px;
  box-sizing: border-box;
}

.about2_right h2 {
  font-size: 50px;
  color: #333;
  font-weight: bold;
  margin-bottom: 25px;
}

.about2_right .subtitle {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 8px;
}

.about2_right .hotline {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-label {
  font-size: 14px;
  color: #f32735;
  font-weight: bold;
}

.form-row {
  display: flex;
  gap: 30px;
}

.form-item {
  flex: 1;
}

.form-item.full {
  width: 100%;
}

.form-item input,
.form-item select {
  width: 100%;
  height: 50px;
  padding: 0 5px;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #666;
  background: transparent;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}

.form-item input::placeholder {
  color: #999;
}

.form-item select {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E") no-repeat right 0 center;
  background-size: 10px;
}

.form-item input:focus,
.form-item select:focus {
  outline: none;
  border-bottom-color: #333;
}

.agree-row {
  align-items: center;
  margin-top: 10px;
}

.agree-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  accent-color: #333;
}

.agree-row label {
  font-size: 14px;
  color: #666;
}

.privacy-link {
  color: #0066cc;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #0066cc;
}

.submit-btn {
  width: 200px;
  height: 55px;
  background: #000;
  color: #D3FF35;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit-btn:hover {
  background: #333;
}

.about2_bottom {
  background: url(../images/contact_pic1.png) no-repeat;
  background-size: cover;
  background-position: center;
  height: 80vh;
  position: relative;
  margin: 50px 0px;
}

.about2_bottom .container {
  position: relative;
  z-index: 1;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about2_bottom h2 {
  font-size: 40px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 30px;
}

.about2_bottom p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 30px;
}


.btn-group a {
  border: 1px solid #fff;
  color: #fff;
  padding: 18px 45px;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-group a:hover {
  background: #D3FF35;
  border: 1px solid #D3FF35;
  color: #333;
}


.about2_contact {
  padding: 80px 0;
  background: #fff;
}

.about2_contact h2 {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.contact-item {
  background: #f5f5f5;
  padding: 40px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-item h3 {
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-item p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 5px;
}

.contact-item p a {
  color: #666;
}

.contact-item p i {
  background: #D2FF00;
  border-radius: 50%;
  color: #333;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  margin-right: 10px;
}

.contact-item p a:hover {
  color: #f32735;
}

.contact-item .more {
  display: inline-block;
  font-size: 14px;
  color: #333;
  margin-top: 20px;
}

.contact-item .more:hover {
  color: #D3FF35;
}

/* HR招聘模块样式 */
.hr_box {
  padding: 60px 0;
  background: #fff;
}

.hr_title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
}

.hr_title a{
    color: #999;
}

.hr_title a.on{
    color: #333;
}

.hr_filter {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.filter-select {
  width: 200px;
  height: 45px;
  padding: 0 15px;
  border: 1px solid #ddd;
  font-size: 14px;
  color: #666;
  background: #fff;
  appearance: none;
  cursor: pointer;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath fill='%23999' d='M5 6L0 0h10z'/%3E%3C/svg%3E") no-repeat right 15px center;
  background-size: 10px;
}

.filter-select:focus {
  outline: none;
  border-color: #333;
}

.job-list {
  border-top: 1px solid #ddd;
}

.job-item {
  border-bottom: 1px solid #ddd;
}

.job-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  cursor: pointer;
}

.job-title {
  font-size: 18px;
  color: #333;
  font-weight: bold;
  flex: 1;
}

.job-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #666;
  flex: 1;
}

.toggle-btn {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn:hover {
  background: #f5f5f5;
}

.toggle-btn i {
  font-size: 14px;
  color: #666;
}

.job-content {
  display: none;
  padding: 30px 20px;
  background: #fafafa;
  border-top: 1px solid #ddd;
}

.job-content.active {
  display: block;
}

.job-section {
  margin-bottom: 30px;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section h4 {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 3px solid #D3FF35;
}

.job-section ul {
  padding-left: 20px;
}

.job-section ul li {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 10px;
  list-style-type: none;
}

.job-section ul li:last-child {
  margin-bottom: 0;
}

.resume-section {
  position: fixed;
  right: 100px;
  top: 200px;
  background: #f5f5f5;
  padding: 25px 30px;
  border-radius: 8px;
  text-align: center;
}

.resume-section h4 {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.resume-section p {
  font-size: 14px;
  color: #666;
}

/* 预约试驾模块 */
.yuyue {
  display: flex;
  min-height: calc(100vh - 75px);
}

.yuyue_left {
  flex: 1;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.yuyue_left .logo {
  text-align: center;
  z-index: 2;
  position: relative;
}

.yuyue_left .logo h2 {
  font-size: 60px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 10px;
}

.yuyue_left .logo h3 {
  font-size: 28px;
  color: #fff;
  margin-top: 10px;
  letter-spacing: 8px;
}

.yuyue_left .bg_img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.yuyue_left .bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yuyue_right {
  width: 500px;
  background: #f2f2f2;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yuyue_form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form_item {
  width: 100%;
}

.form_select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-size: 16px;
  color: #333;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  position: relative;
}

.form_select:focus {
  border-bottom-color: #D2FF00;
  outline: none;
}

.form_select::after {
  content: '▼';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}

.form_input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-size: 16px;
  color: #333;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.form_input:focus {
  border-bottom-color: #D2FF00;
  outline: none;
}

.form_input::placeholder {
  color: #999;
}

.code_item {
  display: flex;
  gap: 15px;
}

.code_input {
  flex: 1;
}

.get_code_btn {
  width: 130px;
  height: 50px;
  background: #333;
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.get_code_btn:hover {
  background: #D2FF00;
  color: #333;
}

.get_code_btn.disabled {
  background: #999;
  cursor: not-allowed;
}

.date_input {
  color: #999;
}

.date_input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

.date_input::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

.agree_item {
  padding-top: 10px;
}

.agree_label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #666;
  cursor: pointer;
}

.agree_label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 10px;
  cursor: pointer;
}

.policy_link {
  color: #E30613;
  text-decoration: underline;
  margin-left: 5px;
}

.submit_item {
  padding-top: 20px;
}

.submit_btn {
  width: 100%;
  height: 55px;
  background: transparent;
  border: 2px solid #333;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.submit_btn:hover {
  background: #333;
  color: #fff;
}

.submit_btn span:first-child {
  font-size: 20px;
}

.about_box {
  padding: 60px 0px;
}

.about_box h2 {
  text-align: center;
  font-size: 30px;
  color: #333;
  font-weight: bold;
  padding-bottom: 15px;
}

.about_box p {
  font-size: 16px;
}

.about_box video {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

/* about_box1模块样式 */
.about_box1 {
  padding: 80px 0;
  background: #fff;
}

.about_box1 .container {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.about_box1_left {
  flex: 1;
  position: relative;
}

.about_box1_left .main_title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.about_box1_left .sub_title {
  font-size: 40px;
  text-transform: uppercase;
  color: transparent;
  /* 文字颜色设为透明 */
  -webkit-text-stroke-width: 1px;
  /* 边框宽度 */
  -webkit-text-stroke-color: #ccc;
  /* 边框颜色 */
  position: relative;
  top: -40px;
  z-index: 0;
}

.about_box1_left p {
  font-size: 18px;
}

.about_box1_right {
  flex: 2;
  padding-left: 40px;
  border-left: 1px solid #eee;
}

.about_box1_right .section_title {
  font-size: 24px;
  color: #333;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.data_items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.data_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.data_item:last-child {
  border-bottom: none;
}

.item_label {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.item_label_en {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.item_value {
  font-size: 56px;
  font-weight: bold;
  color: #333;
  line-height: 1;
}

.item_unit {
  font-size: 14px;
  color: #999;
  margin-left: 8px;
  text-align: right;
}

.about_box2 {
  background: #0F2841;
  padding: 80px 0px;
}

.about_box2 .bt {
  text-align: center;
  color: #fff;
  font-size: 16px;
}

.about_box2 .bt h2 {
  font-size: 30px;
  padding-bottom: 15px;
}

.about_box2 .map {
  padding-top: 30px;
}

.about_box2 .map img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.about_box2_nr {
  padding: 60px 20px;
  color: white;
}

.about_box2_nr .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.about_box2_nr .section-header h3 {
  font-size: 18px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-align: center;
  display: block;
  width: 100%;
}

.about_box2_nr .locations-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.about_box2_nr .location-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_box2_nr .location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about_box2_nr .location-image {
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 比例 */
  position: relative;
  overflow: hidden;
}

.about_box2_nr .location-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about_box2_nr .location-info {
  padding: 20px;
}

.about_box2_nr .location-info h4 {
  font-size: 20px;
  margin: 0 0 8px 0;
  font-weight: 600;
}

.about_box2_nr .location-info p:first-of-type {
  font-size: 16px;
  margin: 0 0 8px 0;
  opacity: 0.9;
}

.about_box2_nr .location-info .address {
  font-size: 14px;
  opacity: 0.7;
  margin: 0 0 15px 0;
}

.map-link {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: white;
}

.map-icon {
  margin-right: 6px;
  font-size: 12px;
}

.about_box3 {
  padding: 60px 0px;
  margin: 0 auto;
}

.about_box3__header {
  text-align: center;
  margin-bottom: 40px;
}

.about_box3__title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.about_box3__content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
  overflow: hidden;
}

.about_box3__content .hd {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 40px;
  text-align: center;
}

.about_box3__content .hd ul li {
  font-size: 16px;
  color: #999;
  margin: 20px 0;
  cursor: pointer;
}

.about_box3__content .hd ul li.on {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin: 30px 0;
}

.about_box3__image-wrapper {
  overflow: hidden;
}

.about_box3__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about1_box {
  padding: 100px 0px;
}

.about1_box .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about1_box .about1_left {
  font-size: 50px;
  color: #333;
  font-weight: bold;
  width: 300px;
}

.about1_box .about1_right {
  width: calc(100% - 600px);
  font-size: 16px;
  line-height: 1.6;
}

.about1_box1 {
  background: url(../images/about1_pic.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 40vh;
}

.about1_box1 .container {
  height: 100%;
  color: #fff;
  box-sizing: border-box;
  padding-bottom: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.about1_box1 p {
  font-size: 18px;
}

.about1_box1 h3 {
  font-size: 30px;
  padding-top: 15px;
}

.about1_box2 {
  padding-top: 100px;
  text-align: center;
}

.about1_box2 h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
}

.about1_box2 p {
  font-size: 16px;
  line-height: 1.6;
}

.about1_box2 .img {
  position: relative;
  margin-top: 40px;
}

.about1_box2 .img img {
  max-width: 100%;
  width: auto;
  height: auto;
}

.about1_box2 .img span {
  position: absolute;
  bottom: 20%;
  left: 0px;
  width: 100%;
  font-size: 22px;
  color: #fff;
}

.about1_box3 {
  padding: 60px 0px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.about1_box3 li {
  box-sizing: border-box;
  background-position: bottom center;
  background-size: cover;
  padding: 30px;
  color: #fff;
  text-align: center;
  height: 50vh;
}

.about1_box3 li h2 {
  font-size: 24px;
  padding-bottom: 10px;
}

.about1_box3 li p {
  font-size: 16px;
  line-height: 1.6;
}

.serve_box {
  padding: 100px 0px;
  background: #f5f5f5;
}

.serve_box .bt {
  text-align: center;
}

.serve_box .bt h2 {
  font-size: 50px;
  color: #333;
  padding-bottom: 10px;
  font-weight: bold;
}

.serve_box .bt p {
  font-size: 18px;
}

.serve_box ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding-top: 60px;
}

.serve_box ul li {
  background: #fff;
}

.serve_box ul li .nr {
  box-sizing: border-box;
  padding: 8%;
  height: 230px;
}

.serve_box ul li .nr h2 {
  text-align: center;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}

.serve_box ul li .nr p {
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  padding: 15px 0px;
  min-height: 60px;
}

.serve_box ul li .nr span {
  display: block;
  text-align: center;
}

.serve_box ul li .nr span a {
  border: 1px solid #333;
  color: #333;
  font-size: 16px;
  padding: 10px 0px;
  width: 150px;
  display: inline-block;
}

.serve_box ul li .nr span a:hover {
  background: #333;
  color: #fff;
}

.serve_box ul li .img img {
  width: 100%;
  aspect-ratio: 82/48;
  object-fit: cover;
}

.about1_box4 {
  padding: 100px 0px;
}

.service_box {
  padding: 60px 0px;
  text-align: center;
}

.service_box .nav a {
  font-size: 16px;
  padding: 8px 20px;
  color: #333;
}

.service_box .nav a.on {
  border-bottom: 2px solid #000;
}

.service_box_qh {
  padding: 30px 0px;
}

.service_box_qh .swiper-wrapper {
  justify-content: center;
}

.service_box_qh .swiper-slide {
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  box-sizing: border-box;
}

.service_box_qh .swiper-slide .img img {
  width: 100%;
  height: auto;
}

.service_box_qh .swiper-slide.on {
  background: #f1f1f1;
}

.service_box_nav {
  max-width: 600px;
  margin: 0px auto;
  background: #f1f1f1;
  box-sizing: border-box;
  border-radius: 25px;
  padding: 10px;
  display: flex;
  position: sticky;
  top: 20px;
}

.service_box_nav a {
  font-size: 14px;
  flex: 1;
  text-align: center;
  font-size: 14px;
  padding: 10px 0px;
}

.service_box_nav a.on {
  background: #000;
  color: #fff;
  border-radius: 25px;
}

.service_box1 {
  display: flex;
  justify-content: space-between;
  margin: 60px 0px;
}

.service_box_list1 {
  position: relative;
}

.service_box_list1 .service_tips {
  position: absolute;
  top: -36px;
  right: 0;
  z-index: 2;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.service_box_list1 .service_tips:hover {
  color: #f32735;
}

.service_box1 .hd {
  background: #f1f1f1;
  width: 350px;
  height: 370px;
  box-sizing: border-box;
  border-radius: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.service_box1 .hd ul {
  padding: 3px;
  box-sizing: border-box;
}

.service_box1 .hd ul li {
  padding: 0px 15px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

.service_box1 .hd ul li.on {
  background: #fff;
  color: #333;
}

.service_box1 .bd {
  width: calc(100% - 400px);
  background: #f1f1f1;
  border-radius: 5px;
  padding: 10px 0px;
}

.service_box1 .bd ul {
  height: 350px;
  overflow-y: auto;
}

.service_box1 .bd ul li {
  padding: 0px 15px;
}

.service_box1 .bd ul li a {
  height: 50px;
  line-height: 50px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.service_box1 .bd ul li a h2 {
  color: #333;
}

.service_box1 .bd ul li a:hover h2 {
  color: #f32735;
}

.service_box1 .bd ul li a h3 i {
  font-size: 28px;
  color: #333;
}

.service_box1 .bd ul li a:hover h3 i {
  color: #f32735;
}

.service_box1 .bd ul li a h3 b {
  font-size: 18px;
  color: #333;
}

.service_box2 ul {
  display: grid;
  gap: 60px;
  grid-template-columns: repeat(2, 1fr);
}

.service_box2 ul li {
  box-sizing: border-box;
  background: #f1f1f1;
  border-radius: 5px;
  padding: 40px;
  text-align: center;
}

.service_box2 ul li i svg {
  width: 50px;
  height: 50px;
  fill: #333;
}

.service_box2 ul li h2 {
  font-size: 24px;
  color: #333;
  padding: 10px 0px;
}

.service_box2 ul li p {
  font-size: 16px;
  padding-bottom: 30px;
}

.service_box2 ul li span {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.service_box2 ul li span a {
  font-size: 16px;
}

.service_box3 {
  padding-bottom: 60px;
}

/* 购买弹窗样式 */
.buy_modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}

.buy_modal .modal_mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
}

.buy_modal .modal_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  max-height: 80vh;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.buy_modal .modal_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
  background: #f8f8f8;
}

.buy_modal .modal_header h2 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.buy_modal .modal_header .close {
  font-size: 24px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.buy_modal .modal_header .close:hover {
  color: #333;
}

.buy_modal .modal_body {
  padding: 30px;
}

.buy_modal .store_list {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  padding: 0px;
}

.buy_modal .store_list li {
  flex: 1;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: #fafafa;
  transition: all 0.3s;
}

.buy_modal .store_list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buy_modal .store_link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  border: 1px solid #ddd;
  box-sizing: border-box;
  padding: 10px;
  border-radius: 5px;
}

.buy_modal .store_link:hover {
  border: 1px solid #E30613;
}

.buy_modal .store_link h2 img {
  width: 40px;
  height: auto;
}

.buy_modal .store_link h3 {
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
}

.buy_modal .store_link:hover h3 {
  color: #f32735;
}

.buy_modal .qrcode {
  margin-top: 20px;
  width: auto;
  height: auto;
}

.buy_modal .qrcode img {
  width: 120px;
  height: 120px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.buy_modal .qrcode p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.dingwei{
    scroll-margin-top: 100px;
}