/* #region 基础 */
.module:not(:first-child) {
    margin-top: 30px;
}

.module .content {
    margin-top: 30px;
}

.banners .banner {
    height: 300px;
}

.banners .pagination {
    bottom: 19px;
    gap: 14px;
}

.banners .pagination li {
    width: 44px;
    height: 7px;
    border-radius: 3.5px;
}

.answers .left {
    width: 965px;
}

.answers .right {
    width: 344px;
}

/* #endregion */

/* #region 百科 */
.answers .left .list li:not(:first-child) {
    margin-top: 30px;
}

.answers .left .list li {
    overflow: hidden;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.answers .left .list li>a {
    position: relative;
    display: block;
    padding-left: 42px;
    color: #000;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.answers .left .list li>a::before {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    content: "问";
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    background: #467CEE;
    border-radius: 10px 10px 10px 0px;
}

.answers .left .list li>a:hover {
    color: #467cee;
    transition: .3s;
}

.answers .left .list li>p {
    position: relative;
    margin-top: 20px;
    padding-left: 42px;
    color: #808080;
    font-size: 16px;
    line-height: 155%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.answers .left .list li>p::before {
    position: absolute;
    left: 0;
    width: 30px;
    height: 30px;
    content: "答";
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 30px;
    background: #FA8346;
    border-radius: 10px 10px 0 10px;
}

.answers .left .list .sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.answers .left .list .tags {
    display: flex;
    gap: 10px;
}

.answers .left .list .tags span {
    display: inline-block;
    background: #FDF5EA;
    border-radius: 3px;
}

.answers .left .list .tags a {
    padding: 2px 10px;
    color: #ED851C;
    font-size: 12px;
}

.answers .left .list .sub>span {
    color: #808080;
    font-size: 14px;
}

.answers .left .list .sub i {
    display: inline-block;
    width: 16px;
}
/* #endregion */