
        :root {
            --primary: #3B82F6;
            --primary-dark: #2563eb;
            --primary-light: #eff6ff;
            --secondary: #10B981;
            --neutral: #64748b;
            --neutral-light: #f1f5f9;
            --neutral-dark: #334155;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
            --radius: 8px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }


body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    background-color: #ffffff;;
    -webkit-text-size-adjust: 100%;
}

.container {
    background-color: #ffffff;
    max-width: 1180px;
    margin: 0px auto;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-bottom: 10px;
    overflow-x: auto;
    margin-top: 25px;
}


        header {
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.8);
            padding: 20px 0px;
            position: sticky;
            top: 0;
            z-index: 5;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0px;
            box-sizing: border-box;
        }
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s;
        }
        .logo:hover {
            transform: translateY(-2px);
        }
        .logo i {
            color: #3B82F6;
            font-size: 28px;
        }
        .logo h1 {
            font-size: 22px;
            font-weight: 600;
            color: #3B82F6;
            margin: 0;
            letter-spacing: 0.5px;
        }
        .logo a {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            margin: 0;
            padding: 0;
        }
        nav a {
            color: #6B7280;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 15px;
        }

        nav a:hover {
            color: #3B82F6;
        }       

        .nav-link {
            display: flex;
            align-items: center;
            color: #3B82F6;
            padding: 0px;
            margin: 5px;
            border-radius: 5px;
            text-decoration: none;
            transition: transform 0.3s;
            font-size: 15px;
        }
  
        .nav-link:hover {
            transform: translateY(-2px);
        }

h1 {
    color: #3B82F6;
    text-align: center;
    font-size: 1.6rem;
    margin: 10px 0;
}
h2 {
    color: #6B7280;
    text-align: center;
    font-size: 1.1rem;
    margin: 5px 0;
}

.project-info {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
}
.info-item {
    margin-bottom: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.info-label {
    font-weight: bold;
    width: 100%;
    font-size: 15.5px;
    margin-bottom: 5px;
}

.file-upload {
    margin: 15px 10px;
    padding: 10px;
    font-size: 15px;
    border: 2px dashed #ddd;
    border-radius: 5px;
    text-align: center;
    background-color: #ffffff;
}

.btn {
    background-color: #3B82F6;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
    margin-top: 10px;
}
.btn:hover {
    background-color: #2563eb;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0px;
    font-size: 15px;
}
th, td {
    border: 1px solid #ddd;
    padding: 5px 10px;
    text-align: center;
    word-break: break-word;
}
th {
    background-color: #3B82F6;
    color: white;
    font-size: 15px;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
.results {
    margin-top: 20px;
    margin: 25px 10px;
}
.result-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 8px;
    padding: 5px;
    background-color: #e8f4fc;
    border-radius: 5px;
}
.result-label {
    font-weight: bold;
    width: 250px;
    font-size: 15px;
    margin-bottom: 3px;
}
.error {
    color: #e74c3c;
    font-weight: bold;
    font-size: 15px;
}
.success {
    color: #27ae60;
    font-weight: bold;
}
input[type="text"], input[type="number"] {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    max-width: 100%;
}
.formula-note {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
    width: 100%;
}
.radio-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 5px;
}
.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
}

        footer {
            padding: 23px 0;
            margin-top: 25px;
            color: #333;
            background-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.0);
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            padding: 0 20px;
            box-sizing: border-box;
            font-size: 13px;
        }
        .footer-container p {
            margin: 4px 0;
        }
        .footer-container .contact {
            font-size: 13px;
            color: #6B7280;
        }

/* 移动端表格滚动 */
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .info-label {
        width: 100%;
        margin-bottom: 0;
    }
    .result-label {
        width: 100%;
    }
    input[type="text"], input[type="number"] {
        width: 100%;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.0rem;
    }
    .container {
        padding: 10px;
    }
    th, td {
        padding: 12px;
    }
}