.hc-container {
    width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

/* 主内容区布局 */
.hc-main {
    display: grid;
    grid-template-columns: 283px minmax(0px, 1fr) 287px;
    gap: 20px;
    margin-bottom: 20px;
}

/* 左侧频道标签栏 */
.hc-sidebar {
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hc-sidebar-title {
    font-size: 16px;
    font-weight: 600;
    background: #b7b7b7;
    padding: 10px;
    color: #333;
    text-align: center;
}

.hc-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.hc-tab {
    background-color: #e8e8e8;
    padding: 10px 12px;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.2s;
}

.hc-tab:hover {
    background-color: #d8d8d8;
}

.hc-tab.active {
    background-color: #b7b7b7;
    color: white;
}

/* 中间视频区域 */
.hc-video {
    grid-row: 1 / span 1;
    grid-column: 2 / span 1;
    height: 400px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s;
}

.hc-video:hover {
    transform: scale(1.02);
}

.hc-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
    background-size: cover;
}

.hc-video-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* 右侧新闻卡片区 */
.hc-right {
    grid-row: 1 / span 1;
    grid-column: 3 / span 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 400px;
}

.hc-small-card {
    background: white;
    border: 1px solid #eee;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s;
}

.hc-small-card:hover {
    transform: translateY(-3px);
}

.hc-small-card-img {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    background-size: cover;
    background-position: center;
}

.hc-small-card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hc-small-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
}

.hc-small-card-meta {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
}

/* 底部新闻列表 */
.hc-news {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hc-news-card {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.hc-news-card:hover {
    transform: translateY(-2px);
}

.hc-news-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    background-size: cover;
}

.hc-news-content {
    padding: 15px;
}

.hc-news-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hc-news-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 关于我们区域 */
.hc-about {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.hc-about-left {
    grid-column: span 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-self: start;
}

.hc-about-card {
    background: white;
    border: 1px solid #eee;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.2s;

}

.hc-about-card:hover {
    transform: translateY(-2px);
}

.hc-about-card-img {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    background-size: cover;
    background-position: center;
}

.hc-about-card-content {
    padding: 15px;
}

.hc-about-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.5;
    margin-bottom: 8px;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-about-card-desc {
    font-size: 12px;
    color: #999;
    line-height: 1.6;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hc-about-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.hc-about-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hc-star-rating svg {
    vertical-align: middle;
    margin-right: 6px;
}

/* 右侧边栏 */
.hc-about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hc-sidebar-box {
    background: white;
    border-radius: 2px;
    border: 1px solid #eee;
    padding: 10px 20px 20px;
}

.hc-sidebar-box-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #b7b7b7;
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    margin-left: -10px;
    margin-right: -10px;
}

.hc-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hc-sidebar-tag {
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: background-color 0.2s;
}

.hc-sidebar-tag:hover {
    background: #e8e8e8;
}

.hc-sidebar-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.hc-sidebar-list-item {
    text-decoration: none;
    color: inherit;
    grid-column: span 1;
}

.hc-sidebar-list-img {
    width: 100%;
    height: 100px;
    background-size: cover;
    background-position: center;
}

.hc-about-qrcode {
    text-align: center;
}

.hc-about-qrcode-img {
    width: 120px;
    height: 120px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 12px;
    color: #999;
}

.hc-about-qrcode-text {
    font-size: 12px;
    color: #999;
}

.centered.pages {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 24px 0;
}

.centered.pages a,
.centered.pages b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .2s;
}

.centered.pages a {
    color: #555;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.centered.pages a:hover {
    color: #fff;
    background: #f5a623;
    border-color: #f5a623;
}

.centered.pages b {
    color: #fff;
    background: #f5a623;
    border: 1px solid #f5a623;
    font-weight: 700;
}

.content-title h1 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #444;
    font-weight: bold;
}


.content-meta {
    display: flex;
    align-items: center;
    font-size: 12px;
    line-height: 25px;
    color: #999;
    gap: 15px;
}

.content-meta p span {
    margin-right: 15px;
    display: inline-block;
}

.post_top_share_title {
    margin-right: 5px;
}

.js_qrcode_wrap {
    z-index: 99;
}

.c1 {
    padding: 0;
}

.content-title-2 {
    float: right;
}

.content-title-2 a {
    color: #999;
    margin-left: 1em;
    margin-right: 15px;
}

.content-sp {
    background: #999;
    width: 800px;
    height: 500px;
    margin: 0 auto;
}

.content-text {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
}

.content-text p {
    line-height: 24px;
    margin: 15px 0;
}

.content-text img {
    max-width: 100%;
}

#star {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 25px;
}

#star img {
    width: 18px;
}

.link-a {
    float: right;
    margin: 0 5px;
}

.content-remark {
    background: #f1f1f1;
    color: #777;
    line-height: 24px;
    font-size: 12px;
    padding: 10px;
}

.content-logo-a {
    float: left;
    margin-left: 20px;
}

.content-logo {
    width: 420px;
    margin: 0 auto;
    padding: 0 0 20px;
    overflow: hidden;
}

.content-more {
    background: #FFF;
    margin-top: 20px;
    overflow: hidden;
}

.content-more-a {
    color: #000;
    line-height: 24px;
    font-family: "微软雅黑", sans-serif;
    font-size: 16px;
    margin: 20px 0;
}

.more6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-self: start;
}

.js_qrcode_img img{
    width: 100%;
}


.star-rating {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 16px;
    background: url('../images/stars-gray.svg') no-repeat;
    background-size: cover;
}

.star-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: url('../images/stars-gold.svg') no-repeat;
    background-size: cover;
    width: 0;
}

/* 各分数类（0~5，步长 0.5） */
.star-rating-0::before   { width: 0; }
.star-rating-0-5::before { width: 10%; }
.star-rating-1::before   { width: 20%; }
.star-rating-1-5::before { width: 30%; }
.star-rating-2::before   { width: 40%; }
.star-rating-2-5::before { width: 50%; }
.star-rating-3::before   { width: 60%; }
.star-rating-3-5::before { width: 70%; }
.star-rating-4::before   { width: 80%; }
.star-rating-4-5::before { width: 90%; }
.star-rating-5::before   { width: 100%; }

.hc-like{
    background-image: url(../images/like.svg);
    padding-left: 20px;
    background-size: 16px;
    background-position: left center;
    background-repeat: no-repeat;
}