/* #region 基础 */
.module {
    margin-top: 20px;
}

.right .module .title {
    padding-bottom: 10px;
}

.right .module .title span {
    font-size: 20px;
}

.module .content {
    margin-top: 20px;
}

.banners .banner {
    height: 540px;
}

.news .left {
    width: 850px;
}

.news .right {
    width: 330px;
}

.advertise {
    height: 200px;
}

/* #endregion */

/* #region 文章 */
.article .headline {
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.article .headline h1 {
    color: #333;
    font-size: 26px;
    font-weight: 700;
}

.article .headline .sub {
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

.article .headline .sub img {
    vertical-align: -2px;
    width: 16px;
    height: 16px;
    margin-left: 20px;
    margin-right: 5px;
}

.article .content h3 {
    margin: 15px 0;
    font-size: 16px;
    
}

.article .content h2 {
    margin: 15px 0;
    font-size: 16px;
}
.article .content p {
    margin: 15px 0;
    color: #333;
    font-size: 16px;
    line-height: 153%;
}

.article .content p>strong {
    font-weight: bold;
}

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

.article .content p a {
    color: #3375e2;
}

.article .content .tips {
    box-sizing: border-box;
    position: relative;
    margin: 20px 0;
    padding: 35px 40px 24px;
    color: #999;
    font-size: 14px;
    background: #edf7fb;
    border-radius: 5px;
}

.article .content .tips::before,
.article .content .tips::after {
    position: absolute;
    top: 11px;
    left: 11px;
    width: 24px;
    height: 24px;
    content: "";
    background: url(/static/icon/21.png) no-repeat;
    background-size: 100% 100%;
}

.article .content .tips::after {
    top: auto;
    right: 15px;
    bottom: 15px;
    left: auto;
    transform: rotate(180deg);
}

/* #endregion */

/* #region 声明 */
.state {
    box-sizing: border-box;
    padding: 10px 15px;
    background: #F1F1F1;
    border-radius: 3px;
}

.state p {
    color: #999;
    font-size: 10px;
    line-height: 183%;
}
/* #endregion */

/* #region 上下篇 */
.context {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.context a {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: block;
    padding: 10px;
    border: 1px solid #3375e2;
    border-radius: 2px;
    opacity: 0.5;
    transition: .3s;
}

.context a:hover {
    opacity: 1;
    transition: .3s;
}

.context a:first-child {
    padding-left: 40px;
}

.context a:last-child {
    text-align: right;
    padding-right: 40px;
}

.context a::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 30px;
    height: 100%;
    content: "";
    background: #3375e2 url(/static/icon/left.png) no-repeat center center;
}

.context a:last-child::before {
    right: 0;
    left: auto;
    transform: rotate(180deg);
}

.context a>p {
    color: #3375e2;
    font-size: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
}

.context a>span {
    display: inline-block;
    margin-top: 10px;
    color: #999;
    font-size: 16px;
}

.context i {
    display: inline-block;
    width: 40px;
    height: 3px;
    background: #b2caff;
    transform: rotate(120deg);
}

/* #endregion */

/* #region 相关 */
.relate {
    margin-top: 40px;
}

.relate .content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 76px;
    row-gap: 20px;
}

.relate .box {
    width: 45%;
}

.relate .box .top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.relate .box .img {
    overflow: hidden;
    width: 80px;
    height: 60px;
    border-radius: 3px;
}

.relate .box .info {
    overflow: hidden;
    flex: 1;
}

.relate .box .info a {
    display: block;
    color: #333;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: .3s;
}

.relate .box .info a:hover {
    color: #3375e2;
    transition: .3s;
}

.relate .box .tags {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    height: 22px;
    margin-top: 20px;
}

.relate .box .tags span {
    display: inline-block;
    padding: 2px 10px;
    color: #3375e2;
    font-size: 10px;
    border: 1px solid #3375e2;
    border-radius: 17px;
}

.relate .box p {
    margin-top: 10px;
    color: #999;
    font-size: 14px;
    line-height: 153%;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
/* #endregion */