@charset "UTF-8";
:where(html) {
  --mm-transition-timing-function: ease;
  --mm-trantisition-duration: 0.28s;
}

html, body {
  background: #F9F9F9;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 侧滑抽屉打开时推挤主内容区（.container / .push，与旧 Pushy 位移一致） */
.site-canvas.container.push {
  min-height: 100vh;
  box-sizing: border-box;
  padding-top: 240px;
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .site-canvas.container.push {
    padding-top: 220px;
  }
}

@media (max-width: 1200px) {
  .site-canvas.container.push {
    padding-top: 112px;
  }
}

@media (max-width: 767px) {
  .site-canvas.container.push {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .site-canvas.container.push {
    padding-top: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-canvas.container.push {
    transition: none;
  }
}

header {
  width: 100%;
  padding: 26px 36px 20px 40px;
  box-sizing: border-box;
  min-height: 226px;
  height: auto;
  background: linear-gradient(to bottom, #0683DD, rgba(6, 131, 221, 0));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10003;
  transition: background 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px 20px;
  overflow: visible;
  /* 上栏：Logo + 语言/搜索/汉堡 */
  /* 下栏：仅主导航 */
  /* ≤1199px：顶栏仅 header-head（Logo+工具+汉堡）；主导航进抽屉 */
}

header .header-head {
  position: relative;
  display: flex;
  align-items: center;
}

header .header-logo {
  display: block;
  float: left;
  position: absolute;
  top: 0;
  max-width: 634px;
}

header .header-logo .logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

header .header-action {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 8px;
  margin-left: auto;
}

header .header-action .language-dropdown {
  position: relative;
  padding: 6px 8px;
}

header .header-action .language-dropdown .dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  border-radius: 4px;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

header .header-action .language-dropdown .dropdown-trigger:hover, header .header-action .language-dropdown .dropdown-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

header .header-action .language-dropdown .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

header .header-action .language-dropdown .dropdown-menu .dropdown-content {
  background-color: #fff;
  min-width: 100px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

header .header-action .language-dropdown .dropdown-menu .dropdown-item {
  display: block;
  text-decoration: none;
  padding: 10px 14px;
  color: #333333;
  font-size: 15px;
}

header .header-action .language-dropdown .dropdown-menu .dropdown-item:hover {
  background: #f0f7fd;
  color: #0683DD;
}

header .header-action .language-dropdown .dropdown-trigger[aria-expanded="true"] + .dropdown-menu,
header .header-action .language-dropdown .dropdown-menu:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

header .header-action .search-dropdown {
  position: relative;
  padding: 6px 8px;
}

header .header-action .search-dropdown .search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 18px;
  color: #FFFFFF;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 4px 6px;
  border-radius: 4px;
  font-family: inherit;
  -webkit-tap-highlight-color: transparent;
}

header .header-action .search-dropdown .search-trigger:hover, header .header-action .search-dropdown .search-trigger:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

header .header-action .search-dropdown .search-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  min-width: 280px;
  width: 92vw;
  max-width: 420px;
  z-index: 10020;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

header .header-action .search-dropdown .search-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header .header-action .search-dropdown .search-panel .search-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(6, 131, 221, 0.2);
}

header .header-action .search-dropdown .search-panel .search-input {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 12px 14px;
  font-size: 16px;
  outline: none;
}

header .header-action .search-dropdown .search-panel .search-submit {
  flex-shrink: 0;
  padding: 0 18px;
  background: #0683DD;
  color: #fff;
  border: 0;
  font-size: 15px;
  cursor: pointer;
}

header .header-action .search-dropdown .search-panel .search-submit:hover {
  background: #0570c2;
}

header .header-action .menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 10001;
  position: relative;
}

header .header-action .menu-btn .nav-menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px 0;
  background: #fff;
  border-radius: 1px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

header .header-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  position: relative;
}

header .nav-menu {
  flex: 1 1 100%;
  min-width: 0;
  margin-left: auto;
  width: 100%;
  order: 3;
}

header .site-overlay {
  display: none;
  z-index: 10000;
}

@media (max-width: 1880px) {
  header {
    gap: 20px;
  }
  header .header-logo {
    position: relative;
  }
}

@media (min-width: 1200px) {
  header {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }
  header .header-nav {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
  }
  header .nav-menu {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  header .menu-btn {
    display: none !important;
  }
  header .site-nav {
    position: static;
    width: auto;
    height: auto;
    top: auto;
    left: auto;
    z-index: 12;
    background: transparent;
    overflow: visible;
    -webkit-transform: none !important;
    transform: none !important;
    transition: none;
    /* 桌面：避免误留 MetisMenu 的 display:none 导致悬停下拉失效 */
  }
  header .site-nav .site-nav__inner {
    visibility: visible !important;
    transition: none;
  }
  header .site-nav .site-nav__inner .nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
  }
  header .site-nav .site-nav__inner .nav-list > li {
    flex-shrink: 0;
  }
  header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a {
    text-decoration: none;
    display: inline-block;
    padding: 0;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    white-space: nowrap;
  }
  header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a:hover, header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a:focus-visible {
    color: #fff;
    text-decoration: underline;
    outline: none;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu {
    position: relative;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row {
    display: inline-flex;
    align-items: center;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle {
    display: none !important;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link {
    display: inline-block;
    padding: 0;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    line-height: 30px;
    white-space: nowrap;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link:hover, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link:focus-visible {
    text-decoration: underline;
    outline: none;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu {
    max-height: none !important;
    overflow: visible !important;
    position: absolute;
    left: 50%;
    top: 100%;
    margin-top: 8px;
    min-width: 220px;
    margin-left: 0;
    padding: 8px 0;
    list-style: none;
    background: linear-gradient(180deg, #0683DD 0%, #045a9e 100%);
    border-radius: 6px;
    box-shadow: 0 14px 36px rgba(4, 50, 100, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.22);
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    -webkit-transform: translateX(-50%) translateY(-4px);
    transform: translateX(-50%) translateY(-4px);
    z-index: 20;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu li {
    margin: 0;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a {
    display: block;
    padding: 12px 22px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a:hover, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    outline: none;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu:hover > .nav-submenu,
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu:focus-within > .nav-submenu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
  }
  header .site-nav.metismenu .site-nav__inner .nav-item--submenu > .nav-submenu.mm-collapse {
    display: block !important;
    height: auto !important;
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  header {
    padding: 22px 32px 18px 36px;
  }
  header .header-logo .logo {
    max-width: 520px;
  }
  header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a,
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-link {
    font-size: 22px;
    font-weight: 600;
  }
}

@media (max-width: 1200px) {
  header {
    padding: 16px 20px 14px;
    align-items: center;
    min-height: 0;
    gap: 10px;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    /* .header-nav .nav-menu nav.site-nav > .site-nav__inner > ul.nav-list > li … */
  }
  header .header-head {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  header .header-logo {
    flex: 0 1 auto;
    min-width: 0;
  }
  header .header-logo .logo {
    max-width: 440px;
  }
  header .header-action .language-dropdown .dropdown-trigger,
  header .header-action .search .search-trigger {
    font-size: 16px;
  }
  header .header-action {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 4px 8px;
    margin-left: 0;
    flex: 0 0 auto;
  }
  header .header-nav {
    flex: 0 0 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  header .menu-btn {
    display: inline-flex !important;
  }
  header .nav-menu {
    flex: 0 0 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  header .search .search-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 88px;
    width: auto;
    max-width: none;
    min-width: 0;
  }
  header .site-nav {
    background: #0b3550;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 280px;
    max-width: 88vw;
    z-index: 10002;
    padding-top: 8px;
    -webkit-transform: translate3d(-280px, 0, 0);
    -ms-transform: translate3d(-280px, 0, 0);
    transform: translate3d(-280px, 0, 0);
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  }
  header .site-nav .site-nav__inner {
    visibility: hidden;
    transition: visibility 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  }
  header .site-nav .site-nav__inner .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a {
    display: block;
    padding: 14px 20px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a:hover, header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a:focus, header .site-nav .site-nav__inner .nav-list > li:not(.nav-item--submenu) > a:focus-visible {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.06);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row {
    display: flex;
    align-items: stretch;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link:hover, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link:focus, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .nav-link:focus-visible {
    color: #FFFFFF;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle {
    flex: 0 0 44px;
    width: 44px;
    min-height: 48px;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-left: -5px;
    margin-top: -6px;
    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    pointer-events: none;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle[aria-expanded="true"]::after {
    margin-top: -3px;
    transform: rotate(225deg);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.16);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu .nav-item__row .submenu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: -2px;
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.18);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a {
    display: block;
    padding: 12px 20px 12px 28px;
    color: #cde9fb;
    font-size: 15px;
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a:hover, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a:focus, header .site-nav .site-nav__inner .nav-list > li.nav-item--submenu > .nav-submenu a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
  body.site-mobile-nav-open header .site-nav {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  body.site-mobile-nav-open header .site-nav .site-nav__inner {
    visibility: visible;
  }
}

@media (max-width: 767px) {
  header {
    padding: 14px 16px 12px;
  }
  header .header-logo .logo {
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  header {
    padding: 12px 12px 10px;
  }
  header .header-logo .logo {
    max-width: 220px;
  }
  header .header-action .language-dropdown .dropdown-trigger,
  header .header-action .search .search-trigger {
    font-size: 15px;
  }
  header .header-action .language-dropdown .dropdown-trigger .dropdown-label,
  header .header-action .language-dropdown .dropdown-trigger .search-label,
  header .header-action .search .search-trigger .dropdown-label,
  header .header-action .search .search-trigger .search-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  header .search-panel,
  header .dropdown-menu,
  header .nav-submenu {
    transition: none !important;
  }
}

/* 侧栏打开时推移主画布 + 遮罩（与 header 抽屉断点一致） */
@media (max-width: 1200px) {
  /* 禁止背后页面滚动（配合 JS body position:fixed） */
  html.site-mobile-nav-open {
    overflow: hidden;
    height: 100%;
    overscroll-behavior: none;
  }
  .container,
  .push {
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
  }
  body.site-mobile-nav-open .container,
  body.site-mobile-nav-open .push {
    -webkit-transform: translate3d(280px, 0, 0);
    -ms-transform: translate3d(280px, 0, 0);
    transform: translate3d(280px, 0, 0);
  }
  body.site-mobile-nav-open .site-overlay {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.5);
    animation: site-overlay-fade 0.35s ease;
  }
}

@keyframes site-overlay-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 1200px) {
  .container,
  .push,
  header .site-nav {
    transition: none;
  }
  body.site-mobile-nav-open .site-overlay {
    animation: none;
  }
}

.main-swiper {
  width: 100%;
  overflow: hidden;
  background: #0a4a7a;
}

.main-swiper .swiper.home-swiper,
.main-swiper .home-swiper {
  width: 100%;
  position: relative;
  margin: 0 auto;
  height: calc(100vw * 920 / 1920);
  max-height: 920px;
  min-height: 200px;
}

.main-swiper .swiper-wrapper {
  box-sizing: border-box;
}

.main-swiper .swiper-slide {
  height: 100%;
  margin: 0;
  box-sizing: border-box;
  background: #0a4a7a;
}

.main-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-swiper .swiper-pagination {
  bottom: 28px;
}

.main-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 74px;
  height: 8px;
  border-radius: 20px 20px 20px 20px;
  background: #FFFFFF;
  opacity: .6;
}

.main-swiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 1399px) {
  .main-swiper .swiper-pagination {
    bottom: 22px;
  }
  .main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 64px;
    height: 7px;
  }
}

@media (max-width: 991px) {
  .main-swiper .swiper-pagination {
    bottom: 16px;
  }
  .main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 48px;
    height: 6px;
    border-radius: 12px;
  }
}

@media (max-width: 767px) {
  .main-swiper .swiper-pagination {
    bottom: 12px;
    padding: 0 8px;
  }
  .main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 36px;
    margin: 0 4px;
  }
}

@media (max-width: 480px) {
  .main-swiper .swiper-pagination {
    bottom: 10px;
  }
  .main-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 5px;
    margin: 0 3px;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.section-header .section-title {
  margin: 0;
  font-weight: 500;
  font-size: 38px;
  color: #333333;
  line-height: 54px;
  position: relative;
}

.section-header .section-title::before {
  content: attr(data-text);
  font-weight: 400;
  font-size: 16px;
  color: rgba(6, 131, 221, 0.7);
  position: absolute;
  bottom: 32px;
}

.section-header .section-more {
  font-weight: 400;
  font-size: 16px;
  color: #333333;
}

.section-header .section-more a {
  color: #333333;
  text-decoration: none;
}

.section-header .section-more img {
  width: 18px;
  height: 18px;
  vertical-align: bottom;
}

.main-first {
  padding: 164px 0 110px;
  box-sizing: border-box;
  background: url("../images/bg1.jpg") center/cover no-repeat;
}

.main-first .inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 40px 48px 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.main-first .main-news {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
}

.main-first .main-notice {
  flex: 0 1 342px;
  width: 342px;
  max-width: 342px;
  min-width: 0;
}

.main-first .news__header {
  margin-bottom: 27px;
}

.main-first .notice__header {
  margin-bottom: 52px;
}

.main-first .news-wrapper {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 1144px;
  box-sizing: border-box;
}

.main-first .news-wrapper .news-wrap-carousel {
  flex: 1 1 770px;
  min-width: 0;
  max-width: 770px;
  box-sizing: border-box;
}

.main-first .news-wrapper .news-swiper {
  width: 100%;
  max-width: 770px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.main-first .news-wrapper .news-swiper .swiper-slide {
  background: #f0f0f0;
}

.main-first .news-wrapper .news-swiper .swiper-slide-link {
  display: block;
  line-height: 0;
}

.main-first .news-wrapper .news-swiper .swiper-slide-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

.main-first .news-wrapper .news-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 770 / 440;
  object-fit: cover;
}

.main-first .news-wrapper .news-swiper .news-swiper-pagination {
  bottom: 14px;
  right: 14px;
  left: auto;
  width: auto;
  text-align: right;
}

.main-first .news-wrapper .news-swiper .news-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.55;
  margin: 0 4px;
}

.main-first .news-wrapper .news-swiper .news-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.main-first .news-wrapper .news-swiper-detail {
  margin-top: 12px;
}

.main-first .news-wrapper .news-swiper-detail .news-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.main-first .news-wrapper .news-swiper-detail .news-date {
  display: block;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 400;
  color: #0683DD;
  line-height: 22px;
}

.main-first .news-wrapper .news-swiper-detail .news-desc {
  margin: 0;
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.main-first .news-list {
  flex: 0 0 342px;
  width: 342px;
  max-width: 342px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 68px;
  min-width: 0;
  box-sizing: border-box;
}

.main-first .news-list-item {
  margin: 0;
}

.main-first .news-list-item .news-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: inset 3px 0 0 transparent;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.main-first .news-list-item .news-link:hover .news-title,
.main-first .news-list-item .news-link:focus-visible .news-title {
  color: #0683DD;
}

.main-first .news-list-item .news-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

.main-first .news-list-item .news-date {
  display: flex;
  flex-shrink: 0;
  line-height: 1;
  margin-bottom: 8px;
}

.main-first .news-list-item .news-date .date-month,
.main-first .news-list-item .news-date .date-day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  padding: 8px 6px;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: opacity 0.28s ease;
}

.main-first .news-list-item .news-date .date-month {
  background: #0683DD;
}

.main-first .news-list-item .news-date .date-day {
  background: #D39E19;
}

.main-first .news-list-item .news-title {
  flex: 1;
  min-width: 0;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.25s ease;
}

.main-first .notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.main-first .notice-list-item {
  margin: 0;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.main-first .notice-list-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.main-first .notice-list-item .notice-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  box-sizing: border-box;
  box-shadow: inset 3px 0 0 transparent;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

.main-first .notice-list-item .notice-link:hover .notice-title,
.main-first .notice-list-item .notice-link:focus-visible .notice-title {
  color: #0683DD;
}

.main-first .notice-list-item .notice-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 4px;
}

.main-first .notice-list-item .notice-title {
  display: block;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.45;
  transition: color 0.25s ease;
}

.main-first .notice-list-item .notice-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.main-first .notice-list-item .notice-meta .notice-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #0683DD;
}

.main-first .notice-list-item .notice-meta .notice-time .clock {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.main-first .notice-list-item .notice-meta .notice-arrow {
  flex-shrink: 0;
  display: block;
  width: 28px;
  height: auto;
  max-height: 15px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.28s ease, filter 0.28s ease;
}

@media (max-width: 1399px) {
  .main-first {
    padding: 140px 0 100px;
  }
  .main-first .news-wrapper {
    max-width: 100%;
  }
  .main-first .news-wrapper .news-wrap-carousel {
    flex: 1 1 770px;
  }
  .main-first .news-list {
    flex: 0 1 342px;
    width: 342px;
    max-width: 342px;
  }
  .main-first .main-notice {
    flex: 0 1 342px;
    width: 342px;
    max-width: 342px;
  }
}

@media (max-width: 1199px) {
  .main-first {
    padding: 120px 0 88px;
  }
  .main-first .inner {
    padding: 36px 32px 40px;
    gap: 32px;
  }
  .main-first .news-wrapper {
    gap: 32px;
  }
  .main-first .news-wrapper .news-wrap-carousel {
    flex: 1 1 auto;
    max-width: 770px;
  }
  .main-first .news-list {
    flex: 0 1 300px;
    width: 300px;
    max-width: 342px;
  }
  .main-first .main-notice {
    flex: 0 1 300px;
    width: 300px;
    max-width: 342px;
  }
  .main-first .news__header .section-title,
  .main-first .notice__header .section-title {
    font-size: 32px;
    line-height: 1.35;
  }
  .main-first .news__header .section-title::before,
  .main-first .notice__header .section-title::before {
    bottom: 28px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .main-first {
    padding: 96px 0 72px;
  }
  .main-first .inner {
    padding: 32px 24px 36px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 40px;
  }
  .main-first .main-news {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .main-first .news__header .section-title,
  .main-first .notice__header .section-title {
    font-size: 28px;
  }
  .main-first .news__header .section-title::before,
  .main-first .notice__header .section-title::before {
    bottom: 24px;
  }
  .main-first .main-notice {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .main-first .news-wrapper {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
    max-width: 100%;
    gap: 28px;
  }
  .main-first .news-wrapper .news-wrap-carousel {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
  }
  .main-first .news-wrapper .news-swiper {
    max-width: 100%;
    margin: 0;
  }
  .main-first .news-list {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px 24px;
  }
  .main-first .news-list-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 200px;
  }
}

@media (max-width: 767px) {
  .main-first {
    padding: 72px 0 56px;
  }
  .main-first .inner {
    padding: 28px 16px 32px;
  }
  .main-first .news-wrapper {
    gap: 24px;
  }
  .main-first .news-wrapper .news-swiper-detail .news-title {
    font-size: 18px;
  }
  .main-first .news-list {
    flex-direction: column;
    gap: 40px;
  }
  .main-first .news-list-item {
    flex: 1 1 auto;
    min-width: 0;
  }
  .main-first .notice-list-item .notice-title {
    font-size: 17px;
  }
  .main-first .news__header .section-title,
  .main-first .notice__header .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .main-first .news__header .section-title::before,
  .main-first .notice__header .section-title::before {
    bottom: 20px;
    font-size: 14px;
  }
  .main-first .news__header .section-more,
  .main-first .notice__header .section-more {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-first {
    padding: 56px 0 40px;
  }
  .main-first .inner {
    padding: 24px 12px 28px;
    gap: 32px;
  }
  .main-first .news-wrapper .news-swiper-detail .news-desc {
    font-size: 15px;
    line-height: 22px;
  }
  .main-first .news-list {
    gap: 28px;
  }
  .main-first .notice-list-item {
    padding-bottom: 40px;
  }
  .main-first .notice-list-item .notice-meta {
    gap: 12px;
  }
}

.main-second {
  padding: 164px 0 88px;
  box-sizing: border-box;
  background: url("../images/bg2.jpg") center/cover no-repeat;
}

.main-second .inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.main-second .main-party,
.main-second .main-education {
  width: 708px;
  max-width: 100%;
  min-width: 0;
}

.main-second .party__header,
.main-second .education__header {
  margin-bottom: 28px;
}

.main-second .bulletin-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-second .bulletin-list-item {
  margin-bottom: 24px;
}

.main-second .bulletin-list-item .bulletin-link {
  margin-bottom: 19px;
}

.main-second .bulletin-list-item:not(:last-child) {
  border-bottom: 1px solid #D8D8D8;
  padding-bottom: 18px;
}

.main-second .bulletin-list-item:last-child .bulletin-link {
  margin-bottom: 0;
}

.main-second .bulletin-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
  padding: 12px 14px;
  margin-left: -14px;
  margin-right: -14px;
  border-radius: 8px;
  box-shadow: inset 3px 0 0 transparent;
  transition: background-color 0.28s ease, box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .main-second .bulletin-link:hover {
    background-color: rgba(6, 131, 221, 0.07);
    box-shadow: inset 3px 0 0 #0683DD, 0 4px 16px rgba(6, 131, 221, 0.12);
  }
  .main-second .bulletin-link:hover .bulletin-img {
    transform: scale(1.03);
  }
}

.main-second .bulletin-link:hover, .main-second .bulletin-link:focus-visible {
  color: #0683DD;
}

.main-second .bulletin-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

.main-second .bulletin-link .bulletin-media {
  flex-shrink: 0;
  line-height: 0;
  overflow: hidden;
  border-radius: 4px;
}

.main-second .bulletin-link .bulletin-media .bulletin-img {
  display: block;
  width: 178px;
  height: 122px;
  object-fit: cover;
  box-sizing: border-box;
  transition: transform 0.35s ease;
}

.main-second .bulletin-body {
  flex: 1;
  min-width: 0;
}

.main-second .bulletin-body .bulletin-title {
  padding-top: 10px;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  transition: color 0.25s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-second .bulletin-body .bulletin-time {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 2px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #0683DD;
}

.main-second .bulletin-body .bulletin-clock {
  flex-shrink: 0;
  display: block;
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.main-second .bulletin-body .bulletin-desc {
  margin: 0;
  height: 46px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (max-width: 1399px) {
  .main-second {
    padding: 140px 0 72px;
  }
  .main-second .inner {
    padding: 0 40px;
  }
}

@media (max-width: 1199px) {
  .main-second {
    padding: 120px 0 64px;
  }
  .main-second .inner {
    padding: 0 32px;
    flex-wrap: wrap;
    gap: 32px;
  }
  .main-second .main-party,
  .main-second .main-education {
    flex: 1 1 0;
    max-width: 708px;
    min-width: 260px;
  }
  .main-second .bulletin-img {
    width: 160px;
    height: auto;
    aspect-ratio: 178 / 122;
  }
}

@media (max-width: 991px) {
  .main-second {
    padding: 96px 0 56px;
  }
  .main-second .inner {
    padding: 0 24px;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
  }
  .main-second .main-party,
  .main-second .main-education {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .main-second .bulletin-img {
    width: 148px;
  }
}

@media (max-width: 767px) {
  .main-second {
    padding: 72px 0 48px;
  }
  .main-second .inner {
    padding: 0 16px;
    gap: 36px;
  }
  .main-second .party__header,
  .main-second .education__header {
    margin-bottom: 22px;
  }
  .main-second .bulletin-link {
    gap: 16px;
  }
  .main-second .bulletin-link .bulletin-img {
    width: 128px;
  }
  .main-second .bulletin-body .bulletin-title {
    font-size: 17px;
    line-height: 22px;
  }
  .main-second .bulletin-body .bulletin-time {
    font-size: 15px;
    line-height: 20px;
  }
  .main-second .bulletin-body .bulletin-desc {
    font-size: 15px;
    line-height: 22px;
    height: auto;
    max-height: 44px;
  }
}

@media (max-width: 480px) {
  .main-second {
    padding: 56px 0 40px;
  }
  .main-second .inner {
    padding: 0 12px;
    gap: 32px;
  }
  .main-second .bulletin-link {
    gap: 12px;
  }
  .main-second .bulletin-link .bulletin-img {
    width: 100px;
  }
  .main-second .bulletin-list-item:not(:last-child) {
    padding-bottom: 20px;
  }
  .main-second .bulletin-list-item .bulletin-link {
    margin-bottom: 16px;
  }
}

.main-third {
  padding: 164px 0 120px;
  box-sizing: border-box;
  background: url("../images/bg3.jpg") center/cover no-repeat;
}

.main-third .inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.main-third .main-youth {
  flex: 0 0 auto;
  max-width: 100%;
  min-width: 0;
}

.main-third .main-cooperation {
  flex: 0 1 444px;
  width: 444px;
  max-width: 444px;
  min-width: 0;
  box-sizing: border-box;
}

.main-third .coop-list {
  width: 100%;
  max-width: 444px;
  box-sizing: border-box;
}

.main-third .youth__header,
.main-third .cooperation__header {
  margin-bottom: 28px;
}

.main-third .youth__header .section-title,
.main-third .cooperation__header .section-title {
  color: #000;
}

.main-third .youth__header .section-title::before,
.main-third .cooperation__header .section-title::before {
  color: rgba(0, 0, 0, 0.6);
}

.main-third .youth__header .section-more,
.main-third .cooperation__header .section-more {
  color: #000;
}

.main-third .youth__header .section-more a,
.main-third .cooperation__header .section-more a {
  color: #000;
}

.main-third .youth-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 40px;
  box-sizing: border-box;
}

.main-third .youth-wrap-carousel {
  flex: 0 1 494px;
  width: 494px;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.main-third .youth-swiper {
  width: 100%;
  max-width: 494px;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.main-third .youth-swiper .swiper-slide {
  background: #f0f0f0;
}

.main-third .youth-swiper .swiper-slide-link {
  display: block;
  line-height: 0;
}

.main-third .youth-swiper .swiper-slide-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

.main-third .youth-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 494 / 282;
  object-fit: cover;
}

.main-third .youth-swiper .youth-swiper-pagination {
  bottom: 14px;
  right: 14px;
  left: auto;
  width: auto;
  text-align: right;
}

.main-third .youth-swiper .youth-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.55;
  margin: 0 4px;
}

.main-third .youth-swiper .youth-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

.main-third .youth-swiper-detail {
  margin-top: 22px;
}

.main-third .youth-swiper-detail .youth-slide-title {
  margin: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  height: 28px;
  color: #000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-third .youth-swiper-detail .youth-slide-date {
  display: block;
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
}

.main-third .youth-swiper-detail .youth-slide-desc {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000;
}

.main-third .youth-list {
  flex: 0 1 444px;
  width: 444px;
  max-width: 444px;
  min-width: 0;
  box-sizing: border-box;
}

.main-third .third-rail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-third .third-rail-item {
  margin: 0;
}

.main-third .third-rail-item .third-rail-link {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  text-decoration: none;
  box-sizing: border-box;
  padding: 10px 14px 10px 16px;
  margin: 0 -14px;
  border-radius: 6px;
  border-left: 3px solid transparent;
  box-shadow: 0 0 0 transparent;
  transition: background-color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .main-third .third-rail-item .third-rail-link:hover {
    background-color: rgba(6, 131, 221, 0.08);
    border-left-color: #0683DD;
    box-shadow: 0 2px 12px rgba(6, 131, 221, 0.1);
  }
}

.main-third .third-rail-item .third-rail-link:hover .third-rail-title,
.main-third .third-rail-item .third-rail-link:focus-visible .third-rail-title {
  text-decoration: underline;
}

.main-third .third-rail-item .third-rail-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .main-third .third-rail-item .third-rail-link:hover .third-rail-day {
    color: #000;
  }
  .main-third .third-rail-item .third-rail-link:hover .third-rail-ym {
    color: #000;
  }
}

.main-third .third-rail-item .third-rail-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  line-height: 1.2;
}

.main-third .third-rail-item .third-rail-date .third-rail-day {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  transition: color 0.28s ease;
}

.main-third .third-rail-item .third-rail-date .third-rail-ym {
  margin-top: 4px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
  transition: color 0.28s ease;
}

.main-third .third-rail-item .third-rail-title {
  flex: 1;
  min-width: 0;
  font-weight: 500;
  font-size: 18px;
  height: 48px;
  line-height: 24px;
  color: #000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  transition: color 0.25s ease;
}

@media (max-width: 1539px) {
  .main-third .inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .main-third .main-youth {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .main-third .main-cooperation {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 1399px) {
  .main-third {
    padding: 140px 0 100px;
  }
  .main-third .inner {
    padding: 0 40px;
  }
}

@media (max-width: 1019px) {
  .main-third .youth-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .main-third .youth-wrap-carousel {
    flex: 1 1 auto;
    width: 100%;
    max-width: 494px;
  }
  .main-third .youth-swiper {
    max-width: 100%;
  }
  .main-third .youth-list {
    flex: 1 1 auto;
    width: 100%;
    max-width: 444px;
  }
}

@media (max-width: 1199px) {
  .main-third {
    padding: 120px 0 88px;
  }
  .main-third .inner {
    padding: 0 32px;
    gap: 32px;
  }
  .main-third .section-header .section-title {
    font-size: 32px;
    line-height: 1.35;
  }
  .main-third .section-header .section-title::before {
    bottom: 28px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .main-third {
    padding: 96px 0 72px;
  }
  .main-third .inner {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 0 24px;
    gap: 40px;
  }
  .main-third .main-youth,
  .main-third .main-cooperation {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }
  .main-third .youth-wrapper {
    gap: 28px;
  }
  .main-third .youth-wrap-carousel {
    max-width: 100%;
  }
  .main-third .youth-list {
    max-width: 100%;
  }
  .main-third .coop-list {
    max-width: 100%;
  }
  .main-third .third-rail-list {
    gap: 20px;
  }
  .main-third .section-header .section-title {
    font-size: 28px;
  }
  .main-third .section-header .section-title::before {
    bottom: 24px;
  }
}

@media (max-width: 767px) {
  .main-third {
    padding: 72px 0 56px;
  }
  .main-third .inner {
    padding: 0 16px;
    gap: 36px;
  }
  .main-third .youth__header,
  .main-third .cooperation__header {
    margin-bottom: 22px;
  }
  .main-third .youth-slide-title {
    font-size: 18px;
    line-height: 26px;
    height: 26px;
  }
  .main-third .youth-slide-date {
    font-size: 15px;
  }
  .main-third .youth-slide-desc {
    font-size: 15px;
    line-height: 22px;
  }
  .main-third .third-rail-link {
    gap: 12px;
  }
  .main-third .third-rail-day {
    font-size: 18px;
  }
  .main-third .third-rail-ym {
    font-size: 13px;
  }
  .main-third .third-rail-title {
    font-size: 17px;
  }
  .main-third .section-header .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .main-third .section-header .section-title::before {
    bottom: 20px;
    font-size: 14px;
  }
  .main-third .section-header .section-more {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-third {
    padding: 56px 0 48px;
  }
  .main-third .inner {
    padding: 0 12px;
    gap: 32px;
  }
  .main-third .third-rail-list {
    gap: 18px;
  }
}

.main-fourth {
  position: relative;
  padding: 164px 0 196px;
  box-sizing: border-box;
  background: url("../images/bg4.jpg") center/cover no-repeat;
  overflow: hidden;
}

.main-fourth .main-fourth__decor {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(100deg, rgba(197, 163, 71, 0.38) 0%, rgba(197, 163, 71, 0.12) 26%, rgba(139, 163, 150, 0.4) 44%, rgba(139, 163, 150, 0.14) 56%, rgba(52, 137, 209, 0.42) 74%, rgba(52, 137, 209, 0.16) 100%);
}

.main-fourth .main-fourth__watermark {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.09);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.main-fourth .inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.main-fourth .academic__header {
  margin-bottom: 76px;
}

.main-fourth .academic-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 8px;
}

.main-fourth .academic-swiper {
  width: 100%;
  max-width: 1914px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 8px 0 24px;
  box-sizing: border-box;
  overflow: visible !important;
}

.main-fourth .academic-swiper .swiper-wrapper {
  align-items: stretch;
  overflow: visible !important;
}

.main-fourth .academic-swiper .swiper-slide {
  width: 494px;
  height: auto;
  box-sizing: border-box;
}

.main-fourth .academic-swiper .swiper-slide-active {
  overflow: visible !important;
  z-index: 2;
}

.main-fourth .academic-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 100%;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.main-fourth .academic-card:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card {
  flex-direction: column-reverse;
  background: transparent;
  overflow: visible;
}

.main-fourth .academic-card__media {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  line-height: 0;
  overflow: hidden;
}

.main-fourth .academic-card__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 494 / 282;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .main-fourth .academic-swiper .swiper-slide:not(.swiper-slide-active) .academic-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(6, 131, 221, 0.22);
  }
  .main-fourth .academic-swiper .swiper-slide:not(.swiper-slide-active) .academic-card:hover .academic-card__media img {
    transform: scale(1.04);
  }
  .main-fourth .academic-swiper .swiper-slide-active .academic-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(6, 131, 221, 0.18);
  }
  .main-fourth .academic-swiper .swiper-slide-active .academic-card:hover .academic-card__media img {
    transform: scale(1.03);
  }
}

.main-fourth .academic-card__body {
  position: relative;
  flex: 1 1 auto;
  padding: 22px 16px 20px 32px;
  box-sizing: border-box;
}

.main-fourth .academic-card__active-accent {
  width: 100%;
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__active-accent {
  display: block;
}

.main-fourth .academic-card__rail {
  position: absolute;
  left: 12px;
  top: 0;
  width: 20px;
  height: 177px;
  background: url("../icons/line-bottom.png") left top/auto 100% no-repeat;
  pointer-events: none;
  transform: translateY(-32px);
  transition: transform 0.35s ease;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__rail {
  background-image: url("../icons/line-top.png");
  transform: translateY(0);
}

.main-fourth .academic-card__title {
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-fourth .academic-card__date {
  display: block;
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: #ffffff;
}

.main-fourth .academic-card__desc {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__body {
  padding-top: 22px;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__title {
  color: #333333;
  font-size: 20px;
  white-space: nowrap;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__date {
  color: #0683DD;
}

.main-fourth .academic-swiper .swiper-slide-active .academic-card__desc {
  color: #333333;
}

@media (max-width: 1914px) {
  .main-fourth .academic-swiper {
    max-width: 100%;
  }
  .main-fourth .academic-swiper .swiper-slide {
    width: calc((100vw - 432px) / 3);
  }
}

@media (max-width: 1399px) {
  .main-fourth {
    padding: 140px 0 160px;
  }
  .main-fourth .inner {
    padding: 0 40px;
  }
  .main-fourth .main-fourth__watermark {
    font-size: 44px;
  }
  .main-fourth .academic__header {
    margin-bottom: 32px;
  }
}

@media (max-width: 1199px) {
  .main-fourth {
    padding: 120px 0 140px;
  }
  .main-fourth .inner {
    padding: 0 32px;
  }
  .main-fourth .main-fourth__watermark {
    font-size: 36px;
  }
  .main-fourth .academic-card__title {
    font-size: 17px;
  }
  .main-fourth .academic-card__date,
  .main-fourth .academic-card__desc {
    font-size: 14px;
    line-height: 20px;
  }
  .main-fourth .section-header .section-title {
    font-size: 32px;
    line-height: 1.35;
  }
  .main-fourth .section-header .section-title::before {
    bottom: 28px;
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .main-fourth {
    padding: 96px 0 120px;
  }
  .main-fourth .inner {
    padding: 0 24px;
  }
  .main-fourth .main-fourth__watermark {
    font-size: 28px;
    top: 52%;
  }
  .main-fourth .academic__header {
    margin-bottom: 28px;
  }
  .main-fourth .academic-card__body {
    padding: 14px 12px 16px 28px;
  }
  .main-fourth .academic-card__rail {
    left: 10px;
    top: 14px;
    bottom: 14px;
  }
  .main-fourth .section-header .section-title {
    font-size: 28px;
  }
  .main-fourth .section-header .section-title::before {
    bottom: 24px;
  }
}

@media (max-width: 767px) {
  .main-fourth {
    padding: 72px 0 96px;
  }
  .main-fourth .inner {
    padding: 0 16px;
  }
  .main-fourth .main-fourth__watermark {
    font-size: 22px;
  }
  .main-fourth .academic-swiper {
    padding-bottom: 16px;
  }
  .main-fourth .academic-swiper .swiper-slide {
    width: 85vw;
    max-width: 360px;
    padding: 0 10px;
    box-sizing: border-box;
    transform: scale(0.92);
    transform-origin: center center;
  }
  .main-fourth .academic-swiper .swiper-slide-active {
    transform: scale(1);
  }
  .main-fourth .academic-card {
    width: 100%;
  }
  .main-fourth .academic-card__title {
    font-size: 16px;
  }
  .main-fourth .academic-swiper .swiper-slide-active .academic-card__body {
    padding-top: 18px;
  }
  .main-fourth .section-header .section-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .main-fourth .section-header .section-title::before {
    bottom: 20px;
    font-size: 14px;
  }
  .main-fourth .section-header .section-more {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-fourth {
    padding: 56px 0 80px;
  }
  .main-fourth .inner {
    padding: 0 12px;
  }
  .main-fourth .academic-card__body {
    padding: 12px 10px 14px 26px;
  }
}

.main-fifth {
  padding: 120px 0 160px;
  box-sizing: border-box;
  background: url("../images/bg5.jpg") center/cover no-repeat;
}

.main-fifth .container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}

.main-fifth .college__header {
  margin-bottom: 0;
}

.main-fifth .college-wrapper {
  margin-top: 40px;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.main-fifth .college-marquee {
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.main-fifth .colege-gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: max-content;
  box-sizing: border-box;
}

.main-fifth .gallery-item {
  flex: 0 0 auto;
}

.main-fifth .gallery-link {
  display: block;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
}

.main-fifth .gallery-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 3px;
}

.main-fifth .gallery-img {
  display: block;
  width: 342px;
  max-width: none;
  height: auto;
  aspect-ratio: 494 / 346;
  object-fit: cover;
}

@media (max-width: 1399px) {
  .main-fifth .container {
    padding: 0 40px;
  }
  .main-fifth .colege-gallery {
    gap: 28px;
  }
  .main-fifth .gallery-img {
    width: 340px;
  }
}

@media (max-width: 1199px) {
  .main-fifth {
    padding: 100px 0 120px;
  }
  .main-fifth .container {
    padding: 0 32px;
  }
  .main-fifth .college-wrapper {
    margin-top: 36px;
  }
  .main-fifth .colege-gallery {
    gap: 24px;
  }
  .main-fifth .gallery-img {
    width: 300px;
  }
}

@media (max-width: 991px) {
  .main-fifth {
    padding: 80px 0 100px;
  }
  .main-fifth .container {
    padding: 0 24px;
  }
  .main-fifth .college-wrapper {
    margin-top: 32px;
  }
  .main-fifth .colege-gallery {
    gap: 20px;
  }
  .main-fifth .gallery-img {
    width: 280px;
  }
  .main-fifth .college__header .section-title {
    font-size: 32px;
    line-height: 1.3;
  }
  .main-fifth .college__header .section-title::before {
    bottom: 24px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .main-fifth {
    padding: 64px 0 80px;
  }
  .main-fifth .container {
    padding: 0 20px;
  }
  .main-fifth .college__header {
    flex-wrap: wrap;
    gap: 12px 16px;
  }
  .main-fifth .college__header .section-title {
    font-size: 28px;
    line-height: 1.25;
  }
  .main-fifth .college__header .section-title::before {
    bottom: 20px;
    font-size: 14px;
  }
  .main-fifth .college__header .section-more {
    font-size: 15px;
  }
  .main-fifth .gallery-img {
    width: 260px;
  }
}

@media (max-width: 480px) {
  .main-fifth {
    padding: 48px 0 64px;
  }
  .main-fifth .container {
    padding: 0 16px;
  }
  .main-fifth .college-wrapper {
    margin-top: 24px;
  }
  .main-fifth .colege-gallery {
    gap: 16px;
  }
  .main-fifth .gallery-img {
    width: 240px;
  }
  .main-fifth .college__header .section-title {
    font-size: 24px;
  }
  .main-fifth .college__header .section-more {
    font-size: 14px;
  }
}

.main-links {
  box-sizing: border-box;
  background: url("../images/link-bg.jpg") center/cover no-repeat;
  padding: 26px 40px 32px;
}

.main-links .links-inner {
  width: 100%;
  max-width: calc(5 * 282px + 4 * 9px);
  margin: 0 auto;
  box-sizing: border-box;
}

.main-links .links-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.main-links .links-list .links-item {
  flex: 0 0 auto;
}

.main-links .links-list .links-link {
  display: block;
  line-height: 0;
}

.main-links .links-list .links-link:focus-visible {
  outline: 2px solid #0683DD;
  outline-offset: 2px;
}

.main-links .links-list .links-img {
  display: block;
  width: 282px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 282 / 108;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .main-links .links-list .links-item {
    flex: 0 0 calc((100% - 2 * 9px) / 3);
    max-width: calc((100% - 2 * 9px) / 3);
  }
  .main-links .links-list .links-img {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .main-links {
    padding: 20px 12px;
  }
  .main-links .links-list .links-item {
    flex: 0 0 calc((100% - 9px) / 2);
    max-width: calc((100% - 9px) / 2);
  }
}

@media (max-width: 479px) {
  .main-links {
    padding: 16px 12px;
  }
  .main-links .links-list .links-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.footer {
  padding: 45px 0 58px;
  background-image: url("../images/footer-bg.jpg");
}

.footer .logo {
  width: 574px;
  display: block;
  margin: 0 auto 20px;
}

.footer .info {
  text-align: center;
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 26px;
  margin-bottom: 34px;
}

.footer .info .icp, .footer .info .gongan {
  color: rgba(255, 255, 255, 0.5);
  display: inline-block;
  margin-left: 10px;
}

.footer .contact {
  margin: 0 auto;
  text-align: center;
}

.footer .contact .phone {
  font-weight: 600;
  font-size: 28px;
  color: #A1E4FF;
  line-height: 26px;
  margin-bottom: 6px;
}

.footer .contact .business {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 26px;
}

@media (max-width: 1200px) {
  .footer .logo {
    width: 90%;
    max-width: 574px;
    height: auto;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 36px 24px 48px;
  }
  .footer .info {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 28px;
  }
  .footer .contact .phone {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 28px 16px 40px;
  }
  .footer .logo {
    width: 92%;
    max-width: 480px;
    margin-bottom: 16px;
  }
  .footer .info {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 24px;
  }
  .footer .info .address {
    padding: 0 4px;
  }
  .footer .info .site {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
  }
  .footer .info .site .copyright,
  .footer .info .site .icp,
  .footer .info .site .gongan {
    margin-left: 0;
  }
  .footer .contact .phone {
    font-size: 22px;
  }
  .footer .contact .business {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 22px 12px 32px;
  }
  .footer .logo {
    width: 94%;
    max-width: 574px;
  }
  .footer .info {
    font-size: 13px;
    line-height: 20px;
  }
  .footer .contact .phone {
    font-size: 18px;
  }
  .footer .contact .business {
    font-size: 13px;
    line-height: 22px;
  }
}

.friend-links {
  padding: 24px 0;
  background: #0683DD;
  color: #fff;
  /* 响应式调整 - 保持竖线分隔布局 */
}

.friend-links .friend-wrapper {
  padding: 0 48px;
}

.friend-links .links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.friend-links .links-list .link-item {
  flex: 0 0 auto;
  border-left: 1px solid #fff;
  /* 首项移除左侧竖线 */
}

.friend-links .links-list .link-item:first-child::before {
  border-left: none;
}

.friend-links .links-list .link-item a {
  display: inline-block;
  color: #fff;
  /* 白色文字 */
  text-decoration: none;
  font-size: 14px;
  padding: 0 12px;
  border-radius: 0;
  /* 移除圆角 */
  background: transparent;
  /* 透明背景 */
  transition: all 0.3s ease;
  white-space: nowrap;
  text-align: center;
  min-width: 120px;
}

.friend-links .links-list .link-item a:hover {
  color: #fff;
  /* 悬停保持白色 */
  text-decoration: underline;
  /* 悬停下划线效果 */
  background: transparent;
  /* 透明背景 */
}

@media (max-width: 1399px) {
  .friend-links .friend-wrapper {
    padding: 0 40px;
  }
  .friend-links .links-list .link-item a {
    font-size: 14px;
    min-width: 110px;
    padding: 5px 10px;
  }
}

@media (max-width: 1200px) {
  .friend-links .friend-wrapper {
    padding: 0 32px;
  }
  .friend-links .link-item {
    flex: 0 0 calc(33.333% - 24px);
  }
  .friend-links .link-item a {
    font-size: 14px;
    min-width: auto;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .friend-links .friend-wrapper {
    padding: 0 24px;
  }
  .friend-links .link-item {
    flex: 0 0 calc(50% - 20px);
  }
  .friend-links .link-item a {
    font-size: 12px;
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .friend-links .friend-wrapper {
    padding: 0 16px;
  }
  .friend-links .links-list {
    gap: 8px;
  }
  .friend-links .links-list .link-item {
    flex: 0 0 calc(50% - 16px);
  }
  .friend-links .links-list .link-item a {
    font-size: 12px;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .friend-links .friend-wrapper {
    padding: 0 12px;
  }
  .friend-links .links-list {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .friend-links .links-list .link-item {
    flex: 0 0 100%;
    width: 100%;
  }
  .friend-links .links-list .link-item::before {
    display: none;
    /* 手机端移除竖线 */
  }
  .friend-links .links-list .link-item a {
    font-size: 14px;
    padding: 6px 15px;
    width: 100%;
    max-width: 280px;
  }
}

.section-feature .feature-media img {
  width: 100%;
  display: block;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.breadcrumb .breadcrumb-title,
.breadcrumb .breadcrumb-item {
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  line-height: 28px;
}

.breadcrumb .breadcrumb-title a,
.breadcrumb .breadcrumb-item a {
  color: #666666;
  text-decoration: none;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item:before {
  content: ">>";
}

.main-list .inner {
  max-width: 1600px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

.main-list .inner .menu-section {
  flex: 0 0 310px;
  max-width: 310px;
  min-width: 0;
  overflow: visible;
}

.main-list .inner .list-section {
  flex: 1;
  min-width: 0;
}

.main-list .inner .list-section .list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E5E5;
}

.main-list .inner .list-section .list-header .title {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  color: #333333;
}

.main-list .inner .list-section .search-section {
  margin-bottom: 32px;
}

.main-list .inner .list-section .search-section .search-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.main-list .inner .list-section .search-section .search-form .search-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
}

.main-list .inner .list-section .search-section .search-form .search-input:focus {
  border-color: #0683DD;
}

.main-list .inner .list-section .search-section .search-form .search-btn {
  padding: 0 24px;
  background: #0683DD;
  color: #FFFFFF;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.main-list .inner .list-section .search-section .search-form .search-btn:hover {
  background: #056BBF;
}

.main-list .inner .list-section .search-section .search-result-info {
  font-size: 14px;
  color: #666666;
}

.main-list .inner .list-section .search-section .search-result-info .result-count {
  color: #0683DD;
  font-weight: 500;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list a {
  text-decoration: none;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px 40px 30px;
  border-bottom: 1px solid #E5E5E5;
  background: #ffffff;
  transition: background 0.3s ease;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content {
  flex: 1;
  margin-right: 20px;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content .article-title {
  font-size: 18px;
  font-weight: 500;
  color: #333333;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content .article-date {
  font-size: 14px;
  color: #0683DD;
  margin-bottom: 8px;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content .article-info {
  font-size: 14px;
  color: #666666;
  line-height: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666666;
  font-size: 14px;
  transition: color 0.3s ease;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-link .link {
  width: 62px;
  height: 22px;
  transition: opacity 0.3s ease;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-link .link_y {
  display: none;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover {
  background: #0683DD;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-content .article-title,
.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-content .article-date,
.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-content .article-info {
  color: #ffffff;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-link {
  color: #ffffff;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-link .link_n {
  display: none;
}

.main-list .inner .list-section .list-wrapper .article-container .article-list .article-item:hover .article-link .link_y {
  display: block;
}

@media (max-width: 1399px) {
  .main-list .inner {
    padding: 0 40px 36px;
    gap: 32px;
  }
  .main-list .inner .menu-section {
    flex: 0 0 280px;
    max-width: 280px;
  }
}

@media (max-width: 1399px) and (min-width: 992px) {
  .main-list .inner .list-section {
    padding-top: 36px;
  }
}

@media (max-width: 1199px) {
  .main-list .inner {
    padding: 0 32px 32px;
    gap: 28px;
  }
  .main-list .inner .menu-section {
    flex: 0 0 260px;
    max-width: 260px;
  }
  .main-list .inner .list-section .list-header .title {
    font-size: 22px;
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .main-list .inner .list-section {
    padding-top: 32px;
  }
}

@media (max-width: 991px) {
  .main-list .inner {
    padding: 0 24px 28px;
    flex-direction: column;
    gap: 24px;
  }
  .main-list .inner .menu-section {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
    padding-top: 28px;
  }
  .main-list .inner .list-section .list-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
  }
}

@media (max-width: 767px) {
  .main-list .inner {
    padding: 0 16px 24px;
  }
  .main-list .inner .menu-section {
    padding-top: 24px;
  }
  .main-list .inner .list-section .list-header .title {
    font-size: 20px;
  }
  .main-list .inner .list-section .search-section {
    margin-bottom: 28px;
  }
  .main-list .inner .list-section .search-section .search-form {
    flex-direction: column;
  }
  .main-list .inner .list-section .search-section .search-form .search-input {
    font-size: 15px;
  }
  .main-list .inner .list-section .search-section .search-form .search-btn {
    padding: 12px 24px;
    font-size: 15px;
  }
  .main-list .inner .list-section .list-wrapper .article-container .article-list .article-item {
    padding: 16px 0;
  }
  .main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content .article-title {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .main-list .inner {
    padding: 0 12px 20px;
  }
  .main-list .inner .menu-section {
    padding-top: 20px;
  }
  .main-list .inner .list-section .list-wrapper .article-container .article-list .article-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .main-list .inner .list-section .list-wrapper .article-container .article-list .article-item .article-content {
    margin-right: 0;
  }
}

.pagination-wrapper {
  padding: 60px 0;
}

.pagination-wrapper .pagination {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pagination-wrapper .pagination .page-item {
  border: 1px solid #EFEFEF;
  box-sizing: border-box;
  text-align: center;
}

.pagination-wrapper .pagination .page-item .page-link {
  text-decoration: none;
  padding: 4px 10px;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  color: #333333;
}

.pagination-wrapper .pagination .page-item .page-link:hover {
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.pagination-wrapper .pagination .page-item.active {
  border: 1px solid #0683DD;
}

.pagination-wrapper .pagination .page-item.active .page-link {
  color: #FFFEFE;
  background: #0683DD;
}

.main-list .list-menu {
  width: 100%;
  max-width: 310px;
  position: relative;
  top: -104px;
  box-sizing: border-box;
}

.main-list .list-menu .menu-header {
  width: 100%;
  max-width: 310px;
  height: 104px;
  background: url("../images/menu-head.jpg") center/cover no-repeat;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.main-list .list-menu .menu-header .title {
  margin: 0;
  width: 100%;
  font-weight: 600;
  font-size: 32px;
  color: #FFFFFF;
  text-align: center;
  line-height: 44px;
  padding: 30px 16px;
  box-sizing: border-box;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn .menu-title-text {
  display: inline-block;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon {
  flex-shrink: 0;
  position: relative;
  width: 18px;
  height: 18px;
  vertical-align: middle;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::before, .main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::before {
  transform: translate(-50%, -50%);
}

.main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.main-list .list-menu .menu-header .title .menu-toggle-btn.collapsed .menu-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
  opacity: 0;
}

.main-list .list-menu .menu-header .title .menu-toggle-btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 2px;
}

.main-list .list-menu .menu-wrapper {
  background: #ffffff;
  overflow: hidden;
  max-height: 2000px;
  transition: max-height 0.35s ease;
}

.main-list .list-menu .menu-wrapper.collapsed {
  max-height: 0 !important;
}

.main-list .list-menu .menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-list .list-menu .menu-list .menu-item {
  position: relative;
  font-weight: 400;
  font-size: 18px;
  color: #666666;
  text-align: center;
  line-height: 0;
}

.main-list .list-menu .menu-list .menu-item a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  line-height: 1.4;
  padding: 10px 18px;
  box-sizing: border-box;
  width: 100%;
  color: #666666;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
}

.main-list .list-menu .menu-list .menu-item a:hover {
  color: #0683DD;
  background-color: rgba(6, 131, 221, 0.08);
}

.main-list .list-menu .menu-list .menu-item a:focus-visible {
  color: #0683DD;
  background-color: rgba(6, 131, 221, 0.1);
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(6, 131, 221, 0.4);
}

.main-list .list-menu .menu-list .menu-item a:focus-visible::before {
  transform: scaleY(0.72);
}

.main-list .list-menu .menu-list .menu-item a:active {
  transition-duration: 0.12s;
}

.main-list .list-menu .menu-list .menu-item.active a {
  color: #0683DD;
  font-weight: 500;
}

.main-list .list-menu .menu-list .menu-item.active a:hover {
  background-color: rgba(6, 131, 221, 0.14);
}

@media (prefers-reduced-motion: reduce) {
  .main-list .list-menu .menu-wrapper {
    transition: none;
  }
  .main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::before,
  .main-list .list-menu .menu-header .title .menu-toggle-btn .menu-toggle-icon::after {
    transition: none;
  }
  .main-list .list-menu .menu-list .menu-item a {
    transition: none;
  }
  .main-list .list-menu .menu-list .menu-item a::before, .main-list .list-menu .menu-list .menu-item a::after {
    transition: none;
  }
}

.main-list .list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 16px;
  border-bottom: 2px solid #0683DD;
  margin-bottom: 26px;
  padding: 36px 0 20px;
}

.main-list .list-header .title {
  margin: 0;
  font-weight: 600;
  font-size: 26px;
  color: #0683DD;
  line-height: 36px;
  flex: 1 1 auto;
  min-width: 0;
}

.main-list .list-header .breadcrumb-nav {
  min-width: 0;
  text-align: right;
}

.main-list .list-wrapper .article-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-list .list-wrapper .article-list a {
  text-decoration: none;
}

.main-list .list-wrapper .article-list .article-item {
  margin-bottom: 24px;
  padding: 32px 36px 40px 30px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-list .list-wrapper .article-list .article-item a {
  text-decoration: none;
}

.main-list .list-wrapper .article-list .article-item .article-content {
  text-decoration: none;
}

.main-list .list-wrapper .article-list .article-item .article-content .article-title {
  font-weight: 500;
  font-size: 20px;
  color: #000000;
  margin-bottom: 6px;
}

.main-list .list-wrapper .article-list .article-item .article-content .article-date {
  font-weight: 500;
  font-size: 16px;
  color: #0683DD;
  line-height: 22px;
  margin-bottom: 10px;
}

.main-list .list-wrapper .article-list .article-item .article-content .article-info {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #333333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.main-list .list-wrapper .article-list .article-item .article-link {
  font-weight: 400;
  font-size: 14px;
  color: #333333;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-list .list-wrapper .article-list .article-item .article-link .link {
  width: 62px;
  height: 22px;
  display: block;
}

.main-list .list-wrapper .article-list .article-item .article-link .link_n {
  display: block;
}

.main-list .list-wrapper .article-list .article-item .article-link .link_y {
  display: none;
}

.main-list .list-wrapper .article-list .article-item:hover {
  color: #333;
  background: #0683DD;
}

.main-list .list-wrapper .article-list .article-item:hover .article-title {
  color: #ffffff;
}

.main-list .list-wrapper .article-list .article-item:hover .article-date {
  color: #ffffff;
}

.main-list .list-wrapper .article-list .article-item:hover .article-info {
  color: #ffffff;
}

.main-list .list-wrapper .article-list .article-item:hover .article-link {
  color: #ffffff;
}

.main-list .list-wrapper .article-list .article-item:hover .article-link .link_n {
  display: none;
}

.main-list .list-wrapper .article-list .article-item:hover .article-link .link_y {
  display: block;
}

.main-list .list-wrapper .simple-article {
  padding: 40px 42px 30px;
  background: #FFFFFF;
}

.main-list .list-wrapper .simple-article .article-content {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
}

.main-list .list-wrapper .simple-article .article-content img {
  max-width: 100%;
}

@media (max-width: 1399px) {
  .main-list .inner {
    max-width: calc(100% - 60px);
    gap: 40px;
  }
  .main-list .list-menu {
    max-width: 280px;
  }
  .main-list .list-menu .menu-header {
    max-width: 280px;
  }
}

@media (max-width: 1199px) {
  .main-list .inner {
    max-width: calc(100% - 40px);
    gap: 32px;
  }
  .main-list .list-menu {
    max-width: 260px;
  }
  .main-list .list-menu .menu-header {
    max-width: 260px;
  }
  .main-list .list-menu .menu-header .title {
    font-size: 28px;
  }
  .main-list .list-menu .menu-list .menu-item {
    font-size: 17px;
  }
  .main-list .list-menu .menu-list .menu-item a {
    min-height: 70px;
    padding: 8px 14px;
  }
  .main-list .list-header {
    padding: 30px 0 18px;
  }
  .main-list .list-header .title {
    font-size: 24px;
  }
  .main-list .list-wrapper .article-list .article-item {
    padding: 28px 30px 36px 26px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-title {
    font-size: 19px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-date {
    font-size: 15px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-info {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .main-list .inner {
    flex-direction: column;
    gap: 40px;
    max-width: calc(100% - 32px);
  }
  .main-list .list-menu {
    width: 100%;
    max-width: 100%;
    top: 0;
  }
  .main-list .list-menu .menu-header {
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 90px;
  }
  .main-list .list-menu .menu-header .title {
    font-size: 26px;
    padding: 22px 16px;
  }
  .main-list .list-menu .menu-header .title .menu-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
  }
  .main-list .list-menu .menu-list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
  }
  .main-list .list-menu .menu-list .menu-item {
    min-width: 0;
    box-sizing: border-box;
    border-bottom: 1px solid #f0f0f0;
  }
  .main-list .list-menu .menu-list .menu-item a {
    min-height: 60px;
    padding: 10px 12px;
  }
  .main-list .list-menu .menu-list .menu-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .main-list .list-header {
    padding: 24px 0 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .main-list .list-header .title {
    font-size: 22px;
  }
  .main-list .list-header .breadcrumb-nav {
    flex: 1 1 auto;
    text-align: left;
  }
  .main-list .list-wrapper .article-list .article-item {
    padding: 24px 24px 32px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-title {
    font-size: 18px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-date {
    font-size: 15px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-info {
    font-size: 15px;
    line-height: 22px;
  }
  .main-list .list-wrapper .article-list .article-item .article-link {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .main-list .inner {
    max-width: calc(100% - 24px);
    gap: 32px;
  }
  .main-list .list-menu .menu-header {
    min-height: 80px;
  }
  .main-list .list-menu .menu-header .title {
    font-size: 24px;
    padding: 20px 14px;
  }
  .main-list .list-menu .menu-list .menu-item {
    font-size: 16px;
  }
  .main-list .list-menu .menu-list .menu-item a {
    min-height: 56px;
    padding: 10px 14px;
  }
  .main-list .list-header {
    padding: 20px 0 14px;
  }
  .main-list .list-header .title {
    font-size: 20px;
  }
  .main-list .list-wrapper .article-list .article-item {
    padding: 20px 20px 28px 18px;
    margin-bottom: 20px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-date {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-info {
    font-size: 14px;
    line-height: 20px;
  }
  .main-list .list-wrapper .article-list .article-item .article-link {
    font-size: 13px;
  }
  .main-list .list-wrapper .article-list .article-item .article-link .link {
    width: 56px;
    height: 20px;
  }
  .main-list .pagination-wrapper {
    padding: 40px 0;
  }
  .main-list .pagination-wrapper .pagination {
    gap: 6px;
  }
  .main-list .pagination-wrapper .pagination .page-item .page-link {
    padding: 3px 8px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .main-list .inner {
    max-width: calc(100% - 16px);
    gap: 24px;
  }
  .main-list .list-menu .menu-header {
    min-height: 70px;
  }
  .main-list .list-menu .menu-header .title {
    font-size: 22px;
    padding: 18px 12px;
  }
  .main-list .list-menu .menu-list .menu-item {
    font-size: 15px;
  }
  .main-list .list-menu .menu-list .menu-item a {
    min-height: 50px;
    padding: 8px 12px;
  }
  .main-list .list-header {
    padding: 16px 0 12px;
  }
  .main-list .list-header .title {
    font-size: 18px;
  }
  .main-list .list-wrapper .article-list .article-item {
    padding: 18px 16px 24px 16px;
    margin-bottom: 16px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-title {
    font-size: 16px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-date {
    font-size: 14px;
  }
  .main-list .list-wrapper .article-list .article-item .article-content .article-info {
    font-size: 14px;
  }
  .main-list .list-wrapper .simple-article {
    padding: 24px 20px 20px;
  }
  .main-list .list-wrapper .simple-article .article-content {
    font-size: 16px;
  }
  .main-list .pagination-wrapper {
    padding: 32px 0;
  }
}

.main-content {
  margin-bottom: 62px;
}

.main-content .header-info {
  padding: 18px 0;
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 18px;
}

.main-content .header-info .breadcrumb-nav {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}

.main-content .inner {
  max-width: 1560px;
  margin: 0 auto;
}

.main-content .container {
  background: #FFFFFF;
  padding: 36px 30px 60px;
}

.main-content .container .title {
  font-weight: 500;
  font-size: 28px;
  color: #0683DD;
  margin-bottom: 22px;
  text-align: center;
}

.main-content .container .info {
  background: rgba(6, 131, 221, 0.1);
  padding: 12px 0;
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 34px;
}

.main-content .container .info .info-item {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  color: #999999;
  line-height: 24px;
}

.main-content .container .info .info-item img {
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 4px;
}

.main-content .container .content {
  padding: 0 26px;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
}

.main-content .container .content img {
  max-width: 100%;
}

@media (max-width: 1600px) {
  .main-content .inner {
    max-width: 1460px;
  }
}

@media (max-width: 1440px) {
  .main-content .inner {
    max-width: 1260px;
  }
}

@media (max-width: 1200px) {
  .main-content .inner {
    max-width: 1140px;
  }
  .main-content .container .title {
    font-size: 28px;
    line-height: 38px;
  }
}

@media (max-width: 992px) {
  .main-content .inner {
    max-width: 860px;
  }
  .main-content .container .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
  }
  .main-content .container .info {
    gap: 20px;
    margin-bottom: 24px;
  }
  .main-content .container .info .info-item {
    font-size: 15px;
  }
  .main-content .container .content {
    font-size: 15px;
    line-height: 22px;
  }
}

@media (max-width: 768px) {
  .main-content .inner {
    padding: 0 16px;
  }
  .main-content .container .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 14px;
  }
  .main-content .container .info {
    gap: 14px;
    margin-bottom: 20px;
  }
  .main-content .container .content {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .main-content .inner {
    padding: 20px 12px;
  }
  .main-content .container {
    padding: 18px 16px 30px;
  }
  .main-content .container .content {
    padding: 0 8px;
  }
  .main-content .container .title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 12px;
  }
  .main-content .container .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  .main-content .container .info .info-item {
    font-size: 14px;
  }
}

.enrollment-popup {
  position: fixed;
  right: 38px;
  top: 30%;
  z-index: 100;
}

.enrollment-popup .enrollment-close {
  display: block;
  width: 28px;
  height: 28px;
  position: absolute;
  right: 6px;
  top: 6px;
  cursor: pointer;
}

.enrollment-popup .enrollment-ad {
  width: 148px;
  height: 448px;
}

@media (max-width: 1399px) {
  .enrollment-popup {
    right: 30px;
  }
  .enrollment-popup .enrollment-ad {
    width: 140px;
    height: 430px;
  }
}

@media (max-width: 1200px) {
  .enrollment-popup {
    right: 25px;
  }
  .enrollment-popup .enrollment-ad {
    width: 130px;
    height: 410px;
  }
}

@media (max-width: 992px) {
  .enrollment-popup {
    right: 20px;
    top: 25%;
  }
  .enrollment-popup .enrollment-ad {
    width: 120px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .enrollment-popup {
    right: 15px;
    top: 20%;
  }
  .enrollment-popup .enrollment-ad {
    width: 100px;
    height: 320px;
  }
  .enrollment-popup .enrollment-close {
    width: 24px;
    height: 24px;
    right: 4px;
    top: 4px;
  }
}
