/* 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: #E30613;
  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", "黑体", "Arial", "Helvetica", "sans-serif", ;
  background: #fff;
  background-size: 100%;
  color: #666;
  font-size: 14px;
}

.container {
  margin: 0px auto;
  padding: 0px 100px;
}

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

.header .top {
  height: 100%;
}

.top:hover {
  background: #F7FAFB;
}

.top.scope {
  background: #F7FAFB;
}

.top.on {
  background: #F7FAFB;
}

.header.scroll {
  position: fixed;
  top: -100px;
}

.header.scroll.into {
  top: 0;
}

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

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

.top .logo img {
  height: 46px;
  width: auto;
}

.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: 1400px;
  max-width: calc(100% - 220px);
  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: 18px;
  position: relative;
  color: #333;
  text-transform: capitalize;
  position: relative;
  transition: 0.6s;
}

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

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

.top .nav .nLi.on h3 a::after {
  content: '';
  width: 80%;
  height: 4px;
  background: #E30613;
  position: absolute;
  left: 10%;
  bottom: 0px;
}

.top .nav .qh {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
  position: relative;
  cursor: pointer;
}

.top .nav .qh h2 {
  margin-left: 20px;
}

.top .nav .qh h2.gys a {
  font-size: 20px;
  color: #333;
}

/* 搜索模块样式 */
.search_box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  z-index: 9999;
  transition: height 0.3s ease;
}

.search_box.active {
  height: 100px;
}

.search_content {
  padding-top: 30px;
}

.search_content .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.search_input_wrap {
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 600px;
  border-bottom: 2px solid #333;
}

.search_input {
  flex: 1;
  height: 40px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: #333;
  padding-right: 10px;
}

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

.search_btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.search_close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.search_close a {
  font-size: 24px;
  color: #333;
}

.top .nav .qh h2.gjqh {
  position: relative;
}

.top .nav .qh h2.gjqh a {
  display: flex;
  align-items: center;
  color: #333;
  height: 30px;
}

.top .nav .qh h2.gjqh a img {
  width:30px;
  height: auto;
}

.top .nav .qh h2.gjqh a p {
  padding: 0px 8px;
  text-transform: uppercase;
  font-size: 14px;
}

.top .nav .qh h2.gjqh a i {
  font-size: 18px;
}

.top .nav .qh h2.gjqh span {
  position: absolute;
  top: 30px;
  left: -10px;
  display: none;
  min-width: 100%;
  padding: 10px;
  padding-bottom: 0px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.top .nav .qh h2.gjqh span a {
  text-align: center;
  line-height: 26px;
  display: flex;
  align-items: center;
  color: #333;
  margin-bottom: 10px;
}


.top .nav .qh h2.gjqh:hover span {
  display: block;
}

.top .nav .qh h2.subito a {
  background: #E30613;
  color: #fff;
  font-size: 14px;
  padding: 8px 10px;
  text-transform: uppercase;
}

.top .nav .qh h2.subito a img {
  margin-right: 5px;
}

.top .nav .qh h2.subito a:hover{
  background: #000;
}

.top .nav .nLi .sub {
  display: none;
  position: fixed;
  top: 100px;
  left: 0px;
  width: 100vw;
  border-top: 2px solid #16B162;
  height: calc(100vh - 102px);
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  z-index: 2;
}

.top .nav .nLi:hover .sub {
  display: flex;
}

.top .nav .nLi .sub .hd {
  width: 300px;
  padding-left: 2%;
  padding-top: 50px;
  height: calc(100vh - 180px);
  background: #f5f5f5;
}

.top .nav .nLi .sub .hd ul {
  display: flex;
  flex-direction: column;
}

.top .nav .nLi .sub .hd ul li {
  margin-bottom: 15px;
}

.top .nav .nLi .sub .hd ul li em {
  padding-bottom: 15px;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
}

.top .nav .nLi .sub .hd ul li.on em {
  border-bottom: 2px solid #E30613;
}

.top .nav .nLi .sub .bd {
  width: calc(100% - 300px);
}

.top .nav .nLi .sub .bd .bt {
  height: 80px;
  border-left: 1px solid #ddd;
  background: #f5f5f5;
  font-size: 20px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: #333
}


.top .nav .nLi .sub .bd ul {
  background: #fff;
  width: 100%;
  overflow: auto;
  max-height: calc(100vh - 180px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
  box-sizing: border-box;
  padding: 30px;
}

.top .nav .nLi .sub .bd ul li {
  border-radius: 15px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
}

.top .nav .nLi .sub .bd ul li .img img {
  width: 90%;
  aspect-ratio: 164/106;
}

.top .nav .nLi .sub .bd ul li:hover {
  background: #fafafa;
  transform: translatey(-20px);
  transition: all 0.3s ease;
}

.top .nav .nLi .sub .bd ul li:hover::after {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  height: 2px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(71, 191, 129, 0.5), rgba(255, 255, 255, 0));
  content: '';
}

.top .nav .nLi .sub .bd ul li h2 {
  text-align: center;
  font-size: 18px;
  color: #333;
}

.top .nav .nLi .sub .bd ul li p {
  text-align: center;
  font-size: 16px;
  color: #666;
}

.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;
}

.nav_gao {
  height: 100px;
}


.in_banner {
 position: fixed;
  width: 100%;
  top: 0px;
  height: 100vh;
  z-index: 0;
}

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

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

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

.in_banner .swiper-slide .bj .pc_img img {
  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%;
  padding-bottom: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
  max-width: 70%;
  padding-left: 80px;
}

.in_banner .swiper-slide .nr p {
  font-size: 18px;
  color: #fff;
  max-width: 800px;
}


.in_banner .swiper-slide .nr h2 {
  font-size: 3vw;
  color: #fff;
  max-width: 1000px;
  padding: 15px 0px;
}

.in_banner .swiper-slide .nr h3 {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 25px 0px;
  font-size: 18px;
}

.in_banner .swiper-slide .nr h3 a {
  padding: 20px 40px;
  color: #fff;
  display: inline-block;
  background: #E30613;
  margin-right: 20px;
}

.in_banner .swiper-slide .nr h3 a:hover {
  background: #000;
}

.in_banner .swiper-slide .nr span a {
  padding: 20px 0px;
  color: #fff;
  display: inline-block;
}

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

.in_banner .swiper-slide .nr span a:hover {
  background: #000;
  padding: 20px 30px;
}


.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: 30px;
  height: 6px;
  background: #fff;
  border-radius: 0px;
}

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

.in_box {
  padding: 100px 0px;
  background: #F8F5F5;
  position: relative;
  z-index: 2;
  margin-top: 100vh;
}

.in_box .hd ul {
  width: 100%;
  display: flex;
  justify-content: center;
}

.in_box .hd ul li {
  color: #888;
  font-size: 20px;
  padding: 0px 20px;
  cursor: pointer;
}

.in_box .hd ul li.on {
  color: #333;
}

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

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

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

.in_box_qh .xs{
  position: relative;
  z-index: 2;
}

.in_box_qh .xs ul li.on .dwz{
    transition: clip-path 1s ease;
    transition-delay: 0.8s;
    clip-path: inset(0 0 0 0);
}

.in_box_qh .xs ul li .dwz{
    transition: clip-path 1s ease;
    clip-path: inset(0 0 100% 0);
}

.in_box_qh .xs ul li.on .wz{
    transition: clip-path 1s ease;
    transition-delay: 0.8s;
    clip-path: inset(0 0 0 0);
}

.in_box_qh .xs ul li .wz{
     transition: clip-path 1s ease;
    clip-path: inset(100% 0 0 0);
}


.in_box_qh .xs .dwz {
  font-size: 12vw;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.in_box_qh .xs .wz {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
   position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.in_box_qh .xs .wz h2 {
  flex: 1;
}

.in_box_qh .xs .wz h2 b {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #333;
  font-family: fantasy;
}

.in_box_qh .xs .wz h2 b em {
  font-size: 16px;
  color: #999;
  font-weight: normal;
  padding-left: 10px;
}

.in_box_qh .xs .wz p {
  font-size: 14px;
  text-align: center;
}

.in_box_qh .xs .wz span a {
  color: #fff;
  background: #E30613;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 20px;
  display: inline-block;
}

.in_box_qh .xs .wz span a:hover {
  background: #000;
  color: #fff;
}

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

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

.in_box_qh .swiper-pagination span{
  width: auto;
  height: auto;
  background: none;
  padding: 0px 10px;
  font-size: 18px;
  opacity: .6;
}

.in_box_qh .swiper-pagination span.swiper-pagination-bullet-active{
  opacity: 1;
}

.in_bt {
  text-align: center;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.in_bt h2 {
  font-size: 40px;
  color: #333;
  padding-bottom: 10px;
}

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

.in_bt1 {
  text-align: left;
  color: #fff;
}

.in_bt1 h2 {
  color: #fff;
}

.in_box1 {
  background: url(../images/in_box2_bj.png) no-repeat right center;
  height: 80vh;
  position: relative;
  z-index: 2;
}

.in_box1 .container {
  height: 100%;
}

.in_box1 .container>div {
  max-width: 450px;
  height: 100%;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-sizing: border-box;
  padding-bottom: 5%;
  color: #fff;
}

.in_box1 .container h2 {
  font-size: 35px;
}

.in_box1 .container p {
  font-size: 16px;
  padding: 10px 0px;
}

.in_box1 .container h3 {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 600px;
  margin: 25px 0px;
  padding: 15px 0px;
}

.in_box1 .container h3 b {
  font-weight: normal;
  flex: 1;
  text-align: center;
  font-size: 50px;
}

.in_box1 .container span a {
  background: #E30613;
  color: #fff;
  font-size: 16px;
  padding: 15px 40px;
  display: inline-block;
}

.in_box1 .container span a i {
  margin-left: 10px;
}

.in_box1 .container span a:hover {
  background: #000;
}

.in_box2 {
  padding: 100px 0px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.in_box2 .hd ul {
  width: 100%;
  display: flex;
  justify-content: center;
}

.in_box2 .hd ul li {
  color: #888;
  font-size: 20px;
  padding: 0px 20px;
  cursor: pointer;
}

.in_box2 .hd ul li.on {
  color: #333;
}

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

.in_box2_qh .swiper-slide {
  position: relative;
  transform: scale(0.85);
  transition: all 0.3s ease-in-out;
}

.in_box2_qh .swiper-slide .img {
  margin: 0px auto;
  background: #FAF9F7;
}

.in_box2_qh .swiper-slide .img a img {
  aspect-ratio: 46/43;
  width: 100%;
}

.in_box2_qh .swiper-slide-active,
.in_box2_qh .swiper-slide-duplicate-active {
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.in_box2_qh .nr {
  box-sizing: border-box;
  padding: 20px;
}

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

.in_box2_qh .nr h3 {
  font-size: 20px;
  color: #E30613;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.in_box2_qh .nr h3 em {
  font-size: 18px;
  font-weight: normal;
  color: #888;
  padding-left: 10px;
  text-decoration: line-through;
}

.in_box2_qh .swiper-button-next,
.in_box2_qh .swiper-button-prev {
  color: #333;
  left: 0px;
}

.in_box2_qh .swiper-button-next{
  left: auto;
  right:0px;
}

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

.in_box2 .more a {
  background: #E30613;
  color: #fff;
  font-size: 16px;
  padding: 15px 40px;
  display: inline-block;
}

.in_box2 .more a:hover{
  background: #000;
}

.in_box3 {
  background: #FAF9F8;
  padding: 100px 0px;
  position: relative;
  z-index: 2;
}

.in_box3_qh {
  padding: 0px 20px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}


.in_box3_qh .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.in_box3_qh .swiper-slide:nth-child(even){
  transform: translatey(30px);
}

.in_box3_qh .swiper-slide b {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 3px solid #E30613;
}

.in_box3_qh .swiper-slide h2 {
  padding: 20px 0px;
  color: #E30613;
  font-size: 36px;
}

.in_box3_qh .swiper-slide .nr {
  background: #fff;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.09);
  border-radius: 28px 28px 28px 28px;
  padding: 8%;
  box-sizing: border-box;
  text-align: center;
}

.in_box3_qh .swiper-slide .nr h3 {
  color: #333;
  font-size: 20px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.in_box3_qh .swiper-slide .nr p {
  font-size: 14px;
  line-height: 1.6;
}

.in_box4 {
  background: #424242;
  padding: 100px 0px;
  position: relative;
  z-index: 2;
}

.in_box4 .container {
  display: flex;
}

.in_box4 .left {
  width: 42%;
  box-sizing: border-box;
  padding-right: 40px;
}

.in_box4 .left ul li {
  background: #4A4A4A;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  width: calc(100% - 20px);
  box-sizing: border-box;
}

.in_box4 .left ul li.active {
  background: linear-gradient(to right, #2D1619, #1A1A1A);
    border-left-color: #E30613;
  width: 100%;
}

.in_box4 .left ul li:hover {
  background: linear-gradient(to right, #2D1619, #1A1A1A);
  border-left-color: #E30613;
}

.in_box4 .left ul li h3 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.in_box4 .left ul li .address {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 18px;
  line-height: 1.5;
}

.in_box4 .left ul li .dealer-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.in_box4 .left ul li .dealer-tags .tag {
  background: #666;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: #eee;
  text-transform: uppercase;
}

.in_box4 .right {
  width: 58%;
  position: relative;
}

.in_box4 .right #map {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* 门店信息弹窗 */
.in_box4 .right .dealer-info-card {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 700px;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 8px;
  padding: 20px;
  color: #fff;
  z-index: 100;
  display: none;
  box-sizing: border-box;
}

.in_box4 .right .dealer-info-card.active {
  display: block;
}

.in_box4 .right .dealer-info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.in_box4 .right .dealer-info-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #ddd;
}

.in_box4 .right .test-drive-btn {
  width: 100%;
  padding: 14px;
  background: #e60000;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.in_box4 .right .test-drive-btn:hover {
  background: #cc0000;
}

.in_box5 {
  padding: 100px 0px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.in_box5_qh {
  padding-top: 20px;
}

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

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

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

.in_box5_qh .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  box-sizing: border-box;
  padding: 5%;
  color: #fff;
  text-transform: uppercase;
}

.in_box5_qh .swiper-slide .nr h2 {
  font-size: 40px;
  margin-bottom: 60px;

}

.in_box5_qh .swiper-slide .nr span a {
  font-size: 20px;
  padding: 20px 40px;
  display: inline-block;
  color: #fff;
  background: #E30613;
}

.in_box5_qh .swiper-slide .nr span a:hover {
  background: #000;
}

.in_box5_qh .swiper-button-next,
.in_box5_qh .swiper-button-prev {
  color: #333;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  left: 15%;
}

.in_box5_qh .swiper-button-next{
  left: auto;
  right: 15%;
}

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

.di{
  position: relative;
  z-index: 2;
  background: #fff;
}

.di .dii {
  padding: 70px 0px;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.di .dii .left {
  width: 480px;
}

.di .dii .left .logo img {
  height: 47px;
  width: auto;
}

.di .dii .left p {
  padding: 30px 0px;
  line-height: 1.6;
  text-transform: uppercase;
  color: #888;
  font-size: 14px;
}

.di .dii .left h2 {
  display: flex;
  gap: 30px;
}

.di .dii .left h2 a {
  width: 48px;
  height: 48px;
  background: #f9f9f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
}

.di .dii .left h2 a:hover {
  background: #E30613;
  color: #fff;
}

.di .dii .left h2 a svg{
  fill: #333;
  width: 20px;
  height: 20px;
}

.di .dii .left h2 a:hover svg{
  fill: #fff;
}

.di .dii .right {
  width: calc(100% - 580px);
  max-width: 900px;
}

.di .dii .right ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.di .dii .right ul li {
  padding-left: 20px;
}

.di .dii .right ul li h2 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  padding-bottom: 20px;
  text-transform: uppercase;
}

.di .dii .right ul li a {
  display: block;
  font-size: 14px;
  padding-bottom: 15px;
}

.di1 {
  background: #222222;
  padding: 20px 0px;
  color: #847E7E;
  position: relative;
  z-index: 2;
}

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

.pro_list {
  display: flex;
}

.pro_list_l {
  width: 300px;
  background: #F5F5F5;
  box-sizing: border-box;
  padding: 60px;
}

.pro_list_l .bt {
  font-size: 26px;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pro_list_l .bt h3 {
  font-weight: normal;
  display: none;
}

.pro_list_l ul li {
  border-top: 1px solid #ddd;
  padding-top: 30px;
  margin-top: 20px;
}

.pro_list_l ul li h2 {
  font-size: 18px;
  color: #333;
  padding-bottom: 10px;
}

.pro_list_l ul li p {
  display: block;
  padding: 8px 0px;
}

.pro_list_l ul li p input {
  margin-right: 10px;
}

.pro_list_l ul li h3 a {
  background: #E30613;
  color: #fff;
  font-size: 16px;
  padding: 20px 40px;
  border-radius: 5px;
  display: inline-block;
}

.pro_list_l ul li h3 a:hover{
  background: #000;
}

.pro_list_r {
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding: 30px;
  padding-top: 60px;
  padding-right: 100px;
}

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

.pro_list_r .bt .bt1 h2 {
  font-size: 46px;
  color: #333;
}

.pro_list_r .bt .bt1 .layui-btn.xiala {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  /* min-width: 240px; */
  height: 46px;
  line-height: 1;
  padding: 0 15px;
  background: #fff !important;
  color: #333 !important;
  border: 1px solid #ccc !important;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: none !important;
}

.pro_list_r .bt .bt1 .layui-btn.xiala:hover {
  background: #fff !important;
  color: #333 !important;
  border-color: #999 !important;
  opacity: 1;
}

.pro_list_r .bt .bt1 .layui-btn.xiala .layui-icon {
  margin-left: 12px;
  font-size: 12px;
}

.pro-sort-menu.layui-menu {
  min-width: 240px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 6px 0;
}

.pro-sort-menu .layui-menu-body-title {
  font-size: 16px;
  color: #333;
  line-height: 44px;
  padding: 0 15px;
}

.pro-sort-menu .layui-menu-body-title:hover {
  background: #f5f5f5;
  color: #333;
}

.pro_list_r .bt .bt1 p {
  font-size: 20px;
  color: #333;
}

.pro_list_r .bt .bt2 {
  display: flex;
}

.pro_list_r .bt .bt2 a {
  padding: 15px 40px;
  background: #EBEDEE;
  border-radius: 5px;
  margin-right: 20px;
  font-size: 16px;
  color: #333;
}

.pro_list_r .bt .bt2 a i {
  margin-right: 5px;
  color: #16B162;
}

.pro_list_r .bt .bt2 a.on {
  background: #16B162;
  color: #fff;
}

.pro_list_r .bt .bt2 a.on i {
  color: #fff;
}

.pro_list_r .bt .bt2 .xiala1 {
  background: #EBEDEE;
  border-radius: 5px;
  color: #333;
  font-size: 16px;
  height: 50px;
}

.layui-form-checkbox[lay-skin=primary]:hover>i {
  border-color: #E30613;
  color: #fff
}

.layui-form-checked[lay-skin=primary]>i {
  border-color: #E30613 !important;
  background-color: #E30613;
  color: #fff
}


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

.pro_list_r ul li {
  transition: all 0.3s ease-in-out;
}

.pro_list_r ul li:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease-in-out;
}

.pro_list_r ul li .img {
  background: #f1f1f1;
  border-radius: 10px;
}

.pro_list_r ul li .img img {
  width: 100%;
  aspect-ratio: 66/44;
}

.pro_list_r ul li .nr {
  background: #fafafa;
  padding: 20px;
}

.pro_list_r ul li .nr h2 {
  font-size: 28px;
  color: #333;
  font-weight: bold;
  padding-bottom: 10px;
}

.pro_list_r ul li .nr p {
  font-size: 20px;
  padding-bottom: 5px;
  color: #888;
}

.pro_list_r ul li .nr span {
  display: flex;
  padding-top: 8px;
}

.pro_list_r ul li .nr span a {
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
   background: #E30613;
}

.pro_list_r ul li .nr span a:hover {
  background: #000;
  color: #fff;
}

.pro_list_r ul li .nr span a:nth-child(1) {
  background: #E30613;
  color: #fff;
  margin-right: 10px;
}

.pro_list_r ul li .nr span a:nth-child(1):hover {
  background: #000;
}

.pro_box {
  padding: 100px 0px;
  background: #f5f5f5;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
}

.pro_box .dwz {
  font-size: 13vw;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.pro_box_1 {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pro_box_1_l {
  width: 480px;
  text-transform: uppercase;
}

.pro_box_1_l h3 {
  color: #cc0000;
  font-size: 18px;
}

.pro_box_1_l h2 {
  font-weight: bold;
  color: #333;
  font-size: 50px;
  padding: 20px 0px;
}

.pro_box_1_l p {
  font-size: 16px;
  line-height: 1.6;
  color: #888;
}

.pro_box_1_l span {
  display: block;
  padding-top: 50px;
}

.pro_box_1_l span a {
  background: #E30613;
  padding: 15px 20px;
  color: #fff;
}

.pro_box_1_l span a i {
  margin-left: 5px;
}

.pro_box_1_l span a:hover {
  background: #000;
}

.pro_box_1_r {
  width: calc(100% - 520px);
}

.pro_box_1_r .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 94/60;
  max-width: 900px;
}

.pro_box_2 {
  position: relative;
  display: flex;
  padding-top: 30px;
}

.pro_box_2 .wz {
  flex: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.pro_box_2 .wz h2 {
  flex: 1;
}

.pro_box_2 .wz h2 b {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #333;
  font-family: fantasy;
}

.pro_box_2 .wz h2 b em {
  font-size: 16px;
  color: #999;
  font-weight: normal;
  padding-left: 10px;
}

.pro_box_2 .wz p {
  font-size: 14px;
  text-align: center;
}

.pro_box_2 .qh {
  position: static;
  flex: 1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro_box_2 .qh span {
  width: auto;
  border-radius: 0px;
  background: none;
  height: auto;
  opacity: .7;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 8px 5px;
}

.pro_box_2 .qh span i {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: #333;
  border-radius: 50%;
  border: 4px solid #fff;
}

.pro_box_2 .qh span.swiper-pagination-bullet-active {
  opacity: 1;
}

.pro_box_2 .qh span.swiper-pagination-bullet-active i {
  border: 4px solid #fff;
  opacity: 1;
  width: 24px;
  height: 24px;
}

.pro_box1 {
  margin-top: 100vh;
  height: 80vh;
  position: relative;
}

.pro_box1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 94/60;
}

.pro_box1 h2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro_box1 h2 i {
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5vw;
  font-weight: 100;
}

.pro_box2 {
  padding: 100px 0px;
   position: relative;
  z-index: 2;
  background: #fff;
}

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

.pro_box2 ul li {
  background: #f9f9f9;
  padding: 20px;
  box-sizing: border-box;
}

.pro_box2 ul li i img {
  max-width: 64px;
  height: auto;
}

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

.pro_box2 ul li p {
  font-size: 14px;
  color: #666;
  padding: 5px 0px;
}

.pro_box3 {
  background: url(../images/pro_detail_bj.png) no-repeat top center #000;
  padding: 100px 0px;
  padding-top: 60vh;
  position: relative;
  z-index: 2;
}

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

.pro_box3_l {
  max-width: 700px;
  width: calc(100% - 480px);
  color: #fff;
  text-transform: uppercase;
}

.pro_box3_l h2 {
  font-size: 40px;
}

.pro_box3_l p {
  font-size: 18px;
  padding: 30px 0px;
  line-height: 1.6;
}

.pro_box3_l span a {
  background: #E30613;
  color: #fff;
  font-size: 16px;
  padding: 20px;
  display: inline-block;
}

.pro_box3_l span a i {
  margin-right: 10px;
}

.pro_box3_l span a:hover {
  background: #000;
  color: #fff;
}

.pro_box3_r {
  width: 450px;
}

.pro_box3_r ul li {
  width: 100%;
  border-top: 1px solid #fff;
  color: #fff;
  padding: 25px 0px;
  text-transform: uppercase;
}

.pro_box3_r ul li h2 {
  font-size: 40px;
  padding-bottom: 20px;
}

.pro_box3_r ul li h2 b {
  font-weight: normal;
  margin-right: 10px;
}

.pro_box3_r ul li p {
  font-size: 14px;
}

.pro_box4 {
  padding: 100px 0px;
  background: #fff;
   position: relative;
  z-index: 2;
}

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

.pro_box4 .hd h2 {
  font-size: 40px;
  color: #333;
  text-transform: uppercase;
}

.pro_box4 .hd ul {
  display: flex;
  gap: 10px;
}

.pro_box4 .hd ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: #333;
  padding: 10px;
  cursor: pointer;
}

.pro_box4 .hd ul li.on {
  background: #E30613;
  color: #fff;
}

.pro_box4 .bd {
  padding: 40px 0px;
}

.pro_box4 .bd ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}

.pro_box4 .bd ul li h2 {
  font-size: 14px;
  color: #888;
}

.pro_box4 .bd ul li h3 {
  font-size: 16px;
  color: #333;
}

.pro_box4 .more {
  position: relative;
}

.pro_box4 .more h2 {
  font-size: 10vw;
  text-align: center;
  background: linear-gradient(to bottom, #fff, #F8F8F8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pro_box4 .more a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #ddd;
  color: #E30613;
  font-size: 16px;
  padding: 20px;
  text-transform: uppercase;
}

.pro_box4 .more a i {
  margin-right: 10px;
}

.pro_box4 .more a:hover {
  background: #E30613;
  border: 1px solid #E30613;
  color: #fff;
}

.pro_box5 {
  padding: 100px 0px;
  padding-top: 0px;
   position: relative;
  z-index: 2;
  background: #fff;
}

.pro_box5 ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pro_box5 ul li {
  overflow: hidden;
  position: relative;
}

.pro_box5 ul li img {
  width: 100%;
  height: 100%;
  aspect-ratio: 396/430;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pro_box5 ul li:hover img {
  transform: scale(1.05);
}

.pro_box5 ul li.one {
  grid-column: span 2;
  grid-row: span 2;
}

.pro_box6 {
  padding-bottom: 100px;
  background: #fff;
   position: relative;
  z-index: 2;
}

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

.pro_box6 .bt .left h2 {
  font-size: 40px;
  color: #333;
  text-transform: uppercase;
  padding-bottom: 10px;
}

.pro_box6 .bt .left p {
  font-size: 16px;
  color: #888;
  text-transform: uppercase;
}

.pro_box6 .bt .right a {
  border: 1px solid #E30613;
  color: #E30613;
  text-transform: uppercase;
  font-size: 16px;
  padding: 10px 20px;
}

.pro_box6 .bt .right a i {
  margin-left: 10px;
}

.pro_box6 .bt .right a:hover {
  background: #E30613;
  color: #fff;
}

.pro_box6_qh {
  padding-top: 40px;
}

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

.pro_box6_qh .swiper-slide .img {
  margin: 0px auto;
  background: #FAF9F7;
}

.pro_box6_qh .swiper-slide .img a img {
  aspect-ratio: 46/43;
  width: 100%;
}

.pro_box6_qh .nr {
  box-sizing: border-box;
  padding: 20px;
}

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

.pro_box6_qh .nr h3 {
  font-size: 20px;
  color: #E30613;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.pro_box6_qh .nr h3 em {
  font-size: 18px;
  font-weight: normal;
  color: #888;
  padding-left: 10px;
  text-decoration: line-through;
}

.pro_box7 {
  background: #f5f5f5;
  padding: 100px 0px;
   position: relative;
  z-index: 2;
}

.pro_box7 .bt {
  padding-bottom: 40px;
}

.pro_box7 .bt h2 {
  font-size: 40px;
  color: #333;
  text-transform: uppercase;
  color: #333;
}

.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;
}

.ny_banner {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}

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

.ny_banner .play {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.ny_banner .play i {
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5vw;
  font-weight: 100;
}

.ny_banner .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 3;
}

.ny_banner .container p {
  max-width: 600px;
  font-size: 18px;
  line-height: 1.6;
}

.ny_banner .container h2 {
  font-size: 4vw;
  padding: 20px 0px;
  max-width: 600px;
}

.marchio_box {
  padding: 100px 0px;
}

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

.marchio_box .left {
  max-width: 450px;
  width: 100%;
}

.marchio_box .left h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.marchio_box .left h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

.marchio_box .right {
  max-width: 700px;
  width: 100%;
}

.marchio_box .right p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.marchio_box1 {
  background: url(../images/marchio_box_bj.png) no-repeat center center;
  background-size: cover;
  height: 500px;
  box-sizing: border-box;
  padding: 60px 0px;
}

.marchio_box1 .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.marchio_box1 .container p {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.marchio_box1 .container h2 {
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
  padding-top: 10px;
}

.marchio_box2 {
  background: #F9FAFB;
  padding: 100px 0px;
}

.marchio_box2 .bt {
  padding-bottom: 40px;
}

.marchio_box2 .bt h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.marchio_box2 .bt h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

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

.marchio_box21 .left {
  width: 350px;
  text-transform: uppercase;
}

.marchio_box21 .left h3 {
  font-size: 60px;
  font-weight: bold;
  color: #333;
  padding-bottom: 10px;
}

.marchio_box21 .left h2 {
  font-size: 24px;
  color: #333;
  padding: 25px 0px;
}

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

.marchio_box21 .right {
  width: calc(100% - 400px);
}

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

.marchio_box22 {
  max-width: 1200px;
  padding-top: 40px;
  text-transform: uppercase;
}

.marchio_box22 h3 {
  font-size: 18px;
  font-weight: bold;
  color: #ccc;
}

.marchio_box22 h2 {
  font-size: 60px;
  font-weight: bold;
  color: #ddd;
  padding: 15px 0px;
}

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

.marchio_box3 {
  padding: 100px 0px;
  text-transform: uppercase;
}

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

.marchio_box3 .left {
  width: 500px;
}

.marchio_box3 .left h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.marchio_box3 .left h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

.marchio_box3 .right {
  width: calc(100% - 550px);
}

.marchio_box3 .right ul li {
  padding: 35px 0px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.6;
}

.marchio_box3 .right ul li h3 {
  width: 45%;
}

.marchio_box3 .right ul li h3:nth-child(2) {
  text-align: right;
}

.marchio_box3 .right ul li h3 b {
  font-size: 60px;
  color: #333;
  padding-right: 10px;
}

.marchio_box3 .right ul li:nth-last-child(1) {
  border-bottom: none;
}

.marchio_box4 {
  padding: 100px 0px;
}

.marchio_box4 .map {
  position: relative;
}

.marchio_box4 .map img {
  width: 100%;
  height: auto;
}

.marchio_box4 .location {
  position: absolute;
  display: flex;
  align-items: center;
}

.marchio_box4 .location .dot {
  width: 8px;
  height: 8px;
  background-color: #E30613;
  border-radius: 50%;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.marchio_box4 .location .label {
  color: #E30613;
  font-size: 14px;
  font-weight: bold;
  z-index: 2;
  border-bottom: 1px solid #E30613;
  padding: 0px 10px;
}

.marchio_box5 {
  padding: 100px 0px;
  padding-top: 0px;
}

.marchio_box5 .bt {
  padding-bottom: 40px;
}

.marchio_box5 .bt h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.marchio_box5 .bt h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

.marchio_box5_qh {
  padding-top: 20px;
}

.marchio_box5_qh .swiper-slide {
  transform: scale(.7);
  opacity: .7;
}

.marchio_box5_qh .swiper-slide.swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

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

.marchio_box5_qh .swiper-slide .nr {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  box-sizing: border-box;
  padding: 5%;
  color: #fff;
  text-transform: uppercase;
}

.marchio_box5_qh .swiper-slide .nr h2 {
  font-size: 40px;
  margin-bottom: 60px;

}

.marchio_box5_qh .swiper-slide .nr span a {
  font-size: 20px;
  border: 1px solid #fff;
  padding: 20px 40px;
  display: inline-block;
  color: #fff;
}

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

.marchio_box5_qh .swiper-button-next,
.marchio_box5_qh .swiper-button-prev {
  color: #333;
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.marchio_box5_qh .swiper-button-next::after,
.marchio_box5_qh .swiper-button-prev::after {
  font-size: 30px;
}

.marchio_box5_qh .swiper-pagination span {
  width: 30px;
  height: 6px;
  background: #fff;
  border-radius: 0px;
}

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

.cultura_box {
  padding: 100px 0px;
}

.cultura_box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
}

.cultura_box ul li:nth-child(even) {
  flex-direction: row-reverse;
  padding-bottom: 0px;
}

.cultura_box ul li .left {
  width: 45%;
}

.cultura_box ul li .left h2 {
  font-size: 40px;
  color: #333;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.cultura_box ul li .left p {
  font-size: 16px;
  line-height: 1.6;
  padding-bottom: 10px;
}

.cultura_box ul li .left h3 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 5vw;
  color: #ddd;
}

.cultura_box ul li .right {
  width: 50%;
}

.cultura_box ul li .right img {
  width: 100%;
  height: auto;
}

.cultura_box1 {
  padding: 100px 0px;
}

.cultura_box1 .bt {
  padding-bottom: 40px;
  max-width: 1100px;
}

.cultura_box1 .bt h2 {
  font-size: 40px;
  color: #333;
  padding-bottom: 20px;
}

.cultura_box1 .bt p {
  font-size: 16px;
  line-height: 1.6;
  color: #888;
}

.cultura_box1 ul {
  display: flex;
  gap: 40px;
}

.cultura_box1 ul li {
  flex: 1;
}

.cultura_box1 ul li .img img {
  width: 100%;
  height: auto;
  aspect-ratio: 52/39;
  object-fit: cover;
  border-radius: 10px;
}

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

.cultura_box1 ul li p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.cultura_box2 {
  background: url(../images/cultura_box2_bj.png) no-repeat center center;
  background-size: cover;
  padding: 100px 0px;
}

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

.cultura_box2 .hd h2 {
  font-size: 40px;
  color: #fff;
  text-transform: uppercase;
}

.cultura_box2 .hd ul {
  display: flex;
  gap: 10px;
}

.cultura_box2 .hd ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  padding: 10px;
  cursor: pointer;
}

.cultura_box2 .hd ul li.on {
  border-bottom: 2px solid #fff;
}

.cultura_box2 .bd {
  padding: 40px 0px;
}

.cultura_box2 .bd .nr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cultura_box2 .bd .nr .left {
  width: 45%;
}

.cultura_box2 .bd .nr .left p {
  font-size: 18px;
  color: #fff;
  line-height: 1.6;
  padding-bottom: 15px;
}

.cultura_box2 .bd .nr .right {
  width: 50%;
}

.cultura_box2 .bd .nr .right img {
  width: 100%;
  border-radius: 10px;
  border: 5px solid #fff;
}

.cultura_box1_qh {
  box-sizing: border-box;
  padding: 0px 80px;
  position: relative;
}

.cultura_box1_qh .swiper-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 353/176;
  max-width: 350px;
}

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

.eventi_box {
  background: url(../images/saishi_banner.png) no-repeat top center;
  background-size: 100% 60%;
  padding: 100px 0px;
}

.eventi_box_1 {
  max-width: 1200px;
  margin: 0px auto;
}

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

.eventi_box_1 .wz {
  padding-top: 30px;
}

.eventi_box_1 .wz li {
  flex: 1;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.eventi_box_1 .wz h2 {
  flex: 1;
  border-right: 1px solid #fff;
}

.eventi_box_1 .wz h2:nth-last-child(1) {
  border: none;
}

.eventi_box_1 .wz h2 b {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  font-family: fantasy;
}

.eventi_box_1 .wz h2 b em {
  font-size: 16px;
  color: #f1f1f1;
  font-weight: normal;
  padding-left: 10px;
}

.eventi_box_1 .wz p {
  font-size: 14px;
  text-align: center;
}

.eventi_box_2 {
  padding-top: 80px;
}

.eventi_box_2 .swiper-slide img {
  width: 100%;
}

.eventi_box_2 .swiper-slide {
  transform: scale(.6);
}

.eventi_box_2 .swiper-slide.swiper-slide-active {
  transform: scale(1.4);
}

.eventi_box_2 .swiper-button-next,
.eventi_box_2 .swiper-button-prev {
  background: #fff;
  color: #333;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.eventi_box_2 .swiper-button-next::after,
.eventi_box_2 .swiper-button-prev::after {
  font-size: 30px;
}

.eventi_box_3 {
  max-width: 1200px;
  margin: 0px auto;
  padding-top: 40px;
}

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

.eventi_box_3 .left {
  width: calc(100% - 450px);
}

.eventi_box_3 .left p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.eventi_box_3 .left p b {
  padding-right: 20px;
  color: #333;
  font-size: 22px;
}

.eventi_box_3 .left h2 {
  font-size: 40px;
  color: #333;
  padding-bottom: 30px;
  text-transform: uppercase;
}

.eventi_box_3 .left h3 {
  font-size: 32px;
  color: #333;
  text-transform: uppercase;
}

.eventi_box_3 .left .one {
  border-bottom: 1px solid #ddd;
  padding: 20px 0px;
}

.eventi_box_3 .left .two {
  display: flex;
}

.eventi_box_3 .left .two1 {
  width: 60%;
  padding: 20px 0px;
}

.eventi_box_3 .left .two2 {
  width: 40%;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventi_box_3 .right {
  width: 340px;
}

.eventi_box_3 .right a {
  display: block;
  margin: 10px 0px;
  padding: 15px 20px;
  text-align: center;
  text-transform: uppercase;
  background: #cc0000;
  font-size: 18px;
  color: #fff;
}

.eventi_box_3 .right a:hover {
  background: #000;
}

.eventi_box1 {
  padding-bottom: 100px;
}

.eventi_box1 .bt {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 40px;
}

.eventi_box1 .bt h2 {
  font-size: 48px;
  color: #333;
  text-transform: uppercase;
}

.eventi_box1 .bt span {
  font-size: 18px;
  padding: 10px 0px;
  color: #333;
  border-bottom: 2px solid #cc0000;
}

.eventi_box1 .zhid {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding: 8%;
  color: #fff;
  text-transform: uppercase;
  transition: all .3s ease-in-out;
}

.eventi_box1 .zhid:hover {
  transform: translateY(-20px);
  transition: all .3s ease-in-out;
}

.eventi_box1 .zhid p {
  font-size: 16px;
  max-width: 1000px;
  line-height: 1.6;
}

.eventi_box1 .zhid h2 {
  font-size: 32px;
  color: #fff;
  padding: 20px 0px;
}

.eventi_box1 .zhid span a {
  display: inline-block;
  background: #E30613;
  color: #fff;
  margin-top: 20px;
  padding: 15px 30px;
  font-size: 16px;
}

.eventi_box1 .zhid span a:hover {
  background: #000;
}

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

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

.eventi_box1 ul li:hover {
  transform: translatey(-20px);
  transition: all .3s ease-in-out;
}

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

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

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

.eventi_box1 ul li .nr {
  padding-top: 20px;
  text-transform: uppercase;
}

.eventi_box1 ul li .nr p {
  font-size: 14px;
  line-height: 1.6;
}

.eventi_box1 ul li .nr h2 a {
  color: #fff;
  font-size: 18px;
  padding: 10px 10px;
  box-sizing: border-box;
  display: block;
  background: #E30613;
  margin: 6px 0px;
}

.eventi_box1 ul li .nr h2 a:hover {
 background: #000;
}

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

.eventi_xx {
  height: calc(100vh - 100px);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

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

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

.eventi_xx h2 {
  font-size: 54px;
  font-weight: bold;
  padding: 25px 0px;
  max-width: 1200px;
}

.eventi_xx1 {
  padding: 100px 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;
  gap: 40px;
}

.eventi_xx2 ul li .bt {
  font-size: 24px;
  text-transform: uppercase;
  color: #999;
  font-weight: bold;
  padding-bottom: 20px;
}

.eventi_xx2 ul li .nr {
  background: #f6f6f6;
  box-sizing: border-box;
  padding: 30px;
  display: flex;
  gap: 20px;
}

.eventi_xx2 ul li .nr .left {
  flex: 0.8;
}

.eventi_xx2 ul li .nr .left a img {
  width: 100%;
  aspect-ratio: 32/24;
  object-fit: cover;
  height: auto;
  display: block;
}

.eventi_xx2 ul li .nr .right {
  flex: 1;
}

.eventi_xx2 ul li .nr .right p {
  font-size: 16px;
}

.eventi_xx2 ul li .nr .right h2 {
  padding: 15px 0px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.eventi_xx2 ul li .nr .right span a {
  font-size: 16px;
  background: #E30613;
  border-radius: 5px;
  padding: 15px 20px;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
}

.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 #cc0000;
}

.zona_nav .right {
  width: 400px;
  height: 50px;
  border: 1px solid #ddd;
  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;
}


.zona_list_r {
  width: calc(100% - 300px);
  box-sizing: border-box;
  padding: 30px;
  padding-top: 60px;
  padding-right: 100px;
}

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

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

.zona_list_r ul li:hover {
  transform: translateY(-20px);
  transition: all .3s ease-in-out;
}

.zona_list_r ul li .img a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 5px;
}

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

.zona_list_r ul li h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  text-transform: uppercase;
  padding: 6px 0px;
  color: #666;
}

.zona_list_r ul li h3 b {
  display: flex;
  gap: 5px;
}

.zona_list_r ul li h3 b i {
  color: #E30613;
}

.zona_list_r ul li h2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  text-transform: uppercase;
  padding: 6px 0px;
  color: #333;
  font-weight: bold;
}

.zona_list_r ul li h2 b {
  color: #E30613;
}


.contact_box {
  padding: 100px 0px;
  background: #fff;
}

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

.contact_box .left {
  width: 45%;
  padding-right: 50px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact_box .left .bt h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.contact_box .left .bt h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

.contact_box .left .bt p {
  font-size: 18px;
  padding-top: 20px;
  color: #888;
}

.contact_box .left .logo img {
  height: auto;
  width: 90%;
}

.contact_box .right {
  width: 55%;
}

.contact_box form {
  width: 100%;
}

.contact_box .form-group {
  margin-bottom: 20px;
}

.contact_box .form-group label {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.contact_box .form-group input,
.contact_box .form-group select,
.contact_box .form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.contact_box .form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact_box .form-group.checkbox {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.contact_box .form-group.checkbox input {
  width: auto;
  margin-right: 10px;
  margin-top: 2px;
}

.contact_box .form-group.checkbox label {
  margin-bottom: 0;
  flex: 1;
}

.contact_box .form-group.checkbox a {
  color: #E30613;
  text-decoration: underline;
}

.contact_box .submit-btn {
  width: 100%;
  padding: 15px;
  background: #E30613;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact_box .submit-btn:hover {
  background: #000;
}

.contact_box1 {
  padding: 100px 0;
  background: #F9FAFB;
}

.contact_box1 .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.contact_box1 .left {
  width: 45%;
  padding-right: 50px;
  box-sizing: border-box;
}

.contact_box1 .left .bt h2 {
  font-size: 60px;
  text-transform: uppercase;
  color: #333;
  position: relative;
  z-index: 2;
}

.contact_box1 .left .bt h3 {
  color: transparent;
  -webkit-text-stroke: 1px #ccc;
  font-size: 50px;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: -35px;
}

.contact_box1 .address-info {
  width: 100%;
}

.contact_box1 .info-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0px;
}

.contact_box1 .info-item i {
  width: 40px;
  height: 40px;
  background: #E30613;
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact_box1 .info-content {
  flex: 1;
}

.contact_box1 .info-content h3 {
  font-size: 14px;
  color: #666;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.contact_box1 .info-content p {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.contact_box1 .right {
  width: 55%;
}

.contact_box1 #map {
  width: 100%;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.contact_box2 {
  padding: 100px 0;
  background: #fff;
}

.contact_box2 .container {
  text-align: center;
}

.contact_box2 h1 {
  font-size: 36px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 60px;
  font-weight: bold;
}

.contact_box2 .dealer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.contact_box2 .dealer-card {
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact_box2 .dealer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact_box2 .dealer-image {
  height: 200px;
  overflow: hidden;
}

.contact_box2 .dealer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.contact_box2 .dealer-card:hover .dealer-image img {
  transform: scale(1.05);
}

.contact_box2 .dealer-info {
  padding: 25px;
  text-align: left;
}

.contact_box2 .dealer-info h2 {
  font-size: 18px;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: bold;
}

.contact_box2 .dealer-info p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 20px;
}

.contact_box2 .google-maps-link {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  color: #E30613;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
}

.contact_box2 .google-maps-link i {
  margin-right: 8px;
}

.contact_box2 .google-maps-link:hover {
  color: #cc0000;
}

.jxscx_bt {
  text-align: center;
  padding: 40px 0px;
}

.jxscx_bt h2 {
  font-size: 36px;
  color: #333;
  padding-bottom: 5px;
}

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

.jxscx {
  display: flex;
  width: 100%;
  height: 70vh;
}

.dealer-list .xzzx label{
  font-size: 16px;
  color: #333;
  padding-bottom: 5px;
}

.country-select {
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  width: 45%;
}

.country-select select {
  width: 100%;
  padding: 10px 15px;
  border: 0px;
  border-bottom: 1px solid #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  font-size: 16px;
  padding-right: 35px;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.country-select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 10px;
  background: url(../images/down_icon.png) no-repeat;
  background-size: contain;
}

.dealer-list h1 {
  font-size: 2.2vw;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}



/* 左侧经销商列表样式 */
.dealer-list {
  width: 35%;
  padding: 20px;
  background-color: #f2f2f2;
  box-sizing: border-box;
}

.dealer-list h1 {
  font-size: 2.2vw;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.dealer-list .xzzx{
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  font-size: 14px;
}

.country-select {
  margin-bottom: 20px;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.country-select select {
  width: 100%;
  padding: 10px 15px;
  border: 0px;
  border-bottom: 1px solid #333;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: none;
  font-size: 16px;
  padding-right: 35px;
  outline: none;
  cursor: pointer;
  font-weight: bold;
  color: #333;
}

.country-select::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 18px;
  height: 10px;
  background: url(../images/down_icon.png) no-repeat;
  background-size: contain;
}

.dealerItems {
  height: 100%;
  overflow-y: auto;
}

.dealer-item {
  padding: 15px;
  background: #fff;
  margin-bottom: 10px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.dealer-item h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  color: #333;
  font-weight: bold;
}

.dealer-item p {
  margin-bottom: 4px;
  font-size: 0.9rem;
  color: #333;
}

/* 右侧地图样式 */
.map-container {
  width: 65%;
  height: 100%;
}

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

/* 预约试驾模块样式 */
.subito_box {
    padding: 100px 0;
    background: #f5f5f5;
}

.subito-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.subito-content .left {
    width: 50%;
    position: relative;
    background-size: cover;
    background-position: center center;
}

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

.subito-content .right {
    width: 50%;
    padding: 60px;
    box-sizing: border-box;
}

.subito-content h1 {
    font-size: 32px;
    color: #333;
    text-transform: uppercase;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

.form-group label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
}

.form-group label::before {
    content: "•";
    color: #E30613;
    position: absolute;
    left: 0;
    top: 0;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 0px;
    border-bottom: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #E30613;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    padding-left: 0;
    font-weight: normal;
}

.checkbox-group label::before {
    display: none;
}

.submit-btn {
    background: #E30613;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

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

.right_top{
  position: fixed;
  right:20px;
  bottom: 100px;
  z-index: 100;
}

.right_top a{
  width: 45px;
  height: 45px;
  background: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 24px;
}

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

.login {
  background: url(../images/login_bj.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  min-height: calc(100vh - 100px);
  position: relative;
  display: flex;
  align-items: center;
}

.login .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
}

.login_dl {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 60px 40px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.login_dl h2 {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.login_dl .form-group {
  margin-bottom: 35px;
}

.login_dl .form-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.login_dl .form-group label .required {
  color: #E30613;
  margin-right: 6px;
}

.login_dl .form-group input {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  background: transparent;
  transition: border-color 0.3s ease;
}

.login_dl .form-group input::placeholder {
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
}

.login_dl .form-group input:focus {
  border-bottom-color: #E30613;
  outline: none;
}

.login_dl .login-btn {
  display: block;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: #E30613;
  color: #fff;
  border: none;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 2px;
  margin-top: 20px;
}

.login_dl .login-btn:hover {
  background: #c00000;
}

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

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

/* 标签页样式 */
.login_tabs {
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.login_tabs ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.login_tabs ul li {
  position: relative;
}

.login_tabs ul li a {
  display: block;
  padding: 15px 0;
  font-size: 16px;
  font-weight: bold;
  color: #666;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.login_tabs ul li.active a {
  color: #E30613;
}

.login_tabs ul li.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #E30613;
}

.login_tabs ul li a:hover {
  color: #E30613;
}

/* 筛选下拉框样式 */
.login_filters {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.login_filters .filter-select {
  padding: 12px 40px 12px 15px;
  font-size: 14px;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  position: relative;
  min-width: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

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

/* 内容列表样式 */
.login_content ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.login_content ul li {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.login_content ul li:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

/* 图片区域 */
.login_content .asset_img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
}

.login_content .asset_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.login_content ul li:hover .asset_img img {
  transform: scale(1.05);
}

/* 信息区域 */
.login_content .asset_info {
  padding: 20px;
}

.login_content .asset_info h3 {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 标签区域 */
.login_content .asset_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.login_content .asset_tags .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #f5f5f5;
  border-radius: 15px;
  font-size: 14px;
  color: #666;
}

.login_content .asset_tags .tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #E30613;
  border-radius: 50%;
}

/* 操作区域 */
.login_content .asset_action {
  display: flex;
  justify-content: flex-end;
}

.login_content .asset_action .download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #666;
  font-size: 16px;
  transition: all 0.3s ease;
}

.login_content .asset_action .download-btn:hover {
  background: #E30613;
  color: #fff;
}