/* Css for , Version=1774246037 */
 
        body {
            /* 1. 消除默认边距 */
            margin: 0;
            padding: 0;
            /* **关键修改：将背景色改为白色** */
            background-color: #ffffff; 
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            /* 2. 移除居中设置，确保卡片可以左上角对齐 */
            display: block; 
            min-height: auto; 
        }
        .silane-card {
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
            padding: 15px 25px; 
            width: 90%; 
            max-width: 500px;
            box-sizing: border-box;
            /* 确保卡片本身没有外边距，紧贴左上角 */
            margin: 0; 
            border: 2px solid #007bff; 
        }
        .info-table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 10px; 
        }
        .info-table td {
            padding: 5px 0; 
            border-bottom: 1px solid #e9ecef;
            font-size: 0.9em; 
        }
        .info-table td:first-child {
            font-weight: 600; 
            color: #343a40; 
            width: 40%; 
        }
        .info-table tr:last-child td {
            border-bottom: none;
        }
        /* 警告区域的样式 */
        .warning-box {
            background-color: #fff3f3; 
            border: 1px solid #ff4d4d;
            border-radius: 5px;
            padding: 8px; 
            text-align: center;
        }
        /* 闪烁效果的 CSS 动画 */
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.2; }
        }
        .blink-text {
            color: #ff0000; 
            font-weight: bold;
            font-size: 0.95em; 
            animation: blink 0.8s step-start 0s infinite; 
            margin: 0; 
        }
        /* 下角标样式 */
        sub {
            vertical-align: sub;
            font-size: 70%;
            line-height: 0; 
        }
    