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

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

body {
    font-family: 'Noto Sans SC', sans-serif;
    overflow-x: hidden;
}

/* 首屏区域 */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* 背景图片轮播 */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 1s ease-in-out;
}

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

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide.inactive {
    opacity: 0;
}

/* 背景遮罩 */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* 导航栏 */
.navbar {
    position: relative;
    z-index: 1001;
    width: 100%;
    height: 80px;
    background: transparent;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background-color: #DC2626;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text .cn {
    color: white;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
}

.logo-text .en {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: normal;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* 导航菜单 */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-item {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding-bottom: 8px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 0.9);
}

.nav-item.active::after,
.nav-item:hover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #EF4444;
}

.nav-item:hover::after {
    opacity: 0.6;
}

/* 导航下拉菜单 */
.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown .nav-item i {
    font-size: 12px;
    margin-left: 4px;
    transition: transform 0.3s;
}

.nav-dropdown:hover .nav-item i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 160px;
    padding: 10px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    transition-delay: 0s;
    z-index: 1000;
    margin-top: 0;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

/* 在下拉菜单上方添加一个不可见的桥接区域，防止鼠标移动时菜单消失 */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333333;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background-color: #F5F5F5;
    color: #DC2626;
}

/* 搜索框 */
.search-box {
    position: relative;
}

.search-input {
    width: 180px;
    height: 40px;
    padding: 0 40px 0 16px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search-input:focus {
    border-color: white;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.3s;
}

.search-btn:hover {
    color: white;
}

/* 主标题区域 */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 160px);
}

.hero-text-container {
    text-align: center;
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.carousel-text {
    transition: opacity 1s ease-in-out;
}

.carousel-text.active {
    opacity: 1;
}

.carousel-text.inactive {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 40px;
}

.hero-title {
    color: white;
    font-size: 3em;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

.hero-subtitle {
    color: white;
    font-size: 3em;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background-color: white;
}

/* 瑞格律所介绍区块 */
.intro-section {
    width: 100%;
    background-color: #F8F8F8;
    background-image: url('images/AYxF55u2+MnEAAAAAElFTkSuQmCC.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.intro-content {
    width: 100%;
}

.intro-title-group {
    margin-bottom: 40px;
}

.intro-title {
    color: #1A1A1A;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* 首页专用：标题居中对齐 */
.home-intro-title-center {
    text-align: center;
}

.intro-text {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* 红色背景区块 */
.team-section {
    width: 100%;
    position: relative;
    background-image: url('images/Z.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.team-header {
    position: relative;
    padding: 60px 0 80px;
}

.team-title {
    position: relative;
    z-index: 1;
    text-align: center;
}

.team-title h2 {
    color: white;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

.team-title h3 {
    color: white;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
}

/* 律师卡片区域 */
.team-cards {
    position: relative;
    padding-bottom: 80px;
}

.team-cards-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.lawyer-card {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.lawyer-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.lawyer-photo {
    width: 100%;
    height: 320px;
    background-color: #5A5A5A;
    overflow: hidden;
}

.lawyer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lawyer-info {
    padding: 24px;
    background-color: white;
}

.lawyer-name {
    color: #2A2A2A;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 12px;
}

.lawyer-position {
    color: #999999;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.lawyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lawyer-tag {
    padding: 4px 12px;
    background-color: #F5F5F5;
    color: #666666;
    font-size: 13px;
}

/* 查看更多按钮 */
.view-more {
    text-align: center;
}

.view-more-btn {
    padding: 14px 50px;
    background-color: #E84855;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.view-more-btn:hover {
    background-color: #D62839;
}

/* 业务领域区块 */
.business-section {
    width: 100%;
    background-color: #F5F5F5;
    padding: 80px 0 100px;
}

.business-title {
    text-align: center;
    margin-bottom: 60px;
}

.business-title h2 {
    color: #2A2A2A;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.business-title h3 {
    color: #2A2A2A;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
}

/* Tab导航 */
.business-tabs {
    max-width: 1300px;
    margin: 0 auto 60px;
    padding: 0 60px;
    display: flex;
    justify-content: flex-start;
    gap: 0;
}

.tab-item {
    flex: 1;
    padding: 20px 30px;
    background: white;
    border: none;
    color: #666666;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.tab-item:hover {
    color: #2A2A2A;
}

.tab-item.active {
    color: #2A2A2A;
    font-weight: bold;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #2A2A2A;
}

.tab-icon {
    font-size: 48px;
}

/* Tab内容区域 */
.business-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block;
}

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

.content-layout {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.content-text {
    max-width: 1000px;
    margin: 0 auto;
}

.content-subtitle {
    color: #666666;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
}

.content-title {
    color: #2A2A2A;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 24px;
}

.content-desc {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

/* 新闻资讯区块 */
.news-section {
    width: 100%;
    background-color: #FAFAFA;
    padding: 80px 0 120px;
    position: relative;
}

.news-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(200, 200, 200, 0.3), transparent);
}

.news-title {
    text-align: center;
    margin-bottom: 60px;
}

.news-title h2 {
    color: #2A2A2A;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.news-title h3 {
    color: #2A2A2A;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 40px;
}

/* 左侧主要文章 */
.news-main {
    flex: 1;
}

.news-main-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-main-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.news-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-label {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    color: #DC2626;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #DC2626;
}

.news-main-content {
    padding: 30px;
}

.news-main-title {
    color: #2A2A2A;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 12px;
}

.news-main-date {
    color: #999999;
    font-size: 14px;
    margin-bottom: 16px;
}

.news-main-desc {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

/* 右侧文章列表 */
.news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-item {
    background: white;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s;
    position: relative;
}

.news-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.news-item-image {
    flex: 0 0 100px;
    width: 100px;
    height: 100px;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.news-item-title {
    color: #2A2A2A;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-item-desc {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-item-date {
    color: #999999;
    font-size: 12px;
}

.news-item-more {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    background: none;
    border: 1px solid #CCCCCC;
    border-radius: 50%;
    color: #666666;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.news-item-more:hover {
    background-color: #DC2626;
    border-color: #DC2626;
    color: white;
}

/* 更多按钮 */
.news-more {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 0 60px;
    display: flex;
    justify-content: flex-end;
}

.news-more-btn {
    width: 60px;
    height: 60px;
    background-color: #DC2626;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.news-more-btn:hover {
    background-color: #B91C1C;
}

/* 荣誉资质区块 */
.honor-section {
    width: 100%;
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.honor-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.honor-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.honor-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 50, 80, 0.75);
}

.honor-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 60px;
}

.honor-title h2 {
    color: white;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.honor-title h3 {
    color: white;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
}

.honor-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.honor-item {
    text-align: center;
}

.honor-card {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.honor-text {
    color: white;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

/* 联系我们区块 */
.contact-section {
    width: 100%;
    background-color: #F8F8F8;
    padding: 80px 0;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
}

.contact-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-title h2 {
    color: #2A2A2A;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 12px;
}

.contact-subtitle {
    color: #666666;
    font-size: 18px;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    color: #2A2A2A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    color: #333333;
    background-color: #F8F8F8;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s;
    font-family: 'Noto Sans SC', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    background-color: white;
    border-color: #DC2626;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #DC2626;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-submit-btn:hover {
    background-color: #B91C1C;
}

/* 页脚区块 */
.footer {
    width: 100%;
}

.footer-main {
    background-color: #F0F0F0;
    padding: 60px 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Logo和二维码 */
.footer-logo {
    margin-bottom: 30px;
}

.footer-logo-img {
    width: 280px;
    height: auto;
}

.footer-qrcodes {
    display: flex;
    gap: 20px;
}

.qrcode-item {
    text-align: center;
}

.qrcode-item img {
    width: 140px;
    height: 140px;
    background-color: white;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}

.qrcode-item p {
    color: #666666;
    font-size: 14px;
}

/* 导航链接 */
.footer-title {
    color: #DC2626;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #666666;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #DC2626;
}

/* 联系方式 */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    color: #666666;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-phone {
    color: #2A2A2A;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
}

/* 联系地址 */
.footer-address {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-address p {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

/* 版权信息 */
.footer-copyright {
    background-color: #DC2626;
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    color: white;
    font-size: 14px;
    margin: 0;
}

/* 业务详情页样式 */
.detail-section {
    width: 100%;
    background-color: white;
    padding: 60px 0 100px;
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 14px;
    color: #999999;
}

.breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #DC2626;
}

.breadcrumb span {
    margin: 0 8px;
    color: #CCCCCC;
}

/* 详情标题 */
.detail-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F0F0F0;
}

.detail-title {
    color: #2A2A2A;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #999999;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #DC2626;
}

/* 业务简介 */
.detail-intro {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.detail-intro p {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

/* 详情内容 */
.detail-content {
    color: #333333;
    font-size: 16px;
    line-height: 1.8;
}

.content-section-title {
    color: #2A2A2A;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 3px solid #DC2626;
    display: inline-block;
}

.service-subtitle {
    color: #2A2A2A;
    font-size: 22px;
    font-weight: bold;
    margin: 40px 0 20px;
}

/* 服务图片 */
.service-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: center;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 服务列表 */
.service-list {
    margin-bottom: 50px;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

.service-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #DC2626;
    font-size: 18px;
}

/* 专业优势 */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.advantage-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #F8F8F8;
    border-radius: 8px;
    transition: all 0.3s;
}

.advantage-item:hover {
    background-color: #DC2626;
    transform: translateY(-5px);
}

.advantage-item i {
    font-size: 48px;
    color: #DC2626;
    margin-bottom: 16px;
    transition: color 0.3s;
}

.advantage-item:hover i {
    color: white;
}

.advantage-item h5 {
    color: #2A2A2A;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.advantage-item:hover h5 {
    color: white;
}

.advantage-item p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    transition: color 0.3s;
}

.advantage-item:hover p {
    color: white;
}

/* 律师团队页面样式 */
.team-page-section {
    width: 100%;
    background-color: white;
    padding: 80px 0 100px;
}

.team-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-page-title {
    text-align: center;
    margin-bottom: 60px;
}

.team-page-title h2 {
    color: #00A8E8;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 12px;
}

.team-page-subtitle {
    color: #666666;
    font-size: 18px;
}

.team-page-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.team-member {
    background: white;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 16px;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 0 10px 20px;
}

.member-name {
    color: #2A2A2A;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.member-position {
    color: #999999;
    font-size: 14px;
    line-height: 1.5;
}

/* 新闻列表页样式 */
.news-list-section {
    width: 100%;
    background-color: white;
    padding: 60px 0 100px;
}

.news-list-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 40px;
}

/* 左侧分类栏 */
.news-sidebar {
    flex: 0 0 280px;
}

.news-category {
    background: white;
    border: 1px solid #E0E0E0;
}

.category-title {
    background-color: #DC2626;
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 16px 20px;
    margin: 0;
    text-align: center;
}

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

.category-item {
    border-bottom: 1px solid #F0F0F0;
    position: relative;
}

.category-item a {
    display: block;
    padding: 16px 20px;
    color: #333333;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.category-item:hover a,
.category-item.active a {
    color: #DC2626;
    background-color: #FFF5F5;
}

.category-item.active {
    background-color: #FFF5F5;
}

.category-item i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #DC2626;
    font-size: 14px;
}

/* 右侧新闻列表 */
.news-main-content {
    flex: 1;
}

.news-article-link {
    display: block;
    text-decoration: none;
    margin-bottom: 40px;
}

.news-article {
    display: flex;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid #F0F0F0;
}

.news-article-link:last-child .news-article {
    border-bottom: none;
}

.article-image {
    flex: 0 0 280px;
    height: 200px;
    overflow: hidden;
    border-radius: 4px;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-article-link:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    color: #2A2A2A;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-article-link:hover .article-title {
    color: #DC2626;
}

.article-date {
    color: #999999;
    font-size: 14px;
    margin-bottom: 16px;
}

.article-desc {
    color: #666666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.article-more {
    display: inline-block;
    color: #999999;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.3s;
}

.article-more:hover {
    color: #DC2626;
}

/* 新闻详情页样式 */
.news-detail-content {
    margin-top: 40px;
}

.detail-main-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detail-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.detail-text {
    max-width: 900px;
    margin: 0 auto;
}

.detail-text p {
    color: #333333;
    font-size: 16px;
    line-height: 2;
    margin-bottom: 24px;
    text-align: justify;
    text-indent: 2em;
}

.detail-actions {
    max-width: 900px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #F0F0F0;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: #DC2626;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #B91C1C;
}

.back-btn i {
    font-size: 14px;
}

/* 党建活动列表样式 */
.party-article-link {
    display: block;
    text-decoration: none;
}

.party-article {
    padding: 30px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.3s;
}

.party-article-link:hover .party-article {
    background-color: #FAFAFA;
    padding-left: 20px;
}

.party-title {
    color: #2A2A2A;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.5;
    transition: color 0.3s;
}

.party-article-link:hover .party-title {
    color: #DC2626;
}

.party-date {
    color: #999999;
    font-size: 14px;
}

/* 荣誉页面样式 */
.honor-page-section {
    width: 100%;
    background-color: #FAFAFA;
    padding: 80px 0;
}

.honor-page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.honor-intro {
    text-align: center;
    margin-bottom: 60px;
}

.honor-intro h2 {
    color: #2A2A2A;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 20px;
}

.honor-intro p {
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

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

.honor-page-item {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.honor-page-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.honor-page-card {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #F4D03F 0%, #C9A236 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

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

.honor-page-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.honor-page-info h3 {
    color: #2A2A2A;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    min-height: 48px;
}

.honor-date {
    color: #999999;
    font-size: 14px;
}

/* 关于我们页面样式 */
/* 图文并排区块 */
.about-image-text-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
}

.about-image-text-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-left-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-right-image {
    flex: 0 0 500px;
    height: 450px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.about-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-paragraph {
    color: #4B5563;
    font-size: 16px;
    line-height: 2;
    text-align: justify;
    text-indent: 2em;
}

/* 联系我们区块 */
.contact-us-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 80px 0;
}

.contact-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    gap: 80px;
}

.contact-us-left {
    flex: 0 0 450px;
}

.contact-us-title {
    color: #1F2937;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-us-subtitle {
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.contact-us-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-us-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 18px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 4px;
}

.contact-label {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
}

.contact-value {
    color: #1F2937;
    font-size: 16px;
    font-weight: 600;
}

.contact-us-right {
    flex: 1;
    position: relative;
}

.contact-map {
    width: 100%;
    height: 450px;
    min-height: 450px;
    max-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

#mapContainer {
    width: 100%;
    height: 450px !important;
    min-height: 450px;
    max-height: 450px;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .about-image-text-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .about-right-image {
        flex: 0 0 auto;
        width: 100%;
        height: 350px;
    }
    
    .contact-us-container {
        flex-direction: column;
        gap: 50px;
    }
    
    .contact-us-left {
        flex: 0 0 auto;
    }
    
    .contact-map,
    #mapContainer {
        height: 400px !important;
        min-height: 400px;
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .about-image-text-section {
        padding: 50px 0;
    }
    
    .about-image-text-container {
        padding: 0 30px;
    }
    
    .about-right-image {
        height: 280px;
    }
    
    .about-text-paragraph {
        font-size: 15px;
    }
    
    .contact-us-section {
        padding: 50px 0;
    }
    
    .contact-us-container {
        padding: 0 30px;
    }
    
    .contact-us-title {
        font-size: 28px;
    }
    
    .contact-map,
    #mapContainer {
        height: 300px !important;
        min-height: 300px;
        max-height: 300px;
    }
}

/* ========== 移动端适配 ========== */

/* 手机端汉堡菜单按钮 */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    position: relative;
}

/* 平板设备适配 (768px - 1024px) */
@media (max-width: 1024px) {
    /* 导航栏调整 */
    .navbar-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .nav-item {
        font-size: 14px;
    }
    
    .search-input {
        width: 140px;
    }
    
    /* 首屏标题调整 */
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 2.2em;
    }
    
    /* 介绍区域 */
    .intro-section {
        padding: 60px 0;
    }
    
    .intro-container {
        padding: 0 30px;
    }
    
    .intro-title {
        font-size: 32px;
    }
    
    /* 团队区域 */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .team-cards-container {
        padding: 0 30px;
    }
    
    /* 业务领域 */
    .business-tabs {
        padding: 0 30px;
        flex-wrap: wrap;
    }
    
    .tab-item {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .tab-icon {
        font-size: 36px;
    }
    
    .business-content {
        padding: 0 30px;
    }
    
    .content-layout {
        padding: 40px;
    }
    
    /* 新闻区域 */
    .news-container {
        padding: 0 30px;
        flex-direction: column;
    }
    
    .news-main-image {
        height: 300px;
    }
    
    /* 荣誉区域 */
    .honor-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .honor-container {
        padding: 0 30px;
    }
    
    /* 联系表单 */
    .contact-container {
        padding: 0 30px;
    }
    
    .contact-form {
        padding: 40px;
    }
    
    /* 页脚 */
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        padding: 0 30px;
    }
}

/* 手机端适配 (最大宽度 768px) */
@media (max-width: 768px) {
    /* 显示汉堡菜单按钮 */
    .mobile-menu-btn {
        display: block;
    }
    
    /* 导航栏调整 */
    .navbar {
        height: 60px;
        z-index: 1000;
    }
    
    .navbar-container {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 50px;
    }
    
    /* 隐藏桌面导航菜单 */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: rgba(20, 20, 20, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 0;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        padding: 20px;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-item::after {
        display: none;
    }
    
    /* 移动端下拉菜单 */
    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .nav-dropdown > .nav-item {
        width: 100%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    .nav-dropdown .nav-item i {
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.active .nav-item i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
        border-radius: 0;
    }
    
    .dropdown-menu::before {
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
        padding: 15px 20px;
        width: 100%;
        text-align: center;
        display: block;
        font-size: 16px;
    }
    
    .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .search-box {
        width: 100%;
        margin-top: 20px;
    }
    
    .search-input {
        width: 100%;
    }
    
    /* 首屏调整 */
    .hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        height: calc(70vh - 120px);
        padding: 0 20px;
        z-index: 5;
    }
    
    .hero-text-container {
        padding: 0 20px;
    }
    
    .carousel-text.inactive {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.5em;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.3em;
    }
    
    .carousel-indicators {
        bottom: 20px;
        z-index: 5;
    }
    
    /* 介绍区域 */
    .intro-section {
        padding: 40px 0;
    }
    
    .intro-container {
        padding: 0 20px;
    }
    
    .intro-title {
        font-size: 28px;
    }
    
    .intro-text {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }
    
    /* 团队区域 */
    .team-header {
        padding: 40px 0 50px;
    }
    
    .team-title h2 {
        font-size: 32px;
    }
    
    .team-title h3 {
        font-size: 28px;
    }
    
    .team-cards {
        padding-bottom: 50px;
    }
    
    .team-cards-container {
        padding: 0 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lawyer-photo {
        height: 200px;
    }
    
    .lawyer-photo img {
        object-fit: cover;
        object-position: center top;
    }
    
    .lawyer-info {
        padding: 15px;
    }
    
    .lawyer-name {
        font-size: 16px;
        margin-bottom: 8px;
    }
    
    .lawyer-position {
        font-size: 12px;
        line-height: 1.4;
    }
    
    .lawyer-tags {
        gap: 5px;
    }
    
    .lawyer-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    /* 业务领域 */
    .business-section {
        padding: 50px 0 60px;
    }
    
    .business-title {
        margin-bottom: 40px;
    }
    
    .business-title h2 {
        font-size: 32px;
    }
    
    .business-title h3 {
        font-size: 28px;
    }
    
    .business-tabs {
        padding: 0 20px;
        margin-bottom: 40px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tab-item {
        padding: 12px 8px;
        font-size: 13px;
        gap: 6px;
        min-height: 100px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .tab-icon {
        font-size: 32px;
    }
    
    .business-content {
        padding: 0 20px;
    }
    
    .content-layout {
        padding: 25px;
    }
    
    .content-title {
        font-size: 24px;
    }
    
    .content-subtitle {
        font-size: 16px;
    }
    
    .content-desc {
        font-size: 15px;
        line-height: 1.8;
    }
    
    /* 新闻区域 */
    .news-section {
        padding: 50px 0 80px;
    }
    
    .news-title {
        margin-bottom: 40px;
    }
    
    .news-title h2 {
        font-size: 32px;
    }
    
    .news-title h3 {
        font-size: 28px;
    }
    
    .news-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .news-main-image {
        height: 240px;
    }
    
    .news-main-content {
        padding: 20px;
    }
    
    .news-main-title {
        font-size: 22px;
    }
    
    .news-main-desc {
        font-size: 15px;
    }
    
    .news-item {
        flex-direction: column;
        padding: 15px;
    }
    
    .news-item-image {
        flex: 0 0 auto;
        width: 100%;
        height: 180px;
    }
    
    .news-item-more {
        top: 15px;
        right: 15px;
    }
    
    .news-more {
        padding: 0 20px;
    }
    
    /* 荣誉区域 */
    .honor-section {
        padding: 50px 0;
    }
    
    .honor-title {
        margin-bottom: 40px;
    }
    
    .honor-title h2 {
        font-size: 32px;
    }
    
    .honor-title h3 {
        font-size: 28px;
    }
    
    .honor-container {
        padding: 0 20px;
    }
    
    .honor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .honor-text {
        font-size: 13px;
    }
    
    /* 联系表单 */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-title h2 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        font-size: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .contact-submit-btn {
        padding: 14px;
        font-size: 16px;
    }
    
    /* 页脚 */
    .footer-main {
        display: none;
    }
    
    .footer-copyright {
        padding: 20px;
    }
    
    .footer-copyright p {
        font-size: 12px;
        line-height: 1.6;
        text-align: center;
    }
    
    /* 详情页适配 */
    .detail-container {
        padding: 0 20px;
    }
    
    .detail-title {
        font-size: 26px;
    }
    
    .detail-meta {
        flex-direction: column;
        gap: 10px;
        font-size: 13px;
    }
    
    .detail-intro {
        padding: 20px;
    }
    
    .content-section-title {
        font-size: 22px;
    }
    
    .service-subtitle {
        font-size: 18px;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 新闻列表页 */
    .news-list-container {
        flex-direction: column;
        padding: 0 20px;
        gap: 30px;
    }
    
    .news-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .article-image {
        flex: 0 0 100%;
        height: 180px;
    }
    
    .news-article {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 30px;
    }
    
    .article-title {
        font-size: 18px;
    }
    
    /* 律师团队页 */
    .team-page-container {
        padding: 0 20px;
    }
    
    .team-page-title h2 {
        font-size: 32px;
    }
    
    .team-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 荣誉页面 */
    .honor-page-container {
        padding: 0 20px;
    }
    
    .honor-intro h2 {
        font-size: 32px;
    }
    
    .honor-page-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 小屏手机适配 (最大宽度 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .intro-title {
        font-size: 24px;
    }
    
    .team-title h2,
    .business-title h2,
    .news-title h2,
    .honor-title h2,
    .contact-title h2 {
        font-size: 28px;
    }
    
    .team-title h3,
    .business-title h3,
    .news-title h3,
    .honor-title h3 {
        font-size: 24px;
    }
    
    .business-tabs {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 15px;
    }
    
    .tab-item {
        padding: 10px 6px;
        font-size: 12px;
        gap: 5px;
        min-height: 90px;
    }
    
    .tab-icon {
        font-size: 28px;
    }
    
    .content-layout {
        padding: 20px;
    }
    
    .news-main-title {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer-qrcodes {
        flex-direction: column;
        align-items: center;
    }
}

