
        /* 年度目标页面特定样式 */
        .page-header {
            position: relative;
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--washi-indigo) 0%, #2c5c7d 100%);
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('img/textures/washi-texture-light.png');
            background-size: cover;
            opacity: 0.1;
            mix-blend-mode: overlay;
        }
        
        .page-header-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 20px;
            background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L10,2 L20,0 L30,3 L40,1 L50,2 L60,0 L70,3 L80,1 L90,2 L100,0 L100,100 L0,100 Z' fill='%23f8f9fa'/%3E%3C/svg%3E");
            background-size: 100px 20px;
            background-repeat: repeat-x;
        }
        
        .goal-number {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .goal-number span {
            font-size: 4rem;
            font-weight: 800;
            color: rgba(var(--primary-rgb), 0.1);
            line-height: 1;
        }
        
        .goal-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }
        
        .goal-feature-icon {
            flex-shrink: 0;
            width: 45px;
            height: 45px;
            background-color: rgba(var(--primary-rgb), 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
            color: var(--primary-color);
        }
        
        .goal-feature-content h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .goal-feature-content p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 0;
        }
        
        .goal-timeline {
            display: flex;
            justify-content: space-between;
        }
        
        .goal-timeline-item {
            text-align: center;
            position: relative;
        }
        
        .goal-timeline-date {
            display: block;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary-color);
        }
        
        .goal-timeline-event {
            display: block;
            font-size: 0.9rem;
            color: #666;
        }
        
        .goal-stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            line-height: 1.2;
        }
        
        .goal-stat-label {
            font-size: 0.85rem;
            color: #666;
        }
        
        .goal-partner {
            background-color: rgba(var(--primary-rgb), 0.05);
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
        }
        
        .goal-milestone {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .goal-milestone-check {
            flex-shrink: 0;
            margin-right: 1rem;
            color: var(--washi-green);
            font-size: 1.2rem;
        }
        
        .goal-milestone-text {
            font-size: 0.9rem;
        }
        
        .participate-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(var(--primary-rgb), 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            font-size: 1.8rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .hover-card:hover .participate-icon {
            transform: scale(1.1);
            background-color: var(--primary-color);
            color: white;
        }
        
        /* 响应式调整 */
        @media (max-width: 991.98px) {
            .goal-timeline {
                flex-direction: column;
                gap: 1rem;
            }
            
            .goal-timeline-item {
                text-align: left;
                display: flex;
                align-items: center;
            }
            
            .goal-timeline-date {
                margin-right: 1rem;
                min-width: 100px;
            }
        }
        
        @media (max-width: 767.98px) {
            .page-header {
                padding: 4rem 0;
            }
            
            .goal-number span {
                font-size: 3rem;
            }
        }
    

