.container {
    width: var(--content-width);
    margin: 0 auto;
}
html{
    min-width: 1200px;
}
.module-container {
    width: 1140px;
    background-color: #ffffff;
    border-radius: 10px;
    margin-top: 35px;
    padding: 44px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.module-title {
    font-size: 30px;
    font-weight: bold;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 55px;
}

.module-title::before {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #dcd9d9;
    position: absolute;
    left: -72px;
}

.module-title::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: #dcd9d9;
    position: absolute;
    right: -70px;
}

.module-type-title-active {
    color: #237bcd!important;
}

.module-more-button {
    display: inline-block;
    width: 160px;
    height: 40px;
    margin-top: 40px;
    border-radius: 20px;
    color: #FFFFFF;
    background-color: #237bcd;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
}

.v-modal {
    /*display: none;*/
}



.overflow-line{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.overflow-line-clamp{
    --clamp:3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: var(--clamp); /* 显示的最大行数 */
    text-overflow: ellipsis;
}
