body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin-top: 20px;
    margin-bottom: 20px;

}
.left-grout{
    display: flex;
    justify-content: space-between;
    margin: 0 auto 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);


}
.right-grout{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.left-section {
    flex: 4;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.form-table {
    display: flow;
    align-items: center;
}
.form-group {
    display: flex;
    align-items: center;
}

label {
    flex: 1;
    min-width: 50px; /* 确保标签有足够的空间 */
    margin-right: 10px;
    font-weight: bold;
}

.input-wrapper {
    flex: 2;
}

input[type="number"] {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 80%;
    padding: 10px 5px 10px 5px;
    margin-top: 15px;
    margin-left: 5px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    text-align: center; /* 确保按钮内的文字居中 */
}
#input5{
    width: 50%;
}
button:hover {
    background-color: #0056b3;
}

/* 行样式 */
.row {
    display: flex;
    background-color: #fff;

}
/* 单列行样式 */
.single-column .cell {
    width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
}
.nested-table {
    width: 100%; /* or specify a fixed width if needed */
    margin: 0 auto; /* center the nested table horizontally */
}
.nested-table th, .nested-table td {
    border: 1px solid #ccc; /* slightly different border color for nested tables */
    padding: 4px;
}

.zhu{
    background-color: rgb(0,0,0);
    color: white;
    padding: 5px;

}
.zhu2{
    color: red ;
    padding: 5px;

}
.hidden {
       display: none;
}