/* #region 基础 */
.main {
    overflow: hidden;
}

.module {
    padding: 0 1rem;
}

.module:not(:first-child) {
    border-top: .3125rem solid #fafafa;
}

/* #endregion */

/* #region 头版 */
.headline {
    margin-top: 1.5rem;
    padding-bottom: 1.25rem;
}

.headline h1 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.875rem;
}

.headline .info {
    display: flex;
    margin-top: 1rem;
}

.headline .info .text {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.headline .info .text .item {
    margin-top: .625rem;
    color: #999;
    font-size: .75rem;
    line-height: 1.0625rem;
}

.headline .info .text .item:not(:first-child) {
    margin-top: auto;
}

.headline .info .text .item a {
    color: #8bbf43;
}

.headline .info .img {
    width: 6rem;
    height: 4.625rem;
    border-radius: .5rem;
}

/* #endregion */

/* #region 资讯 */
.article .content {
    margin-top: 1.25rem;
}

.article .content h2 {
    position: relative;
    margin: 1.25rem 0;
    padding-left: 1rem;
    color: #262626;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
}

.article .content h2::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: .375rem;
    height: 1.375rem;
    content: "";
    background: #8bbf43;
    border-radius: .25rem;
}

.article .content h3 {
    margin: 1.25rem 0;
    color: #262626;
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.375rem;
}

.article .content h5 {
    margin: 1.25rem 0;
    padding: 1.25rem 1.25rem 1.25rem 1.125rem;
    color: #7f7f7f;
    font-size: .9375rem;
    font-weight: 400;
    line-height: 1.6875rem;
    background: rgba(139, 191, 67, .05);
    border-left: .125rem solid #8bbf43;
}

.article .content h6 {
    position: relative;
    margin: 1.25rem 0;
    padding: 3.125rem 1.25rem 1.25rem;
    color: #262626;
    font-size: .9375rem;
    line-height: 1.6875rem;
    background: rgba(139, 191, 67, .05);
    border-radius: .25rem;
}

.article .content h6::before {
    position: absolute;
    top: .9375rem;
    left: 1.25rem;
    content: "Tips：";
    color: #8bbf43;
    font-size: 1.125rem;
    font-weight: 700;
}

.article .content p {
    margin: 1rem 0;
    color: #262626;
    font-size: .9375rem;
    line-height: 1.6875rem;
}

.article .content strong {
    font-weight: 700;
}

.article .content img {
    max-width: 100%;
    min-width: 50%;
    border-radius: .5rem;
}

.article .content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article .content li {
    margin: .625rem 0;
    color: #7f7f7f;
    font-size: .9375rem;
    line-height: 1.6875rem;
}

.article .content a {
    color: #8bbf43;
}

/* #endregion */