@charset "UTF-8";

.mobile-page {
  display: none;
}

@media (max-width: 768px) {
  .pc-page {
    display: none !important;
  }

  .mobile-page {
    --m-dark-blue: #0f3677;
    --m-primary: #305ba2;
    --m-deep-blue: #234586;
    --m-pale-blue: #ecf1f9;
    --m-gold: #e0c48d;
    --m-text: #24272c;
    --m-muted: #7c8189;
    display: block;
    width: 100%;
    min-width: 0;
    overflow-x: hidden;
    background: #f5f7fa;
    color: var(--m-text);
    font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
  }

  .mobile-page *,
  .mobile-page *::before,
  .mobile-page *::after {
    box-sizing: border-box;
  }

  .mobile-page img {
    display: block;
    max-width: 100%;
  }

  .mobile-page button,
  .mobile-page input {
    font: inherit;
  }

  .mobile-page button,
  .mobile-page a {
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-page [hidden] {
    display: none !important;
  }

  .mobile-page .m-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .mobile-page .m-header {
    position: sticky;
    top: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 72px;
    padding: 10px 16px;
    background: url("../images/logo/logo_area_bg.png") center/cover no-repeat;
    box-shadow: 0 2px 10px rgba(15, 54, 119, 0.2);
  }

  .mobile-page .m-brand {
    display: block;
    width: min(76vw, 300px);
  }

  .mobile-page .m-brand img {
    width: 100%;
    height: auto;
  }

  .mobile-page .m-menu-toggle {
    display: flex;
    flex: 0 0 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    background: rgba(15, 54, 119, 0.78);
    cursor: pointer;
  }

  .mobile-page .m-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
  }

  .mobile-page .m-drawer-mask {
    position: fixed;
    inset: 0;
    z-index: 990;
    visibility: hidden;
    background: rgba(5, 18, 38, 0.58);
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-page .m-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    width: min(86vw, 340px);
    overflow-y: auto;
    background: #fff;
    box-shadow: -8px 0 28px rgba(15, 54, 119, 0.25);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    overscroll-behavior: contain;
  }

  .mobile-page.m-drawer-open .m-drawer-mask {
    visibility: visible;
    opacity: 1;
  }

  .mobile-page.m-drawer-open .m-drawer {
    transform: translateX(0);
  }

  .mobile-page .m-drawer-head {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 18px;
    background: var(--m-dark-blue);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
  }

  .mobile-page .m-drawer-close {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
    line-height: 34px;
    cursor: pointer;
  }

  .mobile-page .m-search {
    display: flex;
    margin: 16px;
    border: 1px solid #ccd6e6;
    border-radius: 5px;
    overflow: hidden;
  }

  .mobile-page .m-search input {
    min-width: 0;
    flex: 1;
    height: 42px;
    padding: 0 12px;
    border: 0;
    outline: 0;
    color: var(--m-text);
    background: #fff;
  }

  .mobile-page .m-search button {
    flex: 0 0 64px;
    border: 0;
    background: var(--m-primary);
    color: #fff;
    cursor: pointer;
  }

  .mobile-page .m-nav {
    border-top: 1px solid #e3e9f1;
  }

  .mobile-page .m-nav > a,
  .mobile-page .m-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 49px;
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid #e3e9f1;
    background: #fff;
    color: var(--m-deep-blue);
    font-size: 16px;
    text-align: left;
    cursor: pointer;
  }

  .mobile-page .m-nav > a::after {
    content: "›";
    color: #aab6c9;
    font-size: 22px;
  }

  .mobile-page .m-nav-arrow {
    position: relative;
    display: inline-flex;
    flex: 0 0 26px;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    margin-left: 10px;
    border-radius: 50%;
    background: rgba(48, 91, 162, 0.1);
    color: var(--m-primary);
    font-size: 0;
    line-height: 0;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  .mobile-page .m-nav-arrow::before {
    width: 7px;
    height: 7px;
    margin-top: -3px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: rotate(45deg);
    transition: transform 0.2s ease, margin 0.2s ease;
  }

  .mobile-page .m-nav-group.is-open > .m-submenu-toggle {
    background: #edf3fb;
    box-shadow: inset 4px 0 0 var(--m-primary);
    color: var(--m-dark-blue);
    font-weight: 700;
  }

  .mobile-page .m-submenu-toggle[aria-expanded="true"] .m-nav-arrow {
    background: var(--m-primary);
    color: #fff;
  }

  .mobile-page .m-submenu-toggle[aria-expanded="true"] .m-nav-arrow::before {
    margin-top: 3px;
    transform: rotate(225deg);
  }

  .mobile-page .m-submenu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 6px;
    padding: 7px 10px 10px;
    border-bottom: 1px solid #d6e0ee;
    background: var(--m-pale-blue);
  }

  .mobile-page .m-submenu a {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    min-height: 40px;
    padding: 8px 8px 8px 18px;
    border-bottom: 1px solid rgba(48, 91, 162, 0.1);
    color: #4f5e74;
    font-size: 13px;
  }

  .mobile-page .m-submenu a::before {
    position: absolute;
    top: 50%;
    left: 7px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--m-primary);
    content: "";
    transform: translateY(-50%);
  }

  .mobile-page .m-drawer-utils {
    display: flex;
    gap: 10px;
    padding: 18px 16px 28px;
  }

  .mobile-page .m-drawer-utils a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    border-radius: 4px;
    background: var(--m-dark-blue);
    color: #fff;
  }

  .mobile-page .m-drawer-utils img {
    width: 15px;
    height: 15px;
    object-fit: contain;
  }

  .mobile-page .m-main {
    width: 100%;
  }

  .mobile-page .m-hero {
    width: 100%;
    background: var(--m-dark-blue);
  }

  .mobile-page .m-hero-swiper,
  .mobile-page .m-hero-swiper .swiper-slide,
  .mobile-page .m-hero-swiper a {
    display: block;
    width: 100%;
    height: clamp(160px, 43vw, 330px);
  }

  .mobile-page .m-hero-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-page .m-hero-pagination,
  .mobile-page .m-news-pagination,
  .mobile-page .m-topic-pagination {
    position: absolute;
    bottom: 10px;
    z-index: 5;
    width: 100%;
    text-align: center;
  }

  .mobile-page .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: #fff;
    opacity: 0.75;
  }

  .mobile-page .swiper-pagination-bullet-active {
    width: 20px;
    border-radius: 4px;
    /* background: var(--m-gold); */
    opacity: 1;
  }

  .mobile-page .m-section {
    margin-top: 10px;
    padding: 18px 15px 20px;
    background: #fff;
  }

  .mobile-page .m-section-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
    margin-bottom: 14px;
    padding: 0 2px 8px 14px;
    border-bottom: 1px solid #dce4ef;
  }

  .mobile-page .m-section-title::before {
    position: absolute;
    top: 5px;
    bottom: 11px;
    left: 0;
    width: 4px;
    border-radius: 2px;
    background: var(--m-primary);
    content: "";
  }

  .mobile-page .m-section-title h2 {
    margin: 0;
    color: var(--m-deep-blue);
    font-size: 20px;
    font-weight: 700;
  }

  .mobile-page .m-section-title > a {
    color: var(--m-muted);
    font-size: 13px;
  }

  .mobile-page .m-news-swiper {
    width: 100%;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
  }

  .mobile-page .m-feature-card {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #dce4ef;
  }

  .mobile-page .m-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-page .m-feature-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 30px 80px 11px 12px;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-page .m-news-pagination {
    right: 7px;
    bottom: 9px;
    width: auto;
  }

  .mobile-page .m-news-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 3px;
  }

  .mobile-page .m-news-pagination .swiper-pagination-bullet-active {
    width: 16px;
  }

  .mobile-page .m-news-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-page .m-news-list li {
    border-bottom: 1px dashed #d7dde6;
  }

  .mobile-page .m-news-list li:last-child {
    border-bottom: 0;
  }

  .mobile-page .m-news-list a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 45px;
    padding-left: 13px;
    color: var(--m-text);
  }

  .mobile-page .m-news-list a::before {
    position: absolute;
    top: 50%;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--m-primary);
    content: "";
    transform: translateY(-50%);
  }

  .mobile-page .m-news-list span {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-page .m-news-list time {
    flex: 0 0 auto;
    color: var(--m-muted);
    font-size: 13px;
  }

  .mobile-page .m-tab-head {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: -2px 0 10px;
    border-bottom: 1px solid #dce4ef;
  }

  .mobile-page .m-tab-head button {
    min-width: 0;
    height: 46px;
    padding: 0 4px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: #fff;
    color: #67696b;
    font-size: 16px;
    cursor: pointer;
  }

  .mobile-page .m-tab-head button.is-active {
    border-bottom-color: var(--m-deep-blue);
    color: var(--m-deep-blue);
    font-weight: 700;
  }

  .mobile-page .m-more-link {
    display: block;
    width: 112px;
    margin: 14px auto 0;
    padding: 7px 12px;
    border: 1px solid #b8c7dc;
    border-radius: 18px;
    color: var(--m-primary);
    text-align: center;
  }

  .mobile-page .m-quick-card {
    position: relative;
    display: block;
    width: 100%;
    max-height: 240px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--m-pale-blue);
  }

  .mobile-page .m-quick-card img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
  }

  .mobile-page .m-quick-card span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px;
    background: rgba(15, 54, 119, 0.85);
    color: #fff;
    font-size: 17px;
    text-align: center;
  }

  .mobile-page .m-topic-swiper {
    padding-bottom: 30px;
    overflow: visible;
  }

  .mobile-page .m-topics {
    overflow: hidden;
  }

  .mobile-page .m-topic-swiper .swiper-slide a {
    position: relative;
    display: block;
    height: 390px;
    border-radius: 6px;
    overflow: hidden;
    background: #dce4ef;
  }

  .mobile-page .m-topic-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-page .m-topic-swiper .swiper-slide span {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 12px 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.56);
    color: #fff;
    font-size: 16px;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .mobile-page .m-topic-pagination {
    bottom: 2px;
  }

  .mobile-page .m-topic-pagination .swiper-pagination-bullet {
    background: #9eabc0;
    opacity: 0.65;
  }

  .mobile-page .m-topic-pagination .swiper-pagination-bullet-active {
    background: var(--m-primary);
    opacity: 1;
  }

  .mobile-page .m-landscape-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mobile-page .m-landscape-grid a {
    display: block;
    aspect-ratio: 295 / 206;
    border-radius: 5px;
    overflow: hidden;
    background: #dce4ef;
  }

  .mobile-page .m-landscape-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .mobile-page .m-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .mobile-page .m-link-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 8px;
    /* border: 1px solid #d6dfec; */
    border-radius: 5px;
    background: var(--m-pale-blue);
    color: #fff;
    text-align: center;
  }

  .mobile-page .m-link-grid a:nth-child(5) {
    grid-column: 1 / -1;
    background-color: rgb(229, 166, 37);
  }
  .mobile-page .m-link-grid a:nth-child(1) {
    background:rgb(18, 131, 225);
  }
  .mobile-page .m-link-grid a:nth-child(2) {
    background-color: rgb(193, 58, 72);
  }
  .mobile-page .m-link-grid a:nth-child(3) {
    background-color: rgb(0, 154, 156);
  }
  .mobile-page .m-link-grid a:nth-child(4) {
    background-color: rgb(68, 137, 202);
  }

  .mobile-page .m-footer {
    padding: 28px 18px 0;
    background: url("../images/footer/footer_bg.png") center/cover no-repeat;
    color: #fff;
  }

  .mobile-page .m-footer-logo {
    width: min(62vw, 250px);
    height: auto;
    margin: 0 auto 24px;
  }

  .mobile-page .m-contact-list {
    max-width: 560px;
    margin: 0 auto;
  }

  .mobile-page .m-contact-list p {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 0 0 13px;
    color: #fff;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

  .mobile-page .m-contact-list img {
    flex: 0 0 16px;
    width: 16px;
    max-height: 18px;
    margin-top: 2px;
    object-fit: contain;
  }

  .mobile-page .m-contact-list .m-contact-indent {
    padding-left: 25px;
  }

  .mobile-page .m-qr-codes {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(28px, 12vw, 70px);
    margin: 24px 0 28px;
  }

  .mobile-page .m-qr-codes figure {
    margin: 0;
    text-align: center;
  }

  .mobile-page .m-qr-codes img {
    width: 96px;
    height: 96px;
    padding: 4px;
    background: #fff;
  }

  .mobile-page .m-qr-codes figcaption {
    margin-top: 8px;
    color: #fff;
    font-size: 13px;
  }

  .mobile-page .m-footer-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 0 -18px;
    padding: 13px 16px;
    background: var(--m-deep-blue);
    color: #b8c4d8;
    font-size: 12px;
    text-align: center;
  }

  .mobile-page .m-footer-extra a {
    color: #b8c4d8;
    line-height: 1.6;
  }
}

@media (max-width: 360px) {
  .mobile-page .m-header {
    min-height: 64px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-page .m-brand {
    width: calc(100% - 58px);
  }

  .mobile-page .m-menu-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .mobile-page .m-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .mobile-page .m-link-grid {
    grid-template-columns: 1fr;
  }

  .mobile-page .m-link-grid a:nth-child(5) {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 768px) {
  .mobile-page .m-drawer,
  .mobile-page .m-drawer-mask,
  .mobile-page .m-nav-arrow {
    transition: none;
  }
}
