.content {
    padding-top: 117px;
}

.content .container {
    margin: 50px auto 0;
}

.content .container > h2 {
    margin: 0 auto 25px;
    color: #334;
    font-size: 29px;
    width: fit-content;
}

.content .container > h2 span {
    background: linear-gradient(to right, #ff9041, #a220da);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-size: 28px;
}

.content .container > p {
    font-size: 15px;
    width: fit-content;
    margin: 0 auto 23px;
    border-radius: 12px;
    gap: 4px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
}

.content .container > p span {
    color: rgb(100 72 235);
}

.content .container .con-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    position: sticky;
    z-index: 99;
    top: 117px;
    background-color: #fff;
    padding: 18px 0;
}

.content .container .con-nav li {
    display: flex;
}

.content .container .con-nav li a {
    padding: 0 18px;
    line-height: 32px;
    border-radius: 6px;
    background-color: #f2f2f4;
    font-weight: bold;
    font-size: 14px;
    user-select: none;
    transition: background-color .2s ease;
    font-family: Arial, Helvetica, sans-serif;
}

.content .container .con-nav li.active a {
    background-color: #334 !important;
    color: #fff !important;
}

.content .container .con-nav li:hover a {
    background-color: #e7e7e9;
}

/*内容列表*/
.article {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.article .main {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article .main > a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-top: solid 1px #eee;
}

.article .main > a:first-child{
    border-top-color: #fff;
}

.article .main > a:last-child{
    border-bottom: solid 1px #eee;
}

.article .main > a:hover {
    border-radius: 10px;
    background-image: linear-gradient(to bottom, #f5f6fa 0%, #fff 100%);
    border-top: solid 1px #fff;
}

.article .main > a > img {
    width: 172px;
    height: 110px;
    border-radius: 7px;
}

.article .main > a .item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article .main > a .item-info .item-tit {
    font-weight: bold;
    font-size: 17px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: break-all;
    line-height: 22px;
    height: 22px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

.article .main > a .item-info .item-desc {
    color: #7b7d95;
    margin-top: 8px;
    line-height: 23px;
    height: 46px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 13.5px;
}

.article .main > a .item-info .item-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    color: #888999;
}

.article .main > a .item-info .item-detail .original {
    background-color: #6ec681;
    border-radius: 2px;
    color: #fff;
    font-size: 11.5px;
    height: 18px;
    line-height: 18px;
    margin-right: 6px;
    text-align: center;
    width: 33px;
}

.article .main > a .item-info .item-detail .rec {
    background-color: #6c8df8;
    border-radius: 2px;
    color: #fff;
    font-size: 11.5px;
    height: 18px;
    line-height: 18px;
    margin-right: 20px;
    text-align: center;
    width: 33px;
}

.article .main > a .item-info .item-detail .nickname {
    margin-right: 20px;
    font-size: 13px;
}

.article .main > a .item-info .item-detail .views{
    font-size: 13px;
}

.article .main > a .item-info .item-detail time {
    margin-left: auto;
    font-size: 13px;
}

/*侧边栏*/
.article .side {
    width: 370px;
    padding: 16px;
}

.article .side .side-rec {
    margin-bottom: 18px;
    position: sticky;
    top: 142px;
}

.article .side .side-rec h3 {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    height: 25px;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Helvetica, Segoe UI, Arial, Roboto, PingFang SC, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

.article .side .side-rec ul {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article .side .side-rec ul li {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}

.article .side .side-rec ul li a{
    font-size: 14px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.article .side .side-rec ul li a:hover {
    text-decoration: underline;
    color: #095bda;
}