        /* 模态框样式 */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            padding: 20px;
        }
        
        .modal-container {
            background: white;
            border-radius: 15px!important;
            width: 100%;
            max-width: 700px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
            animation: modalFadeIn 0.5s ease;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-header {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }
        
        .modal-header h2 {
            font-size: 1.8rem;
            color: #eee;
            font-weight: 800;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            
        }
        
        .modal-content {
            padding: 1.5rem;
            max-height: 50vh;
            overflow-y: auto;
        }
        
        .modal-content h3 {
            color: #2c3e50;
            margin: 1.2rem 0 0.5rem;
        }
        
        .modal-content p {
            margin-bottom: 1rem;
            color: #555;
        }
        
        .modal-footer {
            padding: 1.2rem 1.5rem;
            background: #f8f9fa;
            text-align: center;
            border-top: 1px solid #eee;
        }
        
        .agree-button {
            background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
            color: white;
            border: none;
            padding: 12px 35px;
            font-size: 1.1rem;
            border-radius: 50px!important;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(38, 117, 252, 0.3);
        }
        
        .agree-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(38, 117, 252, 0.4);
        }
        
        .agree-button:active {
            transform: translateY(0);
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        .highlight {
            animation: pulse 2s infinite;
            padding: 0 5px;
            text-align: center;
        }
.highlight p {
            font-weight: bold; 
            text-decoration: underline; 
            color: red; 
            font-size: 16px;

        }




        .container12 {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            padding-bottom: 20px;
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: #2c3e50;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
        }
        
        .gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .card {
            flex: 0 0 calc(33.333% - 25px);
            max-width: 350px;
            border-radius: 16px!important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
            background: white;
        }
        
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-img {
            height: 500px;
            overflow: hidden;
        }
        
        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-img img {
            transform: scale(1.1);
        }
        
        /* 响应式设计 */
        @media (max-width: 992px) {
            .card {
                flex: 0 0 calc(50% - 25px);
                max-width: 100%;
            }
        }
        
        @media (max-width: 576px) {
            .card {
                flex: 0 0 100%;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
/*基金表格样式statr*/
        .container-jijin {
            max-width: 900px;
            width: 100%;
            background: white;
            border-radius: 12px!important;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.09);
            padding: 30px;
            margin: 0 auto;
        }
        

        
        .description {
            text-align: center;
            color: #7f8c8d;
            margin-bottom: 30px;
            font-size: 1.1em;
            line-height: 1.5;
        }
        
        .table-container {
            overflow-x: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }
        
        table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0 3px;
        }
        
        th {
            background-color: #1e66af;
            color: white;
            text-align: left;
            padding: 16px 20px;
            font-weight: 500;
            border: none;
        }
        
        th:first-child {
            border-top-left-radius: 6px;
        }
        
        th:last-child {
            border-top-right-radius: 6px;
        }
        
        td {
            padding: 16px 20px;
            vertical-align: top;
            border: none;
        }
        
        tr td:first-child {
            background-color: #e2e2e3;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
            border-right: 1px solid #d0d0d0;
            font-weight: 500;
        }
        
        tr td:last-child {
            background-color: #ffffff;
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
            border-left: 1px solid #f0f0f0;
            border-right: 1px solid #f0f0f0;
            box-shadow: inset 0 0 0 1px #f0f0f0;
        }
        
        tr {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        
        tr:hover {
            transform: translateY(-1px);
        }
        
        tr:hover td:first-child {
            background-color: #d6d6d7;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07);
        }
        
        tr:hover td:last-child {
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.07), inset 0 0 0 1px #e8e8e8;
            background-color: #f9f9f9;
        }
        

        
        .highlight2 {
            background-color: #fff8e1;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 500;
        }

        /*基金表格样式End*/