 /* 全局样式重置 */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, sans-serif;
 }

 /* 背景 */
 body {
     min-height: 100vh;
     background-color: #f5f5f5;
     background-image: url(./images/bg2.gif);
     background-repeat: repeat;
     background-size: auto;
     background-attachment: fixed;
     overflow-x: hidden;
 }

 /* 标题区 */
 .feedback-section {
     padding: 60px 20px;
     text-align: center;
 }

 .section-header {
     margin-bottom: 40px;
 }

 .section-header .subtitle {
     color: #ff6f61;
     text-transform: uppercase;
     font-size: 14px;
     letter-spacing: 1px;
     margin-bottom: 10px;
 }

 .section-header .title {
     color: #3a3a3a;
     font-size: 36px;
     font-weight: bold;
 }

 /* 轮播容器 */
 .carousel-container {
     max-width: calc(3 * 350px + 2 * 20px);
     width: 90%;
     margin: 0 auto;
     overflow: hidden;
     position: relative;
 }

 .feedback-cards {
     display: flex;
     gap: 20px;
     transition: transform 0.5s ease;
 }

 /* 卡片样式 */
 .feedback-card {
     background-color: rgba(255, 255, 255, 0.9);
     padding: 30px;
     border-radius: 8px;
     width: 350px;
     flex-shrink: 0;
     text-align: left;
     position: relative;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
 }

 /* 文字内容容器 - 垂直排列 */
 .text-content {
     display: flex;
     flex-direction: column;
     gap: 4px;
     margin-bottom: 24px;
     /* 和下方SPONSER区域的间距 */
 }

 /* 通用文字样式 */
 .text-item {
     font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
     color: #ff6f61;
     /* 基础文字颜色，匹配图片风格 */
     font-size: 13px;
     line-height: 1.4;
 }

 /* 响应式 */
 @media (max-width: 1200px) {
     .feedback-card {
         width: 280px;
     }

     .carousel-container {
         max-width: calc(3 * 280px + 2 * 20px);
     }
 }

 @media (max-width: 900px) {
     .feedback-card {
         width: 220px;
     }

     .carousel-container {
         max-width: calc(3 * 220px + 2 * 20px);
     }
 }

 @media (max-width: 768px) {
     .feedback-card {
         width: 280px;
     }

     .carousel-container {
         max-width: 280px;
     }

     .section-header .title {
         font-size: 28px;
     }
 }

 .feedback-text {
     color: #64748b;
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 30px;
 }

 /* 客户信息 */
 .client-info {
     display: flex;
     align-items: center;
 }

 /* 头像样式 */
 .client-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background-color: #e2e8f0;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #94a3b8;
     font-size: 20px;
     margin-right: 15px;
     overflow: hidden;
     border: 2px solid #f8f9fa;
     transition: all 0.3s ease;
     cursor: pointer;
     position: relative;
     z-index: 10;
 }

 /* 头像hover */
 .client-avatar:hover {
     transform: scale(1.1);
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 /* 男性头像 */
 .client-avatar.male-avatar {
     border-color: #0e9a8a;
 }

 .client-avatar.male-avatar:hover {
     border-color: #087f72;
 }

 /* 女性头像 */
 .client-avatar.female-avatar {
     border-color: #ff6f61;
 }

 .client-avatar.female-avatar:hover {
     border-color: #e85a4f;
 }

 /* 默认头像 */
 .client-avatar:not(.male-avatar):not(.female-avatar):hover {
     border-color: #cbd5e1;
     color: #64748b;
 }

 /* 头像图片 */
 .client-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform 0.3s ease;
 }

 .client-avatar:hover img {
     transform: scale(1.05);
 }

 /* 名称 */
 .client-name {
     color: #1e293b;
     font-weight: bold;
     font-size: 16px;
 }

 .client-title {
     color: #94a3b8;
     font-size: 12px;
     margin-top: 2px;
 }

 /* 引用图标 */
 .testimonial-quote {
     position: absolute;
     bottom: 20px;
     right: 20px;
 }

 .testimonial-quote i {
     color: #ff6f61;
     font-size: 30px;
 }

 /* 指示器 */
 .carousel-indicators {
     margin-top: 30px;
     display: flex;
     gap: 8px;
     justify-content: center;
 }

 .indicator {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background-color: #e2e8f0;
     cursor: pointer;
     transition: background-color 0.3s ease;
 }

 .indicator.active {
     background-color: #ff6f61;
 }

 /* 二维码弹窗样式（核心新增） */
 .qrcode-modal {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 1000;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .qrcode-modal.show {
     opacity: 1;
     visibility: visible;
 }

 .qrcode-content {
     background-color: white;
     padding: 20px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
     transform: scale(0.9);
     transition: transform 0.3s ease;
 }

 .qrcode-modal.show .qrcode-content {
     transform: scale(1);
 }

 .qrcode-img {
     width: 220px;
     height: 220px;
     object-fit: cover;
     margin-bottom: 5px;
     border-radius: 8px;
 }

 .qrcode-name {
     font-size: 18px;
     font-weight: bold;
     color: #333;
 }

 .qrcode-desc {
     font-size: 14px;
     color: #888;
     margin-top: 5px;
 }

 .close-btn {
     position: absolute;
     top: 20px;
     right: 20px;
     background: none;
     border: none;
     color: white;
     font-size: 24px;
     cursor: pointer;
 }