.skeleton-card {
             
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            display: flex;
            align-items: flex-start;
            position: relative;
            overflow: hidden;
        }

        .skeleton-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.4),
                transparent
            );
            animation: shimmer 1.5s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .skeleton-element {
            background: #e2e8f0;
            border-radius: 6px;
            position: relative;
            overflow: hidden;
        }

        .skeleton-element::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.6),
                transparent
            );
            animation: shimmer 1.5s infinite;
        }

        .ellipse1 {
            margin-top: 7px;
            border-radius: 50%;
            background: #e2e8f0;
            width: 94px;
            height: 94px;
            flex-shrink: 0;
        }

        .auto-wrapper-2 {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
            margin-left: 27px;
            height: 100%;
        }

        .auto-wrapper {
            display: flex;
            align-items: flex-start;
            width: 100%;
            justify-content: space-between;
            margin-bottom: 11px;
        }

        .rectangle2 {
            margin-top: 7px;
            width: 135px;
            height: 36px;
        }

        .rectangle5 {
            width: 25px;
            height: 25px;
        }

        .rectangle3 {
            width: 116px;
            height: 21px;
            margin-bottom: 14px;
        }

        .rectangle4 {
            width: 397px;
            height: 25px;
            margin-bottom: 15px;
        }

        .rectangle8 {
            width: 483px;
            height: 57px;
        }

        .rectangle6 {
            margin-left: 9px;
            width: 25px;
            height: 25px;
            flex-shrink: 0;
        }

        .right-buttons {
            display: flex;
            flex-direction: column;
            gap: 5px;
            margin-left: 9px;
        }

        /* 响应式调整 */
        @media (max-width: 768px) {
            .skeleton-card {
                width: 90%;
                max-width: 730px;
                height: auto;
                min-height: 226px;
                padding: 16px;
            }
            
            .rectangle4,
            .rectangle8 {
                max-width: 100%;
            }
        }