/* 响应式自适应手机端样式 */

/* 全局防溢出 */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}
table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
}
pre, code {
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-wrap;
}

/* 手机端菜单按钮 - 汉堡按钮样式 */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
}

.mobile-menu-btn .hamburger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: linear-gradient(90deg, #2abf69, #3ddc97);
    margin: 5px auto;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.mobile-menu-btn:hover {
    background: rgba(42, 191, 105, 0.1);
    transform: scale(1.05);
}

.mobile-menu-btn:active {
    transform: scale(0.95);
}

/* 按钮激活状态 - X 形变换 */
.mobile-menu-btn.active {
    background: rgba(42, 191, 105, 0.15);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background: linear-gradient(90deg, #dc2626, #ef4444);
    width: 26px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background: linear-gradient(90deg, #dc2626, #ef4444);
    width: 26px;
}

/* 弘毅养正联系模块 - 简洁美观 */
.contact-hongyi-section {
    margin: 40px 0 25px 0;
    background: linear-gradient(135deg, #f0f7ff, #e8f4fd);
    border: 1px solid #d0e8f5;
    border-radius: 10px;
    padding: 28px 32px;
}
.contact-container {
    max-width: 100%;
}
.contact-header {
    text-align: center;
    margin-bottom: 16px;
}
.contact-header h3 {
    color: #333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
}
.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}
.contact-text-block {
    flex: 1;
    min-width: 200px;
    text-align: center;
}
.contact-intro-text {
    font-size: 15px;
    color: #555;
    margin: 0 0 8px 0;
    line-height: 1.7;
    text-align: center;
}
.contact-phone-block {
    font-size: 16px;
    color: #333;
    margin: 0 0 12px 0;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
}
.contact-phone-block strong {
    font-size: 20px;
    color: #dc2626;
    font-weight: 700;
}
.contact-action {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    margin-top: 0;
}
.contact-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none !important;
    cursor: pointer;
}
.contact-btn.primary {
    background: #e66041 !important;
    color: #fff !important;
}
.contact-btn.primary:hover {
    background: #d64a2b !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(230,96,65,0.3);
}
.contact-btn.secondary {
    background: #559ed4 !important;
    color: #fff !important;
}
.contact-btn.secondary:hover {
    background: #448ec3 !important;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(85,158,212,0.3);
}

/* 头部导航样式 */
.nav {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
}
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.logo {
    height: 40px;
    width: auto;
}
.nav-ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 24px;
    height: 24px;
    position: relative;
    margin-left: 10px;
}
.nav-ul li {
    margin-left: 5px;
}
.nav-ul li a {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    border-radius: 4px;
    transition: all 0.3s;
}
.nav-ul li a:hover,
.nav-ul li.active a {
    color: #2abf69;
    background: #f0faf4;
}
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* 平板设备 (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .container {
        width: 96%;
        padding: 0 2%;
    }
    .container>.fl {
        width: 65%;
    }
    .container>.fr {
        width: 33%;
    }
    .nav .nav-content {
        width: 96%;
    }
    .nav .nav-ul li {
        margin-right: 20px;
        font-size: 18px;
    }
    .nav .logo {
        width: 140px;
        margin-right: 30px;
    }
    .quick-link1,
    .quick-link {
        width: 96%;
    }
    .art-banner {
        min-width: auto;
    }
}

/* 手机设备 (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* 全局基础文字 */
    body {
        font-size: 16px;
        line-height: 1.7;
        overflow-x: auto;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    
    /* 基础容器 */
    .container {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        overflow: visible;
    }
    .container>.fl,
    .container>.fr {
        width: 100%;
        float: none;
    }
    .fl {
        margin-bottom: 20px;
    }
    
    /* 导航栏 */
    .nav {
        height: 56px;
        position: relative;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    }
    .nav .nav-content {
        width: 100%;
        height: 56px;
        padding: 0 12px;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .nav .logo {
        width: 120px;
        height: 32px;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    .nav .logo:hover {
        transform: scale(1.02);
    }
    /* 手机端导航菜单 */
    .nav .nav-ul {
        display: none;
        position: fixed;
        top: 56px;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
        z-index: 1000;
        padding: 0;
        box-shadow: 0 -4px 30px rgba(0,0,0,0.12);
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        animation: menuSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    /* 菜单头部装饰条 */
    .nav .nav-ul::before {
        content: '';
        display: block;
        height: 4px;
        background: linear-gradient(90deg, #2abf69, #3ddc97, #2abf69);
        background-size: 200% 100%;
        animation: gradientMove 3s ease infinite;
        flex-shrink: 0;
    }
    
    @keyframes gradientMove {
        0%, 100% {
            background-position: 0% 50%;
        }
        50% {
            background-position: 100% 50%;
        }
    }
    
    /* 菜单打开时的页面遮罩 */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        animation: fadeIn 0.3s ease forwards;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }
    
    @keyframes menuSlideIn {
        from {
            opacity: 0;
            transform: translateY(-20px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    .nav .nav-ul.active {
        display: flex;
    }
    
    .nav .nav-ul li {
        margin: 0;
        padding: 0;
        width: 100%;
        position: relative;
        list-style: none;
    }
    
    .nav .nav-ul li a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 18px 24px;
        font-size: 16px;
        color: #2d3748;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        border-left: 4px solid transparent;
        background: transparent;
        position: relative;
        overflow: hidden;
        gap: 12px;
    }
    
    /* 菜单项图标（如果有） */
    .nav .nav-ul li a .menu-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: #718096;
        transition: all 0.3s ease;
    }
    
    .nav .nav-ul li a:hover .menu-icon,
    .nav .nav-ul li.active a .menu-icon {
        color: #2abf69;
        transform: scale(1.1);
    }
    
    .nav .nav-ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(90deg, rgba(42,191,105,0.08), transparent);
        transition: width 0.3s ease;
    }
    
    .nav .nav-ul li a:hover::before,
    .nav .nav-ul li.active a::before {
        width: 100%;
    }
    
    .nav .nav-ul li a::after {
        content: '';
        position: absolute;
        right: 20px;
        width: 6px;
        height: 6px;
        border-top: 2px solid #a0aec0;
        border-right: 2px solid #a0aec0;
        transform: rotate(45deg);
        transition: all 0.3s ease;
        opacity: 0;
    }
    
    .nav .nav-ul li a:hover,
    .nav .nav-ul li:hover a {
        color: #2abf69;
        background: rgba(42,191,105,0.05);
    }
    
    .nav .nav-ul li.active a {
        color: #2abf69;
        background: rgba(42,191,105,0.1);
        border-left-color: #2abf69;
        font-weight: 600;
    }
    
    .nav .nav-ul li.active a::after {
        opacity: 1;
        border-color: #2abf69;
    }
    
    /* 菜单项点击波纹效果 */
    .nav .nav-ul li a:active {
        transform: scale(0.98);
        background: rgba(42,191,105,0.12);
    }
    
    /* 菜单滚动条美化 */
    .nav .nav-ul::-webkit-scrollbar {
        width: 6px;
    }
    
    .nav .nav-ul::-webkit-scrollbar-track {
        background: #f1f5f9;
    }
    
    .nav .nav-ul::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #2abf69, #3ddc97);
        border-radius: 3px;
    }
    
    .nav .nav-ul::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(180deg, #25a863, #35c98a);
    }
    
    /* 菜单按钮 - 媒体查询内覆盖 */
    .mobile-menu-btn {
        display: flex !important;
    }
    .nav .nav-content {
        height: 56px;
        padding: 0 12px;
    }
    .nav .logo { height: 32px; }
    
    /* 面包屑 */
    .crumbs {
        padding: 8px 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
        line-height: 1.5;
        background: #fff;
        border-radius: 0;
        margin: 0 0 10px 0;
        border: none;
        border-bottom: 1px solid #f0f0f0;
        overflow-x: auto;
    }
    .crumbs-label {
        font-size: 14px;
        color: #999;
        flex-shrink: 0;
        white-space: nowrap;
        margin-right: 4px;
    }
    .crumbs-path {
        display: flex;
        align-items: center;
        flex-direction: row;
        flex: 1;
        min-width: 0;
        overflow-x: auto;
        font-size: 0;
        line-height: 0;
    }
    .crumbs-path a {
        font-size: 14px;
        color: #666;
        text-decoration: none;
        white-space: nowrap;
        display: inline-block;
        margin: 0;
        padding: 0;
        line-height: 1.5;
        flex-shrink: 0;
    }
    .crumbs-path a:hover {
        text-decoration: underline;
        color: #2abf69;
    }
    .crumbs-path a:last-child {
        color: #333;
        font-weight: 500;
    }
    .crumbs-path a:not(:last-child)::after {
        content: '>';
        color: #ccc;
        font-size: 14px;
        margin: 0 4px;
        display: inline-block;
        line-height: 1.5;
    }
    
    /* Banner */
    .art-banner {
        min-width: auto;
        width: 100%;
    }
    .quick-link1 {
        margin: 15px auto;
        width: 100%;
    }
    .quick-link1 img {
        border-radius: 6px;
        width: 100%;
        height: auto;
    }
    
    /* 首页内容区块 */
    .fl-content1,
    .fl-content2 {
        padding: 15px 10px 10px;
        margin-top: 15px;
        overflow: hidden;
    }
    .fl-content-tit {
        flex-wrap: wrap;
    }
    .fl-content-tit>div {
        font-size: 16px;
        line-height: 1.5;
    }
    .fl-content-tit>a {
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* 左右布局改为上下 */
    .content1-div>.fl,
    .content2-fl {
        width: 100%;
        margin-bottom: 15px;
    }
    .content1-div>.fr,
    .content2-fr {
        width: 100%;
    }
    .content1-fr1 a {
        width: 48%;
        float: left;
    }
    .content1-fr1 a:last-child {
        margin-left: 4%;
    }
    .content1-fr2 a,
    .content2-news2 a {
        width: 48%;
        float: left;
    }
    .content1-fr2 a:nth-child(2n),
    .content2-news2 a:nth-child(2n) {
        margin-left: 4%;
    }
    
    /* 新闻图片 */
    .content2-news1 {
        flex-direction: column;
    }
    .content2-news1-img {
        width: 100%;
        height: 150px;
        margin-bottom: 10px;
    }
    .content2-news1-txt {
        margin-left: 0;
    }
    .content2-news1-txt h2 {
        font-size: 17px;
        line-height: 1.5;
    }
    .content2-news1-txt p {
        font-size: 15px;
        line-height: 1.6;
    }
    
    /* 右侧栏 */
    .fr-hotZt,
    .fr-zxzt,
    .fr-hot,
    .right-ask {
        padding: 15px 10px;
        margin-top: 15px;
        overflow: hidden;
    }
    .fr-title {
        font-size: 16px;
        padding-bottom: 10px;
        line-height: 1.5;
    }
    .fr-title img {
        width: 20px;
        height: 20px;
    }
    .fr-hotZt-list a {
        padding: 15px 0;
    }
    .fr-hotZt-list a>img {
        width: 60px;
        height: 60px;
        padding: 0 10px 0 0;
    }
    .hotZt-list-txt p {
        font-size: 15px;
        line-height: 1.5;
    }
    .hotZt-list-txt span {
        font-size: 13px;
    }
    
    /* 问题列表 */
    .zxzt-list-p {
        padding: 8px 0;
    }
    .zxzt-list-p>p {
        font-size: 15px;
        line-height: 1.5;
    }
    .zxzt-list-p>span {
        font-size: 13px;
    }
    .zxzt-list-opt {
        padding: 12px 0;
    }
    .zxzt-list-opt>p {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* 文章详情 */
    .askTitle,
    .answer,
    .relevant {
        padding: 15px;
        overflow: hidden;
    }
    .askTitle .tit h1 {
        font-size: 22px;
        line-height: 1.4;
        float: none;
        padding-left: 0;
    }
    .askTitle .button {
        flex-direction: column;
        align-items: flex-start;
    }
    .askTitle .button .list-sj {
        margin-left: 0;
        margin-top: 10px;
        flex-direction: column;
        font-size: 14px;
    }
    .askTitle .button .list-sj span {
        display: block;
        float: none;
        margin: 4px 0;
        padding: 0;
        border-right: none;
        font-size: 14px;
    }
    .answer {
        padding: 15px 0;
    }
    /* 正文表格处理 */
    .answer table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        margin: 0;
    }
    .answer table img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    /* 正文段落和标题 */
    .answer-txt p {
        line-height: 1.8;
        font-size: 16px !important;
        text-indent: 0;
    }
    .answer-txt h2 {
        font-size: 18px !important;
    }
    .answer-txt h3 {
        font-size: 17px !important;
    }
    .answer-txt h4,
    .answer-txt span,
    .answer-txt li,
    .answer-txt div,
    .answer-txt table td {
        font-size: 16px !important;
    }
    .answer-txt ul li,
    .answer-txt ol li {
        font-size: 16px !important;
    }
    
    /* 联系模块 - 简洁版 */
    .answer-txt .contact-hongyi-section {
        margin: 20px 0 15px 0;
        padding: 16px;
        border-width: 1px;
    }
    .contact-header {
        margin-bottom: 12px;
    }
    .contact-header h3 {
        font-size: 16px !important;
    }
    .contact-intro-text {
        font-size: 14px !important;
        line-height: 1.6;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .contact-phone-block {
        font-size: 15px !important;
        margin-bottom: 10px;
    }
    .contact-phone-block strong {
        font-size: 17px !important;
    }
    .contact-action {
        flex-direction: column;
        gap: 8px;
        margin-top: 8px;
    }
    .contact-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px !important;
        white-space: normal;
    }
    
    /* 右侧热门/最新问答 */
    .right-ask {
        padding: 18px 15px 8px;
    }
    .right-ask .title h4 {
        font-size: 16px;
    }
    .right-ask ul li {
        height: 40px;
    }
    .right-ask ul li p {
        font-size: 14px;
    }
    
    /* 提问按钮 */
    .askTitle .button button {
        width: 100%;
    }

    /* 底部全宽样式 */
    .site-footer {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }
    .footer-content {
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 20px 12px 0 !important;
        box-sizing: border-box !important;
    }
    .footer-main {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding-bottom: 15px !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
    }
    .footer-title {
        color: #ffffff !important;
        font-size: 16px;
        font-weight: 600 !important;
        margin: 0 0 10px 0 !important;
        padding-bottom: 8px !important;
    }
    .footer-text {
        color: #c0c0c0 !important;
        font-size: 14px;
        line-height: 1.6 !important;
        margin: 0 !important;
    }
    .footer-links {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .footer-links li {
        margin-bottom: 8px !important;
    }
    .footer-links a {
        color: #c0c0c0 !important;
        text-decoration: none !important;
        font-size: 14px;
    }
    .footer-copyright-bar {
        width: 100% !important;
        background: #0f0f1a !important;
        padding: 15px 0 !important;
        text-align: center !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .footer-copyright-bar p {
        color: #8a8a8a !important;
        font-size: 12px;
        margin: 4px 0 !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
    }
    
    /* 通用文字 */
    .normal-list li {
        font-size: 15px;
    }
    .normal-list li span {
        font-size: 14px;
    }
    .pagination li span,
    .pagination li a {
        font-size: 14px;
    }
    .nav-navicon a {
        font-size: 15px;
    }
    .contact .media-body p {
        font-size: 15px;
    }
    .contact .media-body h4 {
        font-size: 16px;
    }
    .title-l h2 {
        font-size: 16px;
    }
    .title-block-c h2 {
        font-size: 16px;
    }
    .nav-bread {
        font-size: 15px;
    }
    .nav-bread h2 {
        font-size: 15px;
    }
    .wrapper header .description h1 {
        font-size: 20px;
    }
    .wrapper main .article-list article h2 {
        font-size: 16px;
    }
    .wrapper main .article-list article .excerpt p {
        font-size: 15px;
    }
    .wrapper main .pager p {
        font-size: 14px;
    }
    .wrapper footer {
        font-size: 14px;
    }
}

/* 小屏手机 (max-width: 480px) */
@media screen and (max-width: 480px) {
    body {
        font-size: 16px;
        line-height: 1.7;
    }
    .container {
        padding: 5px 8px;
    }
    .nav {
        height: 50px;
    }
    .nav .nav-content {
        height: 50px;
        padding: 0 8px;
    }
    .nav .logo {
        width: 100px;
        height: 25px;
    }
    .nav .nav-ul li a {
        font-size: 16px;
    }
    
    /* 面包屑 */
    .crumbs,
    .crumbs p,
    .crumbs a,
    .crumbs span,
    .crumbs-label,
    .crumbs-path a,
    .crumbs-path span,
    .crumbs-current {
        font-size: 13px;
    }
    
    /* 首页区块 */
    .fl-content1,
    .fl-content2 {
        padding: 10px 8px 8px;
    }
    .fl-content-tit>div {
        font-size: 16px;
    }
    .fl-content-tit>a {
        font-size: 13px;
    }
    .content1-fr1 a {
        width: 100%;
    }
    .content1-fr1 a:last-child {
        margin-left: 0;
        margin-top: 15px;
    }
    .content1-fr2 a,
    .content2-news2 a {
        width: 100%;
    }
    .content1-fr2 a:nth-child(2n),
    .content2-news2 a:nth-child(2n) {
        margin-left: 0;
    }
    .fr-hotZt-list a>img {
        width: 50px;
        height: 50px;
    }
    .fr-title {
        font-size: 15px;
    }
    .hotZt-list-txt p {
        font-size: 14px;
    }
    .zxzt-list-p>p {
        font-size: 14px;
    }
    .zxzt-list-opt>p {
        font-size: 15px;
    }
    
    /* 文章详情 */
    .askTitle .tit h1 {
        font-size: 20px;
    }
    .answer-txt p {
        font-size: 16px;
        line-height: 1.7;
    }
    .answer-txt h2 {
        font-size: 18px;
    }
    .answer-txt h3 {
        font-size: 17px;
    }
    .answer-txt a {
        font-size: 16px;
    }
    .upDown a {
        width: 100%;
        float: none;
        margin-bottom: 8px;
        padding: 0 12px;
        font-size: 14px;
        height: 40px;
        line-height: 40px;
        box-sizing: border-box;
    }
    .upDown a.fl {
        float: none;
    }
    .upDown a span {
        font-size: 14px;
    }
    .relevant ul li {
        width: 100%;
        float: none;
        height: 40px;
    }
    .relevant ul li:nth-child(2n) {
        float: none;
    }
    .relevant ul li:nth-child(n+5) {
        border-bottom: 1px dashed #ddd;
    }
    .relevant ul li:last-child {
        border-bottom: none;
    }
    .relevant ul li p {
        width: auto;
        flex: 1;
        font-size: 14px;
    }
    .right-ask ul li p {
        font-size: 14px;
    }
    
    /* 480px 内容页精细优化 */
    .askTitle,
    .answer,
    .relevant {
        padding: 12px;
    }
    .answer {
        padding: 12px 0;
    }
    .askTitle .button {
        margin-top: 10px;
    }
    .askTitle .button .list-sj {
        margin-top: 8px;
    }
    .askTitle .button .list-sj span {
        font-size: 13px;
        margin: 3px 0;
    }
    .answer-txt {
        margin-top: 6px;
    }
    .answer-txt p {
        font-size: 15px;
        line-height: 1.75;
        margin: 14px 0 0 0;
    }
    .answer-txt h2 {
        font-size: 17px;
        margin: 18px 0 8px 0;
        padding-bottom: 6px;
    }
    .answer-txt h3 {
        font-size: 16px;
        margin: 14px 0 6px 0;
    }
    .answer-txt img {
        margin: 12px auto;
        border-radius: 4px;
    }
    .answer-txt ul,
    .answer-txt ol {
        padding-left: 1.3em;
        margin: 10px 0;
    }
    .answer-txt ul li,
    .answer-txt ol li {
        font-size: 15px;
        margin: 5px 0;
    }
    .answer-txt table td,
    .answer-txt table th {
        padding: 6px 8px;
        font-size: 14px;
    }
    .answer-txt blockquote {
        padding: 8px 12px;
        margin: 12px 0;
    }
    .tag.tags {
        font-size: 13px;
        padding: 2px 8px;
        margin: 2px;
    }
    .relevant .title h4 {
        font-size: 16px;
    }
    .upDown {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px;
    }
    .right-ask .title h4 {
        font-size: 15px;
    }
    .right-ask ul li {
        height: 36px;
    }
    
    /* 联系模块紧凑 */
    .contact-hongyi-section {
        margin: 20px 0 12px 0;
        padding: 15px;
    }
    .contact-header h3 {
        font-size: 16px;
    }
    .contact-intro-text {
        font-size: 14px;
        line-height: 1.7;
    }
    .contact-phone-block {
        font-size: 15px;
    }
    .contact-phone-block strong {
        font-size: 17px;
    }
    
    /* 列表页 */
    .lists-nav a {
        font-size: 14px;
    }
    .lists-content a h2 {
        font-size: 16px;
    }
    .lists-content a p {
        font-size: 14px;
    }
    .pagination ul li span {
        font-size: 13px;
    }
    .bottom-link ul a {
        font-size: 14px;
    }
    .bottom>p {
        font-size: 14px;
    }
    .content2-news1-img {
        height: 120px;
    }
    .content2-news1-txt h2 {
        font-size: 16px;
    }
    .content2-news1-txt p {
        font-size: 14px;
    }
    .quick-link-txt p {
        font-size: 16px;
    }
    .quick-link-txt span {
        font-size: 14px;
    }
    .dizhiquyu {
        font-size: 14px;
    }
    .tag.tags {
        font-size: 14px;
    }
    .job-list dt h2 {
        font-size: 16px;
    }
    .job-list dd p {
        font-size: 14px;
    }
    .contact .media-body p {
        font-size: 14px;
    }
    .banner-info h3 {
        font-size: 16px;
    }
    .banner-info p {
        font-size: 14px;
    }
    .nav-navicon a {
        font-size: 14px;
    }
    .wrapper header .description h1 {
        font-size: 18px;
    }
    .wrapper main .article-list article h2 {
        font-size: 15px;
    }
    .wrapper main .article-list article .excerpt p {
        font-size: 14px;
    }
    .nav-bread {
        font-size: 14px;
    }
    .nav-bread h2 {
        font-size: 14px;
    }
    .normal-list li {
        font-size: 14px;
    }
    
    /* 联系模块 - 简洁版 */
    .contact-hongyi-section {
        margin: 20px 0 12px 0;
        padding: 14px;
        border-width: 1px;
    }
    .contact-header {
        margin-bottom: 10px;
    }
    .contact-header h3 {
        font-size: 15px !important;
    }
    .contact-content {
        flex-direction: column;
    }
    .contact-action {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        margin-top: 8px;
    }
    .contact-btn {
        width: 100%;
        font-size: 15px !important;
        padding: 10px 16px;
        white-space: normal;
    }
    .contact-intro-text {
        font-size: 13px !important;
        line-height: 1.6;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .contact-phone-block {
        font-size: 14px !important;
        margin-bottom: 6px;
    }
    .contact-phone-block strong {
        font-size: 16px !important;
    }
    .contact-text-block {
        margin-bottom: 0;
    }
    
    /* 页脚 */
    .footer-title {
        font-size: 15px;
    }
    .footer-text {
        font-size: 13px;
    }
    .footer-links a {
        font-size: 13px;
    }
    .footer-copyright-bar p {
        font-size: 12px;
    }
}

/* Pintuer框架移动端适配 (lists_tags, lists_search, lists_article_img, lists_single_contact, lists_recruit, view_recruit, index_tags) */
@media screen and (max-width: 768px) {
    /* Pintuer网格系统 */
    .line > [class*="x"] {
        width: 100% !important;
        float: none;
    }
    .line-big > [class*="x"] {
        width: 100% !important;
        float: none;
    }
    .line-large > [class*="x"] {
        width: 100% !important;
        float: none;
    }
    
    /* Pintuer容器 */
    .container-layout {
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    /* Pintuer导航 */
    .nav-menu {
        display: none;
    }
    .nav-menu.mobile-active {
        display: block;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 1000;
        padding: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .nav-menu.mobile-active li {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }
    .nav-menu.mobile-active li a {
        font-size: 16px;
    }
    
    /* Pintuer布局 */
    .layout {
        padding: 10px 0;
    }
    .layout.bg-gray {
        margin-top: 10px;
    }
    
    /* Pintuer标题 */
    .title-l h2 {
        font-size: 16px;
    }
    .title-block-c h2 {
        font-size: 16px;
    }
    
    /* Pintuer标签 */
    .tag.tags {
        margin: 5px;
        font-size: 14px;
        padding: 5px 10px;
    }
    
    /* Pintuer列表 */
    .normal-list li {
        padding: 10px 0;
        font-size: 15px;
    }
    .normal-list li span {
        font-size: 14px;
    }
    
    /* Pintuer分页 */
    .pagination {
        padding: 15px 0;
    }
    .pagination li span,
    .pagination li a {
        padding: 5px 10px;
        font-size: 14px;
    }
    
    /* Pintuer联系页 */
    .contact .media {
        margin-bottom: 15px;
    }
    .contact .media-body p {
        font-size: 15px;
    }
    .contact .media-body h4 {
        font-size: 16px;
    }
    .wx img {
        max-width: 200px;
        margin: 0 auto;
    }
    
    /* Pintuer表单 */
    .guestbook {
        padding: 15px;
    }
    .guestbook input,
    .guestbook select,
    .guestbook textarea {
        width: 100%;
        font-size: 16px;
    }
    .guestbook label {
        font-size: 15px;
    }
    
    /* Pintuer横幅 */
    .channel-banner {
        min-height: 100px;
        background-size: cover !important;
        background-position: center !important;
    }
    .banner-info h3 {
        font-size: 18px;
    }
    .banner-info p {
        font-size: 15px;
    }
    
    /* Pintuer导航面包屑 */
    .nav-bread {
        font-size: 15px;
        padding: 10px 0;
    }
    .nav-bread h2 {
        font-size: 15px;
    }
    
    /* view_special / lists_special */
    .wrapper {
        padding: 0 10px;
        overflow: hidden;
    }
    .wrapper header .description h1 {
        font-size: 20px;
    }
    .wrapper main .article-list article h2 {
        font-size: 16px;
    }
    .wrapper main .article-list article .excerpt p {
        font-size: 15px;
    }
    .wrapper main .pager p {
        font-size: 14px;
    }
    .wrapper footer {
        font-size: 14px;
        padding: 15px 0;
    }
    
    /* 横向栏目导航 */
    .nav-x {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    .nav-navicon li {
        display: inline-block;
        padding: 10px 15px;
    }
    .nav-navicon a {
        font-size: 15px;
    }
    
    /* 招聘列表 */
    .job-list {
        padding: 15px;
        margin-bottom: 15px;
        overflow: hidden;
    }
    .job-list dt h2 {
        font-size: 16px;
    }
    .job-list dd p {
        font-size: 15px;
    }
    .job-list dd span {
        font-size: 15px;
    }
    
    /* 招生列表页地域链接 */
    .dizhiquyu {
        display: inline-block;
        margin: 4px;
        font-size: 14px;
    }
    
    /* 快速链接 */
    .quick-link a {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .quick-link-img {
        width: 80px;
    }
    .quick-link-txt {
        padding-left: 15px;
    }
    .quick-link-txt p {
        font-size: 16px;
    }
    .quick-link-txt span {
        font-size: 14px;
    }
}


/* 小屏手机 Pintuer适配 */
@media screen and (max-width: 480px) {
    .container-layout {
        padding: 0 8px;
    }
    .title-l h2 {
        font-size: 15px;
    }
    .title-block-c h2 {
        font-size: 15px;
    }
    .tag.tags {
        font-size: 13px;
    }
    .banner-info h3 {
        font-size: 16px;
    }
    .banner-info p {
        font-size: 14px;
    }
    .wrapper header .description h1 {
        font-size: 18px;
    }
    .wrapper main .article-list article h2 {
        font-size: 15px;
    }
    .wrapper main .article-list article .excerpt p {
        font-size: 14px;
    }
    .wrapper main .pager p {
        font-size: 13px;
    }
    .wrapper footer {
        font-size: 13px;
    }
    .nav-bread {
        font-size: 14px;
    }
    .nav-bread h2 {
        font-size: 14px;
    }
    .normal-list li {
        font-size: 14px;
    }
    .normal-list li span {
        font-size: 13px;
    }
    .pagination li span,
    .pagination li a {
        font-size: 13px;
    }
    .nav-navicon a {
        font-size: 14px;
    }
    .contact .media-body p {
        font-size: 14px;
    }
    .job-list dt h2 {
        font-size: 15px;
    }
    .job-list dd p {
        font-size: 14px;
    }
    .job-list dd span {
        font-size: 14px;
    }
    .guestbook label {
        font-size: 14px;
    }
    .lists-nav a {
        font-size: 14px;
    }
    .dizhiquyu {
        font-size: 13px;
    }
    .quick-link-txt p {
        font-size: 15px;
    }
    .quick-link-txt span {
        font-size: 13px;
    }
}
