/* #region 基础 */
.module {
    margin-top: 1rem;
    padding: 0 1rem;
}

.module .title {
    align-items: center;
}

.module .title h2 {
    font-size: 1.2rem;
}

.module .title span {
    color: #b2caff;
    font-size: 1.2rem;
    font-weight: 700;
}

.module .content {
    margin-top: 0.6rem;
}

.advertise {
    height: 7.98rem;
}

/* #endregion */

/* #region 文章详情 */
.article .title {
    display: block;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e5e5e5;
}

.article .title h1 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 700;
}

.article .title .sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.6rem;
}

.article .title .sub span {
    color: #999;
    font-size: 0.6rem;
    font-weight: 400;
}

.article .title .sub img {
    margin-right: 0.12rem;
    vertical-align: -0.12rem;
    width: 0.72rem;
    height: 0.72rem;
}

.article .title .sub img:not(:first-child) {
    margin-left: 0.6rem;
}

.article .tips {
    position: relative;
    padding: 1.92rem 1.8rem 1.8rem;
    color: #999;
    font-size: 0.84rem;
    background: #eff3ff;
    border-radius: 2px;
}

.article .tips::before,
.article .tips::after {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    width: 1.2rem;
    height: 1.2rem;
    content: "";
    background: url(../images/quote.png) no-repeat;
    background-size: 100% 100%;
}

.article .tips::after {
    top: auto;
    right: 0.6rem;
    bottom: 0.6rem;
    left: auto;
    transform: rotateY(180deg);
}

.article .content h3 {
    margin: 0.6rem 0;
    padding-left: 0.3rem;
    color: #4574DB;
    font-size: 1.2rem;
    font-weight: 700;
    border-left: 0.18rem solid #4574DB;
}

.article .content p {
    margin: 0.6rem 0;
    color: #333;
    font-size: 1rem;
    line-height: 150%;
}

.article .content p>img {
    max-width: 90%;
    border-radius: 5px;
}

.article .content p a {
    color: #4574DB;
}

/* #endregion */

/* #region 特别声明 */
.statement .content {
    padding: 0.6rem;
    background: #f1f1f1;
}

.statement .content p {
    color: #999;
    font-size: 0.72rem;
    line-height: 150%;
}

/* #endregion */

/* #region 上下篇 */
.context {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.context a {
    flex: 1;
    position: relative;
    padding: 0.3rem;
    border: 1px solid #4574DB;
    border-radius: 2px;
    opacity: 0.5;
    transition: 0.3s;
}

.context a:hover {
    opacity: 1;
    transition: 0.3s;
}

.context a:first-child {
    padding-left: 1.8rem;
}

.context a:last-child {
    text-align: right;
    padding-right: 1.8rem;
}

.context a::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 1.2rem;
    height: 100%;
    content: "";
    background: #4574DB url(../images/left.png) no-repeat center center;
    background-size: 1.2rem 1.2rem;
}

.context a:last-child::before {
    right: 0;
    left: auto;
    transform: rotate(180deg);
}

.context a>p {
    color: #4574DB;
    font-size: 0.84rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.context a:last-child p {
    text-align: start;
}

.context a>span {
    display: inline-block;
    margin-top: 0.3rem;
    color: #999;
    font-size: 0.84rem;
}

/* #endregion */

/* #region 相关推荐 */
.relate .list li {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #e5e5e5;
}

.relate .list li:not(:first-child) {
    margin-top: 0.6rem;
}

.relate .list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.relate .list .img {
    overflow: hidden;
    width: 7.2rem;
    height: 5rem;
    border-radius: 2px;
    margin-right: .6rem;
}

.relate .list .info {
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.relate .list .info a {
    color: #333;
    font-size: 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: 0.3s;
    line-height: 160%;
}

.relate .list .info a:hover {
    color: #4574DB;
    transition: 0.3s;
}

.relate .list .tags {
    display: flex;
    gap: 0.3rem;
    margin: .5rem 0;
}

.relate .list .tags span {
    color: #4574DB;
    font-size: 0.6rem;
    border: 1px solid #4574DB;
    border-radius: 0.54rem;
}
.relate .list .tags span a{
    padding: 0 0.3rem;
    color: #4574DB;
    font-size: 0.6rem;
}

.relate .list li>P {
    color: #999;
    font-size: 0.72rem;
    line-height: 150%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}