﻿@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700;900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #b928a4;
    --primary-dark: #9b1f89;
    --primary-light: #f9e7f7;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --line: #e8e8e8;
    --bg: #f7f7f7;
    --white: #ffffff;
    --header-h: 90px;
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

html,
body {
    font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 14px;
    background: var(--white);
}

body.nav-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

img {
    width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-main {
    padding-top: var(--header-h);
}

.section {
    padding: 72px 0;
    background: #fff;
}

.section.gray {
    background: linear-gradient(180deg, #fafafa 0%, #f4f4f4 100%);
}

.section-header {
    margin-bottom: 34px;
    text-align: center;
}

.section-header .en {
    display: block;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 32px;
    color: var(--text);
    line-height: 1.3;
    margin-top: 5px;
    font-weight: 700;
}

.section-header h2::after {
    content: "";
    width: 52px;
    height: 3px;
    background: var(--primary);
    display: block;
    margin: 14px auto 0;
}

.section-header p {
    max-width: 840px;
    margin: 14px auto 0;
    color: var(--text-light);
}

/* Header */
.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: var(--header-h);
    background: var(--white);
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
}

.logo {
    width: 158px;
    flex-shrink: 0;
}

.nav {
    flex: 1;
    margin-left: 58px;
}

.nav ul {
    display: flex;
    align-items: center;
    gap: 46px;
}

.nav li {
    position: relative;
    font-size: 16px;
    color: var(--text);
}

.nav li::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -31px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.25s ease;
}

.nav li:hover,
.nav li.active {
    color: var(--primary);
}

.nav li:hover::after,
.nav li.active::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #fff;
    transition: all 0.25s ease;
}

.header-right a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.navbtn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    margin-left: 12px;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-panel {
    width: min(78vw, 320px);
    height: 100%;
    background: #fff;
    margin-left: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 22px 20px;
}

.mobile-nav.open .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text);
    font-weight: 700;
    font-size: 18px;
}

.mobile-nav-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #dddddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.mobile-nav ul li {
    border-bottom: 1px solid #eeeeee;
}

.mobile-nav ul li a {
    display: block;
    padding: 12px 4px;
    color: #444;
}

.mobile-nav ul li.active a,
.mobile-nav ul li a:hover {
    color: var(--primary);
}

/* Hero */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-track {
    display: flex;
    transition: transform 0.5s ease;
}

.hero-slide {
    min-width: 100%;
    height: min(720px, calc(100vh - var(--header-h)));
    min-height: 420px;
    position: relative;
}

.hero-slide img {
    height: 100%;
    object-fit: cover;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: min(90%, 860px);
    z-index: 2;
}

.hero-content h1,
.hero-content h2 {
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.25;
    font-weight: 700;
}

.hero-content p {
    margin-top: 14px;
    font-size: clamp(15px, 1.8vw, 22px);
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
}

.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-dot {
    width: 24px;
    height: 4px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dot.active {
    background: #fff;
}

/* Home */
.quick-entry {
    background: #fff;
    margin-top: -56px;
    position: relative;
    z-index: 8;
}

.quick-entry ul {
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.quick-entry li {
    border-right: 1px solid #f1f1f1;
}

.quick-entry li:last-child {
    border-right: none;
}

.quick-entry a {
    display: block;
    text-align: center;
    padding: 30px 14px;
    transition: all 0.25s ease;
}

.quick-entry .icon {
    width: 56px;
    margin: 0 auto;
}

.quick-entry p {
    margin-top: 10px;
    color: #444;
    font-size: 16px;
}

.quick-entry .desc {
    display: block;
    margin-top: 8px;
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    min-height: 2.8em;
}

.quick-entry a:hover {
    background: #fbfbfb;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.advantage-item {
    display: flex;
    background: #fff;
    border: 1px solid #f1f1f1;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.advantage-item .img {
    width: 210px;
    flex-shrink: 0;
}

.advantage-item .img img {
    height: 100%;
    object-fit: cover;
}

.advantage-item .text {
    padding: 22px;
}

.advantage-item h3 {
    color: #222;
    font-size: 20px;
    line-height: 1.3;
}

.advantage-item p {
    margin-top: 10px;
    color: var(--text-light);
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.business-card {
    background: #fff;
    border: 1px solid #ebebeb;
    transition: all 0.25s ease;
}

.business-card .cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 40px;
}

.business-card .cover img {
    height: 100%;
    object-fit: cover;
}

.business-card .text {
    padding: 20px;
}

.business-card h3 {
    color: #222;
    font-size: 20px;
    line-height: 1.3;
}

.business-card p {
    margin-top: 8px;
    color: #666;
    min-height: 78px;
}

.business-card .more {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-weight: 500;
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.stats {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8f2386 0%, #b928a4 48%, #d04fbe 100%);
    color: #fff;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 45%), radial-gradient(circle at 80% 0%, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 40%);
    opacity: 0.28;
}

.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(88, 12, 77, 0.28) 100%);
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stats .section-header h2,
.stats .section-header .en,
.stats .section-header p {
    color: #fff;
}

.stats .section-header h2::after {
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stats-item {
    text-align: center;
    padding: 20px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.stats-item .icon {
    font-size: 38px;
    color: #fff;
}

.stats-item .num {
    display: block;
    margin-top: 8px;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.stats-item .label {
    margin-top: 8px;
    display: block;
    opacity: 0.98;
}

.network {
    background: #fff;
}

.network-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.network-tab {
    border: 1px solid #ddd;
    background: #fff;
    color: #666;
    min-width: 124px;
    padding: 10px 18px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}

.network-tab span {
    display: block;
    font-size: 24px;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 3px;
}

.network-tab.active,
.network-tab:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.network-tab.active span,
.network-tab:hover span {
    color: #fff;
}

.network-panel {
    display: none;
    margin: 26px auto 0;
    max-width: 980px;
}

.network-panel.active {
    display: block;
}

.network-cities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.network-city {
    border: 1px solid #dedede;
    background: #fff;
    color: #555;
    padding: 7px 14px;
    border-radius: 6px;
    min-width: 58px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.network-city.active,
.network-city:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff7fe;
}

.network-details {
    width: min(903px, 100%);
    margin: 18px auto 0;
    border: 1px solid #ededed;
    background: #fafafa;
    padding: 18px 20px;
    min-height: 96px;
    border-left: 3px solid var(--primary);
}

.network-detail {
    display: none;
}

.network-detail.active {
    display: block;
}

.network-tab-label {
    margin-left: 4px;
    font-weight: 500;
}

.network-detail strong {
    display: block;
    margin-bottom: 8px;
    color: #222;
    font-size: 18px;
}

.network-detail p + p {
    margin-top: 8px;
    color: #666;
}

.network-contact-line {
    font-weight: 500;
}

.news-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.news-preview-card {
    border: 1px solid #ededed;
    background: #fff;
    transition: all 0.25s ease;
    display: block;
}

.news-preview-card .cover {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-preview-card .cover img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.news-preview-card .text {
    padding: 18px;
}

.news-preview-card h3 {
    color: #222;
    font-size: 19px;
    line-height: 1.45;
    min-height: 56px;
}

.news-preview-summary {
    margin-top: 8px;
    color: #666;
    min-height: 76px;
    overflow: hidden;
}

.news-preview-summary img {
    display: inline-block;
    max-width: 120px;
    max-height: 72px;
    width: auto;
    height: auto;
    margin: 6px 6px 0 0;
    border-radius: 6px;
}

.news-preview-card .date {
    margin-top: 8px;
    display: block;
    color: var(--text-muted);
    font-size: 13px;
}

.news-preview-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.news-preview-card:hover .cover img {
    transform: scale(1.06);
}

.more-btn {
    text-align: center;
    margin-top: 34px;
}

.more-btn a {
    display: inline-block;
    min-width: 190px;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 28px;
    font-size: 15px;
    transition: all 0.25s ease;
}

.more-btn a:hover {
    background: var(--primary);
    color: #fff;
}

/* Page Banner */
.page-banner {
    height: 310px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.page-banner img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.38);
}

.page-banner .inner {
    position: relative;
    z-index: 2;
}

.page-banner h1 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.2;
}

.page-banner p {
    margin-top: 10px;
    font-size: 18px;
}

/* About */
.about-intro {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-intro p {
    margin-top: 14px;
}

.about-feature-grid {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-feature-item {
    border: 1px solid #ececec;
    background: #fff;
    padding: 26px 20px;
    text-align: center;
}

.about-feature-item .icon {
    width: 52px;
    margin: 0 auto;
}

.about-feature-item h3 {
    margin-top: 10px;
    color: #222;
    font-size: 20px;
}

.about-feature-item p {
    margin-top: 8px;
}

.timeline {
    background: var(--bg);
}

.timeline-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.timeline-item {
    background: #fff;
    padding: 24px 18px;
    border-top: 4px solid var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.timeline-item .year {
    color: var(--primary);
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.timeline-item h3 {
    margin-top: 12px;
    font-size: 18px;
    color: #222;
}

.timeline-item p {
    margin-top: 8px;
}

.honor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.honor-item {
    border: 1px solid #ececec;
    padding: 16px;
    background: #fff;
    text-align: center;
}

.honor-item .badge {
    width: 54px;
    height: 54px;
    margin: 0 auto;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.honor-item p {
    margin-top: 10px;
    color: #444;
}

/* Service */
.service-menu {
    background: #f5f5f5;
    border-bottom: 1px solid #eaeaea;
}

.service-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px 0;
}

.service-menu li {
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    transition: all 0.25s ease;
}

.service-menu li .service-tab {
    border: none;
    background: transparent;
    color: inherit;
    font: inherit;
    padding: 8px 22px;
    cursor: pointer;
}

.service-menu li.active {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
}

.service-menu li:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.service-menu li.active:hover {
    color: #fff;
}

.service-panel {
    display: none;
    animation: serviceFadeIn 0.25s ease;
}

.service-panel.active {
    display: block;
}

@keyframes serviceFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-intro {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    white-space: pre-line;
}

.service-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    border: 1px solid #ececec;
    background: #fff;
    padding: 24px;
    display: flex;
    gap: 16px;
}

.service-card .icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-card .icon img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    color: #222;
    font-size: 22px;
    line-height: 1.3;
}

.service-card p {
    margin-top: 8px;
    color: #666;
    white-space: pre-line;
}

.service-capability {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-capability .cap {
    border: 1px solid #ececec;
    background: #fff;
    padding: 20px;
}

.service-capability .cap h4 {
    color: #222;
    font-size: 18px;
    line-height: 1.3;
}

.service-capability .cap p {
    margin-top: 8px;
}

/* News list */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-item {
    border: 1px solid #ececec;
    background: #fff;
    display: flex;
    gap: 22px;
    padding: 18px;
    transition: all 0.25s ease;
}

.news-item .cover {
    width: 310px;
    flex-shrink: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-item .cover img {
    height: 100%;
    object-fit: cover;
}

.news-item .text {
    flex: 1;
}

.news-item h3 {
    color: #222;
    font-size: 24px;
    line-height: 1.35;
}

.news-summary {
    margin-top: 10px;
    color: #666;
    overflow: hidden;
}

.news-summary img {
    display: inline-block;
    max-width: 160px;
    max-height: 96px;
    width: auto;
    height: auto;
    margin: 8px 8px 0 0;
    border-radius: 8px;
}

.news-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.news-detail {
    border: 1px solid #ececec;
    background: #fff;
    padding: 36px;
}

.news-detail-header {
    text-align: center;
    padding-bottom: 22px;
    border-bottom: 1px solid #eee;
}

.news-detail-header h1 {
    color: #222;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.35;
}

.news-detail-header .meta {
    margin-top: 10px;
    color: #888;
}

.news-detail-cover {
    margin-top: 22px;
    max-height: 480px;
    overflow: hidden;
}

.news-detail-cover img {
    height: 100%;
    object-fit: cover;
}

.news-detail-content {
    margin-top: 26px;
    color: #555;
    font-size: 16px;
    line-height: 1.95;
    white-space: pre-wrap;
    word-break: break-word;
}

.news-detail-content img {
    display: block;
    max-width: 100%;
    margin: 18px auto;
    border-radius: 10px;
    object-fit: contain;
}

.news-back {
    margin-top: 30px;
    text-align: center;
}

.news-back a {
    display: inline-block;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 26px;
    transition: all 0.25s ease;
}

.news-back a:hover {
    background: var(--primary);
    color: #fff;
}
/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.branch-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.branch-item {
    border: 1px solid #ececec;
    background: #fff;
    padding: 16px;
}

.branch-item h3 {
    color: #222;
    font-size: 18px;
    line-height: 1.3;
}

.branch-item p {
    margin-top: 8px;
    color: #666;
    white-space: pre-line;
}

.branch-item .branch-meta {
    color: #999;
}

.contact-panel {
    border: 1px solid #ececec;
    background: #fff;
    padding: 24px;
}

.contact-panel h3 {
    color: #222;
    font-size: 22px;
}

.contact-info-list {
    margin-top: 16px;
}

.contact-info-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.contact-info-list i {
    width: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.contact-info-list span {
    white-space: pre-line;
}

.form-block {
    margin-top: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
}

.form-grid textarea {
    min-height: 112px;
}

.form-grid input:focus,
.form-grid textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-primary {
    display: inline-block;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
    padding: 10px 28px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.25s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Footer */
.footer {
    margin-top: 70px;
    background: #454545;
    color: #fff;
}

.footer-top {
    padding: 52px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.4fr 0.7fr;
    gap: 36px;
}

.footer h3 {
    font-size: 20px;
    line-height: 1.3;
}

.footer-contact {
    margin-top: 18px;
}

.footer-contact li {
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #f8b9ee;
    margin-top: 5px;
}

.footer-form {
    margin-top: 18px;
}

.footer-form .form-grid input,
.footer-form .form-grid textarea {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
}

.footer-form .form-grid input::placeholder,
.footer-form .form-grid textarea::placeholder {
    color: rgba(255, 255, 255, 0.84);
}

.footer-form .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.footer-qrcode {
    margin-top: 18px;
    text-align: center;
}

.footer-qrcode .code {
    width: 112px;
    margin: 0 auto;
    background: #fff;
    padding: 5px;
}

.footer-bottom {
    background: #373737;
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #fff;
}

/* Utility */
.empty-box {
    border: 1px dashed #d5d5d5;
    background: #fafafa;
    padding: 28px;
    text-align: center;
    color: #888;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav {
        margin-left: 36px;
    }

    .nav ul {
        gap: 26px;
    }

    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-capability {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid .footer-follow {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    :root {
        --header-h: 78px;
    }

    .header .container {
        justify-content: space-between;
    }

    .nav,
    .header-right {
        display: none;
    }

    .navbtn {
        display: inline-flex;
    }

    .quick-entry {
        margin-top: 0;
    }

    .quick-entry ul,
    .advantage-grid,
    .stats-grid,
    .news-preview-grid,
    .about-feature-grid,
    .timeline-list,
    .honor-grid,
    .service-grid,
    .branch-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .news-item {
        flex-direction: column;
    }

    .news-item .cover {
        width: 100%;
    }

    .page-banner {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 52px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .hero-slide {
        min-height: 330px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .quick-entry ul,
    .advantage-grid,
    .stats-grid,
    .news-preview-grid,
    .about-feature-grid,
    .timeline-list,
    .honor-grid,
    .service-grid,
    .service-capability,
    .branch-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .advantage-item {
        flex-direction: column;
    }

    .advantage-item .img {
        width: 100%;
        height: 180px;
    }

    .business-card h3,
    .news-preview-card h3,
    .service-card h3 {
        font-size: 20px;
    }

    .service-card {
        flex-direction: column;
    }

    .news-detail {
        padding: 24px 18px;
    }

    .news-detail-content {
        font-size: 15px;
    }

    .footer {
        margin-top: 52px;
    }

    .footer-top {
        padding: 42px 0;
    }
}







/* Network map layer */
.network-map {
    position: relative;
    width: min(903px, 100%);
    aspect-ratio: 903 / 621;
    margin: 22px auto 12px;
    background: url('/images/ref56/templates/default/images/map_bg.jpg') no-repeat center center;
    background-size: contain;
}

.network-marker {
    position: absolute;
    width: 16px;
    height: 16px;
    border: none;
    border-radius: 50%;
    background: #cc4fbb;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 0 0 2px #ffffff, 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.network-marker:hover {
    transform: translate(-50%, -50%) scale(1.12);
}

.network-marker.active {
    background: #4d60ff;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 8px rgba(77, 96, 255, 0.28), 0 4px 12px rgba(0, 0, 0, 0.22);
    z-index: 2;
}

@media (max-width: 768px) {
    .network-map {
        margin-top: 14px;
    }

    .network-marker {
        width: 13px;
        height: 13px;
    }
}


@media (max-width: 992px) {
    .network-panel {
        max-width: 100%;
    }

    .network-cities {
        width: 100%;
        border-radius: 14px;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .network-cities {
        padding: 10px;
        gap: 8px;
    }

    .network-city {
        padding: 6px 10px;
        font-size: 13px;
    }

    .network-details {
        padding: 14px 12px;
    }
}
