/* 8. style.css - 网站样式（夕阳浅黄色主题） */

/* ==================== 基础变量与重置 ==================== */
:root {
    /* 夕阳浅黄色主题配色 */
    --qy-primary: #FFD600;        /* 阳光黄 - 主色 */
    --qy-primary-dark: #FFA726;   /* 暖橙 - 深主色 */
    --qy-primary-light: #FFF8E1;  /* 米黄 - 浅色背景 */
    --qy-secondary: #FF8F00;      /* 深橙 - 强调色 */
    --qy-accent: #FF6F00;         /* 橙红 - 点缀色 */
    --qy-text: #212121;           /* 主文字 - 深灰 */
    --qy-text-light: #757575;     /* 次要文字 - 中灰 */
    --qy-text-muted: #9E9E9E;     /* 辅助文字 - 浅灰 */
    --qy-bg: #FFFFFF;             /* 白色背景 */
    --qy-bg-light: #FFFDE7;       /* 浅黄背景 */
    --qy-border: #FFE082;         /* 边框色 */
    --qy-shadow: rgba(255, 214, 0, 0.15); /* 阴影色 */
    
    /* 功能色 */
    --qy-success: #4CAF50;
    --qy-info: #03A9F4;
    --qy-warning: #FF9800;
    --qy-danger: #F44336;
    
    /* 渐变 */
    --qy-gradient: linear-gradient(135deg, #FFD600 0%, #FFA726 100%);
    --qy-gradient-dark: linear-gradient(135deg, #FFA726 0%, #FF8F00 100%);
    
    /* 字体 */
    --qy-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    
    /* 圆角 */
    --qy-radius: 12px;
    --qy-radius-sm: 6px;
    --qy-radius-lg: 20px;
    
    /* 过渡 */
    --qy-transition: all 0.3s ease;
}

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--qy-font);
    color: var(--qy-text);
    line-height: 1.6;
    background-color: var(--qy-bg);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--qy-transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ==================== 按钮样式 ==================== */
.qi-yu-btn-primary {
    background: var(--qy-gradient);
    color: var(--qy-text);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.4);
    transition: var(--qy-transition);
}

.qi-yu-btn-primary:hover {
    background: var(--qy-gradient-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.6);
}

.qi-yu-btn-outline {
    background: transparent;
    color: var(--qy-primary-dark);
    border: 2px solid var(--qy-primary);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--qy-transition);
}

.qi-yu-btn-outline:hover {
    background: var(--qy-primary);
    color: var(--qy-text);
    transform: translateY(-2px);
}

.qi-yu-btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
}

.qi-yu-btn-outline-light:hover {
    background: #fff;
    color: var(--qy-primary-dark);
}

.qi-yu-btn-light {
    background: #fff;
    color: var(--qy-primary-dark);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.qi-yu-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.qi-yu-btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
    border-radius: 20px;
    display: inline-block;
}

.qi-yu-btn-sm:hover {
    background: var(--qy-primary);
}

/* ==================== 顶部栏 ==================== */
.qi-yu-topbar {
    background: linear-gradient(90deg, #FFF8E1 0%, #FFECB3 100%);
    padding: 10px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--qy-border);
}

.qi-yu-welcome-text i {
    color: var(--qy-secondary);
    margin-right: 5px;
}

.qi-yu-social-links {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.qi-yu-social-btn {
    width: 32px;
    height: 32px;
    background: var(--qy-primary);
    color: var(--qy-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--qy-transition);
}

.qi-yu-social-btn:hover {
    background: var(--qy-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

/* ==================== 导航栏 ==================== */
.qi-yu-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.qi-yu-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qi-yu-logo {
    height: 50px;
    width: auto;
}

.qi-yu-brand-text {
    line-height: 1.2;
}

.qi-yu-brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--qy-text);
    margin: 0;
    background: linear-gradient(135deg, var(--qy-primary-dark) 0%, var(--qy-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.qi-yu-brand-subtitle {
    font-size: 0.85rem;
    color: var(--qy-text-light);
    margin: 0;
}

.qi-yu-nav {
    gap: 5px;
}

.qi-yu-nav .nav-link {
    color: var(--qy-text) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 25px;
    position: relative;
}

.qi-yu-nav .nav-link:hover,
.qi-yu-nav .nav-link.active {
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark) !important;
}

.qi-yu-nav .nav-link i {
    margin-right: 5px;
    color: var(--qy-primary-dark);
}

.qi-yu-toggler {
    border: none;
    padding: 0;
}

.qi-yu-toggler:focus {
    box-shadow: none;
}

/* ==================== 首页轮播图 ==================== */
.qi-yu-hero-slider {
    position: relative;
}

.qi-yu-hero-slide {
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.qi-yu-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.qi-yu-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.qi-yu-hero-badge {
    display: inline-block;
    background: var(--qy-gradient);
    color: var(--qy-text);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.qi-yu-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.qi-yu-hero-subtitle {
    font-size: 1.3rem;
    color: var(--qy-primary);
    margin-bottom: 15px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.qi-yu-hero-desc {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.qi-yu-hero-buttons {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.qi-yu-hero-stats {
    margin-top: 50px;
    animation: fadeInUp 0.8s ease 1s both;
}

.qi-yu-stat-item {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--qy-radius);
    border: 1px solid rgba(255,255,255,0.2);
}

.qi-yu-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--qy-primary);
    display: block;
}

.qi-yu-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.qi-yu-carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--qy-primary);
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
}

.qi-yu-carousel-btn:hover {
    opacity: 1;
    background: var(--qy-primary-dark);
}

/* ==================== 区块标题 ==================== */
.qi-yu-section-header {
    text-align: center;
    margin-bottom: 20px;
}

.qi-yu-section-badge {
    display: inline-block;
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid var(--qy-border);
}

.qi-yu-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--qy-text);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.qi-yu-section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--qy-gradient);
    border-radius: 2px;
}

.qi-yu-section-desc {
    color: var(--qy-text-light);
    font-size: 1.1rem;
    margin-top: 20px;
}

/* ==================== 特色卡片 ==================== */
.qi-yu-features {
    background: var(--qy-bg);
    position: relative;
    overflow: hidden;
}

.qi-yu-features::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--qy-primary-light);
    border-radius: 50%;
    opacity: 0.5;
}

.qi-yu-feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--qy-radius-lg);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.qi-yu-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--qy-gradient);
    transform: scaleX(0);
    transition: var(--qy-transition);
}

.qi-yu-feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--qy-border);
    box-shadow: 0 20px 60px rgba(255, 214, 0, 0.15);
}

.qi-yu-feature-card:hover::before {
    transform: scaleX(1);
}

.qi-yu-feature-icon {
    width: 80px;
    height: 80px;
    background: var(--qy-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--qy-primary-dark);
    transition: var(--qy-transition);
}

.qi-yu-feature-card:hover .qi-yu-feature-icon {
    background: var(--qy-gradient);
    color: #fff;
    transform: rotateY(360deg);
}

.qi-yu-icon-orange { background: #FFF3E0; color: #FF9800; }
.qi-yu-icon-pink { background: #FCE4EC; color: #E91E63; }
.qi-yu-icon-blue { background: #E3F2FD; color: #2196F3; }
.qi-yu-icon-green { background: #E8F5E9; color: #4CAF50; }
.qi-yu-icon-purple { background: #F3E5F5; color: #9C27B0; }
.qi-yu-icon-red { background: #FFEBEE; color: #F44336; }

.qi-yu-feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--qy-text);
}

.qi-yu-feature-desc {
    color: var(--qy-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qi-yu-feature-link {
    color: var(--qy-primary-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.qi-yu-feature-link:hover {
    color: var(--qy-accent);
    gap: 10px;
}

/* ==================== 服务卡片 ==================== */
.qi-yu-services {
    background: var(--qy-bg-light);
    position: relative;
}

.qi-yu-service-card {
    background: #fff;
    border-radius: var(--qy-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
}

.qi-yu-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.qi-yu-service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.qi-yu-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qi-yu-service-card:hover .qi-yu-service-image img {
    transform: scale(1.1);
}

.qi-yu-service-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.qi-yu-service-tag {
    background: var(--qy-gradient);
    color: var(--qy-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.qi-yu-service-content {
    padding: 30px;
    position: relative;
}

.qi-yu-service-icon {
    width: 60px;
    height: 60px;
    background: var(--qy-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--qy-primary-dark);
    margin-bottom: 20px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.qi-yu-service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.qi-yu-service-desc {
    color: var(--qy-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.qi-yu-service-list {
    list-style: none;
    margin-bottom: 20px;
}

.qi-yu-service-list li {
    padding: 5px 0;
    color: var(--qy-text-light);
    font-size: 0.9rem;
}

.qi-yu-service-list li i {
    color: var(--qy-success);
    margin-right: 8px;
}

/* ==================== 流程步骤 ==================== */
.qi-yu-process {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 100%);
    position: relative;
}

.qi-yu-process-steps {
    position: relative;
}

.qi-yu-process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--qy-primary) 0%, var(--qy-primary-dark) 100%);
    z-index: 0;
}

.qi-yu-process-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.qi-yu-process-number {
    width: 80px;
    height: 80px;
    background: var(--qy-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--qy-text);
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(255, 214, 0, 0.4);
    border: 4px solid #fff;
}

.qi-yu-process-icon {
    font-size: 2rem;
    color: var(--qy-primary-dark);
    margin-bottom: 15px;
}

.qi-yu-process-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.qi-yu-process-item p {
    color: var(--qy-text-light);
    font-size: 0.9rem;
}

/* ==================== 统计数据 ==================== */
.qi-yu-stats {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.qi-yu-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFD600' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.qi-yu-stat-box {
    padding: 40px 20px;
    text-align: center;
    position: relative;
}

.qi-yu-stat-box i {
    font-size: 3rem;
    color: var(--qy-primary);
    margin-bottom: 20px;
    display: block;
}

.qi-yu-stat-number-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.qi-yu-stat-label-large {
    font-size: 1.1rem;
    color: var(--qy-primary);
    font-weight: 500;
}

/* ==================== 新闻模块 ==================== */
.qi-yu-news {
    background: #fff;
}

.qi-yu-news-card {
    background: #fff;
    border-radius: var(--qy-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
}

.qi-yu-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.qi-yu-news-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.qi-yu-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.qi-yu-news-card:hover .qi-yu-news-image img {
    transform: scale(1.1);
}

.qi-yu-news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--qy-gradient);
    color: var(--qy-text);
    padding: 10px 15px;
    border-radius: var(--qy-radius);
    text-align: center;
    min-width: 60px;
}

.qi-yu-news-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.qi-yu-news-date .month {
    font-size: 0.85rem;
    font-weight: 500;
}

.qi-yu-news-content {
    padding: 25px;
}

.qi-yu-news-meta {
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--qy-text-muted);
}

.qi-yu-news-meta span {
    margin-right: 15px;
}

.qi-yu-news-meta i {
    color: var(--qy-primary-dark);
    margin-right: 5px;
}

.qi-yu-news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.qi-yu-news-title a {
    color: var(--qy-text);
}

.qi-yu-news-title a:hover {
    color: var(--qy-primary-dark);
}

.qi-yu-news-desc {
    color: var(--qy-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.qi-yu-news-link {
    color: var(--qy-primary-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.qi-yu-news-link i {
    transition: transform 0.3s ease;
}

.qi-yu-news-link:hover i {
    transform: translateX(5px);
}

/* ==================== 城市目录 ==================== */
.qi-yu-cities {
    background: var(--qy-bg-light);
    position: relative;
}

.qi-yu-cities-container {
    background: #fff;
    padding: 30px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.qi-yu-city-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: var(--qy-bg-light);
    border-radius: var(--qy-radius-sm);
    color: var(--qy-text);
    font-size: 0.9rem;
    transition: var(--qy-transition);
    border: 1px solid transparent;
}

.qi-yu-city-link i {
    color: var(--qy-primary-dark);
    margin-right: 8px;
    font-size: 0.8rem;
}

.qi-yu-city-link:hover {
    background: var(--qy-primary);
    color: var(--qy-text);
    border-color: var(--qy-primary-dark);
    transform: translateX(5px);
    text-decoration: none;
}

/* ==================== 专家团队 ==================== */
.qi-yu-team {
    background: #fff;
}

.qi-yu-team-card {
    background: #fff;
    border-radius: var(--qy-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--qy-transition);
}

.qi-yu-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.qi-yu-team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.qi-yu-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-yu-team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    transition: bottom 0.3s ease;
}

.qi-yu-team-card:hover .qi-yu-team-social {
    bottom: 0;
}

.qi-yu-team-social a {
    width: 40px;
    height: 40px;
    background: var(--qy-primary);
    color: var(--qy-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--qy-transition);
}

.qi-yu-team-social a:hover {
    background: #fff;
    transform: translateY(-3px);
}

.qi-yu-team-info {
    padding: 25px;
    text-align: center;
}

.qi-yu-team-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.qi-yu-team-position {
    color: var(--qy-primary-dark);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.qi-yu-team-desc {
    color: var(--qy-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================== FAQ手风琴 ==================== */
.qi-yu-faq {
    background: var(--qy-bg-light);
}

.qi-yu-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--qy-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qi-yu-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--qy-text);
    background: #fff;
    border: none;
    box-shadow: none;
}

.qi-yu-accordion .accordion-button:not(.collapsed) {
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
}

.qi-yu-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: var(--qy-border);
}

.qi-yu-accordion .accordion-button::after {
    background-size: 1.2rem;
}

.qi-yu-accordion .accordion-body {
    padding: 20px 25px;
    background: #fff;
    color: var(--qy-text-light);
    line-height: 1.8;
}

/* ==================== 联系表单 ==================== */
.qi-yu-contact-form {
    background: #fff;
    padding: 60px 0;
}

.qi-yu-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.qi-yu-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--qy-text);
    position: relative;
    padding-bottom: 15px;
}

.qi-yu-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--qy-gradient);
    border-radius: 2px;
}

.qi-yu-input {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: var(--qy-radius-sm);
    transition: var(--qy-transition);
}

.qi-yu-input:focus {
    border-color: var(--qy-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
}

.qi-yu-form-tips {
    color: var(--qy-text-muted);
    font-size: 0.85rem;
    text-align: center;
}

.qi-yu-form-tips i {
    color: var(--qy-success);
}

.qi-yu-contact-list {
    margin-top: 30px;
}

.qi-yu-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.qi-yu-contact-item i {
    width: 50px;
    height: 50px;
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.qi-yu-contact-item h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--qy-text);
}

.qi-yu-contact-item p {
    color: var(--qy-text-light);
    margin: 0;
}

/* ==================== 页脚CTA ==================== */
.qi-yu-footer-cta {
    background: var(--qy-gradient);
    padding: 60px 0;
    color: var(--qy-text);
}

.qi-yu-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.qi-yu-cta-desc {
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* ==================== 页脚 ==================== */
.qi-yu-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 80px 0 0;
}

.qi-yu-footer-widgets {
    margin-bottom: 50px;
}

.qi-yu-footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--qy-primary);
}

.qi-yu-footer-title i {
    margin-right: 10px;
}

.qi-yu-footer-desc {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qi-yu-footer-contact p {
    color: #e0e0e0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.qi-yu-footer-contact i {
    color: var(--qy-primary);
    width: 20px;
}

.qi-yu-footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.qi-yu-footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--qy-primary);
}

.qi-yu-footer-links {
    list-style: none;
}

.qi-yu-footer-links li {
    margin-bottom: 12px;
}

.qi-yu-footer-links a {
    color: #b0b0b0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--qy-transition);
}

.qi-yu-footer-links a:hover {
    color: var(--qy-primary);
    padding-left: 5px;
}

.qi-yu-footer-links i {
    font-size: 0.8rem;
    color: var(--qy-primary);
}

.qi-yu-wechat-box {
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: var(--qy-radius);
}

.qi-yu-wechat-qr {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: var(--qy-radius-sm);
    margin-bottom: 10px;
    background: #fff;
    padding: 5px;
}

.qi-yu-wechat-tip {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin: 0;
}

/* 友情链接 */
.qi-yu-friend-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 30px 0;
    margin-bottom: 30px;
}

.qi-yu-friend-title {
    font-size: 1rem;
    color: var(--qy-primary);
    margin-bottom: 15px;
}

.qi-yu-friend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.qi-yu-friend-list a {
    color: #b0b0b0;
    font-size: 0.9rem;
    transition: var(--qy-transition);
}

.qi-yu-friend-list a:hover {
    color: var(--qy-primary);
}

/* 底部版权 */
.qi-yu-footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.qi-yu-copyright {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.qi-yu-icp {
    margin-left: 15px;
    color: #666;
}

.qi-yu-footer-sitemap a {
    color: #888;
    font-size: 0.9rem;
    transition: var(--qy-transition);
}

.qi-yu-footer-sitemap a:hover {
    color: var(--qy-primary);
}

.qi-yu-footer-sitemap .divider {
    color: #555;
    margin: 0 10px;
}

/* ==================== 悬浮按钮 ==================== */
.qi-yu-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--qy-gradient);
    color: var(--qy-text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 214, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--qy-transition);
    z-index: 999;
}

.qi-yu-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.qi-yu-back-to-top:hover {
    transform: translateY(-5px);
    color: var(--qy-text);
}

.qi-yu-float-tools {
    position: fixed;
    right: 30px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.qi-yu-float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--qy-transition);
    animation: float 3s ease-in-out infinite;
}

.qi-yu-float-phone {
    background: var(--qy-success);
    animation-delay: 0s;
}

.qi-yu-float-msg {
    background: var(--qy-primary);
    color: var(--qy-text);
    animation-delay: 1.5s;
}

.qi-yu-float-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ==================== 页面头部 ==================== */
.qi-yu-page-header {
    background: linear-gradient(135deg, #FFF8E1 0%, #FFECB3 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.qi-yu-page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--qy-primary);
    opacity: 0.1;
    border-radius: 50%;
}

.qi-yu-breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
}

.qi-yu-breadcrumb .breadcrumb-item a {
    color: var(--qy-primary-dark);
}

.qi-yu-breadcrumb .breadcrumb-item.active {
    color: var(--qy-text);
}

.qi-yu-page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--qy-text);
    margin-bottom: 15px;
}

.qi-yu-page-desc {
    color: var(--qy-text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* ==================== 列表页样式 ==================== */
.qi-yu-news-list-item {
    background: #fff;
    border-radius: var(--qy-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: var(--qy-transition);
}

.qi-yu-news-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.qi-yu-news-list-image {
    position: relative;
    height: 100%;
    min-height: 250px;
}

.qi-yu-news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-yu-news-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--qy-gradient);
    color: var(--qy-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.qi-yu-news-list-content {
    padding: 30px;
}

.qi-yu-news-list-meta {
    margin-bottom: 15px;
    color: var(--qy-text-muted);
    font-size: 0.9rem;
}

.qi-yu-news-list-meta span {
    margin-right: 20px;
}

.qi-yu-news-list-meta i {
    color: var(--qy-primary-dark);
    margin-right: 5px;
}

.qi-yu-news-list-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.qi-yu-news-list-title a {
    color: var(--qy-text);
}

.qi-yu-news-list-title a:hover {
    color: var(--qy-primary-dark);
}

.qi-yu-news-list-desc {
    color: var(--qy-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.qi-yu-news-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.qi-yu-news-tags {
    display: flex;
    gap: 8px;
}

.qi-yu-tag {
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.qi-yu-read-more {
    color: var(--qy-primary-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* 侧边栏 */
.qi-yu-sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: var(--qy-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.qi-yu-widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qy-primary-light);
    color: var(--qy-text);
}

.qi-yu-widget-title i {
    color: var(--qy-primary-dark);
    margin-right: 8px;
}

.qi-yu-category-list {
    list-style: none;
}

.qi-yu-category-list li {
    border-bottom: 1px solid #f0f0f0;
}

.qi-yu-category-list li:last-child {
    border-bottom: none;
}

.qi-yu-category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--qy-text);
    transition: var(--qy-transition);
}

.qi-yu-category-list a:hover {
    color: var(--qy-primary-dark);
    padding-left: 10px;
}

.qi-yu-category-list i {
    color: var(--qy-text-muted);
    font-size: 0.8rem;
}

.qi-yu-random-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.qi-yu-random-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.qi-yu-random-thumb {
    width: 80px;
    height: 60px;
    border-radius: var(--qy-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.qi-yu-random-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-yu-random-content h5 {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 5px;
}

.qi-yu-random-content h5 a {
    color: var(--qy-text);
}

.qi-yu-random-content h5 a:hover {
    color: var(--qy-primary-dark);
}

.qi-yu-random-content span {
    font-size: 0.85rem;
    color: var(--qy-text-muted);
}

.qi-yu-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qi-yu-cloud-tag {
    background: var(--qy-bg-light);
    color: var(--qy-text);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--qy-transition);
}

.qi-yu-cloud-tag:hover {
    background: var(--qy-primary);
    color: var(--qy-text);
}

/* ==================== 详情页样式 ==================== */
.qi-yu-detail-header {
    padding: 60px 0 40px;
}

.qi-yu-article {
    background: #fff;
    padding: 40px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.qi-yu-article-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.qi-yu-article-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--qy-text);
    margin-bottom: 20px;
    line-height: 1.4;
}

.qi-yu-article-meta {
    margin-bottom: 15px;
    color: var(--qy-text-muted);
}

.qi-yu-article-meta span {
    margin: 0 15px;
}

.qi-yu-article-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.qi-yu-article-tag {
    background: var(--qy-primary-light);
    color: var(--qy-primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.qi-yu-article-summary {
    background: var(--qy-bg-light);
    padding: 20px 25px;
    border-radius: var(--qy-radius);
    margin-bottom: 30px;
    border-left: 4px solid var(--qy-primary);
    position: relative;
}

.qi-yu-article-summary i {
    font-size: 2rem;
    color: var(--qy-primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
}

.qi-yu-article-summary p {
    margin: 0;
    color: var(--qy-text);
    font-style: italic;
    padding-left: 30px;
}

/* 正文内容样式 */
.qi-yu-article-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--qy-text);
}

.qi-yu-article-content p {
    margin-bottom: 20px;
}

.qi-yu-article-content h2,
.qi-yu-article-content h3 {
    color: var(--qy-text);
    margin: 30px 0 15px;
    font-weight: 600;
}

.qi-yu-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--qy-radius);
    margin: 20px 0;
}

.qi-yu-article-content ul,
.qi-yu-article-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.qi-yu-article-content li {
    margin-bottom: 10px;
}

.qi-yu-article-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.qi-yu-article-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qi-yu-share-btn {
    width: 40px;
    height: 40px;
    background: var(--qy-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qy-text);
    transition: var(--qy-transition);
}

.qi-yu-share-btn:hover {
    background: var(--qy-primary);
    color: var(--qy-text);
}

.qi-yu-article-print {
    color: var(--qy-text-muted);
}

.qi-yu-article-print:hover {
    color: var(--qy-primary-dark);
}

/* 上下篇导航 */
.qi-yu-article-nav-prevnext {
    background: #fff;
    padding: 20px;
    border-radius: var(--qy-radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qi-yu-nav-prev,
.qi-yu-nav-next {
    display: block;
    color: var(--qy-text);
}

.qi-yu-nav-prev:hover,
.qi-yu-nav-next:hover {
    color: var(--qy-primary-dark);
}

.qi-yu-nav-prev span,
.qi-yu-nav-next span {
    font-size: 0.9rem;
    color: var(--qy-text-muted);
    display: block;
    margin-bottom: 5px;
}

.qi-yu-nav-prev p,
.qi-yu-nav-next p {
    font-weight: 600;
    margin: 0;
    color: var(--qy-text);
}

/* 相关推荐 */
.qi-yu-related-posts {
    background: #fff;
    padding: 30px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.qi-yu-related-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--qy-text);
}

.qi-yu-related-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.qi-yu-related-thumb {
    width: 100px;
    height: 75px;
    border-radius: var(--qy-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.qi-yu-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-yu-related-item h5 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.qi-yu-related-item h5 a {
    color: var(--qy-text);
}

/* ==================== 关于我们页 ==================== */
.qi-yu-about-images {
    position: relative;
}

.qi-yu-about-img-main {
    position: relative;
    z-index: 1;
}

.qi-yu-about-img-sub {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    z-index: 2;
    border: 5px solid #fff;
    border-radius: var(--qy-radius-lg);
}

.qi-yu-about-text {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--qy-text-light);
}

.qi-yu-about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

/* 时间轴 */
.qi-yu-timeline-wrapper {
    position: relative;
    padding: 20px 0;
}

.qi-yu-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: var(--qy-primary-light);
}

.qi-yu-timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.qi-yu-timeline-year {
    width: 80px;
    height: 80px;
    background: var(--qy-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--qy-text);
    z-index: 2;
    box-shadow: 0 5px 20px rgba(255, 214, 0, 0.4);
}

.qi-yu-timeline-content {
    width: 40%;
    padding: 20px 30px;
    background: #fff;
    border-radius: var(--qy-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 0 30px;
}

.qi-yu-timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--qy-primary-dark);
    margin-bottom: 10px;
}

.qi-yu-timeline-content p {
    margin: 0;
    color: var(--qy-text-light);
}

/* 优势卡片 */
.qi-yu-advantage-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--qy-radius-lg);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
}

.qi-yu-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.15);
}

.qi-yu-advantage-icon {
    width: 80px;
    height: 80px;
    background: var(--qy-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--qy-primary-dark);
    margin: 0 auto 25px;
}

.qi-yu-advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.qi-yu-advantage-card p {
    color: var(--qy-text-light);
    line-height: 1.8;
    margin: 0;
}

/* 荣誉 */
.qi-yu-honor-item {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: var(--qy-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
}

.qi-yu-honor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 214, 0, 0.2);
}

.qi-yu-honor-item i {
    font-size: 3rem;
    color: var(--qy-primary);
    margin-bottom: 15px;
    display: block;
}

.qi-yu-honor-item p {
    margin: 0;
    font-weight: 500;
    color: var(--qy-text);
}

/* CTA盒子 */
.qi-yu-cta-box {
    background: var(--qy-gradient);
    padding: 60px;
    border-radius: var(--qy-radius-lg);
    color: var(--qy-text);
}

/* ==================== 联系页 ==================== */
.qi-yu-contact-cards {
    background: var(--qy-bg-light);
}

.qi-yu-contact-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--qy-transition);
    height: 100%;
}

.qi-yu-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 214, 0, 0.2);
}

.qi-yu-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--qy-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--qy-primary-dark);
    margin: 0 auto 20px;
    transition: var(--qy-transition);
}

.qi-yu-contact-card:hover .qi-yu-contact-icon {
    background: var(--qy-gradient);
    transform: rotateY(360deg);
}

.qi-yu-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.qi-yu-contact-card p {
    color: var(--qy-text-muted);
    margin-bottom: 15px;
}

.qi-yu-contact-info-link,
.qi-yu-contact-info-text {
    color: var(--qy-primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.qi-yu-contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.qi-yu-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.qi-yu-form-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--qy-text);
}

.qi-yu-form-header h2 i {
    color: var(--qy-primary-dark);
}

.qi-yu-form-input {
    border: 2px solid #e8e8e8;
    border-radius: var(--qy-radius-sm);
    padding: 12px 15px;
    transition: var(--qy-transition);
}

.qi-yu-form-input:focus {
    border-color: var(--qy-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 214, 0, 0.25);
}

.qi-yu-form-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 10px 0;
}

.qi-yu-form-agree {
    margin-top: 10px;
}

.qi-yu-form-agree a {
    color: var(--qy-primary-dark);
    text-decoration: underline;
}

.qi-yu-contact-info-panel {
    background: #fff;
    padding: 30px;
    border-radius: var(--qy-radius-lg);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.qi-yu-wechat-qr-box {
    padding: 20px;
    background: var(--qy-bg-light);
    border-radius: var(--qy-radius);
}

.qi-yu-qr-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--qy-radius-sm);
    margin: 15px 0;
}

.qi-yu-qr-tip {
    font-weight: 600;
    color: var(--qy-text);
    margin-bottom: 5px;
}

.qi-yu-qr-desc {
    color: var(--qy-text-light);
    font-size: 0.9rem;
    margin: 0;
}

.qi-yu-work-time {
    margin-top: 30px;
}

.qi-yu-work-time h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--qy-text);
}

.qi-yu-time-list {
    list-style: none;
}

.qi-yu-time-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--qy-text-light);
}

.qi-yu-contact-tips {
    background: var(--qy-bg-light);
    padding: 20px;
    border-radius: var(--qy-radius);
}

.qi-yu-contact-tips h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--qy-text);
}

.qi-yu-contact-tips ul {
    margin: 0;
    padding-left: 20px;
    color: var(--qy-text-light);
    font-size: 0.95rem;
}

.qi-yu-contact-tips li {
    margin-bottom: 8px;
}

.qi-yu-emergency-contact {
    background: var(--qy-primary) !important;
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1199.98px) {
    .qi-yu-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .qi-yu-hero-title {
        font-size: 2.5rem;
    }
    
    .qi-yu-hero-slide {
        height: auto;
        min-height: 700px;
        padding: 100px 0;
    }
    
    .qi-yu-section-title {
        font-size: 2rem;
    }
    
    .qi-yu-about-img-sub {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }
    
    .qi-yu-timeline-wrapper::before {
        left: 30px;
    }
    
    .qi-yu-timeline-item {
        justify-content: flex-start;
    }
    
    .qi-yu-timeline-content {
        width: calc(100% - 100px);
        margin-left: 20px;
        margin-right: 0;
    }
}

@media (max-width: 767.98px) {
    .qi-yu-hero-title {
        font-size: 2rem;
    }
    
    .qi-yu-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .qi-yu-stat-number {
        font-size: 2rem;
    }
    
    .qi-yu-section-title {
        font-size: 1.75rem;
    }
    
    .qi-yu-process-steps::before {
        display: none;
    }
    
    .qi-yu-footer-widgets {
        text-align: center;
    }
    
    .qi-yu-footer-links a {
        justify-content: center;
    }
    
    .qi-yu-social-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .qi-yu-float-tools {
        right: 15px;
        bottom: 80px;
    }
    
    .qi-yu-back-to-top {
        right: 15px;
        bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .qi-yu-hero-title {
        font-size: 1.75rem;
    }
    
    .qi-yu-hero-desc {
        font-size: 1rem;
    }
    
    .qi-yu-brand-title {
        font-size: 1.2rem;
    }
    
    .qi-yu-section-title {
        font-size: 1.5rem;
    }
    
    .qi-yu-cta-title {
        font-size: 1.5rem;
    }
    
    .qi-yu-article {
        padding: 20px;
    }
    
    .qi-yu-article-title {
        font-size: 1.5rem;
    }
}

/* ==================== 动画 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* 打印样式 */
@media print {
    .qi-yu-header,
    .qi-yu-footer,
    .qi-yu-float-tools,
    .qi-yu-back-to-top,
    .qi-yu-sidebar {
        display: none !important;
    }
    
    .qi-yu-article {
        box-shadow: none;
    }
}