/* 中誉轮播横幅组件样式 */
.zhongyu-news-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/555;
  overflow: hidden;
  background: #000;
  min-height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.zhongyu-news-banner .container{
  height: 100%;
  /* background: rgba(12, 48, 84, 0.60); */
}
@media (min-width: 1800px) {
  .zhongyu-news-banner .container {
    max-width: 1600px;
  }
  .zhongyu-news-banner{
    height: 555px;
  }
}

.zhongyu-news-banner  {
  position:relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  height: 100%;
  background-color: rgba(12, 48, 84, 0.60);
}
.zhongyu-news-banner::before  {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  background-color: rgba(12, 48, 84, 0.60);
}
.zhongyu-news-banner   .logo{
  width: 271px;
  height: auto;
}

.zhongyu-news-banner   .content{
  /* flex: 1; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.zhongyu-news-banner   .content .zhongyu-news-banner-title{
  font-size: var(--zhongyu-inner-title, 64px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.zhongyu-news-banner   .content .zhongyu-news-banner-sub-title{
  color: #FFF;
  font-family: var(--title-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}

@media (max-width: 1400px) {
  .zhongyu-news-banner  {
    gap: 50px;
  }
  
  .zhongyu-news-banner   .content .zhongyu-news-banner-sub-title{
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .zhongyu-news-banner  {
    gap: 40px;
  }
  .zhongyu-news-banner   .content .zhongyu-news-banner-sub-title{
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .zhongyu-news-banner  {
    gap: 30px;
  }

  .zhongyu-news-banner   .content .zhongyu-news-banner-sub-title{
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .zhongyu-news-banner  {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .zhongyu-news-banner   .content .zhongyu-news-banner-sub-title{
    font-size: 10px;
  }
  .zhongyu-news-banner   .content{
    flex:none;
  }
}