.con {
  /* 红色斜杠装饰 */
  /* =======================================
   About 区域（无固定高度 + Flex）
======================================= */
  /* =======================================
   Brand Banner 区域（无固定高度）
======================================= */
  /* =======================================
   News 区域（无固定高度 + 纯 Flex）
======================================= */
  /* 选中状态样式 */
  /* 大图新闻（无固定高度） */
}
.con .wrap {
  position: relative;
}
.con .about-header h2 {
  display: flex;
  align-items: center;
  font-family: "Poppins-bold";
}
.con .red-slash {
  display: inline-block;
  width: 15px;
  height: 38px;
  background: var(--textColor);
  transform: skewX(-20deg);
  margin-right: 20px;
}
.con .btn-subscribe {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-top: 20px;
}
.con .about-section {
  background: #fffffd;
  position: relative;
}
.con .about-header {
  margin-bottom: 40px;
}
.con .map {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  max-width: 100%;
}
.con .map video {
  max-width: 100%;
  vertical-align: bottom;
}
.con .about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.con .about-content .numC{
    display: flex;
    justify-content: flex-end;
}
.con .about-content .numtit{
color: rgba(0,0,0,0.5);
text-align: right;
}
.con .about-text {
  flex: 1;
  max-width: 700px;
}
.con .about-text  .btn-more a{
    background: #fffffd;
}
.con .about-text  .btn-more a:hover{
    background: var(--textColor);
}
.con .stat-desc {
  color: rgba(0, 0, 0, 0.5);
}
.con .about-text p {
  margin-bottom: 20px;
}
.con .about-stats {
  text-align: right;
}
.con .brand-banner {
  position: relative;
}
.con .banner-img img {
  width: 100%;
  display: block;
  /* 无固定高度，由图片自动撑开 */
  border-radius: 30px;
}
.con .brand-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 120px);
   
  
}
.con .brand-card {
  flex: 1;
  background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  color: #fff;
  padding: 40px;
  border-radius: 30px;
  display: flex;
     flex-direction: column;
}
.con .brand-card h3 {
  margin-bottom: 20px;
  flex: 0 0 auto;
  font-family: "Poppins-bold";
}
.con .brand-card .dis_flex {
      flex: 1;
}
.con .brand-card p {
  margin-left: 60px;
  opacity: 0.8;

}
.con .card-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
 
}
.con .card-logos .logo-item {
  flex: 0 0 auto;
  width: calc((100% - 160px)/5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.con .card-logos .logo-item img {
  max-width: 100%;
  height: 30px;
 
  opacity: 0.5;
  transition: all 0.3s linear;
}
.con .card-logos .logo-item img.photo3{
 
display: none;
}
.con .card-logos .logo-item:hover .photo3{
 opacity: 1;
 display: inline-block;
}
.con .card-logos .logo-item:hover .photo4{
 display: none;
}
.con .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.con .news-header h2 {
  font-family: "Poppins-bold";
}
.con .news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.con .news-item {
  flex: 0 0 calc((100% - 40px)/3);
  background: #F7F7F7;
  border-radius: 30px;
  overflow: hidden;
  transition: 0.3s;
  padding: 50px;
  display: flex;
  flex-direction: column;
}
.con .news-item:nth-child(4) {
  flex: 1;
  padding: 0;
}
.con .news-item:nth-child(4):hover img {
  transform: scale(1.05);
}
.con .news-item:nth-child(4) .news-icon {
  background: transparent;
  border: 1px solid #fff;
  transition: all 0.4s linear;
}
.con .news-item:nth-child(4) .news-icon:hover {
  border-color: var(--textColor);
  background: var(--textColor);
}
.con .news-item:nth-child(4) .news-icon svg path {
  fill: #fff;
}
.con .news-content {
  flex: 1;
}
.con .news-content h3 {
  line-height: 1.2;
  height: 2.4em;
}
.con .news-content p {
  line-height: 1.2;
  height: 3.6em;
}
.con .news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.con .news-footer .news-date {
  color: rgba(0, 0, 0, 0.5);
}
.con .news-item .news-icon svg{
    transition: all 0.3s linear;
}
.con .news-item .news-icon:hover svg{
    transform: translateX(4px);
}
.con .news-item:hover {
  background: var(--textColor);
  color: #fff;
  border-color: var(--textColor);
}
.con .news-item:hover span {
  color: rgba(255, 255, 255, 0.8);
}
.con .news-banner {
  position: relative;
}
.con .news-banner img {
  width: 100%;
  display: block;
  transition: all 0.4s linear;
}
.con .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.con .play-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1600px) {
  .con .card-logos {
    gap: 20px;
  }
  .con .card-logos .logo-item {
    width: calc((100% - 80px) / 5);
  }
  .con .red-slash {
    width: 10px;
    height: 26px;
  }
  .con .banner-overlay,
  .con .news-item {
    padding: 2.5vw;
  }
  .con .brand-cards {
    gap: 20px;
  }
  .con .brand-card p {
    margin-left: 30px;
  }
  .con .brand-card {
    padding: 2vw;
  }
  .news-icon {
    width: 40px;
    height: 40px;
  }
  .news-icon svg {
    width: 10px;
  }
}
@media only screen and (max-width: 1440px) {
  .con .red-slash {
    width: 10px;
    height: 22px;
  }
  .con .brand-card .dis_flex {
      flex-wrap:wrap;
  }
  .con .brand-card h3{
      flex: 0 0 100%;
  }
    .con .brand-card p{
        flex: 0 0 100%;
       
    }
}
@media only screen and (max-width: 768px) {
    .con .numCount{
        flex: 1;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        margin-top: 6vw;
    }
    .con .about-text .c_c{
        text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical;
    }
      .con   .numCount_list{
        flex: 0 0 40%;
        margin: 2vw 0 0 0;
    }
    .con .brand-banner .banner-img{
        display: none;
    }
    .con .about-content .numC{
        justify-content: center;
    }
    .con .about-content .numtit{
        text-align: center;
    }
  .con .about-text {
    flex: 0 0 100%;
  }
  .con .map {
    display: flex;
    justify-content: flex-end;
  }
  .con .map video {
    width: 200%;
    max-width: none;
  }
  .con .about-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 6vw;
  }
  .con .about-stats .stat-item {
    flex: 0 0 45%;
  }
  .con .stat-desc,
  .con .stat-num {
    text-align: center;
  }
  .con .brand-cards {
    position: static;
    transform: none;
    margin-top: 6vw;
  }
  .con .brand-cards {
    width: 100%;
  }
  .con .red-slash {
    width: 8px;
    height: 20px;
    margin-right: 10px;
  }
  .con .brand-card .dis_flex {
    flex-wrap: wrap;
  }
  .con .brand-card p {
    flex: 0 0 100%;
    margin-left: 0;
  }
  .con .card-logos .logo-item {
    width: calc((100% - 40px) / 3);
  }
  .con .brand-card {
    flex: 0 0 100%;
    padding: 6vw;
        background: rgba(0, 0, 0, 0.4);
  }
  .con .news-item {
    flex: 0 0 100%;
  }
  .con .news-item:not(.news-banner){
      display: none;
  }
   
  .con .banner-overlay,
  .con .news-item {
    padding: 6vw;
  }
  .con .news-item:nth-child(4) {
    order: -1;
  }
}
