/* 8. style.css - 网站样式文件（800+行代码） */

/* ==================== 基础变量与重置 ==================== */
:root {
    /* 主题色 - 香蕉色/阳光黄 */
    --qy-primary: #FFD600;
    --qy-primary-dark: #F4C430;
    --qy-primary-light: #FFEB3B;
    --qy-secondary: #2B5797;
    --qy-accent: #FF6B35;
    --qy-dark: #1a1a2e;
    --qy-gray: #6c757d;
    --qy-light: #f8f9fa;
    --qy-white: #ffffff;
    --qy-border: #e9ecef;
    --qy-shadow: rgba(0, 0, 0, 0.1);
    --qy-transition: all 0.3s ease;
    
    /* 字体 */
    --qy-font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--qy-font-main);
    line-height: 1.6;
    color: var(--qy-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--qy-transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== 公共头部样式 ==================== */
.qy-top-bar {
    background: var(--qy-dark);
    color: var(--qy-white);
    padding: 10px 0;
    font-size: 14px;
}

.qy-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.qy-phone-number {
    color: var(--qy-primary);
    font-weight: 600;
    font-size: 16px;
}

.qy-top-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.qy-welcome-text {
    color: rgba(255,255,255,0.8);
    margin-right: 10px;
}

.qy-social-link {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qy-white);
    transition: var(--qy-transition);
}

.qy-social-link:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
    transform: translateY(-2px);
}

/* 主导航 */
.qy-main-nav {
    background: var(--qy-white);
    box-shadow: 0 2px 10px var(--qy-shadow);
    padding: 15px 0;
}

.qy-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qy-logo-img {
    height: 50px;
    width: auto;
}

.qy-brand-text {
    display: flex;
    flex-direction: column;
}

.qy-brand-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--qy-dark);
    line-height: 1.2;
}

.qy-brand-slogan {
    font-size: 12px;
    color: var(--qy-gray);
    letter-spacing: 1px;
}

.qy-nav-list {
    gap: 5px;
}

.qy-nav-link {
    font-weight: 500;
    color: var(--qy-dark) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    transition: var(--qy-transition);
    position: relative;
}

.qy-nav-link:hover,
.qy-nav-link.active {
    color: var(--qy-secondary) !important;
    background: rgba(255, 214, 0, 0.1);
}

.qy-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--qy-primary);
    transition: var(--qy-transition);
}

.qy-nav-link:hover::after,
.qy-nav-link.active::after {
    width: 60%;
}

.qy-nav-cta {
    margin-left: 10px;
}

.qy-btn-consult {
    background: linear-gradient(135deg, var(--qy-primary) 0%, var(--qy-primary-dark) 100%);
    color: var(--qy-dark) !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.qy-btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.qy-toggler {
    border: none;
    padding: 8px;
}

.qy-toggler:focus {
    box-shadow: none;
}

/* ==================== 公共底部样式 ==================== */
.qy-footer {
    background: var(--qy-dark);
    color: var(--qy-white);
    margin-top: 80px;
}

.qy-footer-cta {
    background: linear-gradient(135deg, var(--qy-secondary) 0%, #1e3a6f 100%);
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.qy-cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--qy-white);
}

.qy-cta-desc {
    font-size: 18px;
    opacity: 0.9;
    margin: 0;
}

.qy-btn-large {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
}

.qy-btn-white {
    background: var(--qy-white);
    color: var(--qy-secondary);
    border: 2px solid var(--qy-white);
}

.qy-btn-white:hover {
    background: transparent;
    color: var(--qy-white);
}

.qy-footer-main {
    padding: 80px 0 40px;
}

.qy-footer-col {
    margin-bottom: 40px;
}

.qy-footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.qy-footer-company {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--qy-primary);
}

.qy-footer-desc {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.qy-footer-cert {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qy-cert-badge {
    background: rgba(255,214,0,0.1);
    color: var(--qy-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.qy-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--qy-white);
    position: relative;
    padding-bottom: 10px;
}

.qy-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--qy-primary);
    border-radius: 2px;
}

.qy-footer-links {
    list-style: none;
    padding: 0;
}

.qy-footer-links li {
    margin-bottom: 12px;
}

.qy-footer-links a {
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--qy-transition);
}

.qy-footer-links a:hover {
    color: var(--qy-primary);
    padding-left: 5px;
}

.qy-footer-contact {
    list-style: none;
    padding: 0;
}

.qy-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.qy-contact-row i {
    font-size: 20px;
    color: var(--qy-primary);
    margin-top: 3px;
}

.qy-contact-row .qy-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
}

.qy-contact-row .qy-value {
    display: block;
    font-size: 15px;
    color: var(--qy-white);
}

.qy-footer-qr {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 10px;
}

.qy-qr-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.qy-qr-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.qy-friend-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.qy-links-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.qy-links-label {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    white-space: nowrap;
}

.qy-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.qy-friend-link {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: var(--qy-transition);
}

.qy-friend-link:hover {
    color: var(--qy-primary);
}

.qy-copyright {
    padding: 30px 0;
    background: rgba(0,0,0,0.2);
}

.qy-copy-text {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    margin: 0;
}

.qy-copy-text a {
    color: rgba(255,255,255,0.7);
}

.qy-copy-text a:hover {
    color: var(--qy-primary);
}

.qy-disclaimer {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    margin: 0;
}

/* 悬浮按钮 */
.qy-float-tools {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qy-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qy-white);
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: var(--qy-transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.qy-float-phone {
    background: #25D366;
}

.qy-float-message {
    background: var(--qy-secondary);
}

.qy-float-top {
    background: var(--qy-primary);
    color: var(--qy-dark);
    opacity: 0;
    visibility: hidden;
}

.qy-float-top.show {
    opacity: 1;
    visibility: visible;
}

.qy-float-text {
    position: absolute;
    right: 60px;
    background: var(--qy-dark);
    color: var(--qy-white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--qy-transition);
}

.qy-float-btn:hover .qy-float-text {
    opacity: 1;
    visibility: visible;
}

.qy-float-btn:hover {
    transform: scale(1.1);
}

/* ==================== 首页样式 ==================== */
.qy-hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.qy-carousel-inner,
.qy-carousel-item {
    height: 100%;
}

.qy-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.qy-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.qy-carousel-caption {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    padding-top: 0;
    padding-bottom: 0;
}

.qy-slide-subtitle {
    display: inline-block;
    background: var(--qy-primary);
    color: var(--qy-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.qy-slide-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--qy-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.qy-slide-desc {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.qy-slide-btns {
    margin-bottom: 50px;
}

.qy-btn-primary {
    background: linear-gradient(135deg, var(--qy-primary) 0%, var(--qy-primary-dark) 100%);
    color: var(--qy-dark);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--qy-transition);
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.qy-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 214, 0, 0.4);
    color: var(--qy-dark);
}

.qy-btn-outline {
    background: transparent;
    color: var(--qy-white);
    border: 2px solid var(--qy-white);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--qy-transition);
}

.qy-btn-outline:hover {
    background: var(--qy-white);
    color: var(--qy-dark);
    transform: translateY(-3px);
}

.qy-slide-stats {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
}

.qy-stat-item {
    text-align: center;
}

.qy-stat-num {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--qy-primary);
    line-height: 1;
}

.qy-stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 5px;
}

.qy-carousel-indicators {
    bottom: 30px;
}

.qy-carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 6px;
}

.qy-carousel-indicators button.active {
    background-color: var(--qy-primary);
    width: 30px;
    border-radius: 6px;
}

.qy-carousel-control {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

/* 公共区块样式 */
.qy-section {
    padding: 100px 0;
}

.qy-section-header {
    margin-bottom: 60px;
}

.qy-section-subtitle {
    display: inline-block;
    color: var(--qy-secondary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.qy-section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--qy-primary);
}

.qy-section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--qy-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.qy-section-desc {
    font-size: 18px;
    color: var(--qy-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* 特色模块 */
.qy-features-section {
    background: var(--qy-white);
}

.qy-feature-card {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.qy-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--qy-primary) 0%, var(--qy-primary-dark) 100%);
    transform: scaleX(0);
    transition: var(--qy-transition);
}

.qy-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.qy-feature-card:hover::before {
    transform: scaleX(1);
}

.qy-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--qy-secondary);
    transition: var(--qy-transition);
}

.qy-feature-card:hover .qy-feature-icon {
    background: var(--qy-primary);
    color: var(--qy-dark);
    transform: rotateY(360deg);
}

.qy-feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--qy-dark);
}

.qy-feature-desc {
    color: var(--qy-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.qy-feature-list {
    list-style: none;
    text-align: left;
    padding: 0;
    margin: 0;
}

.qy-feature-list li {
    padding: 8px 0;
    color: var(--qy-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.qy-feature-list li i {
    color: var(--qy-primary);
    font-size: 16px;
}

/* 关于我们模块 */
.qy-about-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.qy-about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255,214,0,0.05);
    border-radius: 50%;
}

.qy-about-images {
    position: relative;
}

.qy-about-img-main {
    position: relative;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.qy-about-img-sub {
    position: absolute;
    bottom: -50px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border: 5px solid var(--qy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qy-about-experience {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--qy-primary);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255,214,0,0.3);
    z-index: 3;
}

.qy-exp-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--qy-dark);
    line-height: 1;
}

.qy-exp-text {
    display: block;
    font-size: 14px;
    color: var(--qy-dark);
    font-weight: 600;
    margin-top: 5px;
}

.qy-about-content {
    position: relative;
    z-index: 1;
}

.qy-about-text {
    color: var(--qy-gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.qy-about-highlights {
    margin: 30px 0;
}

.qy-highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--qy-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--qy-transition);
}

.qy-highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.qy-highlight-item i {
    font-size: 28px;
    color: var(--qy-secondary);
    width: 50px;
    height: 50px;
    background: rgba(43,87,151,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qy-hl-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--qy-dark);
    line-height: 1;
}

.qy-hl-text {
    font-size: 14px;
    color: var(--qy-gray);
}

/* 套餐服务模块 */
.qy-packages-section {
    background: var(--qy-white);
}

.qy-package-card {
    background: var(--qy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
    position: relative;
    border: 2px solid transparent;
}

.qy-package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.qy-package-popular {
    border-color: var(--qy-primary);
    transform: scale(1.05);
}

.qy-package-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.qy-package-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--qy-accent);
    color: var(--qy-white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.qy-package-header {
    padding: 40px 30px;
    text-align: center;
    color: var(--qy-white);
    position: relative;
}

.qy-package-basic {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.qy-package-standard {
    background: linear-gradient(135deg, var(--qy-secondary) 0%, #1e3a6f 100%);
}

.qy-package-vip {
    background: linear-gradient(135deg, #FFD600 0%, #F4C430 100%);
    color: var(--qy-dark);
}

.qy-package-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.qy-package-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qy-package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.qy-price-unit {
    font-size: 16px;
    font-weight: 600;
}

.qy-price-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.qy-package-body {
    padding: 40px 30px;
}

.qy-package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.qy-package-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--qy-border);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.qy-package-features li i {
    color: var(--qy-primary);
    font-size: 18px;
}

.qy-package-features li.qy-feature-disabled {
    color: var(--qy-gray);
    opacity: 0.6;
}

.qy-package-features li.qy-feature-disabled i {
    color: var(--qy-gray);
}

.qy-btn-package {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--qy-light);
    color: var(--qy-dark);
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--qy-transition);
    border: none;
}

.qy-btn-package:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-btn-popular {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-btn-popular:hover {
    background: var(--qy-primary-dark);
}

/* 套餐对比表 */
.qy-compare-table-wrapper {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 40px;
}

.qy-compare-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--qy-dark);
}

.qy-compare-table {
    margin: 0;
}

.qy-compare-table th {
    background: var(--qy-secondary);
    color: var(--qy-white);
    font-weight: 600;
    border: none;
    padding: 15px;
}

.qy-compare-table td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--qy-border);
}

.qy-check-yes {
    color: #28a745;
    font-size: 20px;
}

.qy-check-vip {
    color: var(--qy-primary);
    font-size: 20px;
}

.qy-check-no {
    color: var(--qy-gray);
    font-size: 20px;
}

.qy-x-mark {
    color: #dc3545;
    font-size: 16px;
}

.qy-compare-note {
    color: var(--qy-gray);
    font-size: 14px;
    margin: 0;
}

.qy-compare-note i {
    color: var(--qy-primary);
}

/* 流程模块 */
.qy-process-section {
    background: linear-gradient(135deg, var(--qy-secondary) 0%, #1e3a6f 100%);
    color: var(--qy-white);
    position: relative;
    overflow: hidden;
}

.qy-process-section .qy-section-title,
.qy-process-section .qy-section-desc {
    color: var(--qy-white);
}

.qy-process-timeline {
    position: relative;
    padding: 40px 0;
}

.qy-process-line {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    z-index: 0;
}

.qy-process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.qy-process-icon {
    width: 100px;
    height: 100px;
    background: var(--qy-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: var(--qy-secondary);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--qy-transition);
}

.qy-process-icon:hover {
    transform: scale(1.1);
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-process-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--qy-accent);
    color: var(--qy-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qy-process-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.qy-process-item p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
}

/* 资讯模块 */
.qy-news-section {
    background: var(--qy-light);
}

.qy-news-card {
    background: var(--qy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--qy-transition);
    height: 100%;
}

.qy-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.qy-news-featured {
    height: 100%;
}

.qy-news-featured .qy-news-img-wrapper {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.qy-news-img-wrapper {
    position: relative;
    overflow: hidden;
}

.qy-news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--qy-transition);
}

.qy-news-card:hover .qy-news-img {
    transform: scale(1.1);
}

.qy-news-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.qy-news-category {
    background: var(--qy-primary);
    color: var(--qy-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.qy-news-content {
    padding: 25px;
}

.qy-news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--qy-gray);
}

.qy-news-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.qy-news-title a {
    color: var(--qy-dark);
}

.qy-news-title a:hover {
    color: var(--qy-secondary);
}

.qy-news-desc {
    color: var(--qy-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.qy-read-more {
    color: var(--qy-secondary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.qy-read-more:hover {
    color: var(--qy-primary);
    gap: 10px;
}

.qy-news-small .qy-news-img-wrapper {
    height: 150px;
}

.qy-news-small .qy-news-content {
    padding: 20px;
}

.qy-news-title-small {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.qy-tags-cloud {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding: 20px;
    background: var(--qy-white);
    border-radius: 15px;
}

.qy-tags-label {
    font-weight: 600;
    color: var(--qy-dark);
}

.qy-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--qy-light);
    border-radius: 25px;
    font-size: 14px;
    color: var(--qy-gray);
    transition: var(--qy-transition);
}

.qy-tag:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
    transform: translateY(-2px);
}

/* 城市分站模块 */
.qy-cities-section {
    background: var(--qy-white);
}

.qy-cities-wrapper {
    background: var(--qy-light);
    border-radius: 20px;
    padding: 40px;
}

.qy-cities-current {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--qy-white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.qy-cities-current i {
    font-size: 24px;
    color: var(--qy-primary);
}

.qy-btn-switch {
    margin-left: auto;
    background: var(--qy-primary);
    color: var(--qy-dark);
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.qy-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.qy-city-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 10px;
    background: var(--qy-white);
    border-radius: 10px;
    text-align: center;
    transition: var(--qy-transition);
    border: 2px solid transparent;
}

.qy-city-item:hover,
.qy-city-item.active {
    background: var(--qy-primary);
    border-color: var(--qy-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255,214,0,0.3);
}

.qy-city-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--qy-dark);
}

.qy-city-pinyin {
    font-size: 11px;
    color: var(--qy-gray);
    text-transform: uppercase;
}

.qy-city-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.qy-city-soon:hover {
    background: var(--qy-white);
    transform: none;
    border-color: transparent;
}

.qy-cities-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255,214,0,0.1);
    border-radius: 10px;
    font-size: 14px;
    color: var(--qy-gray);
}

.qy-cities-note i {
    color: var(--qy-primary);
    font-size: 18px;
}

/* 客户见证模块 */
.qy-testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.qy-testimonial-card {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: var(--qy-transition);
    border: 1px solid transparent;
}

.qy-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--qy-primary);
}

.qy-testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qy-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--qy-primary);
}

.qy-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qy-testimonial-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.qy-testimonial-info span {
    font-size: 13px;
    color: var(--qy-gray);
}

.qy-testimonial-rating {
    color: var(--qy-primary);
    margin-bottom: 15px;
}

.qy-testimonial-text {
    color: var(--qy-gray);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.qy-testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--qy-border);
    font-size: 13px;
}

.qy-testimonial-date {
    color: var(--qy-gray);
}

.qy-testimonial-type {
    background: rgba(43,87,151,0.1);
    color: var(--qy-secondary);
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 600;
}

.qy-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qy-stat-box {
    background: var(--qy-white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
}

.qy-stat-box:hover {
    transform: translateY(-5px);
    background: var(--qy-secondary);
    color: var(--qy-white);
}

.qy-stat-box i {
    font-size: 40px;
    color: var(--qy-primary);
    margin-bottom: 15px;
    display: block;
}

.qy-stat-box:hover i {
    color: var(--qy-primary);
}

.qy-stat-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.qy-stat-suffix {
    font-size: 24px;
    font-weight: 600;
}

.qy-stat-label {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    opacity: 0.8;
}

/* FAQ模块 */
.qy-faq-section {
    background: var(--qy-white);
}

.qy-faq-header {
    position: sticky;
    top: 100px;
}

.qy-faq-desc {
    color: var(--qy-gray);
    margin: 20px 0;
    line-height: 1.8;
}

.qy-faq-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--qy-light);
    border-radius: 15px;
    margin-top: 30px;
}

.qy-faq-contact i {
    font-size: 40px;
    color: var(--qy-secondary);
}

.qy-faq-contact span {
    display: block;
    color: var(--qy-gray);
    font-size: 14px;
}

.qy-faq-contact a {
    color: var(--qy-secondary);
    font-weight: 700;
    font-size: 18px;
}

.qy-faq-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.qy-faq-accordion .accordion-button {
    padding: 25px;
    font-weight: 600;
    color: var(--qy-dark);
    background: var(--qy-white);
    border: none;
    box-shadow: none;
}

.qy-faq-accordion .accordion-button:not(.collapsed) {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-faq-accordion .accordion-button i {
    color: var(--qy-secondary);
    margin-right: 10px;
}

.qy-faq-accordion .accordion-button:not(.collapsed) i {
    color: var(--qy-dark);
}

.qy-faq-accordion .accordion-body {
    padding: 25px;
    color: var(--qy-gray);
    line-height: 1.8;
    background: var(--qy-white);
}

/* CTA模块 */
.qy-cta-section {
    background: linear-gradient(135deg, var(--qy-secondary) 0%, #1e3a6f 100%);
    padding: 80px 0;
}

.qy-cta-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.2);
}

.qy-cta-title {
    color: var(--qy-white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qy-cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 25px;
}

.qy-cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.qy-cta-features li {
    color: var(--qy-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.qy-cta-features li i {
    color: var(--qy-primary);
}

.qy-btn-outline-white {
    background: transparent;
    color: var(--qy-white);
    border: 2px solid var(--qy-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
}

.qy-btn-outline-white:hover {
    background: var(--qy-white);
    color: var(--qy-secondary);
}

/* ==================== 资讯列表页样式 ==================== */
.qy-page-banner {
    position: relative;
    padding: 120px 0 80px;
    margin-bottom: 0;
    overflow: hidden;
}

.qy-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.qy-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43,87,151,0.9) 0%, rgba(0,0,0,0.7) 100%);
}

.qy-banner-title {
    position: relative;
    color: var(--qy-white);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.qy-breadcrumb-nav {
    position: relative;
}

.qy-breadcrumb-nav .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.qy-breadcrumb-nav .breadcrumb-item.active {
    color: var(--qy-primary);
}

.qy-banner-desc {
    position: relative;
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-top: 20px;
}

.qy-news-list-section {
    background: var(--qy-light);
}

.qy-section-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--qy-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.qy-filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.qy-filter-tab {
    padding: 8px 20px;
    background: var(--qy-light);
    border-radius: 25px;
    font-size: 14px;
    color: var(--qy-gray);
    transition: var(--qy-transition);
}

.qy-filter-tab:hover,
.qy-filter-tab.active {
    background: var(--qy-primary);
    color: var(--qy-dark);
    font-weight: 600;
}

.qy-news-stats {
    font-size: 14px;
    color: var(--qy-gray);
}

.qy-news-stats strong {
    color: var(--qy-secondary);
}

.qy-news-item {
    background: var(--qy-white);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--qy-transition);
}

.qy-news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.qy-news-thumb {
    height: 100%;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.qy-thumb-link {
    display: block;
    height: 100%;
}

.qy-thumb-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--qy-transition);
}

.qy-news-item:hover .qy-thumb-link img {
    transform: scale(1.1);
}

.qy-news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--qy-primary);
    color: var(--qy-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.qy-news-body {
    padding: 30px;
}

.qy-news-meta-top {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--qy-gray);
}

.qy-news-excerpt {
    color: var(--qy-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.qy-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.qy-news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qy-tag-sm {
    padding: 4px 12px;
    background: var(--qy-light);
    border-radius: 15px;
    font-size: 12px;
    color: var(--qy-gray);
}

.qy-read-more-link {
    color: var(--qy-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qy-read-more-link:hover {
    color: var(--qy-primary);
    gap: 10px;
}

/* 侧边栏 */
.qy-sidebar-widget {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.qy-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qy-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.qy-widget-title i {
    color: var(--qy-secondary);
}

.qy-search-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.qy-search-form .form-control {
    border: none;
    padding: 15px 20px;
}

.qy-btn-search {
    background: var(--qy-primary);
    border: none;
    color: var(--qy-dark);
    padding: 0 25px;
}

.qy-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qy-hot-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--qy-border);
}

.qy-hot-item:last-child {
    border-bottom: none;
}

.qy-hot-rank {
    width: 30px;
    height: 30px;
    background: var(--qy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--qy-gray);
    font-size: 14px;
    flex-shrink: 0;
}

.qy-hot-rank.top {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-hot-content {
    flex: 1;
    min-width: 0;
}

.qy-hot-title {
    display: block;
    font-weight: 600;
    color: var(--qy-dark);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.qy-hot-title:hover {
    color: var(--qy-secondary);
}

.qy-hot-views {
    font-size: 12px;
    color: var(--qy-gray);
}

.qy-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qy-cat-item {
    margin-bottom: 10px;
}

.qy-cat-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--qy-light);
    border-radius: 10px;
    color: var(--qy-dark);
    transition: var(--qy-transition);
}

.qy-cat-link:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
    padding-left: 20px;
}

.qy-cat-count {
    background: var(--qy-white);
    padding: 2px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--qy-gray);
}

.qy-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qy-tag-item {
    padding: 8px 16px;
    background: var(--qy-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--qy-gray);
    transition: var(--qy-transition);
}

.qy-tag-item:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
    transform: translateY(-2px);
}

.qy-contact-card p {
    margin-bottom: 10px;
    color: var(--qy-gray);
}

.qy-contact-phone {
    font-size: 20px;
    font-weight: 700;
}

.qy-contact-phone a {
    color: var(--qy-secondary);
}

/* ==================== 文章详情页样式 ==================== */
.qy-article-header {
    background: linear-gradient(135deg, var(--qy-secondary) 0%, #1e3a6f 100%);
    padding: 100px 0 60px;
    color: var(--qy-white);
}

.qy-article-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
}

.qy-article-breadcrumb .breadcrumb-item.active {
    color: var(--qy-primary);
}

.qy-article-title {
    font-size: 36px;
    font-weight: 700;
    margin: 30px 0 20px;
    line-height: 1.4;
}

.qy-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.qy-meta-item i {
    color: var(--qy-primary);
    margin-right: 5px;
}

.qy-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qy-tag-link {
    padding: 6px 16px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 13px;
    color: var(--qy-white);
    transition: var(--qy-transition);
}

.qy-tag-link:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-article-section {
    background: var(--qy-light);
}

.qy-article-content {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.qy-article-featured-img {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
}

.qy-img-caption {
    text-align: center;
    padding: 10px;
    background: var(--qy-light);
    font-size: 14px;
    color: var(--qy-gray);
    margin-top: -5px;
}

.qy-article-summary {
    background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.05) 100%);
    border-left: 4px solid var(--qy-primary);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.qy-article-summary i {
    font-size: 24px;
    color: var(--qy-primary);
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.3;
}

.qy-article-summary p {
    margin: 0;
    padding-left: 40px;
    color: var(--qy-gray);
    font-style: italic;
    line-height: 1.8;
}

/* 正文内容样式 */
.content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--qy-dark);
}

.content h2,
.content h3,
.content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--qy-dark);
}

.content p {
    margin-bottom: 20px;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.qy-article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--qy-border);
}

.qy-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qy-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qy-white);
    transition: var(--qy-transition);
    border: none;
}

.qy-share-btn.wechat { background: #07C160; }
.qy-share-btn.weibo { background: #E6162D; }
.qy-share-btn.qq { background: #12B7F5; }
.qy-share-btn.copy { background: var(--qy-gray); }

.qy-share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.qy-article-actions {
    display: flex;
    gap: 10px;
}

.qy-btn-like,
.qy-btn-collect {
    padding: 10px 25px;
    border-radius: 25px;
    border: 1px solid var(--qy-border);
    background: var(--qy-white);
    color: var(--qy-gray);
    transition: var(--qy-transition);
}

.qy-btn-like:hover,
.qy-btn-collect:hover {
    background: var(--qy-primary);
    border-color: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-copyright-notice {
    margin-top: 30px;
    padding: 20px;
    background: var(--qy-light);
    border-radius: 15px;
    font-size: 14px;
}

.qy-copyright-notice p {
    margin-bottom: 10px;
    color: var(--qy-gray);
}

.qy-copyright-notice strong {
    color: var(--qy-dark);
}

.qy-article-nav {
    margin-top: 40px;
    padding: 30px;
    background: var(--qy-light);
    border-radius: 15px;
}

.qy-nav-prev,
.qy-nav-next {
    display: flex;
    flex-direction: column;
}

.qy-nav-label {
    font-size: 13px;
    color: var(--qy-gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.qy-nav-title {
    font-weight: 600;
    color: var(--qy-dark);
    line-height: 1.4;
}

.qy-nav-title:hover {
    color: var(--qy-secondary);
}

.qy-nav-disabled {
    color: var(--qy-gray);
    cursor: not-allowed;
}

.qy-related-articles {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
}

.qy-related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qy-related-title i {
    color: var(--qy-secondary);
}

.qy-related-card {
    background: var(--qy-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--qy-transition);
}

.qy-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qy-related-img {
    height: 150px;
    overflow: hidden;
}

.qy-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--qy-transition);
}

.qy-related-card:hover .qy-related-img img {
    transform: scale(1.1);
}

.qy-related-card h5 {
    padding: 15px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.qy-related-card h5 a {
    color: var(--qy-dark);
}

.qy-comments-section {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
}

.qy-comments-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.qy-comment-form .form-control {
    border-radius: 10px;
    border: 1px solid var(--qy-border);
    padding: 12px 15px;
}

.qy-comment-form .form-control:focus {
    border-color: var(--qy-primary);
    box-shadow: 0 0 0 3px rgba(255,214,0,0.1);
}

/* 侧边栏作者卡片 */
.qy-author-card {
    text-align: center;
}

.qy-author-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid var(--qy-primary);
}

.qy-author-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qy-author-card p {
    font-size: 14px;
    color: var(--qy-gray);
    margin-bottom: 20px;
}

.qy-quick-form .form-control {
    border-radius: 10px;
    border: 1px solid var(--qy-border);
    padding: 12px 15px;
}

.qy-form-note {
    text-align: center;
    font-size: 13px;
    color: var(--qy-gray);
    margin-top: 15px;
    margin-bottom: 0;
}

.qy-form-note i {
    color: var(--qy-primary);
}

/* ==================== 关于我们页样式 ==================== */
.qy-banner-about {
    margin-bottom: 0;
}

.qy-intro-section {
    background: var(--qy-white);
}

.qy-history-section {
    position: relative;
}

.qy-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.qy-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--qy-primary), var(--qy-secondary));
    border-radius: 2px;
}

.qy-timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 50px;
}

.qy-timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.qy-timeline-year {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--qy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--qy-dark);
    box-shadow: 0 5px 20px rgba(255,214,0,0.4);
    z-index: 1;
}

.qy-timeline-content {
    width: 80%;
    background: var(--qy-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.qy-timeline-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--qy-secondary);
}

.qy-timeline-content p {
    color: var(--qy-gray);
    margin: 0;
}

.qy-team-card {
    background: var(--qy-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    text-align: center;
}

.qy-team-card:hover {
    transform: translateY(-10px);
}

.qy-team-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.qy-team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--qy-transition);
}

.qy-team-card:hover .qy-team-img img {
    transform: scale(1.1);
}

.qy-team-info {
    padding: 25px;
}

.qy-team-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.qy-team-title {
    display: block;
    color: var(--qy-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.qy-team-info p {
    color: var(--qy-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.qy-team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.qy-team-social a {
    width: 35px;
    height: 35px;
    background: var(--qy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qy-secondary);
    transition: var(--qy-transition);
}

.qy-team-social a:hover {
    background: var(--qy-primary);
    color: var(--qy-dark);
}

.qy-honor-card {
    background: var(--qy-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--qy-transition);
    height: 100%;
    border: 2px solid transparent;
}

.qy-honor-card:hover {
    border-color: var(--qy-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.qy-honor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--qy-secondary);
}

.qy-honor-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qy-honor-card p {
    color: var(--qy-gray);
    font-size: 14px;
    margin: 0;
}

.qy-partners-logos {
    align-items: center;
}

.qy-partner-logo {
    background: var(--qy-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--qy-transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.qy-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.qy-cta-box-dark {
    background: var(--qy-dark);
    border-radius: 20px;
    padding: 60px;
    color: var(--qy-white);
}

.qy-cta-box-dark h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* ==================== 联系我们页样式 ==================== */
.qy-banner-contact {
    margin-bottom: 0;
}

.qy-contact-info-section {
    background: var(--qy-light);
    padding: 60px 0;
}

.qy-contact-cards {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}

.qy-contact-card {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--qy-transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.qy-contact-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--qy-primary);
}

.qy-contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--qy-primary) 0%, var(--qy-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: var(--qy-dark);
    box-shadow: 0 10px 30px rgba(255,214,0,0.3);
}

.qy-contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qy-contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: var(--qy-secondary);
    margin-bottom: 10px;
}

.qy-contact-detail a {
    color: var(--qy-secondary);
}

.qy-contact-time {
    font-size: 14px;
    color: var(--qy-gray);
    margin: 0;
}

.qy-contact-main-section {
    padding: 80px 0;
}

.qy-contact-form-wrapper {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.qy-form-header {
    margin-bottom: 40px;
}

.qy-form-header p {
    color: var(--qy-gray);
    margin-top: 10px;
}

.qy-contact-form .form-label {
    font-weight: 600;
    color: var(--qy-dark);
    margin-bottom: 8px;
}

.qy-contact-form .input-group-text {
    background: var(--qy-light);
    border: 1px solid var(--qy-border);
    border-right: none;
    color: var(--qy-secondary);
    padding: 0 20px;
}

.qy-contact-form .form-control {
    border: 1px solid var(--qy-border);
    padding: 12px 20px;
    border-radius: 0 10px 10px 0;
}

.qy-contact-form .form-control:focus {
    border-color: var(--qy-primary);
    box-shadow: 0 0 0 3px rgba(255,214,0,0.1);
}

.qy-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.qy-radio-group .form-check {
    margin: 0;
}

.qy-radio-group .form-check-input:checked {
    background-color: var(--qy-primary);
    border-color: var(--qy-primary);
}

.qy-radio-group .form-check-label {
    font-size: 14px;
    color: var(--qy-gray);
}

.qy-contact-sidebar {
    position: sticky;
    top: 100px;
}

.qy-qr-box {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.qy-qr-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qy-qr-box h4 i {
    color: #07C160;
}

.qy-qr-img-wrapper {
    background: var(--qy-light);
    padding: 20px;
    border-radius: 15px;
}

.qy-qr-large {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.qy-qr-img-wrapper p {
    color: var(--qy-gray);
    font-size: 14px;
    margin: 0;
}

.qy-service-hours {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.qy-service-hours h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qy-service-hours h4 i {
    color: var(--qy-secondary);
}

.qy-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qy-hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--qy-border);
    font-size: 14px;
}

.qy-hours-list li:last-child {
    border-bottom: none;
}

.qy-quick-faq {
    background: var(--qy-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.qy-quick-faq h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qy-quick-faq h4 i {
    color: var(--qy-secondary);
}

.qy-quick-faq .accordion-item {
    border: none;
    background: var(--qy-light);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.qy-quick-faq .accordion-button {
    background: transparent;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--qy-dark);
    box-shadow: none;
}

.qy-quick-faq .accordion-body {
    font-size: 14px;
    color: var(--qy-gray);
    padding: 0 20px 15px;
}

.qy-map-section {
    height: 400px;
    background: var(--qy-light);
}

.qy-map-wrapper {
    height: 100%;
    position: relative;
}

.qy-map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--qy-gray);
}

.qy-map-placeholder i {
    font-size: 60px;
    color: var(--qy-primary);
    margin-bottom: 20px;
}

.qy-map-placeholder p {
    font-size: 20px;
    font-weight: 600;
    color: var(--qy-dark);
    margin-bottom: 10px;
}

.qy-cities-contact {
    background: var(--qy-white);
}

.qy-city-contact-card {
    background: var(--qy-light);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: var(--qy-transition);
    height: 100%;
}

.qy-city-contact-card:hover {
    background: var(--qy-primary);
    transform: translateY(-5px);
}

.qy-city-contact-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--qy-dark);
}

.qy-city-contact-card p {
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--qy-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qy-city-contact-card p i {
    color: var(--qy-secondary);
}

.qy-city-contact-card:hover p,
.qy-city-contact-card:hover h4 {
    color: var(--qy-dark);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1199px) {
    .qy-slide-title {
        font-size: 42px;
    }
    
    .qy-section-title {
        font-size: 36px;
    }
    
    .qy-package-popular {
        transform: scale(1);
    }
    
    .qy-package-popular:hover {
        transform: scale(1) translateY(-10px);
    }
}

@media (max-width: 991px) {
    .qy-hero-slider {
        height: auto;
        min-height: 600px;
    }
    
    .qy-slide-title {
        font-size: 36px;
    }
    
    .qy-section {
        padding: 60px 0;
    }
    
    .qy-section-title {
        font-size: 32px;
    }
    
    .qy-about-img-sub {
        position: relative;
        bottom: auto;
        right: auto;
        width: 80%;
        margin: -50px auto 0;
    }
    
    .qy-about-experience {
        left: 20px;
        top: 20px;
    }
    
    .qy-process-line {
        display: none;
    }
    
    .qy-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qy-timeline::before {
        left: 30px;
    }
    
    .qy-timeline-item,
    .qy-timeline-item:nth-child(even) {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .qy-timeline-year {
        left: 30px;
        transform: translateX(-50%);
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .qy-timeline-content {
        width: 100%;
    }
    
    .qy-contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .qy-top-bar {
        display: none;
    }
    
    .qy-slide-title {
        font-size: 28px;
    }
    
    .qy-slide-desc {
        font-size: 16px;
    }
    
    .qy-section-title {
        font-size: 28px;
    }
    
    .qy-slide-stats {
        padding: 20px;
    }
    
    .qy-stat-num {
        font-size: 28px;
    }
    
    .qy-cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .qy-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .qy-cta-box,
    .qy-cta-box-dark {
        padding: 40px 30px;
    }
    
    .qy-cta-title {
        font-size: 28px;
    }
    
    .qy-article-title {
        font-size: 28px;
    }
    
    .qy-article-content {
        padding: 25px;
    }
    
    .qy-contact-cards {
        margin-top: -40px;
    }
}

@media (max-width: 575px) {
    .qy-brand-name {
        font-size: 18px;
    }
    
    .qy-brand-slogan {
        font-size: 10px;
    }
    
    .qy-logo-img {
        height: 40px;
    }
    
    .qy-section {
        padding: 40px 0;
    }
    
    .qy-section-title {
        font-size: 24px;
    }
    
    .qy-feature-card,
    .qy-package-card,
    .qy-testimonial-card {
        padding: 25px;
    }
    
    .qy-price-num {
        font-size: 36px;
    }
    
    .qy-compare-table-wrapper {
        padding: 20px;
    }
    
    .qy-filter-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 10px;
    }
    
    .qy-news-thumb {
        min-height: 200px;
    }
    
    .qy-footer-cta {
        padding: 40px 0;
    }
    
    .qy-cta-title {
        font-size: 24px;
    }
    
    .qy-float-tools {
        right: 10px;
        bottom: 80px;
    }
    
    .qy-float-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qy-section {
    animation: fadeInUp 0.8s ease-out;
}

/* 加载动画 */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}