@charset "utf-8";

:root {
    --primary: #1342B8;
    --primary-dark: #06305c;
    --nav: #0B386F;
    --accent: #c9a227;
    --text: #1a2332;
    --text-muted: #5c6b7a;
    --border: #e2e8f0;
    --bg: #f9f9f9;
    --bg-card: #ffffff;
    --width: 1300px;
    --radius: 4px;
    --shadow: 0 2px 12px rgba(11, 61, 110, 0.06);
}

.header {
    --header-top-h: 84px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 8px rgba(11, 61, 110, 0.08);
    transition: top 0.28s ease;
}

/* 用负 top 把 header-top 顶出视口，不改文档流高度，避免滚动抖动 */
.header.is-compact {
    top: calc(-1 * var(--header-top-h));
}

.header-top {
    background: #fff;
}

@media (prefers-reduced-motion: reduce) {
    .header {
        transition: none;
    }
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
}

.logo {
    display: block;
    flex-shrink: 0;
}

.logo img {
    display: block;
    height: 72px;
    width: auto;
}

.search {
    display: flex;
    align-items: center;
    width: 360px;
    height: 40px;
    padding: 0 6px 0 18px;
    border: 1px solid #c8d0da;
    border-radius: 20px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.search:focus-within {
    border-color: var(--primary);
}

.search-input {
    flex: 1;
    min-width: 0;
    height: 100%;
    font-size: 14px;
    color: var(--text);
}

.search-input::placeholder {
    color: #9aa5b1;
}

.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    color: var(--primary);
}

.search-btn .iconfont {
    font-size: 18px;
    color: var(--primary);
}

.search-btn:hover .iconfont {
    color: var(--primary-dark);
}

/* ========== 主导航 ========== */
.nav {
    background: var(--nav);
    position: relative;
    z-index: 200;
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 52px;
}

.nav-list {
    display: flex;
    align-items: stretch;
    flex: 1;
    min-width: 0;
}

.nav-item {
    flex: 1;
    min-width: 0;
    position: relative;
}

.nav-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 52px;
    padding: 0 4px;
    font-size: 15px;
    color: #fff;
    white-space: nowrap;
    transition: background 0.2s ease, opacity 0.2s ease;
}

.nav-item > a:hover,
.nav-item.is-active > a,
.nav-item.active > a {
    background: #084792;
    color: #fff;
}

.nav-item .iconfont {
    font-size: 16px;
    color: #fff;
    line-height: 1;
    flex-shrink: 0;
}

.nav-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    padding: 6px 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 999;
}

.nav-item.has-sub:hover .nav-sub,
.nav-item.has-sub.active .nav-sub {
    display: block;
}

.nav-sub li a {
    display: block;
    padding: 0 16px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    text-align: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-sub li a:hover {
    background: #e1eeff;
    color: #000;
}

.nav-arrow .iconfont {
    flex-shrink: 0;
    display: block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    font-size: 22px;
    color: #fff;
    text-align: center;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.nav-arrow:hover .iconfont {
    opacity: 1;
    animation: floatUpDown 0.8s ease-in-out infinite;
}

/* 内页顶图 */
.page-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.page-banner-bg {
    display: block;
    width: 100%;
    height: auto;
}

.page-banner-body {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end; 
    padding-bottom: 50px;
    justify-content: center;
    line-height: normal;
}

.page-banner-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    /* column-gap: 20px; */
    width: var(--width);
    max-width: calc(100% - 40px);
}

.page-banner-deco {
    display: block;
    width: 100%;
    max-width: 445px;
    height: auto;
}

.page-banner-deco-l {
    justify-self: end;
}

.page-banner-title {
    margin: 0;
    padding: 0 0px;
    font-size: 42px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.page-banner-deco-r {
    position: relative;
    justify-self: start;
    width: 100%;
    max-width: 518px;
}

.page-banner-deco-r img {
    display: block;
    width: 100%;
    height: auto;
}

.page-position {
    position: absolute;
    right: 50px;
    bottom: 20%;
    left: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.page-position .iconfont {
    margin-right: 2px;
    font-size: 20px;
    color: #fff;
    line-height: 1;
}

.page-position a {
    color: #fff;
    transition: opacity 0.2s ease;
}

.page-position a:hover {
    opacity: 0.85;
}

.page-position span {
    color: rgba(255, 255, 255, 0.85);
}

.page-cate-nav {
    background: #eef3f8;
}

.page-cate-nav:not(:has(.page-cate-list li)) {
    background: #fff;
}

.page-cate-nav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-cate-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0 60px;
    min-height: 56px;
    padding: 12px 0;
}

.page-cate-list li {
    flex-shrink: 0;
}

.page-cate-list a {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.page-cate-list li.is-active a {
    font-weight: 700;
    color: var(--primary);
}

.page-cate-list a:hover {
    color: var(--primary);
}

.page-cultural-nav {
    background: #eef3f8;
}

.page-cultural-nav-inner {
    display: flex;
    justify-content: center;
    min-height: 56px;
    padding: 12px 0;
}

.page-cultural-dropdown {
    position: relative;
    display: inline-flex;
}

.page-cultural-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.page-cultural-trigger:hover {
    opacity: 0.85;
}

.page-cultural-trigger-icon {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.page-cultural-dropdown.is-open .page-cultural-trigger-icon {
    transform: rotate(180deg);
}

.page-cultural-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    z-index: 20;
    min-width: 140px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(6, 48, 92, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.page-cultural-dropdown.is-open .page-cultural-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.page-cultural-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.page-cultural-menu a:hover {
    color: var(--primary);
    background: #f5f8fc;
}

.page-cultural-menu li.is-active a {
    font-weight: 700;
    color: var(--primary);
}

/* 内页内容区 */
.page-main {
    position: relative;
    display: grid;
}

.page-main > * {
    grid-area: 1 / 1;
}

.page-main-bg {
    z-index: 0;
    display: block;
    width: 100%;
    height: auto;
}

.page-main-deco {
    z-index: 1;
    align-self: end;
    justify-self: center;
    display: block;
    width: 100%;
    max-width: 1200px;
    height: auto;
    pointer-events: none;
    padding-left: 30px;
}

.page-main-inner {
    position: relative;
    z-index: 2;
    align-self: start;
    justify-self: center;
    padding: 94px 0 60px;
}

.page-main--plain {
    display: block;
}

.page-main--plain .page-main-inner {
    position: static;
    z-index: auto;
    align-self: auto;
    justify-self: auto;
}

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
}

.page-content img {
    max-width: 100%;
    height: auto;
}

/* 单页内容（对齐老官网 page.css） */
.page-content .pic-content .item {
    border-bottom: 0 none;
    border-right: 0 none;
    padding-right: 0;
    padding-bottom: 0;
    margin-top: 0;
    margin-bottom: 20px;
}

.page-content .pic-content .item .zc-box {
    display: flex;
    margin-bottom: 10px;
}

.page-content .pic-content .item .zc {
    flex: 0 0 70px;
    width: 70px;
    display: flex;
    margin-right: 5px;
    justify-content: space-between;
    font-weight: bold;
}

.page-content .pic-content .item .zc-cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.page-content .pic-content .item .zc-cont .name {
    letter-spacing: 1px;
    margin-right: 15px;
}

.page-content .pic-content .item .mr {
    margin-right: 5px;
}

.page-content .pic-content .item em {
    font-style: normal;
}

.page-content .pic-content h4.title {
    position: relative;
    text-align: center;
    padding-bottom: 8px;
    font-size: 18px;
    margin-bottom: 8px;
}

.page-content .pic-content h4.title::after {
    content: "";
    width: 18px;
    height: 3px;
    background-color: #b50000;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -9px;
}

.page-content .pic-cont {
    margin-top: 10px;
}

.page-content .pic-cont > ul {
    overflow: hidden;
}

.page-content .pic-cont > ul > li {
    float: left;
    width: 140px;
    height: 240px;
    margin-right: 30px;
    margin-bottom: 20px;
    list-style: none;
}

.page-content .pic-cont > ul > li:nth-child(5n) {
    margin-right: 0;
}

.page-content .pic-cont > ul > li .img-box {
    width: 140px;
    height: 205px;
    overflow: hidden;
}

.page-content .pic-cont > ul > li .img-box img,
.page-content .pic-cont > ul > li > img {
    width: 140px;
    height: 205px;
    max-width: none;
    object-fit: cover;
}

.page-content .pic-cont > ul > li p {
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
}

/* 富文本表格（对齐老官网 show.css，详情页无内层 .content 也需生效） */
.page-content table,
.page-content .content table {
    margin: 0 auto;
    border: 1px solid #333;
    border-collapse: collapse;
}

.page-content table th,
.page-content table td,
.page-content .content table th,
.page-content .content table td {
    border: 1px solid #333;
    padding: 6px 10px;
}

/* 富文本链接（对齐老官网 reset.css a { color: #666 }） */
.page-content a {
    color: #666;
}

.page-content a:hover {
    color: #3a83c8;
}

/* 职务/名单块 about-content（对齐老官网 show.css） */
.page-content .about-content h4.title {
    position: relative;
    display: block;
    text-align: center;
    padding-bottom: 8px;
    font-size: 18px;
    margin-top: 50px;
}

.page-content .about-content h4.title::after {
    content: "";
    width: 18px;
    height: 3px;
    background-color: #b50000;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -9px;
}

.page-content .about-content .zc-box {
    display: flex;
    margin-bottom: 10px;
}

.page-content .about-content .zc {
    flex: 0 0 70px;
    width: 70px;
    display: flex;
    margin-right: 5px;
    justify-content: space-between;
    font-weight: bold;
}

.page-content .about-content .zc-cont {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.page-content .about-content .zc-cont .name {
    letter-spacing: 1px;
    margin-right: 15px;
}

.page-content .about-content .mr {
    margin-right: 5px;
}

.page-content .about-content em {
    font-style: normal;
}

.page-content .content-wenxin {
    width: 588px;
    max-width: 100%;
    margin: 0 auto;
}

.wrap.page-list-inner {
    width: 1000px;
    max-width: 100%;
    padding: 48px 0 60px;
}

.page-main--list {
    display: block;
    background: #fff;
}

.page-main--list .page-main-inner {
    position: static;
    z-index: auto;
    align-self: auto;
    justify-self: auto;
}

.page-list-items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-list-items > li {
    border-bottom: none;
}

.page-list-items > li:last-child .page-list-link:not(:hover) {
    border-bottom-color: transparent;
}

.page-list-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 22px 24px;
    overflow: hidden;
    border: 1px solid transparent;
    background-color: transparent;
    background-repeat: no-repeat;
    color: inherit;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    border-bottom: 1px solid #e6eaf0;
}

.page-list--notice .page-list-link:hover {
    border-color: #b7c8e0;
    background-color: #fff;
    background-image: url("../images/202.png");
    background-position: right bottom;
    background-size: 220px auto;
}

.page-list--notice .page-list-date::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/203.png") center / contain no-repeat;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.page-list--notice .page-list-link:hover .page-list-date::before {
    opacity: 1;
}

.page-list-date {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 88px;
    height: 88px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-list-date-md {
    position: relative;
    z-index: 1;
    font-family: "Source Han Serif SC", "Noto Serif SC", "Songti SC", "SimSun", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--nav);
    letter-spacing: 0.02em;
}

.page-list-date-y {
    position: relative;
    z-index: 1;
    margin-top: 6px;
    padding: 1px 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--nav);
    border-radius: 999px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.page-list--notice .page-list-link:hover .page-list-date-y {
    background: var(--nav);
    color: #fff;
}

.page-list-body {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.page-list-title {
    display: block;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--nav);
    transition: color 0.2s ease;
}

.page-list-link.third-url:hover .page-list-title {
    color: var(--primary-dark);
}

.page-list-intro {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #8a93a0;
}

.page-list--download .page-list-items > li {
    /*margin-bottom: 10px;*/
    border-bottom: none;
}

.page-list--download .page-list-link {
    gap: 0;
    height: 150px;
    min-height: 150px;
    padding: 18px 28px 18px 20px;
    /* background-color: #f3f5f8; */
    border-color: transparent;
    border-bottom: 1px solid #e6eaf0;
}

.page-list--download .page-list-date {
    width: 96px;
    height: auto;
    min-height: 52px;
    margin-right: 28px;
    padding-right: 28px;
}

.page-list--download .page-list-date::before {
    display: none;
}

.page-list--download .page-list-date::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 42px;
    margin-top: -21px;
    background: #cfd6df;
    transition: background-color 0.2s ease;
}

.page-list--download .page-list-date-md {
    font-size: 20px;
    font-weight: 500;
}

.page-list--download .page-list-date-y {
    margin-top: 4px;
    padding: 0;
    font-size: 14px;
    border-radius: 0;
}

.page-list--download .page-list-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.page-list--download .page-list-link:hover {
    border-color: transparent;
    background-color: #0a4a8a;
    background-image: url("../images/204.png");
    background-position: center center;
    background-size: cover;
}

.page-list--download .page-list-link:hover .page-list-date::after {
    background: rgba(255, 255, 255, 0.55);
}

.page-list--download .page-list-link:hover .page-list-date-md,
.page-list--download .page-list-link:hover .page-list-date-y,
.page-list--download .page-list-link:hover .page-list-title {
    color: #fff;
}

.page-list--download .page-list-link:hover .page-list-date-y {
    background: transparent;
}

.hire-search-section {
    margin-bottom: 36px;
}

.hire-search-title {
    position: relative;
    margin: 0 0 20px;
    padding-left: 14px;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
}

.hire-search-title::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 1em;
    background: var(--primary);
    border-radius: 2px;
}

.hire-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hire-search-field {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    border: 1px solid #c8d0da;
    border-radius: 22px;
    background: #fff;
    font-size: 14px;
    color: var(--text);
    transition: border-color 0.2s ease;
}

.hire-search-field:focus {
    border-color: var(--primary);
    outline: none;
}

.hire-search-field::placeholder {
    color: #9aa5b1;
}

.hire-search-select {
    appearance: none;
    padding-right: 36px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239aa5b1' d='M1.41.59 6 5.17 10.59.59 12 2 6 8 0 2z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px 8px;
    cursor: pointer;
}

.hire-search-select:has(option[value=""]:checked),
.hire-search-select option[value=""] {
    color: #9aa5b1;
}

.hire-search-select option:not([value=""]) {
    color: var(--text);
}

.hire-search-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 44px;
    padding: 0 28px;
    border: none;
    border-radius: 22px;
    background: var(--primary);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.hire-search-btn:hover {
    background: var(--primary-dark);
}

.hire-search-btn .iconfont {
    font-size: 16px;
    color: #fff;
}

.hire-search-empty {
    padding: 48px 24px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.page-search-inner {
    padding: 36px 0 60px;
}

.page-search {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}

.page-search-side {
    flex: 0 0 220px;
    width: 220px;
}

.page-search-filter {
    margin-bottom: 24px;
    background: #f6f8fb;
    border: 1px solid #e6eaf0;
}

.page-search-filter-title {
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    border-bottom: 1px solid #e6eaf0;
    background: #fff;
}

.page-search-filter-list li a {
    display: block;
    padding: 0 16px;
    line-height: 42px;
    color: var(--text);
    transition: background .2s, color .2s;
}

.page-search-filter-list li.is-active a,
.page-search-filter-list li a:hover {
    background: var(--primary);
    color: #fff;
}

.page-search-main {
    flex: 1;
    min-width: 0;
}

.page-search-keyword {
    margin-bottom: 18px;
    text-align: right;
    font-size: 15px;
    color: var(--text-muted);
}

.page-search-keyword em,
.search-keyword {
    color: #d93025;
    font-style: normal;
    margin: 0 4px;
}

.page-search-list {
    border-top: 1px solid #e6eaf0;
}

.page-search-item {
    padding: 20px 0;
    border-bottom: 1px solid #e6eaf0;
}

.page-search-title {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.page-search-title a {
    color: var(--primary-dark);
}

.page-search-title a:hover {
    color: var(--primary);
}

.page-search-desc {
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

.page-search-cate {
    margin-bottom: 8px;
    font-size: 13px;
    color: #8a94a6;
}

.page-search-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
}

.page-search-url {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.page-search-date {
    flex-shrink: 0;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .page-search {
        flex-direction: column;
        gap: 20px;
    }

    .page-search-side {
        flex: none;
        width: 100%;
    }

    .page-search-filter-list {
        display: flex;
        flex-wrap: wrap;
    }

    .page-search-filter-list li a {
        padding: 0 14px;
        line-height: 36px;
    }

    .page-search-keyword {
        text-align: left;
    }
}

.page-detail-inner {
    width: 1000px;
    max-width: 100%;
    padding: 48px 0 60px;
}

.page-detail-head {
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e6eaf0;
    text-align: center;
}

.page-detail-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.45;
    color: #000;
}

.page-detail-subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: var(--text-muted);
}

.page-detail-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 20px;
    font-size: 14px;
    color: #9aa5b1;
}

.page-detail-meta .iconfont {
    margin-right: 4px;
    font-size: 14px;
}

.page-detail-content {
    min-height: 300px;
    margin-top: 20px;
    font-size: 14px;
    line-height: 30px;
    color: #333;
}

.page-detail-content img {
    max-width: 100%;
    height: auto;
}

.page-detail-content span {
    word-break: break-all !important;
    text-wrap-mode: wrap !important;
}

.page-detail-content h4 {
    display: none;
}

.page-detail-content .about-content h4.title,
.page-detail-content .pic-content h4.title {
    display: block;
}

.page-detail-attach {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid #e6eaf0;
}

.page-detail-attach-title {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
    padding-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-dark);
}

.page-detail-attach-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 24px;
    height: 3px;
    margin-left: -12px;
    background: var(--primary);
    border-radius: 2px;
}

.page-detail-attach-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.page-detail-attach-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #eef2f6;
}

.page-detail-attach-item:last-child {
    border-bottom: none;
}

.page-detail-attach-name {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    color: var(--text);
    word-break: break-all;
}

.page-detail-attach-size {
    flex-shrink: 0;
    width: 80px;
    font-size: 14px;
    color: var(--text-muted);
}

.page-detail-attach-btns {
    display: flex;
    flex-shrink: 0;
    gap: 8px;
}

.page-detail-attach-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 32px;
    padding: 0 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #fff;
    transition: opacity 0.2s ease;
}

.page-detail-attach-btn:hover {
    opacity: 0.88;
    color: #fff;
}

.page-detail-attach-btn--preview {
    background: #e67e22;
}

.page-detail-attach-btn--down {
    background: var(--primary);
}

.page-detail-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.page-detail-top {
    position: fixed;
    right: 40px;
    bottom: 80px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    color: #666;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: color 0.2s ease, box-shadow 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
}

.page-detail-top.is-show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.page-detail-top:hover {
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.page-detail-top .iconfont {
    font-size: 24px;
    line-height: 1;
}

.page-detail-top em {
    margin-top: 2px;
    font-size: 16px;
    font-style: normal;
    line-height: 1.2;
}

.page-detail-close {
    align-self: center;
    font-size: 14px;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.page-detail-close:hover {
    color: var(--primary);
}

/* 活动报名详情 */
.page-activity-action {
    display: flex;
    justify-content: center;
    margin: 40px 0 20px;
}

.page-activity-ended {
    display: inline-block;
    min-width: 168px;
    height: 48px;
    line-height: 48px;
    padding: 0 28px;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    text-align: center;
    letter-spacing: 0.12em;
    border-radius: 999px;
    background: #f0f0f0;
}

.page-activity-result {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid #e6eef7;
}

.page-activity-result-head {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 15px;
    color: #666;
}

.page-activity-result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.page-activity-result-pass {
    margin-left: auto;
}

.page-activity-result-pass em {
    display: inline-block;
    min-width: 28px;
    margin: 0 4px;
    padding: 0 8px;
    height: 28px;
    line-height: 28px;
    border-radius: 4px;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
}

.page-activity-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    table-layout: fixed;
}

.page-activity-table th,
.page-activity-table td {
    padding: 12px 10px;
    border: 1px solid #c5d8ef;
    text-align: center;
    font-size: 15px;
    color: #333;
    word-break: break-all;
}

.page-activity-table th {
    background: #eef5ff;
    font-weight: 600;
    color: var(--primary);
}

.page-activity-table tbody tr:nth-child(even) {
    background: #f8fbff;
}

@media (max-width: 768px) {
    .page-activity-result-pass {
        margin-left: 0;
    }

    .page-activity-table th,
    .page-activity-table td {
        padding: 10px 6px;
        font-size: 13px;
    }
}

.page-main--activity .page-main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-main--activity .page-main-inner {
    padding-top: 40px;
    padding-bottom: 200px;
}

.page-list--thumb .page-list-items > li {
    /* margin-bottom: 16px; */
    border-bottom: none;
}

.page-list--thumb .page-list-link {
    align-items: stretch;
    gap: 24px;
    min-height: 142px;
    padding: 28px 24px 28px 0px;
}

.page-list--thumb .page-list-thumb {
    flex-shrink: 0;
    width: 260px;
    overflow: hidden;
    border-radius: 4px;
}

.page-list--thumb .page-list-thumb img {
    display: block;
    width: 100%;
    height: 142px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.page-list--thumb .page-list-link:hover .page-list-thumb img {
    transform: scale(1.05);
}

.page-list--thumb .page-list-date {
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 2;
    width: 79px;
    height: 62px;
    background: #0A59B6;
    color: #fff;
}

.page-list--thumb .page-list-date::before {
    display: none;
}

.page-list--thumb .page-list-date-md {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    font-family: 'fangsong';
}

.page-list--thumb .page-list-date-y {
    margin-top: 0px;
    padding: 0;
    font-size: 15px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.92);
    border-radius: 0;
    background: transparent;
}

.page-list--thumb .page-list-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 84px;
}

.page-list--thumb .page-list-title {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
}

.page-list--thumb .page-list-intro {
    -webkit-line-clamp: 3;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
    color: #8a93a0;
}

.page-list--thumb .page-list-link:hover {
    border-color: #b7c8e0;
    background-color: #fff;
    background-image: url("../images/302.png");
    background-position: right bottom;
    background-size: 320px auto;
    background-repeat: no-repeat;
}

.page-list--thumb .page-list-link:hover .page-list-date-y {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
}

/* 电子专刊 - 卡片网格（参考首页 cultural-card，一行四个） */
.page-list--pic {
    padding: 20px 0 40px;
}

.page-pic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-list--pic .cultural-card {
    width: 100%;
    height: auto;
}

.page-list--pic .cultural-card-link {
    width: 100%;
    height: auto;
    aspect-ratio: 175 / 230;
}

@media (max-width: 1100px) {
    .page-pic-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 768px) {
    .page-pic-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
}

@media (max-width: 480px) {
    .page-pic-grid {
        grid-template-columns: 1fr;
    }
}

/* 律师文苑 - 书画作品展示 */
.page-culture {
    padding: 40px 0 60px;
}

.page-culture-title {
    margin: 0 0 40px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    color: var(--primary);
}

.page-culture-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.page-culture-item {
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(6, 48, 92, 0.1);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-culture-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(6, 48, 92, 0.15);
}

.page-culture-item img {
    display: block;
    width: 100%;
    height: auto;
}

.page-gongyi-section {
    margin-bottom: 36px;
}

.page-gongyi-section:last-child {
    margin-bottom: 0;
}

.page-gongyi-banner {
    margin-bottom: 16px;
}

.page-gongyi-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.page-gongyi-video-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.page-gongyi-video-item {
    position: relative;
    flex: 1 1 280px;
    max-width: 100%;
    overflow: hidden;
    cursor: pointer;
}

.page-gongyi-video-thumb {
    display: block;
    width: 100%;
    height: auto;
}

.page-gongyi-video-title {
    position: relative;
    z-index: 2;
    height: 36px;
    margin-top: -36px;
    padding: 0 12px;
    overflow: hidden;
    line-height: 36px;
    text-align: center;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, 0.45);
}

.page-gongyi-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 64px;
    height: 64px;
    margin-top: -52px;
    margin-left: -32px;
    pointer-events: none;
}

.page-gongyi-section .page-list {
    margin-top: 0;
}

.page-gongyi-section .page-box {
    margin-top: 24px;
}

.page-dangjian-section {
    margin-bottom: 36px;
}

.page-dangjian-section:last-child {
    margin-bottom: 0;
}

.page-dangjian-section-title {
    position: relative;
    margin: 0 0 20px;
    padding-left: 14px;
    font-size: 21px;
    font-weight: 700;
    color: var(--primary-dark);
    /* line-height: 1.2; */
}

.page-dangjian-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.28em;
    width: 4px;
    height: 1em;
    background: var(--primary);
    border-radius: 2px;
}

.page-dangjian-banner {
    position: relative;
    margin-bottom: 16px;
}

.page-dangjian-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.page-dangjian-banner-hotspot {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 120px;
    height: 30px;
    z-index: 1;
}

.page-dangjian-video-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.page-dangjian-video-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-dangjian-video-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    background: #f3f5f8;
}

.page-dangjian-video-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.page-dangjian-video-title {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    height: 32px;
    padding: 0 8px;
    overflow: hidden;
    line-height: 32px;
    text-align: center;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
    text-overflow: ellipsis;
    background-color: rgba(0, 0, 0, 0.5);
}

.page-dangjian-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    margin-top: -24px;
    margin-left: -24px;
    pointer-events: none;
}

.page-dangjian-section .page-list {
    margin-top: 0;
}

.page-dangjian-section .page-box {
    margin-top: 24px;
}

@media (max-width: 900px) {
    .page-dangjian-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-dangjian-video-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-dangjian-video-grid,
    .page-dangjian-video-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#video-play {
    display: none;
}

.layui-layer-page .layui-layer-content {
    overflow: hidden;
}

.dangjian-video-btn .layui-layer-setwin {
    right: 20px;
}

.page-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
    padding-top: 8px;
}

.page-box .total {
    font-size: 14px;
    color: var(--text-muted);
}

.page-box .pagination {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.page-box .pagination > li {
    margin: 0;
}

.page-box .pagination > li > a,
.page-box .pagination > li > span {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #dbe1e8;
    border-radius: 8px;
    background: #fff;
    color: #5a6a7a;
    font-size: 15px;
    line-height: 1;
    text-decoration: none;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-box .pagination > li > a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.page-box .pagination > li.active > span {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.page-box .pagination > li.disabled > span {
    color: #b0bac5;
    cursor: default;
}

.page-box .pagination > li:first-child > a,
.page-box .pagination > li:first-child > span,
.page-box .pagination > li:last-child > a,
.page-box .pagination > li:last-child > span {
    font-size: 0;
}

.page-box .pagination > li:first-child > a::before,
.page-box .pagination > li:first-child > span::before {
    content: "<";
    font-size: 16px;
    font-weight: 500;
}

.page-box .pagination > li:last-child > a::before,
.page-box .pagination > li:last-child > span::before {
    content: ">";
    font-size: 16px;
    font-weight: 500;
}

/* 常务理事会人员展示 */
.page-changwu-inner {
    width: 1000px;
    padding: 94px 0 60px;
}

.page-changwu .page-title {
    color: var(--primary);
    text-align: center;
    font-size: 24px;
    margin-bottom: 30px;
}

.page-changwu .pic-content h4.title {
    position: relative;
    text-align: center;
    padding-bottom: 8px;
    font-size: 18px;
    margin-bottom: 8px;
}

.page-changwu .pic-content h4.title::after {
    content: "";
    width: 18px;
    height: 3px;
    background-color: #b50000;
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -9px;
}

.page-changwu {
    --member-card-gap: 20px;
    --member-card-cols: 5;
    --member-card-width: calc((100% - (var(--member-card-cols) - 1) * var(--member-card-gap)) / var(--member-card-cols));
}

.page-changwu .pic-cont {
    margin-top: 10px;
}

.page-changwu .pic-cont > ul {
    display: flex;
    flex-wrap: wrap;
    overflow: visible;
}

.page-changwu .pic-cont:not(.huizhang) > ul {
    gap: var(--member-card-gap);
}

.page-changwu .pic-cont > ul > li {
    float: none;
    width: var(--member-card-width);
    flex: 0 0 var(--member-card-width);
    padding: 12px;
    height: auto;
    text-align: center;
    /* border: 1px solid #c1d7ec; */
    margin-right: 0;
    margin-bottom: 0;
    box-sizing: border-box;
}

.page-changwu .pic-cont > ul > li .img-box img {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 15 / 22;
    object-fit: cover;
}

.page-changwu .pic-cont > ul > li .intro {
    margin-top: 0;
    color: #808080;
    line-height: 1.4;
}

.page-changwu h2.name {
    font-size: 18px;
    text-align: center;
    font-weight: bold;
    line-height: 30px;
    margin-top: 5px;
}

.page-changwu .more-btn {
    /* display: block; */
    width: 80%;
    height: 30px;
    line-height: 30px;
    margin-top: 8px;
    border: none;
    background-color: #e8f3ff !important;
    color: var(--primary) !important;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 500;
}

.page-changwu .content-box {
    display: none;
    background-image: linear-gradient(to bottom, #d4e4fe, #ffffff);
    padding: 40px 30px;
    text-align: left;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-changwu .info-box {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-changwu .infos {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.page-changwu .infos .desc-box {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

.page-changwu .avatar {
    flex: 0 0 220px;
    width: 220px;
    margin-right: 30px;
}

.page-changwu .avatar img {
    width: 100%;
    height: auto;
}

.page-changwu .infos .name {
    font-size: 24px;
    font-weight: bold;
    text-indent: 30px;
}

.page-changwu .infos .desc-box p {
    text-align: left;
    text-indent: 30px;
    line-height: 1.8;
    font-size: 15px;
    word-break: break-all;
}

.page-changwu .pic-cont.huizhang > ul {
    margin-bottom: 16px;
    gap: 0;
    justify-content: center;
}

.page-changwu .jianshihui-intro {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 15px;
}

.page-changwu .jianshihui-intro p {
    margin-bottom: 8px;
}

@media (max-width: 1100px) {
    .header-top-inner {
        height: auto;
        padding-top: 16px;
        padding-bottom: 16px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .logo img {
        height: 56px;
    }

    .search {
        width: 100%;
        max-width: 360px;
    }

    .nav-inner {
        height: auto;
        overflow-x: auto;
    }

    .nav-list {
        min-width: 720px;
    }

    .nav-item > a {
        font-size: 14px;
        gap: 4px;
    }

    .page-banner-main {
        /* column-gap: 12px; */
    }

    .page-banner-title {
        font-size: 28px;
        letter-spacing: 0.08em;
    }

    .page-position {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .page-cate-list {
        justify-content: flex-start;
        gap: 0 24px;
        min-height: 48px;
        padding: 10px 0;
    }

    .page-cate-list a {
        font-size: 14px;
    }

    .page-main-inner {
        padding: 24px 0 40px;
    }
}

.wrap {
    width: var(--width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.ellip {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.flex {
    display: flex;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.more {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.more:hover {
    color: var(--primary);
}

@media (max-width: 1240px) {
    .wrap {
        width: 100%;
    }
}

/* footer */
.site-footer {
    height: 360px;
    position: relative;
    /* margin-top: 40px; */
    padding: 80px 0 40px;
    color: #fff;
    background: #001a3f url("../images/19.png") no-repeat center bottom;
    background-size: cover;
    overflow: hidden;
}

.site-footer-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    width: var(--width);
    max-width: 100%;
}

.site-footer-brand {
    flex-shrink: 0;
}

.site-footer-brand img {
    display: block;
    width: 100%;
    height: 100%;
    mix-blend-mode: lighten;
}

.site-footer-info {
    flex: 1;
    min-width: 0;
    text-align: center;
    font-size: 13px;
    line-height: 2.2;
    color: rgba(255, 255, 255, 0.92);
}

.site-footer-info a {
    color: #fff;
    transition: color 0.2s ease;
}

.site-footer-info a:hover {
    color: #c9a227;
}

.site-footer-qrcode {
    padding-left: 73px;
    flex-shrink: 0;
    text-align: center;
}

.site-footer-qrcode img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 4px;
}

.site-footer-qrcode p {
    margin-top: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .site-footer {
        padding: 36px 0 32px;
    }

    .site-footer-inner {
        flex-wrap: wrap;
        justify-content: center;
    }

    .site-footer-info {
        order: 3;
        width: 100%;
        font-size: 12px;
        line-height: 2;
    }

    .site-footer-brand img {
        width: 120px;
    }
}

/* 律师查询列表 */
.page-lawyer-search-bar {
    margin-bottom: 36px;
}

.page-lawyer-search-bar.mailbox-search {
    flex: none;
    width: 100%;
    padding-top: 0;
}

.page-lawyer-search-bar .mailbox-search-tabs {
    margin-bottom: 24px;
}

.page-lawyer-search-bar .mailbox-search-form--inline {
    display: none;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.page-lawyer-search-bar .mailbox-search-form--inline.is-show {
    display: flex;
}

.page-lawyer-search-bar .mailbox-search-form--inline .mailbox-search-input {
    flex: 1;
    min-width: 0;
    height: 48px;
    border: none;
    box-shadow: 0 2px 12px rgba(6, 48, 92, 0.08);
}

.page-lawyer-search-bar .mailbox-search-form--inline .mailbox-search-input:focus {
    box-shadow: 0 2px 16px rgba(6, 48, 92, 0.12);
}

.page-lawyer-search-bar .mailbox-search-form--inline .mailbox-search-btn {
    height: 48px;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .page-lawyer-search-bar .mailbox-search-form--inline {
        flex-direction: column;
        align-items: stretch;
    }

    .page-lawyer-search-bar .mailbox-search-form--inline .mailbox-search-btn {
        width: 100%;
    }
}

.page-lawyer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.page-lawyer-result .page-box .layui-laypage {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0;
}

.page-lawyer-result .page-box .layui-laypage a,
.page-lawyer-result .page-box .layui-laypage span {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 !important;
    padding: 0 10px !important;
    border: 1px solid #dbe1e8 !important;
    border-radius: 8px;
    background: #fff;
    color: #5a6a7a !important;
    font-size: 15px;
    line-height: 1 !important;
}

.page-lawyer-result .page-box .layui-laypage a:hover {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-curr {
    position: relative;
    border-color: var(--primary) !important;
    background: var(--primary);
    color: #fff !important;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-curr .layui-laypage-em {
    display: none;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-curr em {
    color: #fff !important;
    font-style: normal;
}

.page-lawyer-result .page-box .layui-laypage .layui-disabled,
.page-lawyer-result .page-box .layui-laypage .layui-disabled:hover {
    color: #b0bac5 !important;
    border-color: #dbe1e8 !important;
    cursor: default;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-prev,
.page-lawyer-result .page-box .layui-laypage .layui-laypage-next {
    font-size: 0 !important;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-prev::before {
    content: "<";
    font-size: 16px;
    font-weight: 500;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-next::before {
    content: ">";
    font-size: 16px;
    font-weight: 500;
}

.page-lawyer-result .page-box .layui-laypage .layui-laypage-count {
    border: 0 !important;
    background: transparent;
    color: var(--text-muted) !important;
    font-size: 14px;
    min-width: 0;
    height: auto;
    padding: 0 !important;
}

.page-lawyer-card {
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(6, 48, 92, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-lawyer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(6, 48, 92, 0.15);
}

.page-lawyer-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.page-lawyer-card-photo {
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #eef2f6;
}

.page-lawyer-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-lawyer-card-name {
    margin: 0;
    padding: 18px 16px 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #222;
}

.page-lawyer-card-info {
    padding: 12px 16px 22px;
    text-align: center;
}

.page-lawyer-card-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* margin: 0 0 8px; */
    font-size: 13px;
    line-height: 1.6;
    color: #999;
}

.page-lawyer-card-info p:last-child {
    margin-bottom: 0;
}

.page-lawyer-card-info .iconfont {
    flex-shrink: 0;
    font-size: 14px;
    color: #666;
}

.page-lawyer-card-info span {
    min-width: 0;
}

@media (max-width: 1100px) {
    .page-lawyer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .page-lawyer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .page-lawyer-grid {
        grid-template-columns: 1fr;
    }
}

.page-lawfirm-card-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 6 / 5;
    background: #fff;
}

.page-lawfirm-card-logo::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 0;
    height: 1px;
    background: #eef2f6;
    max-height: 1px;
}

.page-lawfirm-card-logo img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.page-lawyer-detail {
    --lawyer-accent: #C4996C;
    --lawyer-accent-soft: #c4a882;
    --lawyer-text: #4a3f35;
    --lawyer-muted: #C4996C;
    --lawyer-line: #C4996C;
    padding: 48px 0 72px;
    color: var(--lawyer-text);
}

.page-lawyer-profile {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 8px;
}

.page-lawyer-profile-main {
    padding-left: 134px;
    flex: 1;
    min-width: 0;
    padding-top: 8px;
}

.page-lawyer-profile-name {
    margin: 0 0 28px;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #C4996C;
    letter-spacing: 0.04em;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--lawyer-line);
}

.page-lawyer-profile-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 28px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--lawyer-muted);
}

.page-lawyer-profile-row--address {
    align-items: flex-start;
}

.page-lawyer-profile-ico {
    flex-shrink: 0;
    width: 18px;
    color: var(--lawyer-accent);
    font-size: 16px;
    line-height: 1.6;
}

.page-lawyer-profile-ico--check {
    position: relative;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    border: 1.5px solid var(--lawyer-accent);
    border-radius: 2px;
}

.page-lawyer-profile-ico--check::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border-right: 1.5px solid var(--lawyer-accent);
    border-bottom: 1.5px solid var(--lawyer-accent);
    transform: rotate(45deg);
}

.page-lawyer-profile-label {
    font-size: 18px;
    flex-shrink: 0;
    color: #000;
}

.page-lawyer-profile-text {
    font-size: 16px;
    color: #000;
}

.page-lawyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.page-lawyer-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 14px;
    border-radius: 4px;
    background: var(--lawyer-accent-soft);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}

.page-lawyer-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 6px;
    margin-top: -2px;
    border-radius: 50%;
    background: var(--lawyer-accent);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.page-lawyer-nav:hover {
    background: #8f7354;
    color: #fff;
    transform: scale(1.06);
}

.page-lawyer-nav .iconfont {
    font-size: 14px;
}

.page-lawyer-profile-photo {
    flex: 0 0 215px;
    width: 215px;
    overflow: hidden;
}

.page-lawyer-profile-photo img {
    display: block;
    width: 94%;
    /* height: 210px; */
    object-fit: cover;
}

.page-lawyer-block {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.page-lawyer-block-title {
    flex: 0 0 110px;
    width: 110px;
    margin: 0;
    padding: 0 22px 0 0;
    font-size: 20px;
    font-weight: 420;
    color: var(--lawyer-accent);
    line-height: 0;
    text-align: right;
}

.page-lawyer-block-body {
    position: relative;
    flex: 1;
    min-width: 0;
    padding: 28px 0 28px 28px;
    border-left: 1px solid var(--lawyer-line);
    border-top: 1px solid var(--lawyer-line);
}

.page-lawyer-block-body::before {
    content: "";
    position: absolute;
    top: -9px;
    left: -14px;
    width: 0;
    height: 0;
    border-left: 13px solid transparent;
    border-right: 13px solid transparent;
    border-top: 20px solid var(--lawyer-accent);
    z-index: 1;
    border-radius: 4px;
}

.page-lawyer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 32px;
}

.page-lawyer-info-grid-2 {
    grid-template-columns: minmax(0, 1.9fr) minmax(0, 1.2fr) minmax(0, 1.0fr);
}

.page-lawyer-info-item {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2px 0;
    padding-left: 14px;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
}

.page-lawyer-info-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--lawyer-accent);
}

.page-lawyer-info-label {
    flex-shrink: 0;
    color: var(--lawyer-muted);
}

.page-lawyer-info-value {
    color: var(--lawyer-text);
    word-break: break-all;
}

.page-lawyer-intro {
    font-size: 15px;
    line-height: 2;
    color: var(--lawyer-text);
    text-align: justify;
}

.page-lawyer-intro p {
    margin: 0 0 1em;
}

.page-lawyer-intro p:last-child {
    margin-bottom: 0;
}

.page-lawyer-map {
    width: 100%;
    height: 420px;
    background: #f5f2ed;
}

@media (max-width: 960px) {
    .page-lawyer-profile {
        flex-direction: column-reverse;
        align-items: center;
        text-align: left;
    }

    .page-lawyer-profile-main {
        width: 100%;
    }

    .page-lawyer-block-title {
        flex-basis: 88px;
        width: 88px;
        padding-right: 12px;
        font-size: 16px;
    }

    .page-lawyer-block-body {
        padding: 24px 0 8px 20px;
    }

    .page-lawyer-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-lawyer-detail {
        padding: 28px 0 48px;
    }

    .page-lawyer-profile-name {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .page-lawyer-block {
        flex-direction: column;
        gap: 10px;
    }

    .page-lawyer-block-title {
        flex-basis: auto;
        width: auto;
        padding: 0;
        text-align: left;
    }

    .page-lawyer-block-body {
        padding: 22px 0 8px 20px;
    }

    .page-lawyer-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-lawyer-map {
        height: 280px;
    }
}

.page-lawyer-profile-em {
    margin: 0 4px;
    font-style: normal;
    font-weight: 700;
    color: var(--lawyer-accent);
}

.page-lawyer-profile-photo--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
}

.page-lawyer-profile-photo--logo img {
    width: 150px;
    height: 150px;
    
}

.page-lawfirm-team-block {
    margin-top: 8px;
}

.page-lawfirm-team-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 24px;
}

.page-lawfirm-team-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
    min-width: 0;
}

.page-lawfirm-team-sort {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: #999;
    white-space: nowrap;
}

.page-lawfirm-team-sort .is-active,
.page-lawfirm-team-sort span:last-child {
    color: #333;
}

.page-lawfirm-team-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
}

.page-lawfirm-team-field {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.page-lawfirm-team-field select {
    height: 32px;
    min-width: 72px;
    padding: 0 24px 0 8px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    background: #fff;
    color: #333;
    outline: none;
}

.page-lawfirm-team-field select:focus {
    border-color: var(--lawyer-accent);
}

.page-lawfirm-team-search {
    display: inline-flex;
    align-items: stretch;
    height: 32px;
}

.page-lawfirm-team-search input {
    width: 160px;
    height: 100%;
    padding: 0 10px;
    border: 1px solid #d9d9d9;
    border-right: 0;
    border-radius: 2px 0 0 2px;
    background: #fff;
    color: #333;
    outline: none;
}

.page-lawfirm-team-search input:focus {
    border-color: var(--lawyer-accent);
}

.page-lawfirm-team-search .page-lawfirm-team-btn {
    border-radius: 0 2px 2px 0;
}

.page-lawfirm-team-btn {
    height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: 2px;
    background: var(--lawyer-accent);
    color: #fff;
    font-size: 14px;
    line-height: 32px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.page-lawfirm-team-btn:hover {
    background: #8f7354;
}

.page-lawfirm-team-btn--reset {
    background: var(--lawyer-accent);
}

.page-lawfirm-team-btn--reset:hover {
    background: #8f7354;
}

.page-lawfirm-team-page.page-box {
    margin: 0;
    padding: 0;
    text-align: right;
    flex-shrink: 0;
}

.page-lawfirm-team-page .layui-laypage {
    margin: 0;
}

.page-lawfirm-team-page .layui-laypage a,
.page-lawfirm-team-page .layui-laypage span {
    margin: 0 4px;
    padding: 0 2px;
    height: auto;
    line-height: 1.4;
    border: 0 !important;
    background: transparent !important;
    color: #999;
    font-size: 14px;
}

.page-lawfirm-team-page .layui-laypage .layui-laypage-curr .layui-laypage-em {
    display: none;
}

.page-lawfirm-team-page .layui-laypage .layui-laypage-curr em {
    color: #333;
    font-style: normal;
    font-weight: 700;
}

.page-lawfirm-team-page .layui-laypage a:hover {
    color: #333;
}

.page-lawfirm-team-page .layui-laypage .layui-disabled,
.page-lawfirm-team-page .layui-laypage .layui-disabled:hover {
    color: #ccc !important;
}

.page-lawfirm-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.page-lawfirm-team-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee7de;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-lawfirm-team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(168, 137, 104, 0.15);
}

.page-lawfirm-team-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.page-lawfirm-team-card-photo {
    overflow: hidden;
    aspect-ratio: 5 / 6;
    background: #f3efe9;
}

.page-lawfirm-team-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-lawfirm-team-card-name {
    margin: 0;
    padding: 12px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #5c4a3a;
    text-align: center;
}

@media (max-width: 960px) {
    .page-lawfirm-team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .page-lawfirm-team-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-lawfirm-team-page.page-box {
        width: 100%;
        text-align: left;
    }

    .page-lawfirm-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.page-banner--service {
    background: #eef4fb;
}

.page-banner--service .page-banner-bg {
    margin: 0 auto;
}

.page-main--safeguard {
    background: #f7faff;
}

.page-main--safeguard .page-main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-safeguard-inner {
    width: var(--width);
    max-width: calc(100% - 40px);
    padding: 40px 0 220px;
}

.page-safeguard-position {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.page-safeguard-position .iconfont {
    margin-right: 2px;
    color: #316fc4;
}

.page-safeguard-position a {
    color: #666;
}

.page-safeguard-position a:hover {
    color: #316fc4;
}

.page-safeguard {
    border-radius: 8px;
}

.page-safeguard-title {
    margin: 0 0 36px;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #d6e6f7;
    padding-bottom: 24px;
}

.page-safeguard-body {
    font-size: 16px;
    line-height: 2;
    color: #333;
}

.page-safeguard-body p {
    margin: 0 0 8px;
}

.page-safeguard-body p:last-child {
    margin-bottom: 0;
}

.page-safeguard-action {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #d6e6f7;
    text-align: center;
}

.page-safeguard-btn {
    display: inline-block;
    min-width: 200px;
    height: 48px;
    line-height: 46px;
    padding: 0 48px;
    font-size: 18px;
    font-weight: 500;
    color: #3b82f6;
    text-align: center;
    letter-spacing: 0.12em;
    border: 1px solid #3b82f6;
    border-radius: 999px;
    background: #e8f1ff;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-safeguard-btn:hover {
    color: #2563eb;
    border-color: #2563eb;
    background: #dbeafe;
}

/* 投诉中心 */
.page-complaint-tabs {
    background: #eef3f8;
}

.page-complaint-tabs-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0 48px;
    min-height: 56px;
    padding: 12px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-complaint-tab {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
}

.page-complaint-tab:hover,
.page-complaint-tab.is-active {
    font-weight: 700;
    color: var(--primary);
}

.page-complaint-panel[hidden] {
    display: none !important;
}

.page-complaint-body .is-heading {
    margin-top: 18px;
    font-weight: 700;
    font-family: SimHei, 'Microsoft YaHei', sans-serif;
}

.page-complaint-body .is-heading:first-child {
    margin-top: 0;
}

.page-complaint-body .is-em {
    font-weight: 700;
}

.page-complaint-body .is-underline {
    text-decoration: underline;
}

.page-complaint-flow {
    text-align: center;
}

.page-complaint-flow img {
    display: block;
    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
}

.page-complaint-contact {
    padding: 20px 12px 10px;
    font-size: 18px;
    line-height: 2.2;
    color: #333;
}

.page-complaint-contact-label {
    font-weight: 600;
    color: #1a1a1a;
}

.page-complaint-action {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.page-complaint-action--pair {
    justify-content: space-between;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.page-step-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 168px;
    height: 48px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 500;
    color: #4a90e2;
    letter-spacing: 0.08em;
    border: 1px solid #7eb3ef;
    border-radius: 999px;
    background: #eef5ff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-step-btn:hover {
    color: #316fc4;
    border-color: #316fc4;
    background: #e3efff;
}

.page-step-ico {
    position: relative;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #689CF8;
}

.page-step-btn:hover .page-step-ico {
    background: #689CF8;
}

.page-step-btn--next .page-step-ico::before,
.page-step-btn--prev .page-step-ico::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    box-sizing: border-box;
}

.page-step-btn--next .page-step-ico::before {
    transform: translate(-60%, -50%) rotate(45deg);
}

.page-step-btn--prev .page-step-ico::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

@media (max-width: 768px) {
    .page-complaint-tabs-inner {
        gap: 0 24px;
        min-height: 48px;
        padding: 10px 0;
    }

    .page-complaint-tab {
        font-size: 14px;
    }

    .page-complaint-action--pair {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .page-complaint-contact {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-safeguard {
        padding: 28px 20px 36px;
    }

    .page-safeguard-title {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .page-safeguard-body {
        font-size: 15px;
        line-height: 1.85;
    }

    .page-safeguard-action {
        margin-top: 36px;
        padding-top: 28px;
    }
}

/* 会长 / 监事长信箱 */
.page-main--mailbox {
    background: #f7faff;
}

.page-main--mailbox .page-main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.page-mailbox-inner {
    width: var(--width);
    max-width: calc(100% - 40px);
    padding: 72px 0 220px;
}

.page-mailbox {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 56px 56px 48px;
    border-radius: 12px;
    background: linear-gradient(180deg, #F3F8FE 0%, #F3F8FE 0%, #fff 35%);
    box-shadow: 0 8px 32px rgba(11, 61, 110, 0.08);
}

.page-mailbox-ribbon {
    position: absolute;
    left: 50%;
    top: 7px;
    z-index: 2;
    width: 280px;
    max-width: 60%;
    transform: translate(-50%, -42%);
    line-height: 0;
    pointer-events: none;
}

.page-mailbox-ribbon img {
    display: block;
    width: 100%;
    height: auto;
}

.page-mailbox-form {
    margin-top: 28px;
}

.page-mailbox-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.page-mailbox-field {
    margin-bottom: 28px;
}

.page-mailbox-label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 1.4;
}

.page-mailbox-input,
.page-mailbox-textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    border: 1px solid #d8dee6;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.2s ease;
}

.page-mailbox-input:focus,
.page-mailbox-textarea:focus {
    border-color: #689CF8;
    outline: none;
}

.page-mailbox-input::placeholder,
.page-mailbox-textarea::placeholder {
    color: #9aa5b1;
}

.page-mailbox-textarea {
    min-height: 160px;
    resize: vertical;
}

.page-mailbox-tip {
    margin: -8px 0 28px;
    font-size: 14px;
    color: #e11d2e;
    line-height: 1.5;
}

.page-mailbox-captcha-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.page-mailbox-input--code {
    width: 180px;
    flex: 0 0 180px;
}

.page-mailbox-captcha-img {
    display: block;
    height: 44px;
    width: auto;
    cursor: pointer;
    border-radius: 4px;
}

.page-mailbox-action {
    margin-top: 36px;
    text-align: center;
}

.page-mailbox-submit {
    display: inline-block;
    min-width: 220px;
    height: 49px;
    padding: 0 48px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    border: none;
    border-radius: 999px;
    background: #4071e1;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
    line-height: 49px;
}

.page-mailbox-submit:hover {
    background: #316fc4;
}

@media (max-width: 768px) {
    .page-mailbox-inner {
        padding: 56px 0 160px;
    }

    .page-mailbox {
        padding: 48px 20px 36px;
    }

    .page-mailbox-ribbon {
        width: 200px;
    }

    .page-mailbox-row--2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .page-mailbox-input--code {
        width: 140px;
        flex-basis: 140px;
    }

    .page-mailbox-submit {
        min-width: 160px;
        width: 100%;
        max-width: 280px;
    }
}

/* 专题页 */
.page-zt-theme .nav {
    background: #AA0001;
}

.page-zt-theme .nav-item > a:hover,
.page-zt-theme .nav-item.is-active > a,
.page-zt-theme .nav-item.active > a {
    background: #880001;
}

.page-zt-theme .nav-sub li a:hover {
    background: #FFe7e7;
}

.page-zt-theme .site-footer {
    background: #001a3f url("../images/914.jpg") no-repeat center bottom;
    background-size: cover;
}

.page-zt-nav {
    background: #cc0001;
}

.page-zt-nav-inner {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.page-zt-nav-list {
    display: flex;
    align-items: stretch;
    min-height: 56px;
}

.page-zt-nav-list li {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.page-zt-nav-list li:last-child {
    border-right: none;
}

.page-zt-nav-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 10px 16px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.35;
    transition: background 0.2s ease;
}

.page-zt-nav-list li.is-active a,
.page-zt-nav-list a:hover {
    background: #aa0001;
}

.page-zt-nav-list li.is-active a::before {
    content: '';
    display: block;
    width: 22px;
    height: 25px;
    margin-right: 8px;
    flex-shrink: 0;
    background: url("../images/904.png") center / contain no-repeat;
}

.page-main--zt {
    background: #f8f8f8;
}

.page-main--zt .page-main-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

.page-zt-inner {
    width: var(--width);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 20px 220px;
    box-sizing: border-box;
}

.page-zt {
    padding: 28px 36px 40px;
    border-radius: 10px;
}

.page-zt--list {
    background: #fff;
}

.page-zt-list-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #FFCFCD;
}

.page-zt-list-head .page-position {
    position: static;
    right: auto;
    bottom: auto;
    left: auto;
    margin-bottom: 0;
    flex: 1;
    justify-content: flex-end;
    color: #888;
    text-shadow: none;
}

.page-zt-list-head .page-position .iconfont,
.page-zt-list-head .page-position a,
.page-zt-list-head .page-position span {
    color: #888;
}

.page-zt-list-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #aa0001;
    line-height: 1.3;
}

.page-zt-title {
    margin: 0 0 28px;
    text-align: center;
    line-height: 0;
}

.page-zt-title img {
    display: block;
    height: auto;
    margin: 0 auto;
}

.page-zt-feature {
    position: relative;
    display: flex;
    align-items: center;
    margin: 8px 0 28px;
    padding: 18px;
    border-radius: 2px;
    background: linear-gradient(to bottom, #FEE8DD 0%, #FFF5F1 100%);
}

.page-zt-feature-badge {
    position: absolute;
    left: 28px;
    top: -16px;
    width: 69px;
    line-height: 0;
}

.page-zt-feature-badge img {
    display: block;
    width: 100%;
    height: auto;
}

.page-zt-feature-body {
    flex: 1;
    min-width: 0;
    padding: 18px 18px 18px 110px;
}

.page-zt-feature-title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
}

.page-zt-feature-title a {
    color: #1a1a1a;
}

.page-zt-feature-title a:hover {
    color: #b40000;
}

.page-zt-feature-intro {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    text-indent: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-zt-panel {
    display: flex;
    gap: 36px;
    align-items: stretch;
}

.page-zt-thumb {
    flex: 0 0 460px;
    width: 460px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 6px;
    background: #f3f3f3;
}

.page-zt-thumb a {
    display: block;
    height: 100%;
}

.page-zt-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.page-zt-thumb a:hover img {
    transform: scale(1.04);
}

.page-zt-news {
    flex: 1;
    min-width: 0;
}

.page-zt-news-head {
    margin-bottom: 16px;
    border-bottom: 1px solid #FFCFCD;
}

.page-zt-news-more {
    display: inline-block;
    min-width: 120px;
    height: 36px;
    line-height: 36px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.2em;
    background: #cc0001;
    border-radius: 8px;
}

.page-zt-news-more:hover {
    background: #aa0001;
    color: #fff;
}

.page-zt-news-list li {
    position: relative;
    padding: 12px 0 12px 16px;
}

.page-zt-news-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-radius: 50%;
    background: #cc0001;
}

.page-zt-news-list a {
    display: block;
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.page-zt-news-list a:hover {
    color: #b40000;
}

@media (max-width: 1100px) {
    .page-zt-inner {
        width: 100%;
        padding: 28px 16px 160px;
    }

    .page-zt-panel {
        flex-direction: column;
    }

    .page-zt-thumb {
        flex-basis: auto;
        width: 100%;
    }

    .page-zt-thumb img {
        min-height: 240px;
    }

    .page-zt-title img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .page-zt-inner {
        padding: 20px 12px 100px;
    }

    .page-zt-nav-list a {
        font-size: 14px;
        padding: 10px 8px;
    }

    .page-zt-nav-list li.is-active a::before {
        width: 16px;
        height: 18px;
        margin-right: 6px;
    }

    .page-zt {
        padding: 20px 16px 28px;
    }

    .page-zt-list-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .page-zt-list-title {
        font-size: 18px;
    }

    .page-zt-title {
        margin-bottom: 20px;
    }

    .page-zt-feature {
        padding: 16px 16px 16px 58px;
    }

    .page-zt-feature-badge {
        left: 12px;
        width: 30px;
    }

    .page-zt-feature-title {
        font-size: 16px;
    }

    .page-zt-news-list a {
        font-size: 15px;
    }

}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background: var(--primary) !important;
}