
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        
        .info-card {
            width: 100%;
            display: flex;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .info-card:hover {
            transform: translateY(-5px);
        }
        
        .date-section {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 25px;
            background: white;
            color: 000;
        }
        
        .day {
            font-size: 6rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .month-year {
            font-size: 1.2rem;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .weekday {
            font-size: 1rem;
            font-weight: 400;
            margin-top: 8px;
            opacity: 0.9;
        }
        
        .image-section {
            flex: 2;
            overflow: hidden;
        }
        
        .image-section img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-section:hover img {
            transform: scale(1.05);
        }
        
        .content-section {
            flex: 2;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .title {
            font-size: 1.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .description {
            color: #546e7a;
            font-size: 1rem;
            text-align: left;
            font-weight: 200;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .market-btn {
            display: inline-block;
            padding: 12px 25px;
            
            font-size: 1.2rem;
            color: 000;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .market-btn:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .info-card {
                width: 90%;
            }
        }
        
        @media (max-width: 768px) {
            .info-card {
                flex-direction: column;
                width: 85%;
            }
            
            .date-section {
                flex-direction: row;
                justify-content: space-around;
                padding: 15px;
            }
            
            .day {
                font-size: 2.5rem;
            }
            
            .image-section {
                order: -1;
                height: 250px;
            }
            
            .content-section {
                padding: 25px;
            }
        }
        
        @media (max-width: 576px) {
            .info-card {
                width: 95%;
            }
            
            .date-section {
                padding: 12px;
            }
            
            .day {
                font-size: 2rem;
            }
            
            .month-year {
                font-size: 1rem;
            }
            
            .title {
                font-size: 1.5rem;
            }
            
            .content-section {
                padding: 20px;
            }
        }
