/* ========== Column Page Banner ========== */
.column-banner {
  position: relative;
  width: 100%;
  height: 328px;
  overflow: hidden;
}

.column-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== Column Content ========== */
.column-content {
  width: 1260px;
  margin: 0 auto;
  padding: 0 0 80px;
}

.column-inner {
  width: 1260px;
  margin: 0 auto;
}

/* ========== 第一部分：栏目名称 + 面包屑 ========== */
.column-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  padding-top: 35px;
  margin-bottom: 16px;
}

.column-name {
  margin: 0;
  height: 23px;
  line-height: 23px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #0055AA;
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.column-breadcrumb {
  height: 10px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #999999;
  text-align: right;
  font-style: normal;
  text-transform: none;
}

.column-breadcrumb a {
  color: #999999;
  transition: color 0.3s;
}

.column-breadcrumb a:hover {
  color: #0055AA;
}

/* ========== 分割线 ========== */
.column-divider {
  width: 1920px;
  height: 1px;
  background: #E4E4E4;
  margin-left: -330px;
}

/* ========== 第二部分：二级栏目导航 ========== */
.sub-nav {
  display: flex;
  gap: 20px;
  margin-top: 24px;
}

.sub-nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 204px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #E4E4E4;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 18px;
  color: #4D4D4D;
  text-align: center;
  font-style: normal;
  text-transform: none;
  transition: all 0.3s;
}

.sub-nav-item:hover {
  color: #0055AA;
}

.sub-nav-item.active {
  width: 188px;
  height: 48px;
  background: #0055AA;
  border: none;
  color: #FFFFFF;
}

/* ========== 第三部分：图片展示 ========== */
.gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 51px;
  margin-top: 50px;
}

.gallery-wrap {
  text-decoration: none;
  display: block;
}

.gallery-item {
  width: 386px;
  height: 270px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

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

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

.gallery-name {
  width: 386px;
  text-align: center;
  margin-top: 20px;
  font-family: Helvetica;
  font-size: 18px;
  color: #000000;
  font-style: normal;
  text-transform: none;
}

/* ========== 分页模块 ========== */
.pagination {
  height: 216px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #E4E4E4;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #666;
  transition: all 0.3s;
  text-decoration: none;
}

.pagination a:hover,
.pagination a.active {
  background: #0055AA;
  color: #FFFFFF;
  border-color: #0055AA;
}
