
	
	    .site-header {
            background: linear-gradient(135deg, #ff7302, #e06600);
            color: white;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .site-navbar {
            background-color: #343a40;
            overflow: hidden;
        }
        .site-navbar a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 16px;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .site-navbar a:hover {
            background-color: #495057;
        }
        .main-content {
            padding: 20px;
            max-width: 960px;
            margin: 20px auto;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .main-content h2 {
             color: #ff7302;
        }
   

        /* 合格投资者弹窗特定样式 - 使用 px 单位 */
        .jiayitc-wrapper {
            /* 字体大小已在 body 设置，此处无需重复 */
        }

        .jiayitc-modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            background-color: rgba(0,0,0,0.6);
            backdrop-filter: blur(2px);
        }

        .jiayitc-modal-content {
            background-color: #fefefe;
            margin: 5vh auto;
            border: none;
            border-radius: 12px;
            width: 92%;
            max-width: 850px;
            max-height: 90vh;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            animation: jiayitc-pop-in 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        @keyframes jiayitc-pop-in {
            0% { transform: scale(0.8); opacity: 0; }
            100% { transform: scale(1); opacity: 1; }
        }

        .jiayitc-modal-header {
             padding: 20px;
             background: #9f7b35;
             color: white;
             border-radius: 12px 12px 0 0;    text-align: center;
        }

        .jiayitc-modal-header h2 {
            margin: 0;
            font-size: 22px; /* 1.4rem -> 22.4px */
            text-align: center;    color: #ffffff;
        }

        .jiayitc-modal-body {
            padding: 20px;
            max-height: calc(90vh - 180px);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            font-size: 15px; /* 0.95rem -> 15.2px */
        }

        .jiayitc-modal-body p, .jiayitc-modal-body ol {
            margin: 0 0 15px 0;
        }
        .jiayitc-modal-body li {
            margin-bottom: 8px;
        }


        .jiayitc-modal-footer {
            padding: 20px;
            background-color: #f8f9fa;
            text-align: center;
            border-radius: 0 0 12px 12px;
            border-top: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .jiayitc-confirmation-label {
            display: flex;
            align-items: flex-start;
            cursor: pointer;
            font-size: 16px; /* 1rem */
            color: #495057;
            margin-bottom: 20px;
            line-height: 1.5;
        }

    
	
	
	        /* 自定义复选框 - 替换为对号 */
        .jiayitc-confirmation-label input[type="radio"] {
            appearance: none; /* 移除所有浏览器默认样式 */
            -webkit-appearance: none;
            width: 18px; /* 自定义宽度 */
            height: 18px; /* 自定义高度 */
            border: 2px solid #ddd; /* 自定义边框 */
            border-radius: 4px; /* 可选：圆角边框 */
            margin-top: 5px;
            margin-right: 12px;
            cursor: pointer;
            position: relative; /* 为伪元素定位 */
            flex-shrink: 0; /* 防止在 flex 布局中被压缩 */
            /* 移除了 accent-color，因为不再使用默认样式 */
        }

        /* 未选中状态的视觉效果 (可选，也可以只用上面的 border) */
        .jiayitc-confirmation-label input[type="radio"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: transparent;
            border-radius: 4px;
            transition: background-color 0.2s, border-color 0.2s;
        }

        /* 选中状态 - 绘制对号 */
        .jiayitc-confirmation-label input[type="radio"]:checked::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 14px; /* 对号大小 */
            color: #ff7302; /* 对号颜色，与主题色一致 */
            line-height: 1;
        }

        /* 选中时的边框和背景变化 (可选) */
        .jiayitc-confirmation-label input[type="radio"]:checked::before {
            border-color: #ff7302;
            background-color: rgba(255, 115, 2, 0.1); /* 浅橙色背景 */
        }

        /* 悬停效果 */
        .jiayitc-confirmation-label input[type="radio"]:hover::before {
            border-color: #ff7302;
        }
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	

        /* 按钮容器 */
        .jiayitc-button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* 通用按钮样式 */
        .jiayitc-action-button {
            padding: 14px 35px;
            border: none;
            border-radius: 30px;
            font-size: 17px; /* 1.05rem -> 16.8px */
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            min-width: 120px;
        }

        /* 确认按钮 */
        .jiayitc-confirm-button {
               background: #9f7b35;
    color: white;
    cursor: not-allowed;
        }

        .jiayitc-confirm-button.jiayitc-enabled {
            opacity: 1;
            cursor: pointer;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }

        .jiayitc-confirm-button.jiayitc-enabled:hover {
            background: linear-gradient(to right, #e06600, #cc5a00);
        }
        .jiayitc-confirm-button.jiayitc-enabled:active {
             transform: translateY(0);
             box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        /* 放弃按钮 */
        .jiayitc-cancel-button {
            background-color: #cb9d45;
            color: white;
            opacity: 0.8;
        }

        .jiayitc-cancel-button:hover {
            background-color: #5a6268;
            opacity: 1;
        }
        .jiayitc-cancel-button:active {
             transform: translateY(0);
             box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }


        .jiayitc-footer-note {
            font-size: 14px; /* 0.85rem -> 13.6px */
            color: #6c757d;
            text-align: center;
            margin-top: 10px;
        }

        /* 响应式设计 - 针对小屏幕 - 仍使用 px */
        @media (max-width: 768px) {
            .jiayitc-modal-content {
                width: 95%;
                margin: 3vh auto;
                border-radius: 10px;
            }
            .jiayitc-modal-header, .jiayitc-modal-footer {
                border-radius: 10px 10px 0 0;
            }
            .jiayitc-modal-footer {
                border-radius: 0 0 10px 10px;
            }
            .jiayitc-modal-header h2 {
                font-size: 19px; /* 1.2rem */
            }
            .jiayitc-modal-body {
                padding: 15px;
                font-size: 14px; /* 0.9rem */
                max-height: calc(90vh - 160px);
            }
            .jiayitc-confirmation-label {
                font-size: 15px; /* 0.95rem */
            }
            .jiayitc-action-button {
                padding: 12px 30px;
                font-size: 16px; /* 1rem */
                min-width: 100px;
            }
            .jiayitc-button-container {
                 gap: 15px;
            }
            .site-navbar a {
                padding: 12px 10px;
                font-size: 14px; /* 0.9rem */
            }
        }

        @media (max-width: 480px) {
             .jiayitc-modal-content {
                width: 97%;
                margin: 2vh auto;
             }
             .jiayitc-modal-header h2 {
                font-size: 18px; /* 1.1rem */
             }
             .jiayitc-modal-body {
                padding: 12px;
                font-size: 14px; /* 0.85rem -> 约 14px */
                max-height: calc(90vh - 150px);
             }
             .jiayitc-confirmation-label {
                font-size: 14px; /* 0.9rem -> 约 14px */

             }
             .jiayitc-confirmation-label input {
                 margin-right: 10px;
             }
             .jiayitc-action-button {
                padding: 10px 25px;
                font-size: 15px; /* 0.95rem */
                min-width: 90px;
             }
             .jiayitc-button-container {
                 flex-direction: column;
                 gap: 10px;
             }
        }

		 
