/**
 * 容器样式，使用弹性布局使内容居中。
 */
 .container-adv {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    height: 600px;
    margin: auto;
}

/**
 * 用于标题和图片的样式设置，两者都使用弹性布局并使内容居中。
 */
.titles{
    display: flex;
    flex:1;
    flex-direction: column; 
    align-items: flex-start;  
    align-content:space-around; 
    margin: auto; 
    column-count: 6;
    /* width: 600px;
    height: 600px; */
    /* justify-content: flex-start;*/
} 

.images {
    display: flex;
    flex:1;
    align-items: center; 
    /* flex-direction: column;  */
    align-items: center; 
    align-content:space-around;
    width: 600px;
    height: 600px;
}

.title {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    justify-content: flex-start;
    align-self: center;
}

.titles-row img{
    flex-direction: column;
    align-items: center;
    margin-left: 20px;
}
.titles-row h4{
    margin-bottom: 10px;
    font-weight: bold;
}

.title-row h1{
    text-align: center;
    color: #d81e06;
}

.title span {
    font-size: 15px; 
  }

.title-row{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.title-row h1{
    margin-bottom: 0px;
}

.title-row p{
  line-height: 1.5;
  color: #242424;
}

.titles-row{
    display: flex;
    width: 500px;
    height: 100px;
    border: none; /* 隐藏默认边框 */
    align-items: center;
    margin: auto;
}

.titles-row:hover{
    color: #ff0000;
}

  
.titles-row:hover {
    border: 1px solid #f39800; /* 鼠标悬停时显示1像素黑色实线边框 */
    border-radius: 10px;
  }

/**
 * 鼠标悬停在特定标题上时，使其对应图片显示的样式规则。
 * 对于每个标题都设置了相应的悬停效果，以支持动态显示图片。
 */
 
.title-container:hover ~ .images img:nth-child(1),
.title-container:hover ~ .images img:nth-child(2),
.title-container:hover ~ .images img:nth-child(3),
.title-container:hover ~ .images img:nth-child(4),
.title-container:hover ~ .images img:nth-child(5),
.title-container:hover ~ .images img:nth-child(6) {
    display: block;
}



/*王牌渠道*/
/* 全局样式 */


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.title-row{
  display: flex;
  align-items: center;
  flex-direction: column;
}

.title-row h1{
    margin-top: 15px;
    font-weight: bold; 
    line-height: 2.5;
    margin-bottom: -10px;
    text-align: center;
    color: #d81e06;
}

.title-row p{
     font-size: 16px;
}

/* 网格容器 */
.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  width: 1200px;
  margin: auto;
}

/* 网格项 */
.grid-item {
  flex-basis: calc(33.33% - 10px); /* 计算的宽度，考虑了间隔 */
  margin-bottom: 10px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  /* text-align: center; */
  padding: 20px;
  transition: box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  /* width: 100%;
  height: 100%;
  display: block; */
}

/* 悬停效果 */
.grid-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* 媒体查询，确保在小屏幕设备上每行只显示一列 */
@media (max-width: 768px) {
  .grid-item {
      flex-basis: 100%;
      margin-bottom: 20px; /* 增加底部间隔，使其更像一个独立单元 */
  }
}

.product{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product p{
  line-height: 1;
}

.product span{
  margin-right: 10px;
  background-color: #d81e06;
  color: #f1f1f1;
  padding:0.2em;
}

.product h4{
  line-height: 1.5;
  font-weight: bold;
}

.chat{
    display: flex;
  color: #d81e06;
  font-weight: bold;
}

.chat p{
  margin-top: 20px;
  color: #d81e06;
  font-size: 16px;
}

.chat img{
    margin-top: 5px;
  align-items: center;
}


.arrow-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid black; /* 改变颜色为你需要的颜色 */
}


.aging {
  display: flex;
}

.aging {
  margin-top: 15px;
}

.shipping{
  display: flex;
}

.shipping p{
  margin-top: 2px;
}

.adv {
  display: flex;
}

.adv p{
  margin-top: 5px;
}

.full-link {
  display: block; /* 或者使用 display: inline-block; */
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}


.band span{
  position: absolute;
  bottom: 0;
  display: block;
  font-size: 14px;
  color:#f1f1f1;
  background-color:#d81e06;
  width:100px;
  text-align:center;
}

.band{
  position: absolute; 
  width: 100px;
  height: 100px;
  top: -50px;
  right: -50px;
  transform: rotate(45deg);
}

.button-container {
      text-align: center; /* 只将按钮居中 */
      display: flex;
      margin: auto;
    }
    
.button-container button{
    margin-top: 10px;
      background-color: transparent;
      border: 0.1px solid #db4c39;
      color: #d81e06;
      padding: 10px 20px;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      font-size: 16px;
      cursor: pointer;
      font-weight: bold;
      border-radius: 7px;
      transition: all 0.3s ease;
    }

.button-container button:hover {
  border-color: #333; /* 悬停时边框颜色变化 */
  color: #333; /* 悬停时文字颜色变化 */
}

/* 添加按钮按下效果 */
.button-container button:active {
  transform: translateY(1px); /* 微小向下移动，模拟按钮被按下的感觉 */
  border-color: #555; /* 边框颜色更深 */
  color: #555; /* 文字颜色也相应加深 */
}




/* 咨询 */
.consult {
  display: flex;
  width: 1200px;
  height: 320px;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.consult img{
  width: 460px;
  height: 320px;
  margin-left: 100px;
}

.consult-title{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}

.consult-title h2{
  margin-right: 20px;
  line-height: 1.5;
  font-size: 40px;
  font-weight: bold;
}


.consult-title p{
  margin-right: 20px;
  line-height: 3;
  font-size: 18px;
}

.consult-title a{
  margin-right: 20px;
  line-height: 3;
  color: #d81e06;
  font-weight: bold; 
  font-size: 18px;
}


/* 荣誉 */
.title-honor{
  margin: auto;
}

.title-honor h1{
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* 合作伙伴 */
/* seamlesswrap */


.title-partner{
  margin: auto;
}

.title-partner h1{
    font-weight: bold;
    line-height: 1.5;
    margin-top: 20px;
    margin-bottom: 20px;
}

.seamlesswrap {
  width: 100%;
  box-sizing: border-box;
  /* padding: 200px; */
  height: 280px;
}

.seamlesswrap img {
  width: 100%;
  display: block;
}

.seamlesswrap .swiper-container-free-mode>.swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.seamlesswrap .swiper-container {
  margin: 10px 0;
}


.swiper-slide-image img{
  width: 95%;
  height: 90%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);

}

.swiper-slide-image{
  height: 120px;
}


