.yawei-service-banner {
  position: relative;
  overflow: hidden;
}

.yawei-service-banner .banner-section {
  position: relative;
  background-size:100%;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;aspect-ratio: 2 / 1;
}

/* 容器边距设置 - 参考其他banner组件 */
.yawei-service-banner .container {
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
  position: relative;
  z-index: 3;
}

@media (min-width: 1920px) {
  .yawei-service-banner .container {
    max-width: calc(100% - 422px);
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
  }
}

/* 背景装饰元素 */
.yawei-service-banner .banner-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}



/* 右侧剪切区域 */
.yawei-service-banner .banner-clip-area {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.yawei-service-banner .clip-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.yawei-service-banner .clip-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1D1D1D;
  z-index: 1;
}

.yawei-service-banner .clip-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 67.4% 44.4%,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  z-index: 2;
}

/* 内容区域 */
.yawei-service-banner .content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 600px;
}

.yawei-service-banner .text-content {
  display: flex;
  flex-direction: column;
}

/* 品牌名称样式 - 严格按照Figma规范 */
.yawei-service-banner .brand-name {
  font-family: 'Arimo', var(--title-font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3889em; /* 25px / 18px = 1.3889 */
  letter-spacing: 0.2em; /* 20% */
  color: #E6002D;
  margin: 0 0 4px 0;
}

/* 主标题样式 - 严格按照Figma规范 */
.yawei-service-banner .main-title {
  font-family: 'Arimo', var(--title-font-family);
  font-weight: 700;
  font-size:clamp(20px, 3.1vw, 60px);
  line-height:1; /* 80px / 60px = 1.333 */
  letter-spacing: 0.025em; /* 2.5% */
  color: #FFFFFF;
  margin: 0 0 16px 0;
  white-space: pre-line;
}

/* 描述文字样式 - 严格按照Figma规范 */
.yawei-service-banner .description {
  font-family: 'Arimo', var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3889em; /* 25px / 18px = 1.3889 */
  letter-spacing: -0.025em; /* -2.5% */
  color: #FFFFFF;
  margin: 0;
  max-width: 100%;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  
  .yawei-service-banner .text-content {
    max-width: 580px;
  }
}

@media (max-width: 992px) {

  .yawei-service-banner .brand-name,
  .yawei-service-banner .description {
    font-size: 16px;
  }
  
  .yawei-service-banner .banner-clip-area {
    width: 50%;
  }
}

@media (max-width: 768px) {

  .yawei-service-banner .main-title {
    margin-bottom: 10px;
  }
  
  .yawei-service-banner .brand-name {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .yawei-service-banner .description {
    font-size: 16px;
    line-height: 1em;
  }
  
  .yawei-service-banner .banner-clip-area {
    width: 40%;
  }
  
  .yawei-service-banner .text-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
.yawei-service-banner .main-title{margin-bottom:0;}
.yawei-service-banner .description{display:none;}
}

@media(max-width:576px){
  .yawei-service-banner .container { margin-top: 50px;}
}
