/* 8. style.css - 网站统一样式 */

/* ==================== 基础变量与重置 ==================== */
:root {
    /* 草莓粉色系配色 */
    --qi-primary: #FF4081;           /* 珊瑚粉主色 */
    --qi-primary-dark: #E91E63;      /* 深粉色 */
    --qi-primary-light: #F8BBD9;     /* 浅粉色 */
    --qi-secondary: #C2185B;         /* 玫红色 */
    --qi-accent: #FF80AB;            /* 强调色 */
    --qi-rose: #FF69B4;              /* 玫瑰粉 */
    --qi-coral: #FF7F50;             /* 珊瑚色 */
    
    /* 中性色 */
    --qi-dark: #2D2D2D;
    --qi-gray: #666666;
    --qi-gray-light: #F5F5F5;
    --qi-white: #FFFFFF;
    --qi-border: #E0E0E0;
    
    /* 渐变 */
    --qi-gradient-pink: linear-gradient(135deg, #FF4081 0%, #E91E63 100%);
    --qi-gradient-light: linear-gradient(135deg, #FFF5F8 0%, #FFE4ED 100%);
    
    /* 阴影 */
    --qi-shadow-sm: 0 2px 4px rgba(255, 64, 129, 0.1);
    --qi-shadow: 0 4px 20px rgba(255, 64, 129, 0.15);
    --qi-shadow-lg: 0 10px 40px rgba(255, 64, 129, 0.2);
    
    /* 圆角 */
    --qi-radius-sm: 8px;
    --qi-radius: 12px;
    --qi-radius-lg: 20px;
    
    /* 过渡 */
    --qi-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== 全局样式 ==================== */
body.qi-yu-theme {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    color: var(--qi-dark);
    line-height: 1.6;
    background-color: var(--qi-white);
}

a {
    color: var(--qi-primary);
    text-decoration: none;
    transition: var(--qi-transition);
}

a:hover {
    color: var(--qi-primary-dark);
}

/* ==================== 公共头部 ==================== */
.qi-top-bar {
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    padding: 10px 0;
    font-size: 14px;
}

.qi-top-bar i {
    margin-right: 5px;
}

.qi-welcome-text, .qi-contact-info {
    opacity: 0.95;
}

/* 导航栏 */
.qi-navbar {
    background: var(--qi-white);
    box-shadow: var(--qi-shadow-sm);
    padding: 15px 0;
    transition: var(--qi-transition);
}

.qi-navbar.sticky-top {
    z-index: 1030;
}

.qi-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qi-logo-img {
    height: 50px;
    width: auto;
}

.qi-brand-text {
    display: flex;
    flex-direction: column;
}

.qi-brand-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--qi-primary);
    margin: 0;
    line-height: 1.2;
}

.qi-brand-subtitle {
    font-size: 12px;
    color: var(--qi-gray);
    letter-spacing: 1px;
}

.qi-nav-list .nav-link {
    color: var(--qi-dark);
    font-weight: 500;
    padding: 10px 18px;
    margin: 0 2px;
    border-radius: var(--qi-radius-sm);
    position: relative;
}

.qi-nav-list .nav-link:hover,
.qi-nav-list .nav-link.active {
    color: var(--qi-primary);
    background: rgba(255, 64, 129, 0.08);
}

.qi-nav-list .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--qi-primary);
    border-radius: 2px;
}

.qi-nav-cta .nav-link {
    background: var(--qi-gradient-pink);
    color: var(--qi-white) !important;
    padding: 10px 24px !important;
    box-shadow: var(--qi-shadow-sm);
}

.qi-nav-cta .nav-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--qi-shadow);
}

.qi-toggler {
    border: none;
    padding: 8px;
}

.qi-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ==================== 按钮样式 ==================== */
.qi-btn-primary {
    background: var(--qi-gradient-pink);
    border: none;
    color: var(--qi-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
}

.qi-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--qi-shadow-lg);
    color: var(--qi-white);
    background: linear-gradient(135deg, #E91E63 0%, #C2185B 100%);
}

.qi-btn-pink {
    background: var(--qi-primary);
    color: var(--qi-white);
    border: 2px solid var(--qi-primary);
}

.qi-btn-outline {
    background: transparent;
    border: 2px solid var(--qi-primary);
    color: var(--qi-primary);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--qi-transition);
}

.qi-btn-outline:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
}

.qi-btn-outline-pink {
    background: transparent;
    border: 2px solid var(--qi-primary);
    color: var(--qi-primary);
}

.qi-btn-outline-pink:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
}

.qi-btn-white {
    background: var(--qi-white);
    color: var(--qi-primary);
    border: none;
    font-weight: 600;
    box-shadow: var(--qi-shadow);
}

.qi-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--qi-shadow-lg);
    color: var(--qi-primary-dark);
}

.qi-btn-sm {
    padding: 6px 16px;
    font-size: 14px;
    border-radius: 20px;
}

/* ==================== 区块标题样式 ==================== */
.qi-section-padding {
    padding: 80px 0;
}

.qi-section-header {
    margin-bottom: 50px;
}

.qi-subtitle {
    display: inline-block;
    color: var(--qi-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.qi-subtitle-light {
    color: rgba(255, 255, 255, 0.9);
}

.qi-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--qi-dark);
    margin-bottom: 15px;
    position: relative;
}

.qi-desc {
    color: var(--qi-gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.qi-title-decor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    gap: 15px;
}

.qi-line {
    width: 50px;
    height: 2px;
    background: var(--qi-primary-light);
}

.qi-title-decor i {
    color: var(--qi-primary);
    font-size: 20px;
}

.qi-decor-light .qi-line {
    background: rgba(255, 255, 255, 0.3);
}

.qi-decor-light i {
    color: var(--qi-white);
}

/* ==================== 首页轮播图 ==================== */
.qi-hero-slider {
    position: relative;
}

.qi-slide-bg {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 767px) {
    .qi-slide-bg {
        height: 300px;
        background-size: 100% 100%;
        background-position: center;
        position: relative;
    }
}

.qi-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}

.qi-caption {
    z-index: 10;
    text-align: left;
    left: 10%;
    right: 10%;
    bottom: 20%;
}

.qi-slide-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.qi-slide-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.qi-slide-tags {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.qi-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.qi-control {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.qi-stats-bar {
    background: var(--qi-white);
    padding: 40px 0;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 20;
    margin-top: -50px;
    border-radius: var(--qi-radius-lg) var(--qi-radius-lg) 0 0;
}

.qi-stat-item {
    position: relative;
}

.qi-stat-icon {
    font-size: 40px;
    color: var(--qi-primary);
    margin-bottom: 15px;
}

.qi-stat-num {
    font-size: 36px;
    font-weight: 700;
    color: var(--qi-primary);
    line-height: 1;
}

.qi-stat-label {
    color: var(--qi-gray);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* ==================== 服务卡片 ==================== */
.qi-services-section {
    background: var(--qi-gray-light);
}

.qi-service-card {
    background: var(--qi-white);
    border-radius: var(--qi-radius-lg);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid transparent;
}

.qi-service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--qi-shadow-lg);
    border-color: var(--qi-primary-light);
}

.qi-service-icon {
    width: 80px;
    height: 80px;
    background: var(--qi-gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.qi-service-icon i {
    font-size: 36px;
    color: var(--qi-white);
}

.qi-icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--qi-primary);
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.qi-service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--qi-dark);
}

.qi-service-desc {
    color: var(--qi-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qi-service-link {
    color: var(--qi-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.qi-service-link:hover {
    gap: 10px;
}

.qi-card-shape {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--qi-primary-light);
    border-radius: 50%;
    opacity: 0.3;
}

/* ==================== 关于我们区块 ==================== */
.qi-about-images {
    position: relative;
}

.qi-img-main {
    border-radius: var(--qi-radius-lg);
    overflow: hidden;
    box-shadow: var(--qi-shadow-lg);
}

.qi-img-sub {
    position: absolute;
    width: 200px;
    border-radius: var(--qi-radius);
    overflow: hidden;
    box-shadow: var(--qi-shadow);
    border: 5px solid var(--qi-white);
}

.qi-img-sub.qi-sub-1 {
    bottom: -30px;
    left: -30px;
}

.qi-img-sub.qi-sub-2 {
    top: 50px;
    right: -20px;
    width: 150px;
}

.qi-experience-badge {
    position: absolute;
    bottom: 50px;
    right: 30px;
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--qi-shadow-lg);
    border: 5px solid var(--qi-white);
    z-index: 10;
}

.qi-exp-num {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.qi-exp-text {
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    margin-top: 5px;
}

.qi-floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--qi-primary-light);
    opacity: 0.5;
}

.qi-shape-1 {
    width: 80px;
    height: 80px;
    top: -20px;
    left: 50px;
}

.qi-shape-2 {
    width: 40px;
    height: 40px;
    bottom: 100px;
    left: 50%;
}

.qi-feature-list {
    margin-top: 30px;
}

.qi-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.qi-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qi-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.qi-feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--qi-dark);
}

.qi-feature-text p {
    color: var(--qi-gray);
    font-size: 14px;
    margin: 0;
}

/* ==================== 城市目录 ==================== */
.qi-cities-section {
    background: var(--qi-white);
}

.qi-cities-container {
    position: relative;
    background: var(--qi-gray-light);
    border-radius: var(--qi-radius-lg);
    padding: 40px;
}

.qi-cities-map-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23FF4081' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.qi-city-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--qi-white);
    border-radius: var(--qi-radius-sm);
    color: var(--qi-dark);
    font-size: 14px;
    transition: var(--qi-transition);
    border: 1px solid transparent;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.qi-city-item:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
    transform: translateX(5px);
    border-color: var(--qi-primary);
    box-shadow: var(--qi-shadow);
}

.qi-city-active {
    background: var(--qi-primary);
    color: var(--qi-white);
}

.qi-city-dot {
    width: 6px;
    height: 6px;
    background: var(--qi-primary);
    border-radius: 50%;
    opacity: 0.5;
}

.qi-city-item:hover .qi-city-dot,
.qi-city-active .qi-city-dot {
    background: var(--qi-white);
    opacity: 1;
}

.qi-cities-note {
    text-align: center;
    margin-top: 20px;
    color: var(--qi-gray);
    font-size: 14px;
}

.qi-cities-note i {
    color: var(--qi-primary);
    margin-right: 5px;
}

/* 自定义栅格 */
.col-lg-1-5 {
    flex: 0 0 20%;
    max-width: 20%;
}

@media (max-width: 991px) {
    .col-lg-1-5 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .col-lg-1-5 {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* ==================== 资讯区块 ==================== */
.qi-news-section {
    background: var(--qi-gradient-pink);
    position: relative;
}

.qi-news-section::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='%23ffffff' 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-news-card {
    background: var(--qi-white);
    border-radius: var(--qi-radius);
    overflow: hidden;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
    height: 100%;
}

.qi-news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--qi-shadow-lg);
}

.qi-news-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.qi-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.qi-news-card:hover .qi-news-image img {
    transform: scale(1.1);
}

.qi-news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--qi-primary);
    color: var(--qi-white);
    padding: 10px;
    border-radius: var(--qi-radius-sm);
    text-align: center;
    min-width: 50px;
}

.qi-day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.qi-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.qi-news-category {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--qi-primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.qi-news-content {
    padding: 25px;
}

.qi-news-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.qi-news-title a {
    color: var(--qi-dark);
}

.qi-news-title a:hover {
    color: var(--qi-primary);
}

.qi-news-excerpt {
    color: var(--qi-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.qi-news-meta {
    display: flex;
    justify-content: space-between;
    color: var(--qi-gray);
    font-size: 13px;
}

.qi-meta-item i {
    color: var(--qi-primary);
    margin-right: 5px;
}

/* ==================== 流程时间线 ==================== */
.qi-process-section {
    background: var(--qi-white);
}

.qi-process-timeline {
    position: relative;
    padding: 20px 0;
}

.qi-process-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, var(--qi-primary-light), var(--qi-primary));
    z-index: 1;
}

.qi-process-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.qi-process-icon {
    width: 100px;
    height: 100px;
    background: var(--qi-white);
    border: 3px solid var(--qi-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    transition: var(--qi-transition);
}

.qi-process-icon i {
    font-size: 40px;
    color: var(--qi-primary);
}

.qi-process-num {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--qi-primary);
    color: var(--qi-white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--qi-white);
}

.qi-process-item:hover .qi-process-icon {
    border-color: var(--qi-primary);
    transform: scale(1.1);
    box-shadow: var(--qi-shadow);
}

.qi-process-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--qi-dark);
}

.qi-process-item p {
    color: var(--qi-gray);
    font-size: 14px;
    padding: 0 10px;
}

/* ==================== 客户见证 ==================== */
.qi-testimonials-section {
    background: var(--qi-gray-light);
}

.qi-testimonial-card {
    background: var(--qi-white);
    border-radius: var(--qi-radius-lg);
    padding: 30px;
    box-shadow: var(--qi-shadow);
    text-align: center;
    height: 100%;
    position: relative;
    margin-top: 40px;
}

.qi-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: -70px auto 20px;
    border: 5px solid var(--qi-white);
    box-shadow: var(--qi-shadow);
}

.qi-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.qi-testimonial-text {
    font-style: italic;
    color: var(--qi-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
}

.qi-testimonial-text::before {
    content: '"';
    font-size: 60px;
    color: var(--qi-primary-light);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    line-height: 1;
}

.qi-testimonial-author h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--qi-dark);
}

.qi-testimonial-author span {
    color: var(--qi-primary);
    font-size: 14px;
}

/* ==================== FAQ手风琴 ==================== */
.qi-faq-section {
    background: var(--qi-white);
}

.qi-faq-image-wrapper {
    position: relative;
}

.qi-faq-img-main {
    width: 100%;
    box-shadow: var(--qi-shadow-lg);
}

.qi-faq-floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    padding: 20px;
    border-radius: var(--qi-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--qi-shadow-lg);
}

.qi-faq-floating-card i {
    font-size: 40px;
}

.qi-faq-floating-card span {
    font-size: 14px;
    line-height: 1.4;
}

.qi-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--qi-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.qi-accordion .accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--qi-dark);
    background: var(--qi-white);
    border: none;
    box-shadow: none;
}

.qi-accordion .accordion-button:not(.collapsed) {
    color: var(--qi-primary);
    background: rgba(255, 64, 129, 0.05);
}

.qi-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 64, 129, 0.1);
}

.qi-accordion .accordion-button i {
    color: var(--qi-primary);
    margin-right: 10px;
}

.qi-accordion .accordion-body {
    padding: 20px 25px;
    color: var(--qi-gray);
    line-height: 1.8;
    background: var(--qi-white);
}

.qi-faq-contact {
    background: var(--qi-gray-light);
    padding: 30px;
    border-radius: var(--qi-radius);
    text-align: center;
}

.qi-faq-contact p {
    margin-bottom: 15px;
    color: var(--qi-gray);
}

/* ==================== CTA区块 ==================== */
.qi-cta-section {
    background: var(--qi-gradient-pink);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.qi-cta-section.qi-mini {
    padding: 60px 0;
}

.qi-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.2' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.qi-cta-content {
    position: relative;
    z-index: 1;
}

.qi-cta-title {
    color: var(--qi-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qi-cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.qi-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.qi-cta-feature {
    color: var(--qi-white);
    font-size: 16px;
}

.qi-cta-feature i {
    margin-right: 8px;
}

/* ==================== 页脚 ==================== */
.qi-footer {
    background: var(--qi-dark);
    color: var(--qi-white);
    position: relative;
    padding-top: 100px;
}

.qi-footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.qi-footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.qi-footer-main {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qi-footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.qi-footer-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--qi-white);
}

.qi-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.qi-footer-social {
    display: flex;
    gap: 10px;
}

.qi-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qi-white);
    transition: var(--qi-transition);
}

.qi-social-link:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
    transform: translateY(-3px);
}

.qi-footer-heading {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--qi-white);
    position: relative;
    padding-bottom: 10px;
}

.qi-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--qi-primary);
    border-radius: 2px;
}

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

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

.qi-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--qi-transition);
}

.qi-footer-links a:hover {
    color: var(--qi-primary);
    padding-left: 5px;
}

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

.qi-contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.qi-contact-list i {
    color: var(--qi-primary);
    font-size: 18px;
}

.qi-wechat-qr {
    max-width: 120px;
    border-radius: var(--qi-radius-sm);
    margin-top: 10px;
}

.qi-friend-links {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.qi-friend-title {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 15px;
}

.qi-friend-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.qi-friend-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--qi-transition);
}

.qi-friend-item:hover {
    color: var(--qi-primary);
}

.qi-copyright {
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.qi-icp {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== 悬浮工具 ==================== */
.qi-float-tools {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.qi-float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--qi-white);
    font-size: 12px;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
    position: relative;
    text-decoration: none;
}

.qi-float-btn i {
    font-size: 24px;
    margin-bottom: 2px;
}

.qi-float-phone {
    background: #28a745;
}

.qi-float-msg {
    background: var(--qi-primary);
}

.qi-float-wechat {
    background: #07c160;
    cursor: pointer;
}

.qi-float-btn:hover {
    transform: scale(1.1);
    color: var(--qi-white);
}

.qi-float-qr {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--qi-white);
    padding: 10px;
    border-radius: var(--qi-radius);
    box-shadow: var(--qi-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--qi-transition);
    width: 150px;
    text-align: center;
}

.qi-float-qr img {
    width: 100%;
    margin-bottom: 5px;
}

.qi-float-qr p {
    color: var(--qi-dark);
    font-size: 12px;
    margin: 0;
}

.qi-float-wechat:hover .qi-float-qr {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.qi-back-to-top {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--qi-primary);
    color: var(--qi-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--qi-transition);
    z-index: 998;
    box-shadow: var(--qi-shadow);
}

.qi-back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.qi-back-to-top:hover {
    background: var(--qi-primary-dark);
    transform: translateY(-3px);
}

/* ==================== 内页公共头部 ==================== */
.qi-page-header {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.qi-bg-gradient-pink {
    background: var(--qi-gradient-pink);
}

.qi-bg-gradient-pink-sm {
    background: linear-gradient(135deg, rgba(255, 64, 129, 0.1) 0%, rgba(233, 30, 99, 0.05) 100%);
    padding: 40px 0;
}

.qi-page-title {
    color: var(--qi-white);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qi-page-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 20px;
}

.qi-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.qi-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.qi-breadcrumb .breadcrumb-item.active {
    color: var(--qi-white);
}

.qi-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.qi-header-shape {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--qi-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.qi-header-stats {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: var(--qi-radius);
    display: inline-flex;
    gap: 30px;
}

.qi-stat {
    color: var(--qi-white);
    font-size: 14px;
}

.qi-stat i {
    margin-right: 5px;
}

/* ==================== 资讯列表页 ==================== */
.qi-news-toolbar {
    background: var(--qi-white);
    padding: 20px;
    border-radius: var(--qi-radius);
    margin-bottom: 30px;
    box-shadow: var(--qi-shadow-sm);
}

.qi-toolbar-info {
    color: var(--qi-gray);
    font-size: 14px;
}

.qi-toolbar-info strong {
    color: var(--qi-primary);
}

.qi-filter-btns .btn {
    margin-right: 10px;
    border: 1px solid var(--qi-border);
    color: var(--qi-gray);
    background: var(--qi-white);
}

.qi-filter-btns .btn.active,
.qi-filter-btns .btn:hover {
    background: var(--qi-primary);
    border-color: var(--qi-primary);
    color: var(--qi-white);
}

.qi-article-item {
    background: var(--qi-white);
    padding: 30px;
    border-radius: var(--qi-radius);
    margin-bottom: 30px;
    box-shadow: var(--qi-shadow-sm);
    transition: var(--qi-transition);
}

.qi-article-item:hover {
    box-shadow: var(--qi-shadow);
    transform: translateX(5px);
}

.qi-article-image {
    position: relative;
    border-radius: var(--qi-radius-sm);
    overflow: hidden;
}

.qi-article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.qi-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 64, 129, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--qi-transition);
}

.qi-article-overlay i {
    color: var(--qi-white);
    font-size: 30px;
}

.qi-article-item:hover .qi-article-overlay {
    opacity: 1;
}

.qi-article-body {
    padding-left: 10px;
}

.qi-article-meta {
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--qi-gray);
}

.qi-article-meta span {
    margin-right: 15px;
}

.qi-article-meta i {
    color: var(--qi-primary);
    margin-right: 3px;
}

.qi-category {
    color: var(--qi-primary);
    font-weight: 600;
}

.qi-article-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.qi-article-title a {
    color: var(--qi-dark);
}

.qi-article-title a:hover {
    color: var(--qi-primary);
}

.qi-article-excerpt {
    color: var(--qi-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.qi-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.qi-tag-item {
    background: rgba(255, 64, 129, 0.1);
    color: var(--qi-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

.qi-read-more {
    color: var(--qi-primary);
    font-weight: 600;
    font-size: 14px;
}

.qi-read-more:hover {
    gap: 10px;
}

/* 侧边栏 */
.qi-sidebar-widget {
    background: var(--qi-white);
    padding: 25px;
    border-radius: var(--qi-radius);
    margin-bottom: 30px;
    box-shadow: var(--qi-shadow-sm);
}

.qi-widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--qi-primary-light);
    color: var(--qi-dark);
}

.qi-widget-title i {
    color: var(--qi-primary);
    margin-right: 8px;
}

.qi-search-form {
    position: relative;
}

.qi-search-form input {
    padding-right: 50px;
    border-radius: 50px;
    border: 2px solid var(--qi-border);
}

.qi-search-form input:focus {
    border-color: var(--qi-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 64, 129, 0.25);
}

.qi-search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qi-cat-list li {
    border-bottom: 1px solid var(--qi-gray-light);
}

.qi-cat-list li:last-child {
    border-bottom: none;
}

.qi-cat-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--qi-dark);
    transition: var(--qi-transition);
}

.qi-cat-list a:hover {
    color: var(--qi-primary);
    padding-left: 10px;
}

.qi-hot-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qi-hot-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qi-hot-num {
    width: 30px;
    height: 30px;
    background: var(--qi-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--qi-gray);
    flex-shrink: 0;
}

.qi-hot-item:nth-child(1) .qi-hot-num { background: #FF6B6B; color: white; }
.qi-hot-item:nth-child(2) .qi-hot-num { background: #FFA06B; color: white; }
.qi-hot-item:nth-child(3) .qi-hot-num { background: #FFD93D; color: white; }

.qi-hot-content {
    flex: 1;
}

.qi-hot-content h4 {
    font-size: 14px;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.qi-hot-content h4 a {
    color: var(--qi-dark);
}

.qi-hot-content h4 a:hover {
    color: var(--qi-primary);
}

.qi-hot-meta {
    font-size: 12px;
    color: var(--qi-gray);
}

.qi-hot-meta i {
    color: var(--qi-primary);
    margin-right: 3px;
}

.qi-bg-pink-gradient {
    background: var(--qi-gradient-pink);
}

.qi-contact-info {
    margin-top: 20px;
}

.qi-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.qi-contact-item i {
    font-size: 20px;
}

.qi-tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.qi-cloud-tag {
    background: var(--qi-gray-light);
    color: var(--qi-gray);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    transition: var(--qi-transition);
}

.qi-cloud-tag:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
}

/* ==================== 文章详情页 ==================== */
.qi-article-detail {
    background: var(--qi-white);
    padding: 40px;
    border-radius: var(--qi-radius-lg);
    box-shadow: var(--qi-shadow-sm);
}

.qi-article-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--qi-gray-light);
}

.qi-article-main-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    color: var(--qi-dark);
}

.qi-article-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--qi-gray);
    font-size: 14px;
}

.qi-article-meta-bar i {
    color: var(--qi-primary);
    margin-right: 5px;
}

.qi-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.qi-article-tags .qi-tag {
    background: rgba(255, 64, 129, 0.1);
    color: var(--qi-primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
}

.qi-article-featured-image {
    margin-bottom: 30px;
    border-radius: var(--qi-radius);
    overflow: hidden;
}

.qi-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--qi-dark);
}

.qi-article-body p {
    margin-bottom: 20px;
}

.qi-article-body h2,
.qi-article-body h3 {
    color: var(--qi-dark);
    margin: 30px 0 15px;
    font-weight: 700;
}

.qi-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--qi-radius-sm);
    margin: 20px 0;
}

.qi-article-toolbar {
    margin-top: 40px;
    padding: 20px;
    background: var(--qi-gray-light);
    border-radius: var(--qi-radius);
}

.qi-share-label {
    font-weight: 600;
    margin-right: 10px;
}

.qi-share-btns {
    display: inline-flex;
    gap: 10px;
}

.qi-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    color: var(--qi-white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--qi-transition);
}

.qi-share-btn:hover {
    transform: translateY(-3px);
}

.qi-weixin { background: #07c160; }
.qi-weibo { background: #e6162d; }
.qi-qq { background: #12b7f5; }
.qi-link { background: var(--qi-gray); }

.qi-btn-like,
.qi-btn-collect {
    background: var(--qi-white);
    border: 1px solid var(--qi-border);
    color: var(--qi-gray);
}

.qi-btn-like.active,
.qi-btn-like:hover {
    background: #e74c3c;
    border-color: #e74c3c;
    color: var(--qi-white);
}

.qi-btn-collect:hover {
    background: #f39c12;
    border-color: #f39c12;
    color: var(--qi-white);
}

.qi-article-nav {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--qi-gray-light);
}

.qi-nav-prev,
.qi-nav-next {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--qi-gray-light);
    border-radius: var(--qi-radius);
    transition: var(--qi-transition);
}

.qi-nav-prev:hover,
.qi-nav-next:hover {
    background: var(--qi-primary);
    color: var(--qi-white);
}

.qi-nav-prev:hover .qi-nav-title,
.qi-nav-next:hover .qi-nav-title {
    color: var(--qi-white);
}

.qi-nav-label {
    font-size: 13px;
    color: var(--qi-gray);
    margin-bottom: 5px;
}

.qi-nav-prev:hover .qi-nav-label,
.qi-nav-next:hover .qi-nav-label {
    color: rgba(255, 255, 255, 0.8);
}

.qi-nav-title {
    font-weight: 600;
    color: var(--qi-dark);
    line-height: 1.4;
}

.qi-related-articles {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--qi-gray-light);
}

.qi-related-title {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--qi-dark);
}

.qi-related-title i {
    color: var(--qi-primary);
    margin-right: 10px;
}

.qi-related-item {
    display: flex;
    gap: 15px;
    background: var(--qi-gray-light);
    padding: 15px;
    border-radius: var(--qi-radius);
    transition: var(--qi-transition);
}

.qi-related-item:hover {
    background: rgba(255, 64, 129, 0.1);
}

.qi-related-img {
    width: 100px;
    height: 80px;
    border-radius: var(--qi-radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.qi-related-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qi-related-content h4 {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.qi-related-content h4 a {
    color: var(--qi-dark);
}

.qi-related-content span {
    font-size: 13px;
    color: var(--qi-gray);
}

/* 详情页侧边栏 */
.qi-author-widget {
    text-align: center;
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
}

.qi-author-header {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.qi-author-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.qi-author-header h4 {
    color: var(--qi-white);
    margin-bottom: 5px;
}

.qi-author-stats {
    display: flex;
    justify-content: space-around;
}

.qi-author-stats .qi-stat-item {
    text-align: center;
}

.qi-author-stats .qi-stat-num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--qi-white);
}

.qi-author-stats .qi-stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.qi-toc a {
    display: block;
    padding: 10px 0;
    color: var(--qi-gray);
    border-bottom: 1px solid var(--qi-gray-light);
    font-size: 14px;
    transition: var(--qi-transition);
}

.qi-toc a:hover {
    color: var(--qi-primary);
    padding-left: 10px;
}

.qi-hot-articles {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: hot-list;
}

.qi-hot-articles li {
    position: relative;
    padding: 12px 0 12px 35px;
    border-bottom: 1px solid var(--qi-gray-light);
}

.qi-hot-articles li:last-child {
    border-bottom: none;
}

.qi-hot-articles li::before {
    counter-increment: hot-list;
    content: counter(hot-list);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--qi-gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--qi-gray);
}

.qi-hot-articles li:nth-child(1)::before { background: #FF6B6B; color: white; }
.qi-hot-articles li:nth-child(2)::before { background: #FFA06B; color: white; }
.qi-hot-articles li:nth-child(3)::before { background: #FFD93D; color: white; }

.qi-hot-articles a {
    color: var(--qi-dark);
    font-size: 14px;
    line-height: 1.5;
    display: block;
}

.qi-hot-articles a:hover {
    color: var(--qi-primary);
}

.qi-cta-widget {
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    text-align: center;
}

.qi-cta-widget h3 {
    color: var(--qi-white);
    margin-bottom: 15px;
}

.qi-cta-widget p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.qi-btn-outline-white {
    background: transparent;
    border: 2px solid var(--qi-white);
    color: var(--qi-white);
}

.qi-btn-outline-white:hover {
    background: var(--qi-white);
    color: var(--qi-primary);
}

/* ==================== 关于我们页 ==================== */
.qi-about-gallery {
    position: relative;
}

.qi-gallery-main {
    border-radius: var(--qi-radius-lg);
    overflow: hidden;
    box-shadow: var(--qi-shadow-lg);
}

.qi-gallery-sub {
    position: absolute;
    border: 5px solid var(--qi-white);
    border-radius: var(--qi-radius);
    overflow: hidden;
    box-shadow: var(--qi-shadow);
}

.qi-gallery-sub.qi-sub-1 {
    width: 200px;
    bottom: -30px;
    left: -30px;
}

.qi-gallery-sub.qi-sub-2 {
    width: 180px;
    top: 30px;
    right: -20px;
}

.qi-gallery-badge {
    position: absolute;
    bottom: 50px;
    right: 30px;
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--qi-white);
    box-shadow: var(--qi-shadow-lg);
    z-index: 10;
}

.qi-badge-num {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.qi-badge-text {
    font-size: 14px;
    text-align: center;
}

.qi-core-values {
    background: rgba(255, 64, 129, 0.05);
    padding: 30px;
    border-radius: var(--qi-radius);
}

.qi-value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qi-value-item i {
    font-size: 24px;
    color: var(--qi-primary);
}

.qi-value-item span {
    font-weight: 600;
    color: var(--qi-dark);
}

/* 时间线 */
.qi-history-section {
    background: var(--qi-gray-light);
}

.qi-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.qi-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--qi-primary-light);
}

.qi-timeline-item {
    position: relative;
    padding: 20px 0;
    width: 50%;
}

.qi-timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.qi-timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
}

.qi-timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--qi-white);
    border: 4px solid var(--qi-primary);
    border-radius: 50%;
    top: 25px;
    z-index: 2;
}

.qi-timeline-item:nth-child(odd) .qi-timeline-dot {
    right: -10px;
}

.qi-timeline-item:nth-child(even) .qi-timeline-dot {
    left: -10px;
}

.qi-timeline-item.active .qi-timeline-dot {
    background: var(--qi-primary);
    animation: pulse 2s infinite;
}

.qi-year {
    display: inline-block;
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
}

.qi-timeline-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--qi-dark);
}

.qi-timeline-content p {
    color: var(--qi-gray);
    font-size: 14px;
    margin: 0;
}

/* 团队 */
.qi-team-card {
    background: var(--qi-white);
    border-radius: var(--qi-radius);
    overflow: hidden;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
    height: 100%;
}

.qi-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--qi-shadow-lg);
}

.qi-team-image {
    position: relative;
    overflow: hidden;
}

.qi-team-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.qi-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 64, 129, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--qi-transition);
}

.qi-team-card:hover .qi-team-overlay {
    opacity: 1;
}

.qi-social-links {
    display: flex;
    gap: 10px;
}

.qi-social-links a {
    width: 40px;
    height: 40px;
    background: var(--qi-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--qi-primary);
    font-size: 18px;
}

.qi-social-links a:hover {
    background: var(--qi-dark);
    color: var(--qi-white);
}

.qi-team-info {
    padding: 25px;
    text-align: center;
}

.qi-team-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--qi-dark);
}

.qi-team-title {
    display: block;
    color: var(--qi-primary);
    font-size: 14px;
    margin-bottom: 10px;
}

.qi-team-desc {
    color: var(--qi-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* 荣誉 */
.qi-honor-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--qi-white);
    border-radius: var(--qi-radius);
    box-shadow: var(--qi-shadow-sm);
    transition: var(--qi-transition);
    height: 100%;
}

.qi-honor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--qi-shadow);
}

.qi-honor-item i {
    font-size: 48px;
    color: var(--qi-primary);
    margin-bottom: 15px;
}

.qi-honor-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--qi-dark);
}

.qi-honor-item p {
    color: var(--qi-gray);
    font-size: 14px;
    margin: 0;
}

.qi-honor-img {
    border-radius: var(--qi-radius-sm);
    overflow: hidden;
    box-shadow: var(--qi-shadow-sm);
    transition: var(--qi-transition);
}

.qi-honor-img:hover {
    transform: scale(1.05);
    box-shadow: var(--qi-shadow);
}

/* 合作伙伴 */
.qi-partner-logo {
    background: var(--qi-white);
    padding: 20px;
    border-radius: var(--qi-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    box-shadow: var(--qi-shadow-sm);
    transition: var(--qi-transition);
    filter: grayscale(100%);
    opacity: 0.6;
}

.qi-partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
    box-shadow: var(--qi-shadow);
}

/* ==================== 联系我们页 ==================== */
.qi-contact-cards {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.qi-contact-card {
    background: var(--qi-white);
    padding: 40px 30px;
    border-radius: var(--qi-radius-lg);
    text-align: center;
    box-shadow: var(--qi-shadow);
    transition: var(--qi-transition);
    height: 100%;
    border: 1px solid var(--qi-gray-light);
}

.qi-contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--qi-shadow-lg);
    border-color: var(--qi-primary-light);
}

.qi-contact-card.qi-card-featured {
    background: var(--qi-gradient-pink);
    color: var(--qi-white);
    border-color: transparent;
}

.qi-contact-card.qi-card-featured .qi-contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--qi-white);
}

.qi-contact-card.qi-card-featured h3,
.qi-contact-card.qi-card-featured .qi-contact-detail {
    color: var(--qi-white);
}

.qi-contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--qi-primary);
}

.qi-contact-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--qi-dark);
}

.qi-contact-detail {
    font-size: 20px;
    font-weight: 700;
    color: var(--qi-primary);
    margin-bottom: 5px;
}

.qi-contact-desc {
    color: var(--qi-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.qi-wechat-qr-sm {
    width: 120px;
    margin: 0 auto;
    background: var(--qi-white);
    padding: 10px;
    border-radius: var(--qi-radius-sm);
}

.qi-wechat-qr-sm img {
    width: 100%;
}

.qi-form-wrapper {
    background: var(--qi-white);
    padding: 40px;
    border-radius: var(--qi-radius-lg);
    box-shadow: var(--qi-shadow);
}

.qi-contact-form .form-control {
    border: 2px solid var(--qi-gray-light);
    padding: 12px 15px;
    border-radius: var(--qi-radius-sm);
}

.qi-contact-form .form-control:focus {
    border-color: var(--qi-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 64, 129, 0.25);
}

.qi-contact-form .input-group-text {
    background: var(--qi-primary);
    color: var(--qi-white);
    border: 2px solid var(--qi-primary);
    border-right: none;
}

.qi-form-tips {
    background: rgba(255, 64, 129, 0.05);
    padding: 20px;
    border-radius: var(--qi-radius);
    border-left: 4px solid var(--qi-primary);
}

.qi-form-tips h5 {
    color: var(--qi-primary);
    margin-bottom: 10px;
}

.qi-form-tips ul {
    margin: 0;
    padding-left: 20px;
    color: var(--qi-gray);
    font-size: 14px;
}

.qi-form-tips li {
    margin-bottom: 5px;
}

.qi-map-container {
    background: var(--qi-gray-light);
    border-radius: var(--qi-radius);
    overflow: hidden;
    height: 300px;
}

.qi-map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--qi-gray);
}

.qi-map-placeholder i {
    font-size: 48px;
    color: var(--qi-primary);
    margin-bottom: 15px;
}

.qi-service-hours {
    background: var(--qi-white);
    padding: 25px;
    border-radius: var(--qi-radius);
    box-shadow: var(--qi-shadow-sm);
}

.qi-service-hours h4 {
    margin-bottom: 20px;
    color: var(--qi-dark);
    font-size: 18px;
}

.qi-hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--qi-gray-light);
    color: var(--qi-gray);
}

.qi-hours-item:last-child {
    border-bottom: none;
}

.qi-hours-item.qi-hotline {
    color: var(--qi-primary);
    font-weight: 600;
}

.qi-simple-accordion .accordion-button {
    padding: 15px;
    font-size: 14px;
}

.qi-simple-accordion .accordion-body {
    font-size: 14px;
    color: var(--qi-gray);
}

.qi-commitment-row {
    margin-top: 30px;
}

.qi-commit-item {
    text-align: center;
    padding: 30px;
}

.qi-commit-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--qi-primary);
    transition: var(--qi-transition);
}

.qi-commit-item:hover .qi-commit-icon {
    background: var(--qi-primary);
    color: var(--qi-white);
    transform: rotateY(360deg);
}

.qi-commit-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--qi-dark);
}

.qi-commit-item p {
    color: var(--qi-gray);
    font-size