.main-content {
    padding: 20px 80px;
    position: relative;
}

.main-content .welcome{
    position: absolute;
    top: 20px;
    right: 80px;
    width: 150px;
}

/* 主标题样式 */
.main-content h1 {
    font-size: 22px;
    font-weight: 600;
    font-family: var(--font-family);
    position: relative;
    text-align: center;
    margin: 15px;
}

.main-content h2 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
}

.main-content .links {
    color: var(--primary-color);
    text-decoration: none;
}

.main-content .links:hover {
    text-decoration: underline;
}

.main-content p {
    font-family: var(--font-simple);
    line-height: 1.9;
    font-size: 14px;
}

.main-content ul.service {
    display: flex;
    gap: 20px;
    width: 100%;
}

.main-content ul.service li {
    width: calc(50% - 10px);
    background-color: var(--main-bg);
    border-radius: 12px;
    padding: 18px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-content ul.service li:hover {
    box-shadow: 0 4px 8px #e7e1fa;
    transform: translateY(-5px);
    background-color: #f9f7ff;
}

.main-content ul.service li h3 {
    font-size: 16px;
}

.main-content ul.service li h3 span{
    font-size: 15px;
    vertical-align: 1px;
}

.main-content ul.service li p {
    font-size: 13.5px;
    margin-top: 8px;
    color: #667;
    line-height: 2.2;
    margin-bottom: 0;
}

.main-content ul.advantage {
    display: flex;
    gap: 20px;
    width: 100%;
}

.main-content ul.advantage li {
    width: calc(25% - 15px);
    background-color: var(--main-bg);
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-content ul.advantage li:hover {
    box-shadow: 0 4px 8px #e7e1fa;
    transform: translateY(-5px);
    background-color: #f9f7ff;
}

.main-content ul.advantage li span {
    font-size: 25px;
}

.main-content ul.advantage li h3 {
    font-size: 17px;
    margin-top: 10px;
}

.main-content ul.advantage li p {
    font-size: 13px;
    margin-top: 8px;
    color: #797993;
}

/*表格*/
.table-container{
    border-radius: 8px;
    margin-bottom: 20px;
    border: solid 1px #eaeaea;
}

.table-container table tr:first-child {
    background-color: #f6f5ff !important;
}

.table-container table tr:not(:hover):nth-child(odd){
    background-color: #f9f7ff;
}

.table-container table th, .table-container table td {
    border: 1px solid #eaeaea;
    padding: 11px 15px;
    border-top-width: 0;
    border-left-width: 0;
}

.table-container table tr th:last-child,.table-container table tr td:last-child{
    border-right-width: 0;
}

.table-container table tr:last-child td{
    border-bottom-width: 0;
}

@media (max-width: 768px) {
    .main-content {
        padding: 12px;
    }

    .main-content ul {
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }

    .main-content ul li {
        width: calc(50% - 10px);
        margin-bottom: 0;
    }
}