        body {
            font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
            background-color: #fafafa;
        }
        .circle {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .circle-outline {
            border: 2px solid #e8c38d;
            color: #333;
        }
        .circle-filled {
            background-color: #c89b6d;
            color: white;
        }
        .half-circle {
            width: 160px;
            height: 160px;
            border-radius: 0 999px 999px 0;
            background-size: cover;
            background-position: center;
        }
        .title-text {
            color: #333;
        }
        .subtitle-text {
            color: #666;
        }
        .check-item {
            color: #444;
        }
        .icon-color {
            color: #2563EB;
        }
        .icon {
            width: 24px;
            height: 24px;
        }
        .check-icon {
            width: 20px;
            height: 20px;
        }
        .fund-section:hover .circle:nth-child(1) {
            transform: translateY(-10px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .fund-section:hover .circle:nth-child(2) {
            transform: translateY(10px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .fund-section:hover .circle:nth-child(3) {
            transform: translateY(-10px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .percent-number {
            opacity: 0;
            animation: fadeIn 0.5s ease-in forwards;
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .animate-delay-1 {
            animation-delay: 0.3s;
        }
        .animate-delay-2 {
            animation-delay: 0.6s;
        }
        .animate-delay-3 {
            animation-delay: 0.9s;
        }
