/* #region 模块 */
.right .module {
    margin-top: 40px;
}

.module .content {
    margin-top: 20px;
}

.layout {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.layout>.left {
    overflow: hidden;
    flex: 1;
}

.layout>.right {
    width: 300px;
}

/* #endregion */

/* #region 头版 */
.headline {
    display: flex;
    gap: 20px;
}

.headline .img {
    width: 245px;
    height: 184px;
    border-radius: 8px;
}

.headline .img img {
    object-fit: cover;
}

.headline .text {
    overflow: hidden;
    flex: 1;
}

.headline .title {
    align-items: flex-start;
}

.headline .title h1 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    line-height: 36px;
}

.headline .title div {
    font-weight: 400;
}

.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;
}

.headline .intro {
    margin-top: 14px;
    color: #999;
    font-size: 14px;
    line-height: 21px;
}

.headline .sub {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.headline .sub span {
    color: #999;
    font-size: 12px;
    line-height: 16px;
}

.headline .sub .subtag {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 24px;
}

.headline .sub .subtag .icon {
    width: 16px;
    height: 16px;
}

.headline .tags {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    height: 30px;
    margin-top: 16px;
}

.headline .tags a {
    box-sizing: border-box;
    height: 24px;
    padding: 0 10px;
    color: #999;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    border: 1px solid #999;
    border-radius: 14px;
}

.headline .tags a:hover {
    color: #8bbf43;
    border: 1px solid #8bbf43;
}

/* #endregion */

/* #region 百科 */
.encyclopedia .nav {
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 60px;
}

.encyclopedia .nav::after,
.encyclopedia .nav .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
}

.encyclopedia .nav::after {
    z-index: 1;
    width: 100%;
    content: "";
    background: #eee;
}

.encyclopedia .nav .underline {
    z-index: 10;
    background: #8bbf43;
    transition: all .3s;
}

.encyclopedia .nav .item,
.encyclopedia .nav .item a {
    color: #333;
    font-size: 16px;
    line-height: 26px;
    white-space: nowrap;
    transition: none;
    cursor: pointer;
}

.encyclopedia .nav .item:hover,
.encyclopedia .nav .item:hover a {
    color: #8bbf43;
}

.encyclopedia .nav .active,
.encyclopedia .nav .active a {
    color: #8bbf43;
    font-weight: 700;
}

.encyclopedia .hide {
    display: none;
}

.encyclopedia .active {
    display: block;
}

.encyclopedia .catalogue {
    display: flex;
    margin-top: 26px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.encyclopedia .catalogue .title {
    justify-content: center;
    width: 64px;
    color: #333;
    font-size: 18px;
    background: #fafafa;
}

.encyclopedia .catalogue .container {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0 !important;
    padding: 16px 0;
}

.encyclopedia .catalogue .list {
    box-sizing: border-box;
    width: 25%;
    padding-left: 26px;
    padding-right: 10px;
}

.encyclopedia .catalogue .list:not(:first-child) {
    border-left: 1px solid #eee;
}

.encyclopedia .catalogue .list li {
    margin: 0;
    color: #999;
    font-size: 12px;
    line-height: 22px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: none;
    cursor: pointer;
}

.encyclopedia .catalogue .list li:not(:first-child) {
    margin-top: 8px;
}

.encyclopedia .catalogue .list li:hover {
    text-decoration: underline;
}

.encyclopedia .catalogue .list li.h2 {
    color: #8bbf43;
    font-size: 16px;
}

.encyclopedia .catalogue .list li.h3 {
    position: relative;
    padding-left: 14px;
}

.encyclopedia .catalogue .list li.h3::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    content: "";
    background: #999;
    border-radius: 100%;
}

.encyclopedia .catalogue .list li.h3:hover {
    color: #8bbf43;
}

.encyclopedia .catalogue .list li.h3:hover::before {
    background: #8bbf43;
}

.encyclopedia .content {
    margin-top: 0;
}

.encyclopedia .content:not(:first-child) {
    margin-top: 40px;
}

.encyclopedia .content h2 {
    position: relative;
    margin: 20px 0;
    padding-left: 16px;
    color: #262626;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}

.encyclopedia .content h2::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: block;
    width: 6px;
    height: 22px;
    content: "";
    background: #8bbf43;
    border-radius: 4px;
}

.encyclopedia .content h3 {
    margin: 20px 0;
    color: #262626;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.encyclopedia .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;
}

.encyclopedia .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;
}

.encyclopedia .content h6::before {
    position: absolute;
    top: 15px;
    left: 20px;
    content: "Tips：";
    color: #8bbf43;
    font-size: 18px;
    font-weight: 700;
}

.encyclopedia .content p {
    margin: 16px 0;
    color: #262626;
    font-size: 15px;
    line-height: 27px;
}

.encyclopedia .content strong {
    font-weight: 700;
}

.encyclopedia .content img {
    max-width: 100%;
    min-width: 50%;
    border-radius: 8px;
}

.encyclopedia .content ol {
    margin: 16px 0;
    padding-left: 32px;
}

.encyclopedia .content li {
    margin: 10px 0;
    color: #7f7f7f;
    font-size: 15px;
    line-height: 27px;
}

.encyclopedia .content li {
    margin: 10px 0;
    color: #7f7f7f;
    font-size: 15px;
    line-height: 27px;
}

.encyclopedia .content a {
    color: #8bbf43;
}

.encyclopedia .func {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.encyclopedia .func button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 200px;
    height: 52px;
    background: linear-gradient(262deg, #a4d95d, #75ab2a);
    border-radius: 8px;
    cursor: pointer;
}

.encyclopedia .func .white {
    background: #fff;
    border: 1px solid #8bbf43;
}

.encyclopedia .func span {
    color: #fff;
    font-size: 16px;
    line-height: 16px;
}

.encyclopedia .func .white span {
    color: #8bbf43;
}

.encyclopedia .context {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

.encyclopedia .context a {
    box-sizing: border-box;
    position: relative;
    display: block;
    width: 410px;
    height: 130px;
    padding: 0 16px;
    border: 1px solid #e8e8e8;
}

.encyclopedia .context .overline {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #8bbf43;
    opacity: 0;
    transition: all .3s;
}

.encyclopedia .context a:hover .overline {
    width: 100%;
    opacity: 1;
}

.encyclopedia .context .text {
    margin-top: 16px;
    color: #333;
    font-size: 14px;
}

.encyclopedia .context .line {
    margin-top: 16px;
    width: 24px;
    border: 1px solid #e6e6e6;
}

.encyclopedia .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;
}

.encyclopedia .context .time {
    margin-top: 14px;
    color: #999;
    font-size: 12px;
    line-height: 12px;
}

.encyclopedia .content .list li {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid #f5f5f5;
}

.encyclopedia .content .list .img {
    position: relative;
    width: 210px;
    height: 160px;
    border-radius: 8px;
}

.encyclopedia .content .list .text {
    overflow: hidden;
    flex: 1;
}

.encyclopedia .content .list .text a {
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 24px;
}

.encyclopedia .content .list .text a:hover {
    color: #8bbf43;
}

.encyclopedia .content .list .text p {
    margin: 16px 0 0 0;
    color: #999;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.encyclopedia .content .list .data {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.encyclopedia .content .list .data div {
    display: flex;
    align-items: center;
    gap: 4px;
}

.encyclopedia .content .list .data div .iconfont {
    font-size: 17px;
}

.encyclopedia .content .list .data span {
    color: #999;
    font-size: 14px;
    line-height: 17px;
}

/* #endregion */

/* #region 看 */
.watch {
    margin-top: 40px;
    margin-bottom: 32px;
}

.watch.hide {
    display: none;
}

.watch .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.watch .title img {
    width: 24px;
    height: 24px;
}

.watch .title div {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
}

.watch .title span,
.watch .title a {
    color: #999;
    font-size: 12px;
    line-height: 20px;
    transition: all .3s;
}

.watch .title a {
    margin-left: auto;
}

.watch .title a:hover,
.watch .title a:hover span {
    color: #8bbf43;
}

.watch .content {
    margin-top: 30px;
}

.watch .list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 40px;
    row-gap: 20px;
}

.watch .list li {
    display: flex;
    gap: 20px;
    width: 580px;
}

.watch .list .img {
    width: 180px;
    height: 135px;
    border-radius: 8px;
}

.watch .list .text {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 4px;
}

.watch .list .text a {
    color: #333;
    font-size: 17px;
    line-height: 28px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.watch .list .text a:hover {
    color: #8bbf43;
}

.watch .list .user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    color: #999;
    font-size: 14px;
}

.watch .list .user .img {
    width: 22px;
    height: 22px;
    border-radius: 100%;
}

.watch .list .user .time {
    margin-left: auto;
}

/* #endregion */