@font-face {
    font-family: 'XiangJiaoKuanMao';
    src: url('http://sx75jru2m.hd-bkt.clouddn.com/fonts/XiangJiaoKuanMaoShuaLingGanTi-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

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

@keyframes sparkle {
    0% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.2; transform: scale(0.8); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
}

/* 鼠标跟随效果 */
.cursor-effect {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(255, 107, 149, 0.5);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: multiply;
    display: block; /* 确保元素显示 */
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: linear-gradient(45deg, #fff9fa 25%, #fff5f7 25%, #fff5f7 50%, #fff9fa 50%, #fff9fa 75%, #fff5f7 75%, #fff5f7 100%);
    background-size: 40px 40px;
    display: block; /* 确保body显示 */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
    display: block; /* 确保容器显示 */
}

.header {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid #ffb6c1;
}

.header:before, .header:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 182, 193, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.header:before {
    top: -50px;
    left: -50px;
}

.header:after {
    bottom: -50px;
    right: -50px;
}

.header h1 {
    color: #ff6b95;
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 1px;
}

.header p {
    color: #888;
    font-size: 1rem;
}

.content-box {
    max-width: 850px;
    margin: 20px auto;
    padding: 25px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.about-content {
    max-width: 900px;
    padding: 30px;
}

.section-padding {
    padding: 25px 30px;
}

.section-title {
    color: #ff6b81;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.sub-title {
    color: #ff80ab;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.card-style {
    background: #fff9fb;
    padding: 20px;
    border-radius: 10px;
    margin: 15px 0;
}

/* 产品分类样式 */
.product-categories {
    margin: 30px 0;
}

.product-categories h3 {
    color: #ff6b95;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.category-item {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(255, 107, 149, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 149, 0.2);
    border-color: #ffb6c1;
}

.category-icon {
    font-size: 2rem;
    margin-right: 15px;
    background-color: #fff0f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(255, 107, 149, 0.1);
}

.category-info h4 {
    color: #ff6b95;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.category-info p {
    color: #888;
    font-size: 0.9rem;
}

/* 购买流程样式 */
.shopping-guide {
    margin: 30px 0;
}

.shopping-guide h3 {
    color: #ff6b95;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.step {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 15px rgba(255, 107, 149, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 149, 0.2);
    border-color: #ffb6c1;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 30px;
    height: 30px;
    background-color: #ff6b95;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(255, 107, 149, 0.3);
}

.step-content {
    margin-top: 10px;
}

.step-content h4 {
    color: #ff6b95;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-content p {
    color: #666;
    font-size: 0.9rem;
}

/* 介绍样式 */
.intro {
    background-color: #fff9fb;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(255, 107, 149, 0.1);
    border-left: 5px solid #ff6b95;
}

.intro p {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.intro p:last-child {
    margin-bottom: 0;
}

.nav-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b95;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 15px;
    background-color: #fff0f5;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-link:hover {
    background-color: #ff6b95;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 149, 0.3);
}

/* 页脚样式 */
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px 0;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 -5px 20px rgba(255, 105, 180, 0.1);
    position: relative;
    overflow: hidden;
    border: 2px solid #ffb6c1;
}

.footer:before, .footer:after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 182, 193, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.footer:before {
    top: -50px;
    left: -50px;
}

.footer:after {
    bottom: -50px;
    right: -50px;
}

.footer p {
    color: #888;
    margin-bottom: 15px;
}

.heart-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px 0;
    animation: pulse 1.5s infinite;
}

.heart-btn:hover {
    transform: scale(1.2);
}

.heart-counter {
    display: block;
    font-size: 1.2rem;
    color: #ff6b95;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 侧边栏样式 */
.side-links {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 10px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    border: 2px solid #FFB6C1;
    transition: all 0.3s ease;
}

.side-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #6A5ACD;
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(106, 90, 205, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
    border: 2px solid transparent;
    font-family: 'XiangJiaoKuanMao', sans-serif;
    font-size: 1rem;
}

.side-link:hover {
    transform: translateX(5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.3);
    border-color: #FFB6C1;
    background-color: #FFF0F5;
}

.side-link:hover .side-link-icon {
    transform: rotate(10deg) scale(1.2);
}

.side-link:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 182, 193, 0.2), transparent);
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.side-link-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.4rem;
    background-color: #FFF0F5;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(255, 105, 180, 0.2);
    transition: all 0.3s ease;
}

.side-link span {
    font-size: 0.95rem;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.side-link:hover span {
    color: #FF1493;
}

.popup {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    border: 2px solid #ffb6c1;
}

.popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #ff6b95;
}

.popup h2 {
    color: #ff6b95;
    margin-bottom: 15px;
}

.popup p {
    margin-bottom: 20px;
    color: #555;
}

.popup-btn {
    background-color: #ff6b95;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 3px 10px rgba(255, 107, 149, 0.3);
}

.popup-btn:hover {
    background-color: #ff4d7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 149, 0.4);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}



/* 浮动元素样式 */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: float 15s infinite ease-in-out;
    z-index: 0;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 80%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 90%;
    animation-duration: 20s;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    top: 80%;
    left: 60%;
    animation-duration: 22s;
    animation-delay: 6s;
}

/* 联系方式样式 */
.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff9fb;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 107, 149, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 149, 0.2);
    border-color: #ffb6c1;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #ff6b95;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-info h3 {
    color: #ff6b95;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info p {
    color: #666;
    font-size: 0.9rem;
}

/* 弹窗样式 */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

/* 页头背景样式 */
.header-overlay {
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 15px;
    margin: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-overlay h1 {
    color: #333;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.header-overlay p {
    color: #666;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* 汇率和天气合并布局 */
.rate-weather-combined {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.rate-weather-combined .exchange-rate-section,
.rate-weather-combined .weather-section {
    flex: 1;
    margin-bottom: 0;
}

/* 天气城市布局 */
.weather-cities {
    display: flex;
    gap: 15px;
}

.weather-cities .weather-container {
    flex: 1;
    text-align: center;
}

.weather-cities h4 {
    margin: 0 0 10px 0;
    color: #ff6b95;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .rate-weather-combined {
        flex-direction: column;
        gap: 15px;
    }
    
    .weather-cities {
        flex-direction: column;
        gap: 10px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 15px;
    }
    
    .news-item {
        min-height: 120px;
        padding: 15px;
    }
    
    .news-content h4 {
        font-size: 16px;
    }
    
    .news-content p {
        font-size: 13px;
    }
}

/* 新闻速递样式 */
.news-section {
    background: linear-gradient(135deg, #fff0f5, #ffe4e1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(255, 107, 149, 0.1);
    border: 2px solid rgba(255, 107, 149, 0.1);
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 149, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.news-section h2,
.news-section h3 {
    color: #ff1493;
    margin: 0;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(255, 20, 147, 0.3);
}

.more-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b95, #ffa8cc);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 149, 0.3);
    position: relative;
    overflow: hidden;
}

.more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.more-btn:hover::before {
    left: 100%;
}

.more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 149, 0.4);
}

.more-btn .arrow {
    transition: transform 0.3s ease;
    font-style: normal;
}

.more-btn:hover .arrow {
    transform: translateX(5px);
}

.news-footer {
    text-align: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.view-all-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff1493, #ff6b95, #ffa8cc);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 20, 147, 0.3);
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.view-all-btn:hover::before {
    transform: translateX(100%);
}

.view-all-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 20, 147, 0.4);
    animation-play-state: paused;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.view-all-btn:hover .btn-shine {
    left: 100%;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 100%;
}

.news-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #ffe4e1;
    cursor: pointer;
    min-height: 150px;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.4);
}

.news-icon {
    font-size: 32px;
    margin-bottom: 10px;
    animation: bounce 2s infinite;
    align-self: flex-start;
}

.news-content {
    width: 100%;
    margin-top: 10px;
}

.news-content h4 {
    color: #ff1493;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    line-height: 1.3;
}

.news-content p {
    color: #333;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* 汇率模块样式 */
.exchange-rate-section {
    background: linear-gradient(135deg, #e6f3ff, #f0f8ff);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(135, 206, 250, 0.3);
    border: 2px solid #87ceeb;
}

.exchange-rate-section h3 {
    text-align: center;
    color: #4169e1;
    font-size: 24px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(65, 105, 225, 0.3);
}

.rate-container {
    text-align: center;
}

.rate-date {
    font-size: 18px;
    color: #4169e1;
    margin-bottom: 20px;
    font-weight: bold;
}

.rate-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.rate-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(135, 206, 250, 0.2);
    transition: transform 0.3s ease;
    border: 1px solid #e6f3ff;
    min-width: 150px;
}

.rate-item:hover {
    transform: scale(1.05);
}

.rate-flag {
    font-size: 30px;
    margin-bottom: 10px;
}

.rate-currency {
    display: block;
    font-weight: bold;
    color: #4169e1;
    margin-bottom: 5px;
}

.rate-value {
    font-size: 18px;
    color: #333;
    font-weight: bold;
}

.rate-note {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

/* 天气模块样式 */
.weather-section {
    background: linear-gradient(135deg, #fff8dc, #ffefd5);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.weather-section h3 {
    text-align: center;
    color: #ff8c00;
    font-size: 24px;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(255, 140, 0, 0.3);
}

.weather-container {
    text-align: center;
}

.weather-info {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
    border: 1px solid #fff8dc;
    display: inline-block;
}

.weather-icon {
    font-size: 50px;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.weather-temp {
    font-size: 28px;
    font-weight: bold;
    color: #ff8c00;
    margin-bottom: 10px;
}

.weather-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}

.weather-date {
    font-size: 14px;
    color: #999;
}

/* 购买流程新样式 */
.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.step {
    background: white;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    border: 2px solid #ffb6c1;
    transition: transform 0.3s ease;
    min-width: 200px;
}

.step:hover {
    transform: translateY(-10px);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.arrow-cute {
    font-size: 30px;
    color: #ff69b4;
    animation: pulse 1.5s infinite;
    margin: 0 10px;
}

/* 活动专区样式 */
.activity-zone {
    background: linear-gradient(135deg, #ffe4e1, #fff0f5);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 2px solid #ffb6c1;
    box-shadow: 0 8px 25px rgba(255, 182, 193, 0.3);
    text-align: center;
}

.activity-title {
    font-size: 22px;
    color: #ff69b4;
    margin-bottom: 10px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(255, 105, 180, 0.3);
}

.activity-subtitle {
    font-size: 16px;
    color: #ff1493;
    margin-bottom: 20px;
    font-weight: 500;
}

.lucky-bags {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.bag-item {
    font-size: 30px;
    padding: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(255, 182, 193, 0.2);
    border: 2px solid #ffe4e1;
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.bag-item:hover {
    transform: scale(1.1);
}

.activity-desc {
    margin-bottom: 15px;
}

.activity-desc p {
    margin: 5px 0;
    color: #ff1493;
    font-size: 14px;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.cute-hearts {
    text-align: center;
    font-size: 18px;
    animation: sparkle 2s infinite;
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .arrow-cute {
        transform: rotate(90deg);
    }
    
    .cute-rate-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    /* 移动端侧边栏适配 */
    .side-links {
        position: fixed;
        bottom: 20px;
        left: 50%;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
        padding: 8px 12px;
        max-width: 90vw;
        width: auto;
        justify-content: center;
    }
    
    .side-link {
        font-size: 12px;
        padding: 8px 12px;
        margin: 0;
        min-width: auto;
        flex: 0 0 auto;
    }
    
    .side-link-icon {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
        margin-right: 5px;
    }
}