.card-g {
    box-shadow: var(--box-shadow-lighter);
    border-radius: var(--border-radius-large);
    padding: 16px 24px;
    display: block;
}

.the-page-g .the-width-g {
    display: flex;
    align-items: flex-start;
    margin-top: 24px;
    gap: 24px;
}

.the-page-g .left-part {
    width: 0;
    flex-grow: 1;
}

.the-page-g .radio-g {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    line-height: 18px;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-color-regular);
    background: #FFFFFF;
    border-radius: var(--border-radius);
    border: none;
    margin: 0;
}

.the-page-g .radio-g__checked {
    background: var(--color-primary);
    color: #FFFFFF;
}

.the-page-g .article-list {
    margin-top: 24px;
}

.the-page-g .article-list .card-g {
    display: flex;
    align-items: center;
    gap: 24px;
}

.the-page-g .article-list .card-g + .card-g {
    margin-top: 12px;
}

.the-page-g .article-list img {
    object-fit: cover;
    max-width: 160px;
    max-height: 160px;
}

.the-page-g .article-list .detail {
    width: 0;
    flex-grow: 1;
}

.the-page-g .article-list .title {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.the-page-g .article-list .desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: var(--text-color-regular);
    min-height: 40px;
}

.the-page-g .article-list .time {
    margin-top: 12px;
    color: var(--text-color-placeholder);
}

.the-page-g .right-part {
    width: 320px;
}

.the-page-g .right-part .card-g + .card-g {
    margin-top: 24px;
}

.the-page-g .right-part .title {
    font-size: 18px;
    font-weight: 600;
}

.the-page-g .right-part .list {
    margin-top: 12px;
}

.the-page-g .right-part .item {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
    padding: 10px 0;
}

.the-page-g .right-part .item:hover {
    color: var(--color-primary);
}

.the-page-g .right-part .item + .item {
    border-top: 1px solid var(--border-color);
}

.mobile .card-g {
    padding: 16px 12px;
}

.mobile .the-page-g .the-width-g {
    flex-direction: column;
}

.mobile .the-page-g .left-part {
    width: 100%;
    flex-grow: 0;
}

.mobile .the-page-g .article-list .card-g {
    flex-direction: column;
}

.mobile .the-page-g .article-list .detail {
    width: 100%;
    flex-grow: 0;
}

.mobile .the-page-g .right-part {
    width: 100%;
}