/* ========== 通用模块头部样式 ========== */
.common-module {
    background: #fff;
    margin-bottom: 10px;
    overflow: hidden;
}
.common-module-header {
    background: #f8f8f8;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}
.common-module-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.common-module-body {
    padding: 15px;
}

/* 移动端适配 */
@media (max-width: 767px) {
    .common-module-header h3 {
        font-size: 15px;
    }
}

/* ========== 猜你喜欢列表样式 ========== */
.stui-vodlist__bd {
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
}
.stui-vodlist__item {
    width: 16.6666667%;
    padding: 0 5px;
    margin-bottom: 15px;
    list-style: none;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .stui-vodlist__item {
        width: 33.333% !important;
    }
}
.stui-vodlist__thumb {
    position: relative;
    display: block;
    padding-top: 150%;
    background: url(../img/load.gif) no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    border-radius: 4px;
}
.stui-vodlist__thumb .pic-text {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    text-align: right;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    color: #fff;
    border-radius: 0 0 4px 4px;
}
.stui-vodlist__title {
    font-size: 14px;
    margin: 8px 0 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.stui-vodlist__title a {
    color: #333;
}
.stui-vodlist__title a:hover {
    color: #FF9900;
}

/* ========== 评论区域样式 ========== */
.stui-comment__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.stui-comment__item {
    border-bottom: 1px solid #f0f0f0;
    padding: 16px 0;
    transition: background 0.2s;
}
.stui-comment__item:hover {
    background-color: #fafafa;
}
.stui-comment__item:last-child {
    border-bottom: none;
}
.comment-avatar {
    float: left;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    margin-right: 14px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comment-main {
    overflow: hidden;
}
.comment-header {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.comment-user {
    font-weight: 700;
    color: #2c3e50;
    font-size: 15px;
}
.comment-location {
    font-size: 11px;
    color: #6c757d;
    background: #f1f3f4;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-block;
}
.comment-rating {
    color: #ff9800;
    font-size: 12px;
}
.comment-time {
    font-size: 12px;
    color: #adb5bd;
    margin-left: auto;
}
.comment-content {
    margin: 8px 0 10px 0;
    line-height: 1.55;
    color: #212529;
    font-size: 14px;
}
.comment-footer {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
    color: #6c757d;
}
.comment-like {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: default;
}
.like-icon {
    display: inline-block;
    width: 16px;
    text-align: center;
}
.comment-like .like-count {
    font-weight: 500;
}
.comment-reply {
    color: #337ab7;
    cursor: default;
}