.oil-expo-section {
  padding: 0;
  border-bottom: 8px solid #ffcd32;
  position: relative;
}

.oil-expo-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
  /* Align card to the right */
  align-items: center;
  height: 100%;
  /* Fill the absolute wrapper */
}

/* 左侧图片区域 */
.oil-expo-image {
  width: 45%;
  text-align: center;
  position: relative;
}

.oil-expo-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
}

.image-caption {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 8px 15px;
  font-size: 16px;
  color: #333;
  border-radius: 4px;
}

.oil-expo-bm {
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.65);
  /* Semi-transparent white */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 右侧功能区 (Floating Card) */
.oil-expo-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Left side - Text content */
.expo-left {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expo-title {
  text-align: left;
}

.expo-title h2 {
  font-size: 40px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
  line-height: 1.2;
}

.expo-title h3 {
  font-size: 40px;
  font-weight: bold;
  color: #000;
  margin-bottom: 0;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
  line-height: 1.2;
}

.expo-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.expo-subtitle p {
  font-size: 18px;
  color: #666;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: 'Alibaba-PuHuiTi-Regular', sans-serif;
}

/* 流程展示区域样式 */
.liucheng {
  background-color: #f8f8f8;
  padding: 40px 0;
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5px;
  max-width: 1600px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 10px;
  min-width: 150px;
  background: url('../img/liuchengbg.png') no-repeat center center;
  background-size: 100% 100%;
}

.step-icon {
  width: 150px;
  height: 142px;
  border-radius: 50%;
  color: #8B4513;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  box-sizing: border-box;
  line-height: 1.4;
  padding-left: 20px;
  padding-bottom: 10px;
}

.process-arrow {
  color: #8B4513;
  font-size: 20px;
  font-weight: bold;
  margin: 0 5px;
  flex-shrink: 0;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .step-icon {
    width: 100px;
    height: 100px;
    font-size: 14px;
  }

  .step-text {
    font-size: 13px;
    padding: 6px 12px;
  }

  .process-arrow {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .process-container {
    flex-direction: column;
    gap: 20px;
  }

  .step-icon {
    width: 150px;
    height: 150px;
    font-size: 18px;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
}

@media (max-width: 768px) {
  .liucheng {
    padding: 30px 0;
  }

  .step-icon {
    width: 120px;
    height: 120px;
    font-size: 16px;
  }
}

/* Right side - Date Card only */
.expo-right {
  flex-shrink: 0;
  margin-top: 60px;
}

.expo-cta {
  margin-top: 10px;
  text-align: center;
}

.cta-button {
  display: inline-block;
  background: url('../img/cta-bg.png') no-repeat;
  background-size: 100% 100%;
  /* Red */
  color: white;
  font-size: 26px;
  font-weight: bold;
  padding: 24px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
  white-space: nowrap;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.expo-details {
  flex-shrink: 0;
}

/* 广州食品展卡片布局 */
.expo-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.expo-cards-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 30px;
}


.expo-card {
  padding: 48px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.expo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.expo-card:hover {
  transform: translateY(-3px);
}

.expo-card a {
  color: #000;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
}

.expo-card.dark-blue a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
}

.expo-card.light-pink {
  background: url('../img/light-pink-bg.png') no-repeat center center;
  background-size: 100% 100%;
}

.expo-card.dark-blue {
  background: url('../img/dark-blue-bg.png') no-repeat center center;
  background-size: 100% 100%;
}

/*增值服务板块*/
.expo-zz-card {
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 140px;
}

.expo-zz-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.expo-zz-card:hover {
  transform: translateY(-3px);
}

.expo-zz-card img {
  width: 140px;
  height: 80px;
}

.expo-zz-card a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
}

.expo-zz-card.light-pink2 a {
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
  text-indent: 2em;
  padding: 20px 10px;
  text-align: left;
}

.expo-zz-card.light-pink {
  background: url('../img/expo-zz-bg.png') no-repeat center center;
  background-size: 100% 100%;
}

.expo-zz-card.light-pink2 {
  background: url('../img/expo-zz2-bg.png') no-repeat center center;
  background-size: 100% 100%;
  height: 200px;
}


/*央视传媒*/
.expo-zz-card-6 {
  padding: 15px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 140px;
}

.expo-zz-card-6::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 40px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.expo-zz-card-6:hover {
  transform: translateY(-3px);
}

.expo-zz-card-6 img {
  width: 180px;
  height: 100px; 
  margin-top: 5px;
}

.expo-zz-card-6 a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
}

.expo-zz-card-6.light-pink2 a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  display: block;
  position: relative;
  z-index: 1;
  /* text-indent: 2em; */
  padding: 40px 48px 0 58px;
  ;
  text-align: center;
}

.expo-zz-card-6.light-pink {
  background: url('../img/expo-zz-bg.png') no-repeat center center;
  background-size: 100% 100%;
}

.expo-zz-card-6.light-pink2 {
  background: url('../img/yscm-bg.png') no-repeat center center;
  background-size: 100% 100%;
  height: 190px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .expo-cards {
    grid-template-columns: repeat(5, 1fr);
  }

  .expo-card a {
    font-size: 15px;
  }

  .expo-cards-6 {
    grid-template-columns: repeat(6, 1fr);
  }

  .expo-card-6 a {
    font-size: 15px;
  }
}

@media (max-width: 992px) {
  .expo-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .expo-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .expo-card {
    padding: 12px 20px;
  }

  .expo-card a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .expo-cards {
    grid-template-columns: 1fr;
  }
}

/* 菱形卡片布局样式 */
.expo-venue-section {
  padding: 60px 0 0;
  margin: 0 auto;
}

.venue-row {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.venue-header {
  position: relative;
  width: 330px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.venue-header a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.venue-header-inner {
  background: url('../img/venue-bg.png') no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.venue-name,
.venue-location {
  font-size: 24px;
  font-weight: bold;
  white-space: nowrap;
  margin-left: -30px;
}


.venue-cards {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.venue-card {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.venue-card-inner {
  background: url('../img/venue-card-bg.png') no-repeat center center;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.expo-meeting-grid {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(780px, 1fr));
  gap: 10px 40px;
}

.meeting-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* 红色卡片样式 */
.meeting-card.red .meeting-title-banner {
  background: url('../img/red-banner-bg.png') no-repeat center center;
  background-size: 100% 100%;
  color: white;
  padding: 44px;
}

/* 绿色卡片样式 */
.meeting-card.green .meeting-title-banner {
  background: url('../img/green-banner-bg.png') no-repeat center center;
  background-size: 100% 100%;
  color: white;
  padding: 68px;
}

.meeting-card.red .meeting-title-banner h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  margin: 10px 100px 0;
  text-indent: 2em;
}

.meeting-card.green .meeting-title-banner h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}

/* 装饰性的花纹 */
.ornament-line {
  width: 240px;
  height: 30px;
  background: url('../img/ornament-line.png') no-repeat;
  background-size: 100% 100%;
}
.ornament-line-hz {
  width: 400px;
  height: 30px;
  background: url('../img/ornament-hz.png') no-repeat;
  background-size: 100% 100%;
  margin-top: 10px;
}
/* 底部信息容器（会议卡片使用） */
.meeting-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 20px;
}

.meeting-info-hz {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 20px;
}

.meeting-type {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
  color: #333;
  width: 240px;
  text-align: center;
}

/* 知名展商轮播下方信息块，避免与会议卡片冲突 */
.review-imgbox .review-info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-imgbox .review-name {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.review-imgbox .review-ornament {
  width: 240px;
  height: 30px;
  background: url('../img/ornament-line.png') no-repeat;
  background-size: 100% 100%;
}
.meeting-type-hz {
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
  color: #333;
  width: 240px;
  text-align: center;
}
.venue-card a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}

.js-sponsorcon {
  margin-top: 30px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .venue-row {
    gap: 20px;
  }

  .venue-cards {
    gap: 20px;
  }

  .venue-header {
    width: 140px;
    height: 140px;
  }

  .venue-card {
    width: 110px;
    height: 110px;
  }

  .venue-name {
    font-size: 14px;
  }

  .venue-location {
    font-size: 13px;
  }

  .venue-card a {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .venue-row {
    flex-direction: column;
    gap: 40px;
  }

  .venue-cards {
    gap: 15px;
  }

  .venue-header {
    width: 160px;
    height: 160px;
  }

  .venue-card {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .venue-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-card {
    width: 90px;
    height: 90px;
  }

  .venue-name {
    font-size: 13px;
  }

  .venue-card a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .venue-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.date-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: url('../img/date-bg.png') no-repeat;
  background-size: 100% 100%;
  padding: 25px 45px;
  /* Golden border */
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
  position: relative;
  gap: 10px;
}

.date-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.year {
  font-size: 40px;
  font-weight: bold;
  color: #D32F2F;
  /* Red to match button */
  margin-bottom: 0px;
  line-height: 1;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
}

.date {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
}

.venue {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.venue p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #666;
  margin: 2px 0;
  font-family: 'Alibaba-PuHuiTi-Regular', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .oil-expo-section {
    padding: 40px 0;
  }

  .oil-expo-content {
    flex-direction: column;
    gap: 20px;
  }

  .oil-expo-image,
  .oil-expo-info {
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .expo-left {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .expo-title {
    text-align: center;
  }

  .expo-subtitle {
    text-align: center;
  }

  .expo-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .expo-cta {
    text-align: center;
  }

  .expo-title h2 {
    font-size: 32px;
  }

  .expo-title h3 {
    font-size: 24px;
  }

  .expo-subtitle p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 10px 30px;
  }

  .year {
    font-size: 36px;
  }

  .date {
    font-size: 24px;
  }

  .venue p {
    font-size: 14px;
  }

  .date-info {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .venue {
    text-align: center;
  }

  .expo-details {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


/* 油博会新布局样式 */
.index-base {
  padding: 60px 0;
  position: relative;
}

.index-base .wrapper {
  /*max-width: 1200px;
  margin: 0 auto;*/
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  gap: 30px;
}

/* 左侧展馆图区域 */
.exhibition-halls {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hall-box {
  position: relative;
  padding: 15px;
  background-size: 100% 100%;
  border-radius: 15px;
  overflow: hidden;
}

/* 金色边框装饰 */
.hall-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('../img/hall-bg.png') no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}

.hall-content {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.page-index-nav {
  margin-top: 20px;
}

/* 中间展会信息区域 */
.exhibition-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /*background-color: #fff;*/
  border-radius: 15px;
}

.exhibition-item {
  position: relative;
  padding-bottom: 20px;
}

.exhibition-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.exhibition-item p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
  line-height: 2;
  text-align: left;
}

/* 装饰线 */
.decoration-line {
  width: 100%;
  height: 20px;
  background: url('../img/decoration-line.png') no-repeat;
  background-size: 80% 90%;
  margin-top: 15px;
  position: relative;
}


/* 右侧功能区域 */
.right-section {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 右侧上半部分 - 二维码和登记区域 */
.registration-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* 基础样式 - 图片左，文字右 */
.qr-code,
.audience-register {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

/* 图片占位符基础样式 - 正方形 */
.qr-placeholder,
.scan-placeholder,
.register-placeholder {
  width: 120px;
  height: 120px;
  background-color: #f0f0f0;
  border-radius: 8px;
  position: relative;
}



/* 文字样式 */
.qr-text,
.register-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

/* 扫码登记区域 */
.scan-register {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* 右侧下半部分 - 统计数据卡片 */
.stats-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.stat-card {
  width: 30%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

/* 展览面积图标 */

/* 专业观众图标 */


.audience-icon .icon-text {
  font-size: 24px;
}

/* 参展企业图标 */

.company-icon .icon-text {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-info {
  text-align: center;
}

.stat-number {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: bold;
}

/* 新增banner-section样式 */
.banner-section {
  background: url('../img/banner-bg.png') no-repeat;
  background-size: 100% 100%;
  width: 70%;
  padding: 25px 20px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.banner-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}


/* 响应式设计 */
@media (max-width: 992px) {
  .index-base .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .exhibition-halls,
  .exhibition-info,
  .right-section {
    width: 100%;
  }

  .exhibition-halls {
    flex-direction: row;
    justify-content: center;
  }

  .registration-area {
    justify-content: center;
  }

  .stats-cards {
    justify-content: center;
  }

  .stat-card {
    width: 30%;
  }

  .banner-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hall-box {
    width: 45%;
  }

  .hall-content {
    height: 100px;
  }

  .exhibition-item h3 {
    font-size: 18px;
  }

  .exhibition-item p {
    font-size: 14px;
  }

  .registration-area {
    flex-direction: column;
  }

  .stats-cards {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    max-width: 200px;
  }

  .banner-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hall-box {
    width: 100%;
  }

  .index-base .wrapper {
    padding: 0 10px;
  }

  .banner-text {
    font-size: 0.875rem;
  }
}

/* 修复战略合作部分样式 */
/* 解决宽度限制问题 */
.cooperation-list .li {
    width: auto !important;
    flex-shrink: 0;
    padding: 0 20px;
}

.cooperation-list .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

/* 解决文字换行问题 */
.meeting-type-hz {
    white-space: nowrap !important;
    width: auto !important;
    margin: 0;
}

.meeting-info-hz {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px; /* 调整单个会议信息区域的高度 */
    padding: 10px;
}

/* 解决重复显示问题 */
.js-sponsorcon .tabcon:nth-child(2) {
    display: none !important;
}

/* 两行4列布局样式调整 */
/* 两行4列布局样式调整 */
.cooperation-list {
    height: auto !important;
    overflow: visible;
}

.cooperation-list .swiper-wrapper {
    height: auto !important;
    /* 移除手动flex布局，由Swiper自行管理 */
}

.cooperation-list .swiper-slide {
    height: auto !important;
    margin-bottom: 20px;
    /* 移除手动宽度计算，由Swiper根据slidesPerView和spaceBetween计算 */
    width: auto !important;
    flex-shrink: 0;
}

/* 调整战略合作部分的高度，确保两行显示 */
.js-sponsorcon .tabcon.sponsor-swiper {
    height: auto !important;
    min-height: 300px; /* 确保有足够的高度显示两行 */
    overflow: visible;
}

/* 调整.li元素的样式 */
.cooperation-list .li {
    height: 120px !important; /* 设置固定高度 */
    width: 200px !important; /* 设置固定宽度 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px 20px 0 !important;
}

/* 调整会议信息区域的高度和边距 */
.meeting-info-hz {
    height: 100% !important;
    padding: 10px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* 调整装饰线条的位置 */
.ornament-line-hz {
    margin-top: 10px !important;
}

/* 调整会议类型文本的样式 */
.meeting-type-hz {
    white-space: normal !important; /* 允许文本换行 */
    text-align: center !important;
    line-height: 1.5 !important;
}
.venue-card a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  white-space: nowrap;
}

.js-sponsorcon {
  margin-top: 30px;
}

/* 响应式设计 */
@media (max-width: 1200px) {
  .venue-row {
    gap: 20px;
  }

  .venue-cards {
    gap: 20px;
  }

  .venue-header {
    width: 140px;
    height: 140px;
  }

  .venue-card {
    width: 110px;
    height: 110px;
  }

  .venue-name {
    font-size: 14px;
  }

  .venue-location {
    font-size: 13px;
  }

  .venue-card a {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .venue-row {
    flex-direction: column;
    gap: 40px;
  }

  .venue-cards {
    gap: 15px;
  }

  .venue-header {
    width: 160px;
    height: 160px;
  }

  .venue-card {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .venue-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .venue-card {
    width: 90px;
    height: 90px;
  }

  .venue-name {
    font-size: 13px;
  }

  .venue-card a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .venue-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.date-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: url('../img/date-bg.png') no-repeat;
  background-size: 100% 100%;
  padding: 25px 45px;
  /* Golden border */
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
  position: relative;
  gap: 10px;
}

.date-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.year {
  font-size: 40px;
  font-weight: bold;
  color: #D32F2F;
  /* Red to match button */
  margin-bottom: 0px;
  line-height: 1;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
}

.date {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  font-family: 'Alibaba-PuHuiTi-Medium', sans-serif;
}

.venue {
  text-align: center;
  border-left: none;
  padding-left: 0;
}

.venue p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  color: #666;
  margin: 2px 0;
  font-family: 'Alibaba-PuHuiTi-Regular', sans-serif;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .oil-expo-section {
    padding: 40px 0;
  }

  .oil-expo-content {
    flex-direction: column;
    gap: 20px;
  }

  .oil-expo-image,
  .oil-expo-info {
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .expo-left {
    text-align: center;
    align-items: center;
    width: 100%;
  }

  .expo-title {
    text-align: center;
  }

  .expo-subtitle {
    text-align: center;
  }

  .expo-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .expo-cta {
    text-align: center;
  }

  .expo-title h2 {
    font-size: 32px;
  }

  .expo-title h3 {
    font-size: 24px;
  }

  .expo-subtitle p {
    font-size: 16px;
  }

  .cta-button {
    font-size: 18px;
    padding: 10px 30px;
  }

  .year {
    font-size: 36px;
  }

  .date {
    font-size: 24px;
  }

  .venue p {
    font-size: 14px;
  }

  .date-info {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
  }

  .venue {
    text-align: center;
  }

  .expo-details {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}


/* 油博会新布局样式 */
.index-base {
  padding: 60px 0;
  position: relative;
}

.index-base .wrapper {
  /*max-width: 1200px;
  margin: 0 auto;*/
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
  gap: 30px;
}

/* 左侧展馆图区域 */
.exhibition-halls {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hall-box {
  position: relative;
  padding: 15px;
  background-size: 100% 100%;
  border-radius: 15px;
  overflow: hidden;
}

/* 金色边框装饰 */
/*.hall-box::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url('../img/hall-bg.png') no-repeat;
  background-size: 100% 100%;
  z-index: -1;
}*/
.hall-box:first-child::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../img/hall-bg-1.png') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}

/* 第二个 hall-box 的伪类 */
.hall-box:nth-child(2)::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('../img/hall-bg-2.png') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
}
.hall-content {
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.page-index-nav {
  margin-top: 20px;
}

/* 中间展会信息区域 */
.exhibition-info {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /*background-color: #fff;*/
  border-radius: 15px;
}


.exhibition-item h3 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  text-align: left;
}

.exhibition-item p {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
  line-height: 2;
  text-align: left;
}


/* 右侧功能区域 */
.right-section {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 右侧上半部分 - 二维码和登记区域 */
.registration-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

/* 基础样式 - 图片左，文字右 */
.qr-code,
.audience-register {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

/* 图片占位符基础样式 - 正方形 */
.qr-placeholder,
.scan-placeholder,
.register-placeholder {
  width: 120px;
  height: 120px;
  background-color: #f0f0f0;
  border-radius: 8px;
  position: relative;
}



/* 文字样式 */
.qr-text,
.register-text {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  white-space: nowrap;
}

/* 扫码登记区域 */
.scan-register {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* 右侧下半部分 - 统计数据卡片 */
.stats-cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.stat-card {
  width: 30%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  position: relative;
}

/* 展览面积图标 */

/* 专业观众图标 */


.audience-icon .icon-text {
  font-size: 24px;
}

/* 参展企业图标 */

.company-icon .icon-text {
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #f9ca24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-info {
  text-align: center;
}

.stat-number {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 16px;
  color: #666;
  font-weight: bold;
}

/* 新增banner-section样式 */
.banner-section {
  background: url('../img/banner-bg.png') no-repeat;
  background-size: 100% 100%;
  width: 70%;
  padding: 25px 20px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.banner-text {
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 1;
}


/* 响应式设计 */
@media (max-width: 992px) {
  .index-base .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .exhibition-halls,
  .exhibition-info,
  .right-section {
    width: 100%;
  }

  .exhibition-halls {
    flex-direction: row;
    justify-content: center;
  }

  .registration-area {
    justify-content: center;
  }

  .stats-cards {
    justify-content: center;
  }

  .stat-card {
    width: 30%;
  }

  .banner-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .hall-box {
    width: 45%;
  }

  .hall-content {
    height: 100px;
  }

  .exhibition-item h3 {
    font-size: 18px;
  }

  .exhibition-item p {
    font-size: 14px;
  }

  .registration-area {
    flex-direction: column;
  }

  .stats-cards {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
    max-width: 200px;
  }

  .banner-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hall-box {
    width: 100%;
  }

  .index-base .wrapper {
    padding: 0 10px;
  }

  .banner-text {
    font-size: 0.875rem;
  }
}

/* 修复战略合作部分样式 */
/* 解决宽度限制问题 */
.cooperation-list .li {
    width: auto !important;
    flex-shrink: 0;
    padding: 0 20px;
}

.cooperation-list .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}

/* 解决文字换行问题 */
.meeting-type-hz {
    white-space: nowrap !important;
    width: auto !important;
    margin: 0;
}

.meeting-info-hz {
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 120px; /* 调整单个会议信息区域的高度 */
    padding: 10px;
}

/* 解决重复显示问题 */
.js-sponsorcon .tabcon:nth-child(2) {
    display: none !important;
}

/* 两行4列布局样式调整 */
.cooperation-list {
    height: auto !important;
    overflow: visible;
}

.cooperation-list .swiper-wrapper {
    height: auto !important;
    /* 移除手动flex布局，由Swiper自行管理 */
}

.cooperation-list .swiper-slide {
    height: auto !important;
    margin-bottom: 20px;
    /* 移除手动宽度计算，由Swiper根据slidesPerView和spaceBetween计算 */
    width: auto !important;
    flex-shrink: 0;
}

/* 调整战略合作部分的高度，确保两行显示 */
.js-sponsorcon .tabcon.sponsor-swiper {
    height: auto !important;
    min-height: 300px; /* 确保有足够的高度显示两行 */
    overflow: visible;
}