/* #region 模块 */
.module:not(:first-child) {
    margin-top: 40px;
}

.module .content {
    margin-top: 20px;
}

.layout {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.layout>.left {
    overflow: hidden;
    flex: 1;
}

.layout>.right {
    width: 300px;
}

/* #endregion */

/* #region 头版 */
.headline {
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.headline h1 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 42px;
}

.headline .sub {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.headline .sub a,
.headline .sub span {
    color: #333;
    font-size: 12px;
    line-height: 16px;
}

.headline .sub a:hover {
    color: #8bbf43;
}

.headline .func {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.headline .func div {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.headline .func .iconfont {
    font-size: 17px;
}

.headline .func span {
    color: #999;
    font-size: 12px;
    line-height: 17px;
}

.headline .func .phone span {
    color: #8bbf43;
}

/* #endregion */

/* #region 资讯 */
.article .content h2 {
    position: relative;
    margin: 20px 0;
    padding-left: 16px;
    color: #262626;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.article .content h2::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 22px;
    content: "";
    background: #8bbf43;
    border-radius: 4px;
}

.article .content h3 {
    margin: 20px 0;
    color: #262626;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.article .content h5 {
    margin: 20px 0;
    padding: 20px 20px 20px 18px;
    color: #7f7f7f;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
    background: rgba(139, 191, 67, .05);
    border-left: 2px solid #8bbf43;
}

.article .content h6 {
    position: relative;
    margin: 20px 0;
    padding: 50px 20px 20px;
    color: #262626;
    font-size: 15px;
    line-height: 27px;
    background: rgba(139, 191, 67, .05);
    border-radius: 4px;
}

.article .content h6::before {
    position: absolute;
    top: 15px;
    left: 20px;
    content: "Tips：";
    color: #8bbf43;
    font-size: 18px;
    font-weight: 700;
}

.article .content p {
    margin: 16px 0;
    color: #262626;
    font-size: 15px;
    line-height: 27px;
}

.article .content strong {
    font-weight: 700;
}

.article .content img {
    max-width: 100%;
    min-width: 50%;
    border-radius: 8px;
}

.article .content ol {
    margin: 16px 0;
    padding-left: 32px;
}

.article .content li {
    margin: 10px 0;
    color: #7f7f7f;
    font-size: 15px;
    line-height: 27px;
}

.article .content a {
    color: #8bbf43;
}

.article .context {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.article .context a {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 410px;
    height: 130px;
    padding: 0 16px;
    border: 1px solid #e8e8e8;
}

.article .context .overline {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #8bbf43;
    opacity: 0;
    transition: all .3s;
}

.article .context a:hover .overline {
    width: 100%;
    opacity: 1;
}

.article .context .text {
    margin-top: 16px;
    color: #333;
    font-size: 14px;
}

.article .context .line {
    margin-top: 16px;
    width: 24px;
    border: 1px solid #e6e6e6;
}

.article .context .title {
    display: block;
    margin-top: 12px;
    color: #333;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article .context .time {
    margin-top: 14px;
    color: #999;
    font-size: 12px;
    line-height: 12px;
}

/* #endregion */

/* #region 目录 */
.catalogue {
    position: sticky;
    top: 107px;
    z-index: 10;
    padding: 10px;
    background: #fff;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 4px #2626261f;
}

.catalogue.hide {
    display: none;
}

.catalogue .title {
    height: 40px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.catalogue .content {
    position: relative;
    margin-top: 18px;
}

.catalogue .content::before,
.catalogue .sideline {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
}

.catalogue .content::before {
    z-index: 1;
    height: 100%;
    content: "";
    background: #e6e6e6;
    border-radius: 2px;
}

.catalogue .sideline {
    height: 26px;
    z-index: 10;
    background: #8bbf43;
    transition: all .3s;
}

.catalogue .item {
    margin-bottom: 12px;
    color: #333;
    font-size: 14px;
    line-height: 26px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
}

.catalogue .item.h2 {
    padding-left: 24px;
    font-size: 16px;
}

.catalogue .item.h3 {
    padding-left: 40px;
}

/* #endregion */