/* #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: 992px;
}

.answers .right {
    width: 344px;
}

/* #endregion */

/* #region 文章 */
.article .title {
    text-align: left;
    background: rgba(242, 249, 255, 1);
    border-radius: 5px;
}

.article .title .top {
    padding: 20px 20px 24px;
    border-bottom: 1px solid #e5e5e5;
}

.article .title .bottom {
    padding: 24px 20px 20px;
}

.article .title h1 {
    position: relative;
    padding-left: 42px;
    color: #000;
    font-size: 28px;
    font-weight: 700;
}

.article .title h1::before {
    position: absolute;
    top: 5px;
    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;
}

.article .title .sub {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-left: 42px;
}

.article .title .sub span {
    color: #a6a6a6;
    font-size: 14px;
}

.article .title .sub span>i {
    color: #3D8EE3;
}

.article .title p {
    color: #383838;
    font-size: 18px;
    line-height: 180%;
    text-indent: 2em;
}

.article .tags {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

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

.article .tags span a {
    padding: 2px 10px;
    color: #ED851C;
    font-size: 14px;
}

.article .best {
    margin-top: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e5e5;
}

.article .best>span {
    color: #467cee;
    font-size: 24px;
}

.article .best .doctor {
    position: relative;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 10px;
}

.article .best .img {
    width: 100px;
    height: 116px;
}

.article .best .info {
    flex: 1;
}

.article .best .info div {
    color: #383838;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
}

.article .best .info span {
    color: #808080;
    font-size: 16px;
    line-height: 24px;
}

.article .best .info span>i {
    display: inline-block;
    width: 20px;
}

.article .best .info p {
    margin-top: 6px;
    color: #808080;
    font-size: 16px;
}

.article .best .doctor>a {
    position: absolute;
    top: 0;
    right: 0;
    display: inline-block;
    padding: 8px 14px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    background: #EF8B34;
    border-radius: 21px;
}

.article .content h3 {
    position: relative;
    margin: 16px 0;
    padding-left: 18px;
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.article .content h3::before {
    position: absolute;
    left: 0;
    width: 8px;
    height: 100%;
    content: "";
    background: #467cee;
    border-radius: 4px;
}

.article .content p {
    margin: 16px 0;
    color: #383838;
    font-size: 18px;
    line-height: 180%;
    text-indent: 2em;
}

.article .content p>img {
    max-width: 100%;
}

.article .content p a {
    color: #467cee;
}

.article .content .tips {
    position: relative;
    padding: 10px;
    background: #F2F9FF;
    border-radius: 5px;
}



.article .context {
    display: flex;
    justify-content: space-between;
    padding: 14px 10px;
    background: #F2F9FF;
    border-radius: 5px;
    margin-top: 10px;
}

.article .context a {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
}

.article .context a>img {
    width: 12px;
    height: 20px;
}

.article .context a:nth-child(1) img {
    transform: rotate(180deg);
}

.article .context a:nth-child(2) {
    justify-content: end;
}

.article .context a>span {
    color: #467cee;
    font-size: 18px;
}

.article .context a>p {
    width: 60%;
    color: #a6a6a6;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* #endregion */