/* ====== CSS Variables ====== */
:root {
    --color-primary:        #081830;
    --color-primary-light:  #0f2740;
    --color-accent:         #c9a227;
    --color-accent-light:   #d9b94a;
    --color-text:           #1f2937;
    --color-text-secondary: #4b5563;
    --color-text-muted:     #9ca3af;
    --color-bg:             #ffffff;
    --color-bg-soft:        #f5f7fa;
    --color-bg-section:     #eef1f5;
    --color-border:         #e5e7eb;
    --color-border-light:   #f3f4f6;
    --color-white:          #ffffff;
    --color-overlay:        rgba(8, 24, 48, 0.78);
    --font-serif:           "Noto Serif SC", "Source Han Serif CN", "Songti SC", serif;
    --font-sans:            "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    --font-en:              "DIN Alternate", "Helvetica Neue", Arial, sans-serif;
    --ease-out:             cubic-bezier(0.22, 1, 0.36, 1);
    --header-height:        80px;
    --header-height-m:      64px;
}

/* ====== 基础样式 ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--color-text); line-height: 1.7; background: var(--color-bg); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.main-content { min-height: 60vh; }

/* ====== 按钮 ====== */
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    font-weight: 500;
    letter-spacing: 0.04em;
    border: 1px solid var(--color-primary);
}
.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(8, 24, 48, 0.18);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    font-weight: 500;
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.btn-outline .icon-arrow {
    font-size: 12px;
    font-style: normal;
    transition: transform 0.3s ease;
}
.btn-outline:hover .icon-arrow { transform: translateX(4px); }

/* ====== 页头 ====== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.35s var(--ease-out);
    background: transparent;
}
.site-header.scrolled,
.site-header.inner-page {
    background: rgba(8, 24, 48, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}
.logo { display: flex; align-items: center; }
.logo img, .logo svg { height: 44px; width: auto; }
.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}
.main-nav .nav-item {
    display: block;
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.25s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.main-nav .nav-item::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.25s ease, left 0.25s ease;
}
.main-nav .nav-item:hover,
.main-nav .nav-item.active {
    color: var(--color-white);
}
.main-nav .nav-item:hover::after,
.main-nav .nav-item.active::after {
    left: 16px;
    width: calc(100% - 32px);
}
.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}
.mobile-menu-toggle:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    position: absolute;
    left: 10px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}
.mobile-menu-toggle span:nth-child(1) { top: 10px; }
.mobile-menu-toggle span:nth-child(2) { top: 21px; }
.mobile-menu-toggle span:nth-child(3) { top: 32px; }
.mobile-menu-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ====== 页脚 ====== */
.site-footer { background: var(--color-primary); color: var(--color-white); padding: 60px 0 28px; }
.footer-content { display: flex; justify-content: center; text-align: center; margin-bottom: 40px; }
.footer-info h3 { font-size: 22px; margin-bottom: 20px; font-weight: 600; letter-spacing: 0.04em; font-family: var(--font-serif); }
.footer-contact { color: rgba(255, 255, 255, 0.7); line-height: 1.8; display: flex; justify-content: center; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-contact a { color: var(--color-white); transition: color 0.25s ease; }
.footer-contact a:hover { color: var(--color-accent); }
.footer-divider { color: rgba(255, 255, 255, 0.25); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; text-align: center; color: rgba(255, 255, 255, 0.45); font-size: 13px; }

/* ====== 动画 ====== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
.animate-item { opacity: 0; animation: fadeInUp 0.8s var(--ease-out) forwards; }
.fade-in { animation: fadeIn 1s var(--ease-out) forwards; }
.slide-in { animation: slideInUp 0.8s var(--ease-out) forwards; }
.scale-in { animation: scaleIn 0.7s var(--ease-out) forwards; }

/* ====== 通用标题 ====== */
.section-header { margin-bottom: 40px; }
.section-header.center { text-align: center; }
.section-label {
    display: inline-block;
    font-size: 12px;
    color: var(--color-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}
.section-title {
    font-size: 36px;
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.section-title span { position: relative; display: inline-block; padding-bottom: 12px; }
.section-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}
.section-header.center .section-title span::after { left: 50%; transform: translateX(-50%); }
.section-desc {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    max-width: 760px;
}
.section-desc-sm { font-size: 14px; line-height: 1.7; max-width: 680px; }
.section-desc-xs { font-size: 13px; line-height: 1.75; max-width: 640px; }
.section-header.center .section-desc { margin: 0 auto; }

/* ====== 通用页面头部 ====== */
.head_box { position: relative; }
.head_img { height: 360px; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; }
.head_img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 24, 48, 0.88), rgba(8, 24, 48, 0.55));
}
.head_title {
    position: absolute;
    left: 50%;
    top: 58%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: var(--color-white);
    font-family: var(--font-serif);
    letter-spacing: 0.08em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
    z-index: 2;
    text-align: center;
}
.head_breadcrumb {
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    z-index: 2;
    letter-spacing: 0.05em;
}
.head_breadcrumb a { color: rgba(255, 255, 255, 0.9); }
.head_breadcrumb a:hover { color: var(--color-accent); }
.head_breadcrumb .sep { margin: 0 10px; }

/* ====== 通用二级导航 ====== */
.nav_box { display: flex; width: 100%; justify-content: center; background-color: var(--color-bg-soft); align-items: center; border-bottom: 1px solid var(--color-border-light); }
.nav_item { padding: 0 70px; }
.nav_content { display: flex; flex-direction: column; align-items: center; transition: border-color 0.25s ease, color 0.25s ease; border-bottom: 2px solid transparent; padding: 24px 0; position: relative; overflow: hidden; color: var(--color-text-secondary); }
.nav_content.selected { border-bottom-color: var(--color-accent) !important; color: var(--color-primary) !important; }
.nav_content:hover { border-bottom-color: var(--color-accent) !important; color: var(--color-primary) !important; }
.nav_ieon { font-size: 28px; transition: color 0.25s ease; margin-bottom: 6px; }
.nav_title { font-size: 15px; font-weight: 550; transition: color 0.25s ease; white-space: nowrap; }

/* ====== 通用内容区 ====== */
.box { display: flex; justify-content: center; }
.box_content { width: 1100px; }
.chengquan_tltle { font-size: 24px; color: var(--color-primary); font-family: var(--font-serif); font-weight: 600; letter-spacing: 0.04em; }
.chengquan_tltle span { padding-bottom: 12px; display: inline-block; border-bottom: 3px solid var(--color-accent); }
.section-title-line { width: 60px; height: 3px; background: var(--color-accent); margin-top: 12px; }
.chengqian_introduce { margin-top: 24px; font-size: 16px; line-height: 1.9; color: var(--color-text-secondary); }
.chengqian_introduce p { margin-bottom: 18px; }

/* ====== 首页 ====== */
.home-page { width: 100%; padding-top: 0; }
.home-hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.home-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 24, 48, 0.9) 0%, rgba(8, 24, 48, 0.65) 50%, rgba(8, 24, 48, 0.4) 100%);
    z-index: 1;
}
.home-hero .carousel {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slowZoom 20s linear infinite alternate;
}
@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}
.home-hero .slogan {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 0 24px;
}
.home-hero .slogan1 {
    margin-bottom: 20px;
    font-size: clamp(30px, 8vw, 64px);
    color: var(--color-white);
    font-family: var(--font-serif);
    letter-spacing: 0.12em;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 0.3s forwards;
}
.home-hero .slogan2 {
    margin-top: 8px;
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.08em;
    max-width: 760px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 0.6s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-en);
    cursor: default;
}
.hero-scroll span:first-child {
    display: none;
}
.hero-scroll span:last-child {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.05), inset 0 0 0 2px rgba(255,255,255,0.05);
}
.hero-scroll span:last-child::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
    animation: scroll-wheel 2.0s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.hero-scroll:hover { color: var(--color-white); }
.hero-scroll:hover span:first-child { color: var(--color-white); }
.hero-scroll:hover span:last-child {
    border-color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.08), inset 0 0 0 2px rgba(255,255,255,0.1);
}
@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    60% { opacity: 0.3; transform: translateX(-50%) translateY(16px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.lianxi_box {
    position: absolute;
    top: 110px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    padding: 12px 24px;
    display: none;
    align-items: center;
    z-index: 2;
}
.icon-dianhua { color: var(--color-accent); margin-right: 10px; font-size: 18px; }
.lainxi_tel { color: var(--color-white); font-size: 18px; font-weight: 600; transition: color 0.25s ease; letter-spacing: 0.03em; }
.lianxi_box:hover .lainxi_tel { color: var(--color-accent); }

.hero-bottom-bar { display: none; }

.hero-cta-bar {
    margin-top: 150px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.35s var(--ease-out);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out) 0.9s forwards;
}
.hero-cta-bar .icon-dianhua { color: var(--color-accent); margin-right: 0; font-size: 20px; }
.hero-cta-label { white-space: nowrap; }
.hero-cta-divider { width: 1px; height: 20px; background: rgba(255, 255, 255, 0.25); }
.hero-cta-bar strong { font-size: 22px; font-weight: 700; letter-spacing: 0.03em; font-family: var(--font-en); color: var(--color-white); }
.hero-cta-bar:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-3px);
}

@media screen and (min-width: 1260px) {
    .home-hero .slogan { top: 44%; }
}

.m_content { display: block; }
.content_box { width: 100%; }

.lingyu, .tuandui, .dongtai { background-color: var(--color-bg-soft); }
.lingyu { padding: 70px 0 36px; }
.tuandui { padding: 36px 0 70px; }
.dongtai { padding: 60px 0; }
.lingyu_brief { color: var(--color-text-secondary); font-size: 16px; line-height: 1.9; margin-top: 24px; max-width: 900px; }

.lingyu_box { display: flex; flex-wrap: wrap; margin: 40px -12px 0; }
.lingyu_item { width: 25%; padding: 12px; }
.lingyu_content {
    background: var(--color-bg);
    border-radius: 4px;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s var(--ease-out);
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(8, 24, 48, 0.05);
    height: 100%;
}
.lingyu_content:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(8, 24, 48, 0.12); border-color: var(--color-accent); }
.lingyu_item_img { width: 54px; height: 54px; margin-bottom: 18px; filter: grayscale(0.3) brightness(0.95); transition: all 0.35s var(--ease-out); }
.lingyu_content:hover .lingyu_item_img { filter: grayscale(0.3) brightness(0.95); transform: scale(1.08); }
.lingyu_item_title { font-size: 16px; font-weight: 600; color: var(--color-primary); }

.team-container { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.lawyer-card {
    display: flex;
    background: var(--color-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(8, 24, 48, 0.06);
    border: 1px solid var(--color-border);
    transition: all 0.35s var(--ease-out);
    cursor: pointer;
}
.lawyer-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(8, 24, 48, 0.14); border-color: var(--color-accent); }
.lawyer-photo { width: 170px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; flex-shrink: 0; }
.lawyer-photo img { width: 100%; vertical-align: bottom; }
.lawyer-info { flex: 1; padding: 28px 40px 20px; display: flex; flex-direction: column; justify-content: space-between; }
.lawyer-basic { margin-bottom: 8px; }
.lawyer-name { font-size: 24px; font-weight: 700; margin-bottom: 10px; color: var(--color-primary); font-family: var(--font-serif); }
.lawyer-position { font-size: 15px; color: var(--color-accent); margin-bottom: 6px; font-weight: 500; }
.lawyer-education { font-size: 14px; color: var(--color-text-muted); margin-bottom: 16px; }
.lawyer-divider { height: 1px; background: linear-gradient(90deg, var(--color-accent), transparent); margin: 10px 0; }
.lawyer-business { font-size: 15px; line-height: 1.8; color: var(--color-text-secondary); margin-bottom: 18px; }

.dongtai_box { display: flex; flex-direction: column; gap: 12px; margin-top: 32px; }
.dongtai_item { width: 100%; }
.dongtai_item_content { background: var(--color-bg); border-radius: 4px; overflow: hidden; transition: all 0.35s var(--ease-out); border: 1px solid var(--color-border); display: flex; align-items: stretch; }
.dongtai_item_content:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(8, 24, 48, 0.1); border-color: var(--color-accent); }
.dongtai_thumb { width: 160px; flex-shrink: 0; background: var(--color-bg-section); overflow: hidden; }
.dongtai_thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dongtai_title { font-size: 16px; font-weight: 500; line-height: 1.6; color: var(--color-text); padding: 18px 24px; margin: 0; background: var(--color-bg); flex: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; transition: color 0.25s ease; }
.dongtai_item_content:hover .dongtai_title { color: var(--color-primary); }
.dongtai_title_text { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.dongtai_time { font-size: 13px; color: var(--color-text-muted); white-space: nowrap; font-family: var(--font-en); }
.dongtai_more { text-align: left; margin-top: 24px; }

/* ====== 关于我们 ====== */
.page-about { width: 100%; }
.page-about .box { margin: 100px 0; }

.honor-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.honor-item {
    display: flex;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(8, 24, 48, 0.05);
    transition: all 0.35s var(--ease-out);
    border: 1px solid var(--color-border);
}
.honor-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(8, 24, 48, 0.1); border-color: var(--color-accent); }
.honor-icon { font-size: 36px; margin-right: 24px; color: var(--color-accent); }
.honor-content h4 { font-size: 18px; color: var(--color-primary); margin: 0 0 8px; font-weight: 600; font-family: var(--font-serif); }
.honor-content p { font-size: 15px; color: var(--color-text-secondary); margin: 0; line-height: 1.7; }

/* ====== 服务领域 ====== */
.page-area { width: 100%; }
.page-area .box { padding: 40px 0 100px; }
.page-area .content { width: 1200px; display: flex; flex-wrap: wrap; }
.item_box { width: 33.3%; margin-top: 50px; padding-right: 60px; cursor: pointer; }
.item_content { transition: all 0.35s var(--ease-out); padding: 24px; border-radius: 4px; border: 1px solid transparent; }
.item_content:hover { transform: translateY(-8px); background: var(--color-bg); border-color: var(--color-border); box-shadow: 0 12px 32px rgba(8, 24, 48, 0.08); }
.item_content:hover .item_title { color: var(--color-primary); }
.item_content:hover .item_img { filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(0.85); }
.item_img { width: 60px; height: 60px; filter: grayscale(0.3) brightness(0.95); transition: filter 0.35s ease; }
.item_title { font-size: 22px; line-height: 1.5; padding: 18px 0 12px; border-bottom: 1px solid var(--color-border); transition: color 0.25s ease; color: var(--color-primary); font-family: var(--font-serif); }
.item_miaoshu { color: var(--color-text-secondary); font-size: 15px; line-height: 1.8; margin: 16px 0 20px; }

/* ====== 律师团队页 ====== */
.team-page { width: 100%; }
.team-header { position: relative; width: 100%; overflow: hidden; height: 420px; }
.team-header-bg { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 24, 48, 0.88), rgba(8, 24, 48, 0.55));
}
.team-header-content {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: var(--color-white);
}
.team-header-title { font-size: clamp(28px, 7vw, 52px); font-family: var(--font-serif); letter-spacing: 0.08em; margin-bottom: 16px; text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); white-space: nowrap; }
.team-header-subtitle { font-size: clamp(11px, 3vw, 16px); color: rgba(255, 255, 255, 0.8); letter-spacing: 0.05em; white-space: nowrap; }
.team-intro { background: var(--color-bg-section); padding: 80px 0; position: relative; overflow: hidden; }
.team-intro::before {
    content: '';
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    background: url('../img/cqlog01.png') no-repeat center/contain;
    opacity: 0.08;
}
.team-intro-content { position: relative; z-index: 1; text-align: center; max-width: 860px; margin: 0 auto; }
.team-slogan { font-size: 26px; color: var(--color-primary); font-family: var(--font-serif); font-weight: 700; letter-spacing: 2px; margin-bottom: 20px; }
.team-description { font-size: 17px; color: var(--color-text-secondary); line-height: 1.9; }
.team-section { width: 100%; max-width: 1200px; margin: 80px auto 120px; padding: 0 24px; }
.team-section .team-container { width: 100%; }
.hover-effect { transition: all 0.35s var(--ease-out); }
.hover-effect:hover { background-color: #f8fafc; border-color: var(--color-accent); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(8, 24, 48, 0.06); }

/* ====== 律师详情 ====== */
.team-detail-page { padding-bottom: 100px; }
.team-detail-header { background: linear-gradient(135deg, #e8eef5 0%, #dde5ee 100%); padding: 120px 0 80px; margin-top: var(--header-height); }
.team-detail-header .container { display: flex; align-items: center; gap: 60px; }
.team-detail-photo { width: 260px; height: 340px; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; border-radius: 4px; flex-shrink: 0; box-shadow: 0 16px 48px rgba(8, 24, 48, 0.18); }
.team-detail-photo img { width: 100%; vertical-align: bottom; }
.team-detail-info { flex: 1; }
.team-detail-name { font-size: 44px; margin-bottom: 20px; color: var(--color-primary); font-family: var(--font-serif); font-weight: 700; }
.team-detail-position { font-size: 20px; color: var(--color-accent); margin-bottom: 12px; font-weight: 500; }
.team-detail-education { font-size: 17px; color: var(--color-text-secondary); margin-bottom: 28px; }
.team-detail-contact { display: flex; flex-wrap: wrap; gap: 20px; }
.contact-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--color-white);
    border-radius: 4px;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 14px;
    transition: all 0.25s ease;
}
.contact-chip:hover { border-color: var(--color-accent); color: var(--color-primary); transform: translateY(-2px); }

.team-detail-content { width: 100%; max-width: 1000px; margin: 0 auto; padding: 80px 24px 0; }
.detail-section { margin-bottom: 60px; }
.detail-section-title {
    font-size: 24px;
    color: var(--color-primary);
    font-family: var(--font-serif);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}
.detail-text { font-size: 16px; line-height: 1.9; color: var(--color-text-secondary); }
.detail-text p { margin-bottom: 16px; }
.detail-text ul { margin-left: 20px; margin-bottom: 16px; }
.detail-text li { margin-bottom: 8px; }

/* 时间线 */
.experience-timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--color-border); margin-left: 8px; }
.experience-item { position: relative; margin-bottom: 24px; }
.experience-item:last-child { margin-bottom: 0; }
.experience-dot { position: absolute; left: -37px; top: 6px; width: 16px; height: 16px; background-color: var(--color-accent); border-radius: 50%; border: 3px solid var(--color-white); box-shadow: 0 0 0 2px var(--color-accent); }
.experience-time { font-weight: 700; color: var(--color-primary); font-size: 16px; margin: 0 0 6px 0; font-family: var(--font-en); }
.experience-details { color: var(--color-text-secondary); margin: 0; line-height: 1.7; }

/* 案例卡片 */
.cases-container { display: flex; flex-direction: column; gap: 28px; }
.case-category { background: var(--color-bg-soft); border-radius: 4px; padding: 28px; border: 1px solid var(--color-border); transition: all 0.35s var(--ease-out); }
.case-category:hover { box-shadow: 0 8px 24px rgba(8, 24, 48, 0.08); transform: translateY(-3px); }
.category-header { display: flex; align-items: center; margin-bottom: 20px; gap: 14px; }
.category-icon { width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center; background: var(--color-primary); color: var(--color-white); font-size: 20px; }
.category-header h3 { font-size: 18px; font-weight: 700; color: var(--color-primary); margin: 0; font-family: var(--font-serif); }
.case-items { display: flex; flex-direction: column; gap: 12px; }
.case-item { padding: 16px 20px; background: var(--color-white); border-radius: 4px; border-left: 3px solid var(--color-accent); transition: all 0.25s ease; }
.case-item:hover { box-shadow: 0 4px 16px rgba(8, 24, 48, 0.06); transform: translateX(4px); }
.case-item p { margin: 0; line-height: 1.7; color: var(--color-text-secondary); }
.highlight { background: linear-gradient(120deg, #f6e8a5 0%, #f9d29d 100%); color: var(--color-primary); padding: 2px 8px; border-radius: 2px; font-weight: 600; }

/* 执业理念 */
.philosophy-quote { position: relative; background: var(--color-bg-soft); padding: 36px 40px; border-radius: 4px; margin: 0; overflow: hidden; border-left: 4px solid var(--color-accent); }
.philosophy-quote::before {
    content: '“';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 120px;
    color: rgba(201, 162, 39, 0.12);
    line-height: 1;
    z-index: 1;
    font-family: 'Georgia', serif;
}
.philosophy-quote p { position: relative; z-index: 2; margin: 0; font-size: 17px; line-height: 1.9; color: var(--color-text); font-style: italic; }

/* 公司标签 */
.company-grid { display: flex; flex-wrap: wrap; gap: 10px; line-height: 1.6; }
.company-item { background: var(--color-white); padding: 8px 14px; border-radius: 2px; border: 1px solid var(--color-border); font-size: 14px; color: var(--color-text-secondary); transition: all 0.25s ease; }
.company-item:hover { border-color: var(--color-accent); color: var(--color-primary); }

/* 移动端联系方式 */
.contact-section { display: none; max-width: 420px; margin: 0 auto 40px; padding: 28px; background: var(--color-white); border-radius: 4px; box-shadow: 0 8px 28px rgba(8, 24, 48, 0.08); }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card { display: flex; align-items: center; padding: 18px 20px; background: var(--color-bg-soft); border-radius: 4px; cursor: pointer; transition: all 0.3s ease; border: 1px solid var(--color-border); }
.contact-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(8, 24, 48, 0.08); border-color: var(--color-accent); }
.card-icon { margin-right: 16px; width: 44px; height: 44px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--color-white); font-size: 18px; }
.phone-card .card-icon { background: #4caf50; }
.email-card .card-icon { background: #2196f3; }
.wechat-card .card-icon { background: #07c160; }
.card-content { flex: 1; }
.card-content h4 { font-size: 15px; color: var(--color-primary); margin: 0 0 4px 0; font-weight: 600; }
.card-content p { font-size: 15px; color: var(--color-text); margin: 0; font-weight: 500; }
.card-arrow { margin-left: 12px; color: var(--color-text-muted); transition: transform 0.3s ease; }
.contact-card:hover .card-arrow { transform: translateX(4px); color: var(--color-accent); }

.detail-back { margin-top: 60px; text-align: center; }

/* ====== 新闻中心 ====== */
.news-page-head { position: relative; }
.news-head-bg { height: 360px; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%); position: relative; }
.news-head-title { position: absolute; left: 50%; top: 58%; transform: translate(-50%, -50%); font-size: 52px; color: var(--color-white); text-shadow: 0 4px 16px rgba(0, 0, 0, 0.25); font-family: var(--font-serif); letter-spacing: 0.08em; text-align: center; }
.news-nav { background: var(--color-bg-soft); border-bottom: 1px solid var(--color-border-light); }
.news-nav .container { display: flex; justify-content: center; }
.news-nav-item { display: flex; flex-direction: column; align-items: center; padding: 24px 60px; border-bottom: 2px solid transparent; transition: all 0.25s ease; color: var(--color-text-secondary); }
.news-nav-item:hover, .news-nav-item.selected { border-bottom-color: var(--color-accent); color: var(--color-primary); }
.news-nav-title { font-size: 15px; font-weight: 550; }
.news-list-box { margin-top: 64px; min-height: 300px; }
.news-empty { text-align: center; padding: 100px 0; color: var(--color-text-muted); }
.news-item-box { width: 100%; max-width: 1100px; margin: 0 auto; }
.news-item { display: flex; align-items: center; gap: 32px; padding: 28px 0; transition: all 0.25s ease; border-bottom: 1px solid var(--color-border); }
.news-content { flex: 1; cursor: pointer; display: flex; flex-direction: column; gap: 16px; }
.news-title { font-size: 22px; line-height: 1.55; max-height: 70px; overflow: hidden; transition: color 0.25s ease; color: var(--color-text); font-weight: 600; }
.news-item:hover .news-title { color: var(--color-primary); }
.news-meta { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.news-time { color: var(--color-text-muted); font-family: var(--font-en); }
.news-view { color: var(--color-accent); transition: color 0.25s ease; }
.news-view::before { content: '['; margin-right: 2px; }
.news-view::after { content: ']'; margin-left: 2px; }
.news-item:hover .news-view { color: var(--color-primary); }
.news-img-box { width: 300px; height: 170px; overflow: hidden; border-radius: 6px; flex-shrink: 0; box-shadow: 0 4px 16px rgba(8, 24, 48, 0.08); }
.news-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.news-item:hover .news-img { transform: scale(1.06); }
.fenye_box { background-color: var(--color-bg-soft); width: 100%; display: flex; justify-content: center; padding: 28px 0; margin-top: 50px; }
.pagination { display: flex; gap: 8px; align-items: center; }
.page-link { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 16px; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 2px; color: var(--color-text); transition: all 0.25s ease; font-size: 14px; }
.page-link:hover { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.page-link.active { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }
.page-link.disabled { color: var(--color-text-muted); background: var(--color-bg-soft); cursor: not-allowed; border-color: var(--color-border); }

/* 新闻详情 */
.news-detail-head { background-color: var(--color-bg-section); padding: 80px 0; margin-top: var(--header-height); }
.news-detail-head .container { max-width: none; padding: 0; }
.news-detail-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.news-breadcrumb { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 20px; }
.news-breadcrumb a { color: var(--color-text); transition: color 0.25s ease; }
.news-breadcrumb a:hover { color: var(--color-primary); }
.news-breadcrumb .sep { margin: 0 8px; color: var(--color-text-muted); }
.news-detail-title { font-size: 38px; margin-top: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--color-border); color: var(--color-primary); font-family: var(--font-serif); font-weight: 700; line-height: 1.3; }
.news-detail-meta { color: var(--color-text-muted); padding: 16px 0; font-size: 14px; }
.news-detail-meta span { margin-right: 24px; }
.news-detail-body { display: flex; justify-content: center; }
.news-detail-body .container { max-width: none; padding: 0; }
.news-detail-content { width: 100%; max-width: 900px; padding: 60px 24px; }
.news-detail-cover { margin-bottom: 32px; border-radius: 4px; overflow: hidden; box-shadow: 0 8px 28px rgba(8, 24, 48, 0.08); }
.news-detail-text { font-size: 16px; line-height: 1.85; color: var(--color-text-secondary); }
.news-detail-text p { margin: 0 0 1.6em 0; text-align: justify; text-align-last: left; }
.news-detail-text h2,
.news-detail-text h3,
.news-detail-text h4 { color: var(--color-primary); font-family: var(--font-serif); font-weight: 700; margin: 2em 0 0.8em; line-height: 1.4; }
.news-detail-text h2 { font-size: 24px; }
.news-detail-text h3 { font-size: 20px; }
.news-detail-text h4 { font-size: 18px; }
.news-detail-text img { width: 100% !important; max-width: 640px; height: auto !important; border-radius: 6px; margin: 0 auto 1.6em !important; display: block; box-shadow: 0 4px 16px rgba(8, 24, 48, 0.08); }
.news-detail-text ul,
.news-detail-text ol { margin: 0 0 1.6em 1.5em; padding-left: 1em; }
.news-detail-text li { margin-bottom: 0.5em; }
.news-detail-text a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; transition: color 0.25s ease; }
.news-detail-text a:hover { color: var(--color-primary); }
.news-detail-text blockquote { margin: 0 0 1.6em; padding: 16px 24px; border-left: 3px solid var(--color-accent); background: var(--color-bg-soft); color: var(--color-text-secondary); }
.news-detail-text strong { color: var(--color-primary); font-weight: 700; }
.news-detail-back { margin-top: 48px; }

/* ====== 联系我们 ====== */
.page-contact { width: 100%; }

/* ====== 联系我们 - Hero ====== */
.contact-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    overflow: hidden;
    background: var(--color-primary);
}
.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 45%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    opacity: 1;
}
.contact-hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.contact-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}
.contact-hero-title {
    font-size: 52px;
    font-family: var(--font-serif);
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}
.contact-hero-desc {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.82);
    max-width: 760px;
    margin: 0 auto 36px;
}
.contact-hero-cta { display: inline-flex; }
.hero-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 18px 36px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 2px;
    box-shadow: 0 12px 34px rgba(201, 162, 39, 0.35);
    transition: all 0.35s var(--ease-out);
}
.hero-phone-btn:hover {
    background: var(--color-accent-light);
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(201, 162, 39, 0.42);
}
.hero-phone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 24, 48, 0.12);
    border-radius: 50%;
}
.hero-phone-icon svg { width: 22px; height: 22px; }
.hero-phone-text { display: flex; flex-direction: column; text-align: left; }
.hero-phone-label { font-size: 13px; letter-spacing: 0.08em; opacity: 0.85; margin-bottom: 2px; }
.hero-phone-number { font-size: 26px; font-weight: 700; font-family: var(--font-en); letter-spacing: 0.04em; }

/* ====== 联系我们 - 地图区域 ====== */
.contact-map-section { padding: 80px 0 110px; background: var(--color-bg-soft); }
.contact-map-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}
.map-frame {
    position: relative;
    background: var(--color-bg);
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(8, 24, 48, 0.1);
    border: 1px solid var(--color-border);
    padding: 10px;
    overflow: hidden;
}
.map-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    z-index: 2;
}
.amap-container {
    width: 100%;
    height: 360px;
    border-radius: 2px;
    background: var(--color-bg-soft);
}
.amap-info-window {
    padding: 6px 4px;
    line-height: 1.6;
    min-width: 220px;
}
.amap-info-window h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.amap-info-window p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 4px 0;
}
.map-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--color-text-secondary);
    background: var(--color-bg);
    border-top: 1px solid var(--color-border);
}
.map-caption-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.map-caption-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
}
.map-caption-nav:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}
.map-caption-nav svg { width: 14px; height: 14px; }
.map-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.2);
}
.contact-map-info { padding-left: 10px; }
.contact-map-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    margin-bottom: 12px;
}
.contact-map-title {
    font-size: 38px;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 20px;
}
.contact-map-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}
.contact-map-detail { margin-bottom: 36px; }
.map-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--color-border);
}
.map-detail-item:first-child { padding-top: 0; }
.map-detail-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    background: rgba(201, 162, 39, 0.08);
    border-radius: 50%;
}
.map-detail-icon svg { width: 20px; height: 20px; }
.map-detail-text { display: flex; flex-direction: column; }
.map-detail-text strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}
.map-detail-text span { font-size: 15px; color: var(--color-text-secondary); }
.contact-map-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ====== 联系我们 - 服务承诺 ====== */
.contact-commitment { padding: 90px 0; background: var(--color-primary); color: var(--color-white); }
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.commitment-item {
    position: relative;
    padding: 30px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.35s var(--ease-out);
}
.commitment-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, 0.35);
}
.commitment-number {
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.35;
    margin-bottom: 16px;
    line-height: 1;
}
.commitment-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.commitment-item p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

/* ====== 联系我们 - 底部 CTA ====== */
.contact-bottom-cta { padding: 100px 0; background: var(--color-bg); }
.bottom-cta-inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}
.bottom-cta-inner h2 {
    font-size: 38px;
    font-family: var(--font-serif);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}
.bottom-cta-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 36px;
}
.bottom-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}
.bottom-cta-or {
    font-size: 15px;
    color: var(--color-text-muted);
}
.btn-large { padding: 16px 42px; font-size: 17px; }
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    background: transparent;
    color: var(--color-primary);
    border-radius: 2px;
    border: 1px solid var(--color-primary);
    transition: all 0.3s var(--ease-out);
    font-weight: 500;
    letter-spacing: 0.04em;
}
.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}
.btn-outline svg { width: 18px; height: 18px; }

/* ====== 联系我们 - 响应式 ====== */
@media (max-width: 1024px) {
    .contact-map-grid { grid-template-columns: 1fr; }
    .contact-map-info { padding-left: 0; }
    .commitment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .contact-hero { min-height: 460px; }
    .contact-hero-inner { padding-top: 100px; padding-bottom: 60px; }
    .contact-hero-title { font-size: 36px; }
    .contact-hero-desc { font-size: 15px; }
    .hero-phone-btn { padding: 14px 24px; }
    .hero-phone-number { font-size: 22px; }
    .contact-map-section { padding: 60px 0 80px; }
    .contact-map-title { font-size: 30px; }
    .contact-commitment { padding: 70px 0; }
    .commitment-grid { grid-template-columns: 1fr; gap: 20px; }
    .contact-bottom-cta { padding: 70px 0; }
    .bottom-cta-inner h2 { font-size: 30px; }
    .bottom-cta-actions { flex-direction: column; gap: 16px; }
    .bottom-cta-or { display: none; }
}

/* ====== 招贤纳士 ====== */
.page-recruit { width: 100%; }
.page-recruit .box { padding: 80px 0; background-color: var(--color-bg-soft); }
.page-recruit .content { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.page-recruit .item { margin-top: 28px; background: var(--color-bg); border-radius: 4px; overflow: hidden; box-shadow: 0 4px 20px rgba(8, 24, 48, 0.06); border: 1px solid var(--color-border); }
.page-recruit summary { cursor: pointer; list-style: none; }
.page-recruit summary::-webkit-details-marker { display: none; }
.page-recruit .title_box { display: flex; width: 100%; align-items: center; padding: 22px 28px; border-bottom: 1px solid var(--color-border); transition: all 0.25s ease; }
.page-recruit .title_box.accent { border-left: 3px solid var(--color-accent); }
.page-recruit .title { font-size: 17px; font-weight: 600; color: var(--color-primary); }
.page-recruit .number { flex: 1; text-align: right; font-size: 14px; color: var(--color-text-secondary); }
.page-recruit .ask_box { display: flex; width: 100%; padding: 28px; border-top: 1px solid var(--color-accent); flex-wrap: wrap; background: var(--color-bg-soft); }
.page-recruit .jingyan { width: 25%; padding-right: 30px; }
.page-recruit .xingzhi { width: 25%; padding-right: 30px; }
.page-recruit .yaoqiu { width: 50%; }
.page-recruit .item_title { font-size: 13px; line-height: 24px; font-weight: 700; color: var(--color-primary); }
.page-recruit .item_content { line-height: 1.7; margin-top: 8px; color: var(--color-text-secondary); }

/* ====== 404 ====== */
.page-404 { text-align: center; padding: 140px 0; }
.page-404 h1 { font-size: 100px; color: var(--color-primary); margin-bottom: 16px; font-family: var(--font-en); font-weight: 700; }
.page-404 p { font-size: 18px; color: var(--color-text-secondary); margin-bottom: 36px; }

/* ====== 响应式 ====== */
@media screen and (max-width: 1259px) {
    :root { --header-height: var(--header-height-m); }
    .container { padding: 0 20px; }
    .header-inner { height: var(--header-height-m); }
    .logo img, .logo svg { height: 38px; }
    .mobile-menu-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: var(--header-height-m);
        left: 0;
        right: 0;
        background: rgba(8, 24, 48, 0.98);
        padding: 12px 0;
        box-shadow: 0 8px 24px rgba(8, 24, 48, 0.18);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin-left: 0;
    }
    .main-nav.active { display: flex; }
    .main-nav .nav-item { padding: 14px 24px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
    .main-nav .nav-item::after { display: none; }

    .site-footer { padding: 50px 0 24px; }
    .footer-content { margin-bottom: 32px; }
    .footer-contact { flex-direction: column; gap: 8px; }
    .footer-divider { display: none; }
    .footer-bottom { padding-top: 20px; }

    .head_img { height: 260px; }
    .head_title { font-size: 36px; }
    .head_breadcrumb { top: 40%; font-size: 13px; }
    .nav_item { padding: 0 20px; }
    .nav_ieon { display: none; }
    .nav_content { padding: 16px 0; }
    .box_content { width: 92%; }
    .chengquan_tltle { font-size: 20px; }

    .section-title { font-size: 28px; }
    .section-header { margin-bottom: 36px; }

    .home-hero { height: 520px; min-height: auto; }
    .home-hero .slogan1 { margin-bottom: 14px; }
    .home-hero .slogan2 { font-size: 16px; line-height: 1.7; }
    .lianxi_box { display: none; }
    .hero-cta-bar { display: none; }
    .hero-bottom-bar {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        padding: 14px 20px;
        background: rgba(8, 24, 48, 0.75);
        backdrop-filter: blur(8px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .hero-bottom-label {
        color: rgba(255, 255, 255, 0.92);
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.04em;
    }
    .hero-bottom-phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 18px;
        background: var(--color-accent);
        color: var(--color-primary);
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s var(--ease-out);
    }
    .hero-bottom-phone .icon-dianhua {
        color: inherit;
        margin-right: 0;
        font-size: 18px;
    }
    .hero-bottom-phone-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.2;
    }
    .hero-bottom-phone-text span {
        font-size: 11px;
        font-weight: 500;
        opacity: 0.85;
    }
    .hero-bottom-phone-text strong {
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.02em;
    }
    .hero-bottom-phone:hover {
        background: var(--color-accent-light);
        transform: translateY(-2px);
    }
    .hero-scroll { display: none; }
    .lingyu { padding: 50px 0 30px; }
    .tuandui { padding: 30px 0 50px; }
    .dongtai { padding: 40px 0; }
    .lingyu_box { margin: 24px -6px 0; }
    .lingyu_item { width: 50%; padding: 6px; }
    .lingyu_content {
        padding: 10px 12px;
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 10px;
    }
    .lingyu_content:hover { transform: translateY(-3px); }
    .lingyu_item_img { width: 32px; height: 32px; margin-bottom: 0; }
    .lingyu_item_title { font-size: 13px; line-height: 1.4; flex: 1; }
    .dongtai_box { gap: 10px; margin-top: 24px; }
    .dongtai_thumb { width: 110px; }
    .dongtai_title { padding: 14px 16px; font-size: 14px; gap: 6px; }
    .dongtai_time { font-size: 12px; }
    .dongtai_more { margin-top: 22px; }
    .lawyer-photo { width: 120px; }
    .lawyer-info { padding: 16px 18px 12px; }
    .lawyer-name { font-size: 18px; margin-bottom: 6px; }
    .lawyer-position { font-size: 14px; }
    .lawyer-education { font-size: 12.5px; margin-bottom: 10px; }
    .lawyer-business { font-size: 13px; -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
    .dongtai_title { gap: 6px; padding: 18px 20px; font-size: 15px; }

    .honor-item { padding: 20px; }
    .honor-icon { font-size: 28px; margin-right: 16px; }
    .honor-content h4 { font-size: 16px; }
    .honor-content p { font-size: 14px; }

    .page-area .content { width: 100%; }
    .item_box { width: 50%; margin-top: 24px; padding-right: 10px; }
    .item_miaoshu { display: none; }
    .item_title { border: none; font-size: 16px; padding: 12px 0; }
    .item_content { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 16px; }
    .item_img { width: 40px; height: 40px; }

    .team-header { height: 280px; }
    .team-intro { padding: 50px 0; }
    .team-slogan { font-size: 18px; }
    .team-description { font-size: 14px; }
    .team-section { margin: 50px auto 70px; }

    .team-detail-header { padding: 0; margin-top: var(--header-height-m); background: transparent; }
    .team-detail-header .container {
        background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
        border-radius: 0 0 16px 16px;
        padding: 24px 20px 32px;
        max-width: 100%;
        box-shadow: 0 12px 36px rgba(8, 24, 48, 0.22);
        flex-direction: row;
        align-items: center;
        gap: 20px;
        text-align: left;
    }
    .team-detail-photo { width: 110px; height: auto; aspect-ratio: 3/4; border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.25); border: 2px solid rgba(255,255,255,0.15); }
    .team-detail-info { flex: 1; }
    .team-detail-name { font-size: 26px; color: var(--color-white); margin-bottom: 8px; }
    .team-detail-position { color: var(--color-accent); font-size: 15px; margin-bottom: 6px; }
    .team-detail-education { color: rgba(255,255,255,0.75); font-size: 14px; }
    .team-detail-header .team-detail-contact { display: none; }
    .team-detail-content { padding: 30px 20px 0; }
    .contact-section { display: block; max-width: 100%; margin: 0; padding: 24px 20px 0; background: transparent; box-shadow: none; border-radius: 0; }
    .contact-card { background: var(--color-white); border-radius: 8px; padding: 16px 20px; }
    .card-content h4 { font-size: 13px; color: var(--color-text-muted); font-weight: 500; }
    .card-content p { font-size: 16px; color: var(--color-primary); font-weight: 600; }
    .card-arrow { color: var(--color-text-muted); font-size: 20px; }
    .detail-section { margin-bottom: 40px; }

    .news-head-bg { height: 260px; }
    .news-head-title { font-size: 34px; }
    .news-nav-item { padding: 16px 28px; }
    .news-item-box { width: 100%; }
    .news-item { gap: 16px; padding: 20px 0; align-items: flex-start; }
    .news-content { gap: 10px; }
    .news-title { font-size: 16px; max-height: none; font-weight: 500; line-height: 1.6; }
    .news-meta { gap: 12px; font-size: 13px; }
    .news-view { display: none; }
    .news-img-box { width: 110px; height: 62px; min-width: 110px; border-radius: 4px; }
    .news-list-box { margin-top: 40px; }

     .news-detail-head { padding: 40px 0; }
    .news-detail-inner { padding: 0 20px; }
    .news-detail-title { font-size: 24px; }
    .news-detail-content { padding: 36px 20px; }
    .news-detail-text { font-size: 15px; line-height: 1.8; }
    .news-detail-text h2 { font-size: 20px; }
    .news-detail-text h3 { font-size: 18px; }
    .news-detail-text h4 { font-size: 16px; }
    .news-detail-text img { max-width: 100%; }

    .page-recruit .box { padding: 50px 0; }
    .page-recruit .jingyan, .page-recruit .xingzhi, .page-recruit .yaoqiu { width: 100%; padding-right: 0; margin-bottom: 16px; }
    .page-recruit .item_content { margin-top: 0; }
    .page-recruit .chengqian_introduce { padding: 0 5px; }
    .page-recruit .chengquan_tltle { margin: 0 5px; }

    .page-404 { padding: 100px 0; }
    .page-404 h1 { font-size: 72px; }
}

@media screen and (max-width: 640px) {
    .nav_box { justify-content: flex-start; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .nav_box::-webkit-scrollbar { display: none; }
    .nav_item { flex: 0 0 auto; padding: 0 16px; }
    .nav_content { padding: 14px 0; }
    .nav_title { font-size: 14px; }
    .lingyu_item { width: 50%; }
    .item_box { width: 100%; padding-right: 0; }
    .lawyer-photo { width: 100px; }
    .lawyer-info { padding: 10px 12px; }
    .lawyer-basic { margin-bottom: 0; }
    .lawyer-name { font-size: 16px; margin-bottom: 3px; }
    .lawyer-position { font-size: 13px; margin-bottom: 2px; }
    .lawyer-education { font-size: 12px; margin-bottom: 4px; }
    .lawyer-divider { margin: 6px 0; }
    .lawyer-business { font-size: 12.5px; line-height: 1.55; margin-bottom: 0; -webkit-line-clamp: 2; }
    .lawyer-card { flex-direction: row; }
}

@media (prefers-reduced-motion: reduce) {
    .animate-item, .fade-in, .slide-in, .scale-in, .home-hero .carousel { animation: none; opacity: 1; }
}
/* ====== 多彩服务与细节优化 ====== */
.lingyu_content { border-top: 3px solid transparent; }
.item_content { border-left: 3px solid transparent; }

.service-color-1,
.service-color-1 .lingyu_item_title,
.service-color-1 .item_title { color: #1e3a5f; }
.service-color-1 .lingyu_item_img,
.service-color-1 .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(180deg) brightness(0.75); }
.lingyu_content.service-color-1:hover .lingyu_item_img,
.item_content.service-color-1:hover .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(180deg) brightness(0.75); transform: scale(1.08); }
.lingyu_content.service-color-1,
.item_content.service-color-1 { border-color: rgba(30, 58, 95, 0.12); border-top-color: #1e3a5f; border-left-color: #1e3a5f; }
.lingyu_content.service-color-1:hover,
.item_content.service-color-1:hover { background: rgba(30, 58, 95, 0.06); border-color: rgba(30, 58, 95, 0.32); border-top-color: #1e3a5f; border-left-color: #1e3a5f; }

.service-color-2,
.service-color-2 .lingyu_item_title,
.service-color-2 .item_title { color: #0f5f58; }
.service-color-2 .lingyu_item_img,
.service-color-2 .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(110deg) brightness(0.85); }
.lingyu_content.service-color-2:hover .lingyu_item_img,
.item_content.service-color-2:hover .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(110deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-2,
.item_content.service-color-2 { border-color: rgba(15, 95, 88, 0.12); border-top-color: #0f5f58; border-left-color: #0f5f58; }
.lingyu_content.service-color-2:hover,
.item_content.service-color-2:hover { background: rgba(15, 95, 88, 0.06); border-color: rgba(15, 95, 88, 0.32); border-top-color: #0f5f58; border-left-color: #0f5f58; }

.service-color-3,
.service-color-3 .lingyu_item_title,
.service-color-3 .item_title { color: #2c3e50; }
.service-color-3 .lingyu_item_img,
.service-color-3 .item_img { filter: sepia(0.6) saturate(1.8) hue-rotate(170deg) brightness(0.7); }
.lingyu_content.service-color-3:hover .lingyu_item_img,
.item_content.service-color-3:hover .item_img { filter: sepia(0.6) saturate(1.8) hue-rotate(170deg) brightness(0.7); transform: scale(1.08); }
.lingyu_content.service-color-3,
.item_content.service-color-3 { border-color: rgba(44, 62, 80, 0.12); border-top-color: #2c3e50; border-left-color: #2c3e50; }
.lingyu_content.service-color-3:hover,
.item_content.service-color-3:hover { background: rgba(44, 62, 80, 0.06); border-color: rgba(44, 62, 80, 0.32); border-top-color: #2c3e50; border-left-color: #2c3e50; }

.service-color-4,
.service-color-4 .lingyu_item_title,
.service-color-4 .item_title { color: #b91c1c; }
.service-color-4 .lingyu_item_img,
.service-color-4 .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.85); }
.lingyu_content.service-color-4:hover .lingyu_item_img,
.item_content.service-color-4:hover .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-4,
.item_content.service-color-4 { border-color: rgba(185, 28, 28, 0.12); border-top-color: #b91c1c; border-left-color: #b91c1c; }
.lingyu_content.service-color-4:hover,
.item_content.service-color-4:hover { background: rgba(185, 28, 28, 0.06); border-color: rgba(185, 28, 28, 0.32); border-top-color: #b91c1c; border-left-color: #b91c1c; }

.service-color-5,
.service-color-5 .lingyu_item_title,
.service-color-5 .item_title { color: #1d4ed8; }
.service-color-5 .lingyu_item_img,
.service-color-5 .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(190deg) brightness(0.85); }
.lingyu_content.service-color-5:hover .lingyu_item_img,
.item_content.service-color-5:hover .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(190deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-5,
.item_content.service-color-5 { border-color: rgba(29, 78, 216, 0.12); border-top-color: #1d4ed8; border-left-color: #1d4ed8; }
.lingyu_content.service-color-5:hover,
.item_content.service-color-5:hover { background: rgba(29, 78, 216, 0.06); border-color: rgba(29, 78, 216, 0.32); border-top-color: #1d4ed8; border-left-color: #1d4ed8; }

.service-color-6,
.service-color-6 .lingyu_item_title,
.service-color-6 .item_title { color: #15803d; }
.service-color-6 .lingyu_item_img,
.service-color-6 .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(100deg) brightness(0.85); }
.lingyu_content.service-color-6:hover .lingyu_item_img,
.item_content.service-color-6:hover .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(100deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-6,
.item_content.service-color-6 { border-color: rgba(21, 128, 61, 0.12); border-top-color: #15803d; border-left-color: #15803d; }
.lingyu_content.service-color-6:hover,
.item_content.service-color-6:hover { background: rgba(21, 128, 61, 0.06); border-color: rgba(21, 128, 61, 0.32); border-top-color: #15803d; border-left-color: #15803d; }

.service-color-7,
.service-color-7 .lingyu_item_title,
.service-color-7 .item_title { color: #b45309; }
.service-color-7 .lingyu_item_img,
.service-color-7 .item_img { filter: sepia(1) saturate(2.5) hue-rotate(20deg) brightness(0.85); }
.lingyu_content.service-color-7:hover .lingyu_item_img,
.item_content.service-color-7:hover .item_img { filter: sepia(1) saturate(2.5) hue-rotate(20deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-7,
.item_content.service-color-7 { border-color: rgba(180, 83, 9, 0.12); border-top-color: #b45309; border-left-color: #b45309; }
.lingyu_content.service-color-7:hover,
.item_content.service-color-7:hover { background: rgba(180, 83, 9, 0.06); border-color: rgba(180, 83, 9, 0.32); border-top-color: #b45309; border-left-color: #b45309; }

.service-color-8,
.service-color-8 .lingyu_item_title,
.service-color-8 .item_title { color: #334155; }
.service-color-8 .lingyu_item_img,
.service-color-8 .item_img { filter: sepia(0.5) saturate(1.2) hue-rotate(180deg) brightness(0.7); }
.lingyu_content.service-color-8:hover .lingyu_item_img,
.item_content.service-color-8:hover .item_img { filter: sepia(0.5) saturate(1.2) hue-rotate(180deg) brightness(0.7); transform: scale(1.08); }
.lingyu_content.service-color-8,
.item_content.service-color-8 { border-color: rgba(51, 65, 85, 0.12); border-top-color: #334155; border-left-color: #334155; }
.lingyu_content.service-color-8:hover,
.item_content.service-color-8:hover { background: rgba(51, 65, 85, 0.06); border-color: rgba(51, 65, 85, 0.32); border-top-color: #334155; border-left-color: #334155; }

.service-color-9,
.service-color-9 .lingyu_item_title,
.service-color-9 .item_title { color: #991b1b; }
.service-color-9 .lingyu_item_img,
.service-color-9 .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.75); }
.lingyu_content.service-color-9:hover .lingyu_item_img,
.item_content.service-color-9:hover .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.75); transform: scale(1.08); }
.lingyu_content.service-color-9,
.item_content.service-color-9 { border-color: rgba(153, 27, 27, 0.12); border-top-color: #991b1b; border-left-color: #991b1b; }
.lingyu_content.service-color-9:hover,
.item_content.service-color-9:hover { background: rgba(153, 27, 27, 0.06); border-color: rgba(153, 27, 27, 0.32); border-top-color: #991b1b; border-left-color: #991b1b; }

.service-color-10,
.service-color-10 .lingyu_item_title,
.service-color-10 .item_title { color: #475569; }
.service-color-10 .lingyu_item_img,
.service-color-10 .item_img { filter: sepia(0.5) saturate(1) hue-rotate(180deg) brightness(0.7); }
.lingyu_content.service-color-10:hover .lingyu_item_img,
.item_content.service-color-10:hover .item_img { filter: sepia(0.5) saturate(1) hue-rotate(180deg) brightness(0.7); transform: scale(1.08); }
.lingyu_content.service-color-10,
.item_content.service-color-10 { border-color: rgba(71, 85, 105, 0.12); border-top-color: #475569; border-left-color: #475569; }
.lingyu_content.service-color-10:hover,
.item_content.service-color-10:hover { background: rgba(71, 85, 105, 0.06); border-color: rgba(71, 85, 105, 0.32); border-top-color: #475569; border-left-color: #475569; }

.service-color-11,
.service-color-11 .lingyu_item_title,
.service-color-11 .item_title { color: #dc2626; }
.service-color-11 .lingyu_item_img,
.service-color-11 .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.9); }
.lingyu_content.service-color-11:hover .lingyu_item_img,
.item_content.service-color-11:hover .item_img { filter: sepia(1) saturate(3) hue-rotate(320deg) brightness(0.9); transform: scale(1.08); }
.lingyu_content.service-color-11,
.item_content.service-color-11 { border-color: rgba(220, 38, 38, 0.12); border-top-color: #dc2626; border-left-color: #dc2626; }
.lingyu_content.service-color-11:hover,
.item_content.service-color-11:hover { background: rgba(220, 38, 38, 0.06); border-color: rgba(220, 38, 38, 0.32); border-top-color: #dc2626; border-left-color: #dc2626; }

.service-color-12,
.service-color-12 .lingyu_item_title,
.service-color-12 .item_title { color: #0e7490; }
.service-color-12 .lingyu_item_img,
.service-color-12 .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(140deg) brightness(0.85); }
.lingyu_content.service-color-12:hover .lingyu_item_img,
.item_content.service-color-12:hover .item_img { filter: sepia(0.8) saturate(2.5) hue-rotate(140deg) brightness(0.85); transform: scale(1.08); }
.lingyu_content.service-color-12,
.item_content.service-color-12 { border-color: rgba(14, 116, 144, 0.12); border-top-color: #0e7490; border-left-color: #0e7490; }
.lingyu_content.service-color-12:hover,
.item_content.service-color-12:hover { background: rgba(14, 116, 144, 0.06); border-color: rgba(14, 116, 144, 0.32); border-top-color: #0e7490; border-left-color: #0e7490; }
/* 减少主色全局使用 */
.section-title { color: #1f2937; }
.section-title span::after { background: var(--color-accent); }
.chengquan_tltle { color: #1f2937; }
.news-content:hover .news-title { color: var(--color-accent); }
.dongtai_item_content:hover .dongtai_title { color: var(--color-accent); }

/* ====== 轻提示 Toast ====== */
.toast-message {
    position: fixed;
    left: 50%;
    bottom: 80px;
    transform: translateX(-50%) translateY(20px);
    background: rgba(8, 24, 48, 0.92);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}
.toast-message.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
