* {
    margin: 0;
    padding: 0;
    font-family: "微软雅黑";
}

.content {
    width: 90%;
    max-width: 1100px;
    margin: 24px auto 48px auto;
}

.content .mainTitle {
    height: auto;
    padding: 14px 16px;
    background: linear-gradient(90deg, #3A434C 0%, #4A5562 100%);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

table tr {
    height: 50px;
    border: 1px solid #EFEFEF;
}

table tr td {
    width: 16.66%;
    padding: 8px 12px;
}

table tr td input {
    width: 100%;
    height: 30px;
    text-align: center;
    border: 1px solid #D7D7D7;
    border-radius: 6px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #FAFAFA;
}
table tr td lable {
    display: inline-block;
    width: 50%;
    height: 30px;
    text-align: center;
    border: 1px solid #A9A9A9;
}
table tr td label {
    display: inline-block;
    min-width: 120px;
    padding: 4px 8px;
    height: 30px;
    line-height: 22px;
    text-align: center;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    background: #F7F7F7;
    color: #333;
}

/* Table header styling (first row) */
table tr:first-child td {
    background: #F3F5F7;
    color: #2C3E50;
    font-weight: 600;
}

/* Zebra striping for data rows */
table tr:nth-child(odd):not(:first-child) {
    background: #FBFBFB;
}

/* Hover effect */
table tr:not(:first-child):hover {
    background: #F1F7FF;
}

/* Input focus */
table tr td input:focus {
    border-color: #6999E5;
    box-shadow: 0 0 0 3px rgba(105,153,229,0.2);
    background: #fff;
}

/* Disabled inputs */
table tr td input:disabled {
    background: #F2F2F2;
    color: #AAA;
}
.content .con {
    height: 50px;
    margin-top: 20px;
    border-bottom: 1px solid #EDEDED;
}

.content .con button {
    text-align: center;
    min-width: 140px;
    height: 38px;
    background: #6999E5;
    border: 1px solid #5C8BDC;
    color: white;
    float: right;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.content .con button:hover {
    background: #5C8BDC;
}

.content .con button:active {
    transform: translateY(1px);
}

.content .conPie{
    margin-top: 24px;
}
.content #calSize {
    margin-top: 16px;
    font-size: 16px;
    color: #2C3E50;
}
.content #conMain{
    margin: 20px auto 0 auto;
    width: 100%;
    height: 420px;
}

/* Language Switch Styles */
#langSwitch {
    display: inline-flex;
    gap: 8px;
}

#langSwitch button {
    height: 30px;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.12);
    color: #fff;
    cursor: pointer;
}

#langSwitch button.active {
    background: #fff;
    color: #3A434C;
}