/* 1. 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 50%, #e8eaf6 100%);
    color: #4a4a4a;
    min-height: 100vh;
    line-height: 1.4;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 550px;
    margin: 0 auto;
    padding: 15px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* 2. 头部样式 */
header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.logo-container {
    font-size: 48px;
    color: #ff4081;
    margin-bottom: 10px;
}

header h1 {
    color: #9c27b0;
    font-size: 24px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.subtitle {
    display: flex;
    justify-content: center;
    gap: 15px;
    color: #9c27b0;
    font-size: 13px;
    font-weight: 500;
}

.subtitle span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* 3. 卡片通用样式 */
.card {
    background: rgba(255, 255, 255, 0.9);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(156, 39, 176, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(156, 39, 176, 0.15);
}

.card-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    color: #9c27b0;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(156, 39, 176, 0.1);
    margin-bottom: 15px;
}

/* 4. 表单样式 */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(156, 39, 176, 0.2);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    -webkit-text-size-adjust: 100%;
}

.form-group input:focus {
    outline: none;
    border-color: #9c27b0;
    box-shadow: 0 0 0 3px rgba(156, 39, 176, 0.1);
}

.login-btn, .logout-btn {
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.login-btn:hover, .logout-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.2);
}

.logout-btn {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
    margin-top: 10px;
}

/* 6. 数据展示样式 */
.overview-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.overview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(156, 39, 176, 0.03);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.overview-item:hover {
    transform: translateX(5px);
}

.overview-icon {
    font-size: 24px;
    color: #ff4081;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 64, 129, 0.1);
    border-radius: 8px;
}

.overview-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.overview-label {
    color: #666;
    font-size: 14px;
}

.overview-value {
    font-size: 24px;
    font-weight: 600;
    color: #ff4081;
    text-shadow: 0 2px 8px rgba(255, 64, 129, 0.15);
    transition: all 0.3s ease;
}

.overview-value:hover {
    transform: translateX(3px);
    text-shadow: 0 3px 10px rgba(255, 64, 129, 0.2);
}

#totalEarnings {
    font-size: 28px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gentle-pulse 3s infinite;
}

.earnings-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.earnings-item {
    background: rgba(156, 39, 176, 0.03);
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.earnings-item:hover {
    background: rgba(156, 39, 176, 0.06);
    transform: translateX(5px);
}

.earnings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date-label, .amount-label {
    color: #666;
    font-size: 13px;
}

.date-value {
    color: #9c27b0;
    font-size: 14px;
}

.amount-value {
    font-size: 16px;
    font-weight: 500;
    color: #ff4081;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 120px;
    margin: 15px auto 0;
    padding: 8px;
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(255, 64, 129, 0.2);
}

/* 7. 动画效果 */
@keyframes gentle-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 2px 6px rgba(255, 64, 129, 0.15);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 3px 12px rgba(255, 64, 129, 0.3);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 2px 6px rgba(255, 64, 129, 0.15);
    }
}

/* 8. 工具类 */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(156, 39, 176, 0.05) 0%, 
        rgba(156, 39, 176, 0.1) 50%, 
        rgba(156, 39, 176, 0.05) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

.skeleton-text {
    height: 14px;
    width: 100%;
    margin: 8px 0;
}

.divider {
    color: rgba(74, 74, 74, 0.3);
}

/* 9. 响应式布局 */
@media (max-width: 430px) {
    .container {
        width: 92%;
        max-width: 92%;
        margin: 0 auto;
        padding: 15px 0;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        margin-bottom: 20px;
        padding: 0;
    }

    .logo-container {
        font-size: 36px;
        margin-bottom: 10px;
    }

    header h1 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 13px;
        gap: 10px;
    }

    .contact-modal {
        right: 20px;
        bottom: 80px;
        width: calc(100% - 40px);
        padding: 15px;
    }
    
    .contact-item {
        padding: 6px 10px;
    }
    
    .contact-label, .contact-value {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .container {
        width: 94%;
        max-width: 94%;
        padding: 12px 0;
    }

    .card {
        padding: 12px;
    }
}

/* 12. 页脚样式 */
.footer {
    margin-top: auto;
    padding: 12px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.beian-info {
    font-size: 11px;
    color: rgba(74, 74, 74, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.beian-item {
    display: flex;
    align-items: center;
    gap: 3px;
}

/* 13. 补充动画 */
@keyframes shimmer {
    to { background-position: -200% 0; }
}

/* 14. 补充响应式样式 */
@media (max-width: 430px) {
    .carousel {
        height: 280px;
        perspective: 1000px;
    }

    .carousel-item {
        width: 180px;
        height: 240px;
    }

    .contact-modal {
        right: 20px;
        bottom: 80px;
        width: calc(100% - 40px);
        padding: 15px;
    }

    .streamer-contact {
        left: 50%;
        bottom: 20px;
        transform: translateX(-50%) !important;
        padding: 0;
    }
    
    .streamer-contact-inner {
        padding: 6px 14px;
    }
    
    .streamer-contact-text {
        font-size: 12px;
    }
    
    .contact-modal {
        width: calc(100% - 40px);
        padding: 15px;
        bottom: 80px;
    }
}

/* 15. 轮播图位置样式 */
.carousel-item.active {
    transform: translate(-50%, -50%) translateZ(150px);
    opacity: 1;
    z-index: 5;
    pointer-events: auto;
}

.carousel-item.prev {
    transform: translate(-120%, -50%) translateZ(75px) rotateY(25deg);
    opacity: 0.6;
    z-index: 4;
    pointer-events: auto;
}

.carousel-item.prev-2 {
    transform: translate(-180%, -52%) translateZ(0) rotateY(35deg);
    opacity: 0.4;
    z-index: 3;
    scale: 0.9;
    pointer-events: auto;
}

.carousel-item.prev-3 {
    transform: translate(-230%, -54%) translateZ(-75px) rotateY(45deg);
    opacity: 0.2;
    z-index: 2;
    scale: 0.8;
    pointer-events: none;
}

.carousel-item.next {
    transform: translate(20%, -50%) translateZ(75px) rotateY(-25deg);
    opacity: 0.6;
    z-index: 4;
    pointer-events: auto;
}

.carousel-item.next-2 {
    transform: translate(80%, -52%) translateZ(0) rotateY(-35deg);
    opacity: 0.4;
    z-index: 3;
    scale: 0.9;
    pointer-events: auto;
}

.carousel-item.next-3 {
    transform: translate(130%, -54%) translateZ(-75px) rotateY(-45deg);
    opacity: 0.2;
    z-index: 2;
    scale: 0.8;
    pointer-events: none;
}

/* 16. 补充联系方式样式 */
.contact-modal h3 {
    color: #9c27b0;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(156, 39, 176, 0.05);
    border-radius: 8px;
}

.contact-item i {
    color: #ff4081;
    font-size: 16px;
}

.contact-detail {
    flex: 1;
}

.contact-info-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.contact-label {
    color: #666;
    font-size: 13px;
}

.contact-value {
    color: #333;
    font-size: 13px;
}

.copy-btn {
    padding: 4px 8px;
    font-size: 12px;
    color: #9c27b0;
    background: rgba(156, 39, 176, 0.08);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.copy-btn:hover {
    background: rgba(156, 39, 176, 0.15);
}

.contact-message {
    margin-top: 12px;
    padding: 10px;
    font-size: 12px;
    color: #666;
    text-align: center;
    background: rgba(156, 39, 176, 0.03);
    border-radius: 6px;
}

/* 17. 补充按钮样式 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.refresh-btn, .export-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    color: white;
}

.refresh-btn {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.export-btn {
    background: linear-gradient(135deg, #ff4081 0%, #f50057 100%);
}

.refresh-btn:hover, .export-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(156, 39, 176, 0.2);
}

/* 18. 补充页脚样式 */
.beian-icon {
    width: 14px;
    height: 14px;
    margin-right: 1px;
}

.beian-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.beian-info a:hover {
    opacity: 1;
}

.copyright {
    font-size: 10px;
    color: rgba(74, 74, 74, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* 建议提取为通用类 */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* 需要添加 */
.streamer-contact-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 430px) {
    .contact-item {
        padding: 6px 10px;
    }
    
    .contact-label, .contact-value {
        font-size: 12px;
    }
}

/* 添加按钮点击效果 */
.login-btn:active,
.logout-btn:active,
.refresh-btn:active,
.export-btn:active,
.copy-btn:active {
    transform: scale(0.95);
}

/* 添加到按钮样式部分 */
.login-btn:focus-visible,
.logout-btn:focus-visible,
.refresh-btn:focus-visible,
.export-btn:focus-visible {
    outline: 2px solid #9c27b0;
    outline-offset: 2px;
}

/* 联系方式弹窗样式 */
.contact-modal {
    position: fixed;
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%);
    width: 300px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    display: none;
}

.contact-modal.show {
    display: block;
}

/* 移动端适配 */
@media (max-width: 430px) {
    .streamer-contact {
        bottom: 20px;
    }
    
    .streamer-contact-inner {
        padding: 6px 14px;
    }
    
    .streamer-contact-text {
        font-size: 12px;
    }
    
    .contact-modal {
        width: calc(100% - 40px);
        padding: 15px;
        bottom: 80px;
    }
}

/* 推荐有奖按钮样式 */
.recommend-reward {
    position: fixed;
    right: 100px;
    bottom: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 0.5s ease forwards;
}

.recommend-reward-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(
        135deg, 
        #9c27b0 0%, 
        #673ab7 50%,
        #9c27b0 100%
    );
    background-size: 200% 200%;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.2);
    animation: gradientShift 3s ease infinite;
}

.recommend-reward-inner:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.4);
    background-position: right center;
}

.recommend-reward-inner:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
}

.recommend-reward-inner i {
    font-size: 18px;
    color: #fff;
    transition: transform 0.3s ease;
}

.recommend-reward-text {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.recommend-reward-inner:hover i {
    transform: scale(1.1) rotate(15deg);
}

.recommend-reward-inner:hover .recommend-reward-text {
    transform: translateX(3px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 移动端适配 */
@media (max-width: 430px) {
    .recommend-reward {
        right: 15px;
        bottom: 70px;
    }
    
    .recommend-reward-inner {
        padding: 6px 14px;
    }
    
    .recommend-reward-inner i {
        font-size: 16px;
    }
    
    .recommend-reward-text {
        font-size: 13px;
    }
}

/* 添加奖励对话框样式 */
.reward-modal {
    position: fixed;
    right: 100px;
    bottom: 90px;
    width: 300px;
    background: linear-gradient(135deg, #ff4d4d 0%, #ff1a1a 100%);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(255, 26, 26, 0.2);
    z-index: 1001;
    display: none;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.reward-modal.show {
    display: block;
}

.reward-modal h3 {
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.reward-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
}

.reward-amount {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin: 8px 0;
    color: #ffeb3b;
    text-shadow: 0 2px 6px rgba(255, 235, 59, 0.2);
    animation: gentle-pulse 3s infinite;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.reward-amount::before {
    content: '最高';
    position: absolute;
    top: -12px;
    right: 12px;
    font-size: 12px;
    font-weight: normal;
    color: #ffeb3b;
    text-shadow: none;
    -webkit-text-fill-color: #ffeb3b;
    background: rgba(255, 255, 255, 0.1);
    padding: 1px 4px;
    border-radius: 4px;
}

.reward-steps {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reward-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.reward-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.reward-step i {
    color: #ffeb3b;
    font-size: 15px;
    margin-top: 2px;
}

.reward-step span {
    font-size: 12px;
    line-height: 1.4;
}

.reward-step strong {
    color: #ffeb3b;
    font-weight: 600;
}

/* 修改动画效果 */
@keyframes gentle-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 2px 6px rgba(255, 64, 129, 0.15);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 3px 12px rgba(255, 64, 129, 0.3);
    }
    100% {
        transform: scale(1);
        text-shadow: 0 2px 6px rgba(255, 64, 129, 0.15);
    }
}

@keyframes modalPop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* 移动端适配 */
@media (max-width: 430px) {
    .reward-modal {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        max-width: 280px;
        bottom: 110px;
        padding: 15px;
        font-size: 13px;
    }

    .reward-modal h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .reward-content {
        padding: 10px;
    }

    .reward-amount {
        font-size: 28px;
        margin: 6px 0;
    }

    .reward-amount::before {
        font-size: 11px;
        top: -10px;
        right: 10px;
        padding: 1px 4px;
    }

    .reward-steps {
        margin-top: 12px;
        gap: 6px;
    }

    .reward-step {
        padding: 6px;
    }

    .reward-step i {
        font-size: 15px;
    }

    .reward-step span {
        font-size: 12px;
    }

    .reward-contact {
        padding: 10px;
        margin-bottom: 10px;
    }

    .reward-contact-item {
        padding: 5px;
    }

    .reward-contact-label,
    .reward-contact-value {
        font-size: 12px;
    }

    .reward-copy-btn {
        padding: 3px 6px;
        font-size: 11px;
    }

    .reward-message {
        font-size: 11px;
    }

    .reward-message p {
        margin: 2px 0;
    }
}

/* 小屏幕手机的特殊适配 */
@media (max-width: 360px) {
    .reward-modal {
        width: 95%;
        padding: 12px;
        bottom: 100px;
    }
}

/* 奖励对话框联系方式样式 */
.reward-contact {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
}

.reward-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.reward-contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.reward-contact-item i {
    color: #ffeb3b;
    font-size: 18px;
}

.reward-contact-detail {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reward-contact-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.reward-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reward-contact-value {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.reward-copy-btn {
    padding: 1px 6px;
    font-size: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 2px;
    transition: all 0.3s ease;
    height: 18px;
    white-space: nowrap;
}

.reward-copy-btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* 移动端适配 */
@media (max-width: 430px) {
    .reward-contact-label,
    .reward-contact-value {
        font-size: 12px;
    }
    
    .reward-copy-btn {
        padding: 1px 4px;
        font-size: 9px;
        height: 16px;
    }
}

.reward-message {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    padding: 8px 0;
    position: relative;
}

.reward-message::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.reward-message p:first-child {
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.reward-message p:last-child {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 移动端适配 */
@media (max-width: 430px) {
    .reward-message {
        font-size: 12px;
        padding: 6px 0;
    }
}

/* 添加关键CSS内联 */
.critical {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* 添加加载状态样式 */
.loading-spinner {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.loading-spinner.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    border-top-color: #9c27b0;
    animation: spin 1s linear infinite;
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.toast i {
    font-size: 16px;
}

.toast.success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.toast.error {
    background: linear-gradient(135deg, #f44336 0%, #e53935 100%);
}

.toast.warning {
    background: linear-gradient(135deg, #ff9800 0%, #fb8c00 100%);
}

.toast.info {
    background: linear-gradient(135deg, #2196F3 0%, #1e88e5 100%);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes slideIn {
    to { transform: translateX(0); }
}

/* 添加骨架屏样式 */
.skeleton {
    background: linear-gradient(90deg, 
        rgba(156, 39, 176, 0.05) 25%, 
        rgba(156, 39, 176, 0.1) 50%, 
        rgba(156, 39, 176, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}

/* 移动端适配 */
@media (max-width: 430px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* 修改移动端弹窗样式 */
@media screen and (max-width: 430px) {
    .streamer-contact {
        bottom: 20px;
    }
    
    .streamer-contact-inner {
        padding: 6px 14px;
    }
    
    .contact-modal {
        width: calc(100% - 40px);
        padding: 15px;
        bottom: 80px;
    }

    .reward-modal .close-btn {
        top: 8px;
        right: 8px;
        width: 20px;
        height: 20px;
    }
}

/* 修改新增板块公共样式 */
.section-title {
    text-align: center;
    margin: 20px 0 15px;
    font-size: 20px;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.section-title i {
    font-size: 24px;
    background: linear-gradient(135deg, #9c27b0, #673ab7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 添加副标题样式 */
.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: rgba(51, 51, 51, 0.8);
    margin: -8px 0 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 15px;
}

/* 添加装饰线 */
.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #ff69b4, #9c27b0);
    border-radius: 2px;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 13px;
        margin: -8px 0 15px;
        padding-bottom: 12px;
    }
    
    .section-subtitle::after {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .section-subtitle {
        font-size: 12px;
        margin: -6px 0 12px;
        padding-bottom: 10px;
    }
    
    .section-subtitle::after {
        width: 20px;
    }
}

/* 优化对接平台样式 */
.platform-showcase {
    padding: 10px;
    display: none;
    margin: 10px auto;
    max-width: 1000px;
}

/* 上下行容器样式 */
.platform-row {
    display: grid;
    margin: 0 auto;
    padding: 5px;
}

/* 上行5个图标 */
.platform-row-top {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 850px;
}

/* 下行4个图标 */
.platform-row-bottom {
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 850px;
    margin-top: 10px;
}

.platform-item {
    padding: 6px;  /* 减小内边距 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75px;
    background: none;
    border: 1px solid #ff69b4;  /* 减小边框宽度 */
    border-radius: 6px;  /* 减小圆角 */
    cursor: pointer;
    overflow: hidden;
}

/* 悬浮效果 - 增加填充色 */
.platform-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.2);  /* 减小阴影 */
    border-color: #ff1493;
    background-color: rgba(255, 105, 180, 0.25);
}

/* 点击时的填充效果 */
.platform-item:active {
    transform: scale(0.95);
    border-color: #ff1493;
    background-color: rgba(255, 105, 180, 0.4);  /* 加深点击时的填充色 */
}

/* 选中状态的填充效果 */
.platform-item.selected {
    border-color: #ff1493;
    background-color: rgba(255, 105, 180, 0.35);  /* 加深选中状态的填充色 */
    transform: translateY(-2px);
}

/* 图片效果 */
.platform-item img {
    max-width: 95%;
    max-height: 95%;
    height: auto;
    filter: grayscale(15%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.platform-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* 选中状态下的图片效果 */
.platform-item.selected img {
    filter: grayscale(0%);
}

/* 点击波纹效果 */
.platform-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 105, 180, 0.45);  /* 加深波纹效果的不透明度 */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.platform-item:active::after {
    width: 150%;
    height: 150%;
    opacity: 1;
}

/* 移动端适配优化 */
@media (max-width: 768px) {
    .platform-showcase {
        padding: 10px;
    }
    
    .platform-row-top,
    .platform-row-bottom {
        grid-template-columns: repeat(5, 1fr);
        gap: 8px;
        max-width: 100%;
    }
    
    .platform-item {
        height: 50px;
        padding: 4px;  /* 减小内边距 */
        border-width: 1px;  /* 保持细边框 */
    }
    
    .platform-item img {
        max-width: 90%;  /* 调整图片大小 */
        max-height: 90%;
    }
}

@media (max-width: 480px) {
    .platform-showcase {
        padding: 8px;
    }
    
    .platform-row-top,
    .platform-row-bottom {
        grid-template-columns: repeat(5, 1fr);  /* 保持5列布局 */
        gap: 6px;  /* 减小间距 */
    }
    
    .platform-item {
        height: 40px;
        padding: 3px;
        border-width: 0.5px;  /* 移动端更细的边框 */
    }
    
    .platform-item img {
        max-width: 85%;  /* 调整图片大小 */
        max-height: 85%;
    }
}

/* 超小屏幕适配 */
@media (max-width: 360px) {
    .platform-item {
        height: 35px;
        padding: 2px;
        border-width: 0.5px;
    }
    
    .platform-item img {
        max-width: 80%;  /* 调整图片大小 */
        max-height: 80%;
    }
}

/* 优化合作案例样式 */
.cases-showcase {
    padding: 15px;
    display: none;
    margin: 15px auto;
    max-width: 1000px;
    position: relative;  /* 为渐变边框添加定位 */
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
}

/* 添加渐变边框效果 */
.cases-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;  /* 边框宽度 */
    background: linear-gradient(135deg, #ff69b4, #9c27b0);  /* 粉色到紫色的渐变 */
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;  /* 确保不影响内容的交互 */
}

/* 添加发光效果 */
.cases-showcase::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ff69b4, #9c27b0);
    filter: blur(8px);
    opacity: 0.15;
    z-index: -1;
}

/* 重新设计案例网格为扇形滑动画廊 */
.cases-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
    margin: 0 auto;
    padding: 20px 0;
    perspective: 1000px;
    transform-style: preserve-3d;
    overflow: hidden;
    border-radius: 12px;
}

.case-item {
    position: absolute;
    width: 280px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform-origin: center center;
    will-change: transform, opacity;
}

.case-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 扇形布局的位置样式 */
.case-item:nth-child(1) {
    transform: translateX(-120%) scale(0.8) translateZ(-100px);
    opacity: 0.6;
    z-index: 1;
}

.case-item:nth-child(2) {
    transform: translateX(-60%) scale(0.85) translateZ(-50px);
    opacity: 0.7;
    z-index: 2;
}

.case-item:nth-child(3) {
    transform: translateX(-30%) scale(0.9) translateZ(-25px);
    opacity: 0.8;
    z-index: 3;
}

.case-item:nth-child(4) {
    transform: translateX(0) scale(1) translateZ(0);
    opacity: 1;
    z-index: 4;
}

.case-item:nth-child(5) {
    transform: translateX(30%) scale(0.9) translateZ(-25px);
    opacity: 0.8;
    z-index: 3;
}

.case-item:nth-child(6) {
    transform: translateX(60%) scale(0.85) translateZ(-50px);
    opacity: 0.7;
    z-index: 2;
}

.case-item:nth-child(7) {
    transform: translateX(120%) scale(0.8) translateZ(-100px);
    opacity: 0.6;
    z-index: 1;
}

/* 移除悬浮效果 */
.case-item.active {
    transform: translateX(0) scale(1) translateZ(0) !important;
    opacity: 1 !important;
    z-index: 5 !important;
}

/* 移动端适配 */
@media (max-width: 768px) {
    .cases-showcase {
        padding: 12px;
        margin: 12px auto;
    }
    
    .cases-showcase::before {
        padding: 1px;  /* 保持边框宽度 */
    }
    
    .cases-showcase::after {
        filter: blur(6px);  /* 减小发光效果 */
    }
    
    .cases-grid {
        height: 300px;
        padding: 15px 0;
    }
    
    .case-item {
        width: 220px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .cases-showcase {
        padding: 10px;
        margin: 10px auto;
    }
    
    .cases-showcase::after {
        filter: blur(4px);  /* 进一步减小发光效果 */
    }
    
    .cases-grid {
        height: 250px;
        padding: 12px 0;
    }
    
    .case-item {
        width: 180px;
        height: 240px;
    }
}

.platform-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* 移除之前的点击相关事件样式 */
.platform-item.selected {
    border-color: #ff1493;
    background-color: rgba(255, 105, 180, 0.35);
}

.platform-item.selected img {
    filter: grayscale(0%);
}

/* 优化关闭按钮样式 */
.reward-modal .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #9c27b0);  /* 渐变背景 */
}

/* 关闭按钮图标样式 */
.reward-modal .close-btn i {
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

/* 悬浮效果 */
.reward-modal .close-btn:hover {
    transform: rotate(90deg);
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
}

/* 点击效果 */
.reward-modal .close-btn:active {
    transform: rotate(90deg) scale(0.95);
}

/* 添加发光效果 */
.reward-modal .close-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: inherit;
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.reward-modal .close-btn:hover::after {
    opacity: 0.6;
}

/* 移动端适配 */
@media screen and (max-width: 480px) {
    .reward-modal {
        width: 75%;  /* 进一步减小弹窗宽度 */
        max-width: 280px;  /* 减小最大宽度 */
        padding: 14px;  /* 减小内边距 */
    }
    
    .reward-modal h3 {
        font-size: 14px;  /* 减小标题字号 */
        margin-bottom: 10px;
    }
    
    .reward-modal h3 i {
        font-size: 16px;
    }
    
    .reward-amount {
        font-size: 20px;  /* 减小金额字号 */
        margin: 6px 0;
        padding: 4px 0;
    }
    
    .reward-steps {
        gap: 6px;  /* 减小步骤之间的间距 */
    }
    
    .reward-step {
        padding: 6px;  /* 减小步骤内边距 */
        font-size: 11px;  /* 减小文字大小 */
        border-radius: 5px;  /* 减小圆角 */
    }
    
    .reward-step i {
        font-size: 14px;  /* 减小图标大小 */
    }
    
    .reward-step strong {
        font-size: 11px;  /* 减小强调文字大小 */
    }
    
    .reward-contact {
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .reward-contact-item {
        padding: 5px 8px;  /* 减小联系方式内边距 */
        border-radius: 5px;  /* 减小圆角 */
    }
    
    .reward-contact-item i {
        font-size: 14px;
    }
    
    .reward-contact-label {
        font-size: 10px;
    }
    
    .reward-contact-value {
        font-size: 11px;
    }
    
    .reward-contact-btn {
        padding: 3px 6px;
        font-size: 10px;
        border-radius: 3px;
    }
}

/* 在更小的屏幕上进一步优化 */
@media screen and (max-width: 360px) {
    .reward-modal {
        width: 80%;
        padding: 12px;
    }
    
    .reward-amount {
        font-size: 18px;
    }
    
    .reward-step {
        padding: 5px;
        font-size: 10px;
    }
    
    .reward-contact-item {
        padding: 4px 6px;
    }
}

/* 添加主播对接按钮动画效果 */
.streamer-contact-center {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    cursor: pointer;
}

/* 添加呼吸光环效果 */
.streamer-contact-center::before,
.streamer-contact-center::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 25px;
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 50%, #9c27b0 100%);
    opacity: 0;
    z-index: -1;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.streamer-contact-center::after {
    animation-delay: 1s;
}

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

/* 保持其他样式不变 */
.contact-btn-inner {
    position: relative;  /* 添加相对定位 */
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 50%, #9c27b0 100%);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(156, 39, 176, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-btn-inner i {
    font-size: 16px;
    color: white;
}

.contact-btn-inner span {
    color: white;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* 按钮点击效果 */
.contact-btn-inner:active {
    transform: scale(0.95);
    background: linear-gradient(135deg, #9c27b0 0%, #673ab7 50%, #9c27b0 100%);
}

/* 优化弹窗样式 */
.contact-modal-center {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-modal-center.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9ff);
    padding: 30px;
    border-radius: 24px;
    width: 85%;
    max-width: 360px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.contact-modal-center.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* 优化关闭按钮 */
.modal-content .close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 26px;
    height: 26px;
    border: none;
    background: linear-gradient(135deg, #ff69b4, #9c27b0);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.3);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.modal-content .close-btn:hover {
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(255, 105, 180, 0.4);
}

/* 优化联系方式项 */
.contact-item {
    background: white;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 12px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(156, 39, 176, 0.1) inset;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(156, 39, 176, 0.15) inset;
}

.contact-value-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

.copy-btn {
    padding: 6px 12px;
    border: none;
    background: linear-gradient(135deg, #ff69b4, #9c27b0);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(255, 105, 180, 0.2);
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(255, 105, 180, 0.3);
}

.copy-btn:active {
    transform: translateY(0);
}

/* 优化提示文本 */
.contact-tips {
    text-align: center;
    margin: 25px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(156, 39, 176, 0.1);
    color: #666;
    font-size: 13px;
    line-height: 1.5;
}

/* 移动端适配 */
@media screen and (max-width: 480px) {
    .contact-btn-inner {
        padding: 6px 14px;
    }
    
    .contact-btn-inner i {
        font-size: 14px;
    }
    
    .contact-btn-inner span {
        font-size: 12px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .modal-content h3 {
        font-size: 16px;
        margin: 0 0 20px;
    }
    
    .contact-item {
        padding: 12px;
    }
}

/* 修改游客登录提示样式 */
.guest-login-tip {
    position: absolute;
    top: 10px;  /* 调整到卡片头部 */
    right: 10px;
    font-size: 11px;
    color: #9c27b0;
    cursor: pointer;
    padding: 3px 6px;
    border-radius: 4px;
    background: rgba(156, 39, 176, 0.1);
    transition: all 0.3s ease;
    z-index: 2;  /* 确保显示在最上层 */
}

.guest-login-tip:hover {
    background: rgba(156, 39, 176, 0.2);
    transform: translateY(-1px);
}

.guest-login-tip i {
    font-size: 14px;
    margin-right: 4px;
    vertical-align: -2px;
}

/* 修改移动端游客登录按钮位置 */
@media screen and (max-width: 480px) {
    .card-header {
        position: relative;  /* 为了让游客登录按钮相对于卡片头部定位 */
    }
    
    .login-container {
        position: relative;
    }
    
    .guest-login-tip {
        position: absolute;
        top: -50px;  /* 将按钮位置再往上移，从-40px改为-50px */
        right: 5px;
        font-size: 11px;
        padding: 3px 6px;
        z-index: 2;
    }
}

/* 超小屏幕适配 */
@media screen and (max-width: 360px) {
    .guest-login-tip {
        top: -48px;  /* 相应调整位置，从-38px改为-48px */
        right: 5px;
    }
}

/* 合作流程板块样式 */
.cooperation-process {
    padding: 10px 10px;
    margin: 15px auto;
    max-width: 1000px;
}

/* 流程步骤样式 */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;  /* 减小步骤之间的间距 */
    margin: 25px 0;  /* 减小上下边距 */
    padding: 15px;  /* 减小内边距 */
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;  /* 减小图标和文字间距 */
    text-align: center;
    padding: 12px;  /* 减小步骤内边距 */
    min-width: 100px;  /* 减小最小宽度 */
}

.step-icon {
    width: 45px;  /* 减小图标容器尺寸 */
    height: 45px;
    background: linear-gradient(135deg, #ff4081, #f50057);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;  /* 减小图标大小 */
    box-shadow: 0 4px 10px rgba(245, 0, 87, 0.2);
}

.step-text {
    font-size: 13px;  /* 减小文字大小 */
    color: #333;
    max-width: 110px;  /* 减小文字最大宽度 */
    line-height: 1.4;
}

.process-arrow {
    color: #f50057;
    font-size: 18px;  /* 减小箭头大小 */
}

/* 合作特点样式 */
.cooperation-features {
    display: flex;
    justify-content: center;
    gap: 20px;  /* 减小间距 */
    margin-top: 30px;
    flex-wrap: nowrap;  /* 防止换行 */
}

.feature-group {
    background: white;
    padding: 20px;
    border-radius: 16px;
    flex: 1;  /* 让两个容器平均分配空间 */
    min-width: 0;  /* 允许容器缩小 */
    max-width: 300px;  /* 限制最大宽度 */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-group h3 {
    color: #333;
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-group h3 i {
    color: #f50057;
    font-size: 20px;
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.feature-group li i {
    color: #f50057;
    font-size: 16px;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .process-flow {
        padding: 12px;
        gap: 8px;
    }
    
    .process-step {
        padding: 8px;
        min-width: 90px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .step-text {
        font-size: 11px;
    }
    
    .process-arrow {
        font-size: 14px;
    }
    
    .feature-group {
        padding: 15px;
        min-width: 0;
        max-width: none;
    }
}

@media screen and (max-width: 480px) {
    .process-flow {
        flex-direction: column;  /* 在小屏幕上改为垂直排列 */
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .cooperation-features {
        gap: 15px;
    }
    
    .feature-group {
        width: 100%;
    }
}

/* 添加滑动提示语样式 */
.swipe-hint {
    display: block;
    font-size: 12px;
    color: rgba(51, 51, 51, 0.6);
    margin-top: 6px;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .swipe-hint {
        font-size: 11px;
        margin-top: 4px;
    }
}