/* 合并后的职称云平台CSS文件 */
/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
    font-size: 14px;
}

a {
    text-decoration: none;
    color: #ff6a00;
    transition: all 0.3s ease;
}

a:hover {
    color: #e55a00;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    border: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff7e00 0%, #ff5500 100%);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff3300 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 106, 0, 0.4);
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: #7e3d00;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff7e00 0%, #ff5500 100%);
    margin-left: -40px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* 导航栏 */
.navbar {
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    margin-left: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
    position: relative;
}

.nav-menu a {
    color: #fff;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s;
}

.nav-menu a:hover:after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

/* 轮播图 - 非全屏宽度 */
.slider-container {
    padding: 30px 0 0;
}

.slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    background-color: rgba(255,255,255,0.95);
    padding: 40px;
    max-width: 600px;
    margin-left: 10%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slide-content h2 {
    color: #7e3d00;
    margin-bottom: 15px;
    font-size: 32px;
}

.slide-content p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot.active {
    background-color: #fff;
}

/* 联系信息条 - 移动端优化 */
.contact-info-bar {
    padding: 20px 0;
}

.contact-info-container {
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.3);
    padding: 25px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-container:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    z-index: -1;
}

.contact-info-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.contact-item {
    display: table-cell;
    vertical-align: middle;
    color: white;
    padding: 10px 15px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin-right: 15px;
    font-size: 22px;
}

.contact-text {
    display: inline-block;
    vertical-align: middle;
    text-align: left;
}

.contact-text h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-text p {
    font-size: 18px;
    font-weight: 600;
}

.contact-action {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.contact-action .btn {
    background: white;
    color: #ff6a00;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    display: inline-block;
}

.contact-action .btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 服务分类 */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 40px;
}

.service-card {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.service-icon {
    height: 120px;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: #7e3d00;
    margin-bottom: 15px;
    font-size: 20px;
}

.service-content p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 20px;
}

.service-features li {
    color: #666;
    font-size: 14px;
    margin-bottom: 5px;
    padding-left: 15px;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6a00;
    font-weight: bold;
}

/* 特色服务 */
.featured-services {
    background: linear-gradient(135deg, #fff9f0 0%, #fff0e0 100%);
}

.featured-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.featured-item {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.featured-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.featured-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 32px;
}

.featured-item h3 {
    color: #7e3d00;
    margin-bottom: 15px;
    font-size: 22px;
}

.featured-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 顾问团队 */
.advisors-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.advisor-card {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    width: calc(25% - 30px);
    margin: 0 15px 30px;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.advisor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.advisor-img {
    /* 保持原有样式 */
    height: 240px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    display: flex;
    align-items: flex-start; /* 修改这一行 */
    justify-content: center;
    color: #fff;
    font-size: 60px;
    position: relative; /* 新增 */
}

/* 新增图片样式 */
.advisor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.advisor-img .preview {
    display: block;
    width: 100%;
    height: 100%;
}

.advisor-info {
    padding: 25px;
}

.advisor-info h3 {
    color: #7e3d00;
    margin-bottom: 5px;
    font-size: 20px;
}

.advisor-info .title {
    color: #ff6a00;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.advisor-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* 新闻与帮助 */
.news-help {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.news-box, .help-box {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.box-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
}

.box-title h3 {
    color: #7e3d00;
    font-size: 22px;
}

.box-title a {
    font-size: 14px;
}

.news-item, .help-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.news-item:last-child, .help-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.news-item h4, .help-item h4 {
    margin-bottom: 10px;
    font-size: 16px;
}

.news-item h4 a, .help-item h4 a {
    color: #333;
}

.news-item h4 a:hover, .help-item h4 a:hover {
    color: #ff6a00;
}

.news-item p, .help-item p {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.news-date {
    color: #999;
    font-size: 12px;
}

/* 页面路径导航 */
.breadcrumb {
    background: linear-gradient(135deg, #fff9f0 0%, #fff0e0 100%);
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 106, 0, 0.1);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: #ff6a00;
    font-size: 14px;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb .current {
    color: #666;
}

/* 文章列表 - 一行一条布局 */
.article-list {
    margin-bottom: 40px;
}

.article-item {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    margin-bottom: 25px;
    display: flex;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.article-icon {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    color: #fff;
    font-size: 32px;
}

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-content h3 {
    color: #7e3d00;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.4;
}

.article-content h3 a {
    color: #7e3d00;
}

.article-content h3 a:hover {
    color: #ff6a00;
}

.article-content p {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: #999;
    font-size: 14px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #fff;
    color: #666;
    border-radius: 4px;
    margin: 0 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.pagination a:hover, .pagination a.active {
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    color: #fff;
}

/* 文章内容 */
.article-content-page {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.article-header {
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 106, 0, 0.2);
    padding-bottom: 20px;
}

.article-header h1 {
    color: #7e3d00;
    font-size: 28px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.article-meta-page {
    color: #999;
    font-size: 14px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.article-meta-page span {
    margin: 0 15px;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.article-body h2 {
    color: #7e3d00;
    margin: 30px 0 15px;
    font-size: 22px;
    position: relative;
    padding-left: 15px;
}

.article-body h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 5px;
    height: 20px;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    border-radius: 2px;
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-body ul, .article-body ol {
    margin: 15px 0 15px 30px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body blockquote {
    background: linear-gradient(135deg, #fff9f0 0%, #fff0e0 100%);
    border-left: 4px solid #ff6a00;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 106, 0, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.article-tags span {
    margin-right: 10px;
    color: #666;
}

.tag {
    background: rgba(255, 106, 0, 0.1);
    color: #ff6a00;
    padding: 5px 10px;
    border-radius: 4px;
    margin: 0 5px 5px 0;
    font-size: 12px;
}

.article-share {
    display: flex;
    align-items: center;
}

.article-share span {
    margin-right: 10px;
    color: #666;
}

.share-btn {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    margin-left: 5px;
    transition: all 0.3s;
}

.share-btn:hover {
    background: #ff6a00;
    color: #fff;
}

/* 相关文章 */
.related-articles {
    margin-top: 60px;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.related-item {
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    width: calc(33.333% - 30px);
    margin: 0 15px 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
}

.related-img {
    height: 150px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 40px;
}

.related-content {
    padding: 20px;
    flex-grow: 1;
}

.related-content h3 {
    color: #7e3d00;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.4;
}

.related-content h3 a {
    color: #7e3d00;
}

.related-content h3 a:hover {
    color: #ff6a00;
}

.related-meta {
    color: #999;
    font-size: 12px;
}

/* 底部 */
footer {
    background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(30deg);
    z-index: 1;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 40px;
    position: relative;
    z-index: 2;
}

.footer-column {
    width: calc(25% - 30px);
    margin: 0 15px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

/* 响应式设计 */
@media (max-width: 992px) {
    .slide-content {
        margin-left: 5%;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .contact-info-grid {
        display: block;
    }
    
    .contact-item, .contact-action {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .contact-action {
        text-align: center;
        margin-top: 20px;
    }
    
    .service-card, .featured-item {
        width: calc(50% - 30px);
    }
    
    .advisor-card {
        width: calc(33.333% - 30px);
    }
    
    .related-item {
        width: calc(50% - 30px);
    }
    
    .footer-column {
        width: calc(50% - 30px);
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ff9d2e 0%, #ff6126 100%);
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu a {
        display: block;
        padding: 15px;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .slider {
        height: 350px;
    }
    
    .slide-content {
        margin: 0 15px;
        padding: 25px;
    }
    
    .slide-content h2 {
        font-size: 24px;
    }
    
    .contact-info-container {
        padding: 20px;
    }
    
    /* 移动端优化 - 确保三项内容对齐 */
    .contact-item {
        display: flex;
        align-items: center;
        text-align: left;
        margin-bottom: 15px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-icon {
        flex: 0 0 50px;
        margin-right: 15px;
    }
    
    .contact-text {
        flex: 1;
    }
    
    .contact-action {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }
    
    .contact-action .btn {
        flex: 1;
        margin: 0 5px;
    }
    
    .service-card, .featured-item, .advisor-card, .news-box, .help-box, .related-item {
        width: 100%;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    /* 移动端文章列表改为垂直布局 */
    .article-item {
        flex-direction: row;
    }
    
    .article-icon {
        width: 60px;
        min-width: 60px;
        font-size: 24px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-content-page {
        padding: 25px;
    }
    
    .article-header h1 {
        font-size: 24px;
    }
    
    .article-meta-page {
        flex-direction: column;
    }
    
    .article-meta-page span {
        margin: 5px 0;
    }
    
    .article-footer {
        flex-direction: column;
    }
    
    .article-tags, .article-share {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 20px;
    }
    
    .slider {
        height: 300px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .footer-column {
        width: 100%;
    }
    
    /* 小屏幕进一步优化 */
    .contact-action {
        flex-direction: column;
    }
    
    .contact-action .btn {
        margin: 5px 0;
    }
    
    .article-meta {
        flex-direction: column;
    }
    
    .article-meta span {
        margin-bottom: 5px;
    }
    
    .article-icon {
        width: 50px;
        min-width: 50px;
        font-size: 20px;
    }
}

/* 兼容模式特定修复 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles go here */
    .contact-info-grid {
        display: block;
        width: 100%;
    }
    
    .contact-item, .contact-action {
        display: inline-block;
        width: 24%;
        vertical-align: top;
    }
    
    .contact-action {
        width: 28%;
    }
    
    .article-item {
        display: block;
        width: 100%;
    }
    
    .article-icon {
        float: left;
        width: 80px;
        height: 80px;
    }
    
    .article-content {
        margin-left: 100px;
    }
    
    .related-grid {
        display: block;
        width: 100%;
    }
    
    .related-item {
        display: inline-block;
        width: 30%;
        vertical-align: top;
        margin-right: 3%;
    }
    
    @media (max-width: 992px) {
        .contact-item, .contact-action {
            display: block;
            width: 100%;
        }
        
        .related-item {
            width: 48%;
        }
    }
    
    @media (max-width: 768px) {
        .article-icon {
            width: 60px;
            height: 60px;
        }
        
        .article-content {
            margin-left: 80px;
        }
        
        .related-item {
            width: 100%;
        }
    }
    
    @media (max-width: 576px) {
        .article-icon {
            width: 50px;
            height: 50px;
        }
        
        .article-content {
            margin-left: 70px;
        }
    }
}