/* 公开制度与公开专栏合并样式 */
.open-merge-section {
  padding: 20px 0;
  background: #fff;
}

.open-merge-layout {
  display: flex;
  gap: 30px;
}

/* 标题栏样式 */
.open-merge-section .common-common-header {
  background: #dc3545;
  padding: 12px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.open-merge-section .common-common-header h1,
.open-merge-section .common-common-header .header-title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.open-merge-section .common-common-header a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 左侧：公开专栏 */
.open-column-left {
  flex: 0 0 35%;
}

.open-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.open-column-card {
  background: #fff0f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.open-column-card:hover {
  background: #ffe0e0;
  transform: translateY(-2px);
}

.open-column-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 10px;
  text-decoration: none;
}

.open-column-name {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  text-align: center;
}

/* 右侧：公开制度 */
.open-regime-right {
  flex: 1;
}

.open-regime-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.open-regime-item {
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.open-regime-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.open-regime-item a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  height: 100%;
}

.regime-img {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.regime-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.open-regime-item:hover .regime-img img {
  transform: scale(1.05);
}

.regime-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.regime-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.4;
}

.regime-date {
  font-size: 12px;
  color: #999;
  margin-bottom: 8px;
}

.regime-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

/* 平板端 */
@media (max-width: 992px) {
  .open-merge-layout {
    flex-direction: column;
    gap: 20px;
  }
  
  .open-column-left {
    flex: 1;
  }
  
  .open-column-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .open-regime-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 手机端 */
@media (max-width: 576px) {
  .open-merge-section {
    padding: 15px 0;
  }
  
  .open-merge-section .common-common-header {
    padding: 10px 15px;
  }
  
  .open-merge-section .common-common-header h1,
  .open-merge-section .common-common-header .header-title {
    font-size: 16px;
  }
  
  .open-column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .open-column-card a {
    height: 60px;
  }
  
  .open-column-name {
    font-size: 13px;
  }
  
  .open-regime-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .regime-img {
    height: 100px;
  }
  
  .regime-content {
    padding: 10px;
  }
  
  .regime-title {
    font-size: 14px;
  }
  
  .regime-desc {
    font-size: 12px;
  }
}