/**下拉框**/
.mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
  line-height: inherit;
}

.mega-menu {
  --menu-max-width: 1600px;
  --menu-radius: 14px;
  --brand-color: #0b5ea8;
  --brand-color-dark: #084b86;
  --line-color: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.14);

  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: min(var(--menu-max-width), calc(100vw - 24px));
  background: var(--white);
  border: 1px solid var(--line-color);
  border-radius: var(--menu-radius);
  box-shadow: var(--shadow);
  z-index: 9999;
  display: none;
  overflow: hidden;
}

.mega-menu.is-open {
  display: block;
}

.mega-menu-scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-menu-scroll::-webkit-scrollbar {
  width: 10px;
}

.mega-menu-scroll::-webkit-scrollbar-thumb {
  background: #cfd8e3;
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.mega-menu-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mega-menu-panel {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch;
}

.mega-menu-sidebar {
  background: #f9fbfd;
  border-right: 1px solid var(--line-color);
}

.mega-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mega-menu-tab {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-color);
  padding: 18px 18px;
  font-size: 16px;
  color: #111827;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-menu-tab:hover,
.mega-menu-tab.is-active {
  background: var(--theme-color3);
  color: var(--text-color);
}

.mega-menu-tab-label {
  line-height: 1.5;
  font-weight: 500;
}

.mega-menu-tab-arrow {
  font-size: 12px;
  color: #94a3b8;
  flex-shrink: 0;
}

.mega-menu-main {
  padding: 28px;
  background: var(--theme-color3);
  min-width: 0;
}

.mega-content-panel {
  display: none;
}

.mega-content-panel.is-active {
  display: block;
}

.mega-right-vertical {
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-width: 0;
}

.mega-title-row {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-color);
}

.mega-title-row h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  color: #111827;
}
.mega-title-row .xlk-h2bt{
  margin: 0 0 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.2;
  color: #111827;
}
.mega-title-row p {
  margin: 0;
  font-size: 15px;
  color: #6b7280;
  line-height: 1.8;
}

.mega-subcategory-row {
  width: 100%;
}

.mega-subcategory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-subcategory-list li a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.65;
  color: #1f2937;
  transition: color 0.2s ease;
}

.mega-subcategory-list li a:hover {
  color: var(--brand-color);
}

.mega-subcategory-icon {
  color: var(--brand-color);
  font-size: 15px;
  line-height: 1.6;
  flex-shrink: 0;
  margin-top: 1px;
}

.mega-image-row {
  width: 100%;
}

.mega-image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line-color);
  background: #fff;
}

.mega-image-box img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.mega-image-cta {
  position: absolute;
  right: 20px;
  top: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 16px 18px;
  background: var(--theme-color1);
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.mega-image-cta:hover {
  background: #023487;
}
.cpzs-sjd{display: none;}
@media (max-width: 1200px) {
  .mega-menu-panel {
    grid-template-columns: 250px minmax(0, 1fr);
  }
}

@media (max-width: 992px) {
  .mega-menu {
    width: min(96vw, 1100px);
  }

  .mega-menu-panel {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .mega-menu-main {
    padding: 22px;
  }

  .mega-subcategory-list {
    grid-template-columns: 1fr;
    gap: 10px 0;
  }

  .mega-image-cta {
    min-width: 180px;
    right: 14px;
    top: 14px;
    padding: 14px 16px;
  }
.cpzs-sjd {display: block;}
.cpzs-pcd {display: none !important;}
}
/**下拉框 End**/