/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    background: #f8f9fa;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmNWY3ZmEiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzAgMzBtLTAgMjBNMzAgMTBNMTAgMzBNNTAgMzBNMzAgMTBNMTAgMTBNNTAgMTBNMTAgNTBNNTAgNTBNMC41IDBoNTh2NThoLTU4eiIvPjwvZz48L2c+PC9zdmc+');
    background-size: 20px 20px, 20px 20px, 60px 60px;
    color: #333;
    line-height: 1.6;
    padding-bottom: 70px;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; 
    padding-top: 5px;
    padding-bottom:  5px;
    padding-left: 10px;
    padding-right: 10px;
}

/* 通用动画效果 */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 通用卡片样式 */
.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* 头部样式 */
.header {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 50%, #ffd700 100%);
    color: #333; 
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 0 0 20px 20px;
    margin-bottom: 10px;

    padding-top: 10px;
    padding-bottom:  0px;
    padding-left: 10px;
    padding-right: 10px;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #ff9a6b, #ffb347, #ffd700);
    border-radius: 0 0 10px 10px;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}

.logo h1 {
    font-size: 28px;
    color: #333;
    margin-bottom: 8px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.logo p {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.date-bar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

.date-bar:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.date-info {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.date-info p {
    font-size: 16px;
    color: #333;
    margin: 8px 0;
    font-weight: 500;
}

.announcement-info {
    flex: 2;
    min-width: 300px;
    padding: 10px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 10px;
}

.announcement-info h3 {
    color: #856404;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
}

.announcement-info p {
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.announcement-info .sponsor-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 5px;
}

.announcement-info .sponsor-link:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #f8b500 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.announcement {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 1px solid #ffeaa7;
    border-radius: 12px;
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.announcement:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.announcement h3 {
    color: #856404;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: bold;
    width: 100%;
}

.announcement p {
    color: #856404;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    width: 100%;
}

.sponsor-link {
    display: inline-block;
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-top: 5px;
}

.sponsor-link:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #f8b500 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* 导航栏样式 */
.desktop-nav {
    display: none;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
    z-index: 1000;
    border-radius: 20px 20px 0 0;
    margin: 0 15px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 12px;
}

.nav-item:hover {
    background: #fecfef;
    color: #333;
    transform: translateY(-3px);
}

.nav-item.active {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.nav-icon {
    font-size: 24px;
    margin-bottom: 4px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    transform: scale(1.2);
}

.nav-text {
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-text,
.nav-item.active .nav-text {
    transform: scale(1.1);
}

/* 许愿列表样式 */
.wishes-wrapper {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.wishes-container {
    padding: 20px;
}

/* 电脑端多列布局 */
@media (min-width: 769px) {
    .wishes-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding: 25px;
    }
    
    .wish-item {
        margin-bottom: 0;
    }
}

.wish-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    position: relative;
    overflow: hidden;
}

.wish-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.wish-link {
    text-decoration: none;
    color: #333;
    display: block;
    transition: color 0.3s ease;
}

.wish-link:hover {
    text-decoration: none;
    color: #ff6b00;
}

.wish-header {
    margin-bottom: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.wish-id {
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
    padding: 2px 8px;
    border-radius: 10px;
}

.wish-category {
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.wish-type {
    font-size: 12px;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 500;
}

.wish-name {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.wish-meta {
    font-size: 13px;
    color: #999;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.wish-content {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wish-footer {
    font-size: 13px;
    color: #999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wish-time {
    font-size: 12px;
}

.wish-likes {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.wish-likes:hover {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #fff;
    transform: scale(1.05);
}

.like-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.wish-likes:hover .like-icon {
    transform: scale(1.2);
}

.like-count {
    font-weight: 500;
    transition: transform 0.3s ease;
}

.wish-likes:hover .like-count {
    transform: scale(1.1);
}

/* 许愿样式 */
.wish-item.style1 { background: #fff9e6; border-left: 4px solid #f8b500; }
.wish-item.style2 { background: #e6f7ff; border-left: 4px solid #1890ff; }
.wish-item.style3 { background: #f6ffed; border-left: 4px solid #52c41a; }
.wish-item.style4 { background: #fff1f0; border-left: 4px solid #ff4d4f; }
.wish-item.style5 { background: #f9f0ff; border-left: 4px solid #722ed1; }
.wish-item.style6 { background: #e8f5ff; border-left: 4px solid #69c0ff; }
.wish-item.style7 { background: #f0f5ff; border-left: 4px solid #40a9ff; }

/* 分页样式 */
.pagination {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
}

.pagination a {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 8px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pagination a:hover {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #fff;
    border-color: #ff9a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pagination .current {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #fff;
    border-color: #ff9a6b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.pagination a:first-child,
.pagination a:last-child {
    font-weight: bold;
    background: #f8f9fa;
}

.pagination a:first-child:hover,
.pagination a:last-child:hover {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #fff;
}

/* 确保当前页样式优先于首页和末页样式 */
.pagination a.current,
.pagination a.current:hover {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%) !important;
    color: #fff !important;
    border-color: #ff9a6b !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/* 许愿表单样式 */
.wish-form {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 25px;
    margin: 25px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wish-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.form-section {
    margin-bottom: 25px;
}

.form-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff9a6b;
    font-weight: bold;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff9a6b;
    box-shadow: 0 0 0 3px rgba(255, 154, 107, 0.2);
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group .radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group .radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-group .radio-item:hover {
    background: #ffe8cc;
    transform: translateY(-2px);
}

.form-group .radio-item input[type="radio"] {
    margin: 0;
    accent-color: #ff9a6b;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.category-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.category-item:hover {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    border-color: #ff9a6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.category-item.active {
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    border-color: #ff9a6b;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.submit-btn,
.sponsor-btn {
    display: inline-block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff9a6b 0%, #ffb347 100%);
    color: #333;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.submit-btn:hover,
.sponsor-btn:hover {
    background: linear-gradient(135deg, #ff6b00 0%, #f8b500 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.submit-btn:active,
.sponsor-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.message {
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-align: center;
    font-size: 14px;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* 新闻列表样式 */
.news-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 30px 0;
}

.news-item {
    padding: 15px;
    border-bottom: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    display: block;
    transition: background 0.2s;
}

.news-item:hover {
    background: #f9f9f9;
}

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

.news-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.news-content {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-meta {
    font-size: 12px;
    color: #999;
    display: flex;
    gap: 15px;
}

/* 新闻详情页样式 */
.news-detail {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    margin: 20px 0;
}

.news-header {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.news-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 14px;
    color: #999;
    display: flex;
    gap: 20px;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

.news-body p {
    margin-bottom: 15px;
}

.related-news {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.related-news h3 {
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f8b500;
}

/* 赞助页面样式 */
.sponsor-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 25px 0;
}

.sponsor-section {
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.sponsor-section h3 {
    color: #333;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #ff9a6b;
    font-weight: bold;
    text-align: center;
}

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

.sponsor-item {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sponsor-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.sponsor-name {
    font-weight: bold;
    color: #333;
    font-size: 16px;
    background: #ffe8cc;
    padding: 5px 12px;
    border-radius: 20px;
}

.sponsor-amount {
    font-size: 20px;
    font-weight: bold;
    color: #ff6b00;
    background: #fff3cd;
    padding: 5px 15px;
    border-radius: 20px;
}

.sponsor-method {
    color: #666;
    font-size: 14px;
    background: #e6f7ff;
    padding: 4px 12px;
    border-radius: 15px;
}

.sponsor-message {
    color: #333;
    font-size: 14px;
    font-style: italic;
    background: #f6ffed;
    padding: 6px 15px;
    border-radius: 20px;
    flex: 1;
    min-width: 200px;
}

.sponsor-time {
    color: #999;
    font-size: 12px;
    margin-left: auto;
    background: #f8f9fa;
    padding: 3px 10px;
    border-radius: 10px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.payment-method {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

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

.payment-qr {
    width: 150px;
    height: 150px;
    margin: 15px auto;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-qr img {
    width: 100%;
    height: 100%;
}

.payment-info {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.sponsor-form {
    margin-top: 30px;
}

/* 响应式设计 */
@media (min-width: 769px) {
    body {
        padding-bottom: 70px;
    }
    
    .header {
        padding: 20px 0;
        position: relative;
    }
    
    .header::before {
        height: 10px;
    }
    
    .container {
        width: 90%;
        max-width: 1200px;
        padding: 20px;
    }
    
    .logo h1 {
        font-size: 36px;
    }
    
    .logo p {
        font-size: 14px;
    }
    
    /* 隐藏电脑端顶部导航 */
    .desktop-nav {
        display: none;
    }
    
    .date-bar p {
        font-size: 16px;
    }
    
    .announcement h3 {
        font-size: 16px;
    }
    
    .announcement p {
        font-size: 14px;
    }
    
    .wish-content {
        font-size: 16px;
    }
    
    /* 电脑端显示底部导航 */
    .bottom-nav {
        display: flex;
        padding: 10px 0;
    }
    
    .nav-item {
        font-size: 12px;
    }
    
    .nav-icon {
        font-size: 24px;
    }
    
    .wish-form {
        padding: 30px;
        margin: 30px 0;
    }
    
    .form-section h3 {
        font-size: 18px;
    }
    
    .category-item {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .submit-btn,
    .sponsor-btn {
        width: auto;
        padding: 15px 30px;
    }
    
    .sponsor-btn {
        margin-right: 20px;
        margin-bottom: 0;
    }
    
    .news-container {
        padding: 30px;
    }
    
    .news-item {
        padding: 20px;
    }
    
    .news-title {
        font-size: 20px;
    }
    
    .news-content {
        font-size: 16px;
    }
    
    .search-form input[type="text"] {
        width: 300px;
    }
    
    .sponsor-container {
        padding: 30px;
        margin: 30px 0;
    }
    
    .sponsor-section h3 {
        font-size: 18px;
    }
    
    .payment-methods {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .payment-method {
        flex: 1;
        margin: 0 10px;
    }
    
    .payment-qr {
        width: 200px;
        height: 200px;
    }
    
    .submit-btn {
        width: auto;
        padding: 15px 30px;
    }
    
    .wish-detail {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .form-group .radio-group {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .categories {
        justify-content: center;
    }
    
    /* 手机版头部样式 */
    .header {
        padding: 10px 0;
    }
    
    .logo img {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }
    
    .logo h1 {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .logo p {
        font-size: 12px;
    }
    
    /* 手机版日期和公告布局 */
    .date-bar {
        flex-direction: column;
        padding: 10px;
        margin: 10px 0;
    }
    
    .date-info,
    .announcement-info {
        min-width: 100%;
        padding: 8px;
    }
    
    .date-info p {
        font-size: 12px;
        margin: 4px 0;
    }
    
    .announcement-info h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .announcement-info p {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .announcement-info .sponsor-link {
        padding: 6px 16px;
        font-size: 12px;
    }
    
    /* 手机版网格布局 */
    .wishes-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 10px;
    }
    
    .wish-item {
        margin-bottom: 0;
        padding: 12px;
        border-radius: 8px;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .wish-name {
        font-size: 14px;
        margin-bottom: 8px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    
    .wish-content {
        display: none;
    }
    
    .wish-footer {
        display: none;
    }
    
    .wish-header {
        margin-bottom: 8px;
        gap: 4px;
    }
    
    .wish-id {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .wish-category {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .wish-type {
        font-size: 10px;
        padding: 2px 6px;
    }
    
    .wish-likes {
        position: static;
        align-self: flex-end;
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .like-icon {
        font-size: 14px;
    }
    
    .wish-meta {
        display: none;
    }
    
    .news-content {
        -webkit-line-clamp: 2;
    }
}