/* Download buttons styles */
.download-button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    margin: 15px 0;
}

.download-button {
    background-color: #ffffff;
    color: #FF3657 !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none !important;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: inset 0 0 0 1px #FF3657 !important;
    position: relative;
    overflow: hidden;
    min-width: 150px;
    white-space: nowrap;
    box-sizing: border-box;
    gap: 6px;
}

.download-button:hover {
    background-color: #FF3657 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.download-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* 图标样式 */
.jziconf {
    font-family: "jziconf" !important;
    font-size: 18px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 12px;
    display: inline-block;
    line-height: 1;
}

/* 图标代码定义 - 确保所有图标相同大小 */
.iconjz-yundowe:before,
.iconjz-baidudow:before,
.iconjz-alidow:before, 
.iconjz-yundowa:before,
.iconjz-ucdow:before, 
.iconjz-yundowc:before,
.iconjz-xunleidow:before, 
.iconjz-huojiandow:before,
.iconjz-weiyun:before {
    font-size: 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    text-align: center;
}

/* 单独定义每个图标的Unicode */
.iconjz-yundowe:before {
    content: "\e625";
}
.iconjz-baidudow:before {
    content: "\e61a";
}
.iconjz-alidow:before, .iconjz-yundowa:before {
    content: "\e61d";
}
.iconjz-ucdow:before, .iconjz-yundowc:before {
    content: "\e619";
}
.iconjz-xunleidow:before, .iconjz-huojiandow:before {
    content: "\e61e";
}
.iconjz-weiyun:before {
    content: "\e61c";
}

/* 电脑端优化，确保所有按钮在一行显示 */
@media (min-width: 769px) {
    .download-button-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    
    .download-button {
        flex: 0 0 auto;
        min-width: auto;
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .download-button-container {
        flex-direction: column;
        width: 100%;
    }
    .download-button {
        width: 100%;
        margin-right: 0;
        justify-content: center;
        padding: 12px 20px;  /* 增加手机端的内部间距 */
    }
    .extract-code {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
    
    /* 确保手机端也有足够的图标间距 */
    .jziconf {
        margin-right: 12px;
    }
}

/* 演员阵容样式 */
.actor-text {
    margin: 10px 0;
    line-height: 1.8;
}
.actor-item {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    line-height: 1.6;
}
.actor-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}
.actor-item strong {
    color: #333;
    font-weight: bold;
}

/* 亮点与看点样式 */
.highlights-text {
    margin: 10px 0;
    line-height: 1.8;
}
.highlight-item {
    margin-bottom: 10px;
    padding-left: 15px;
    position: relative;
    line-height: 1.6;
}
.highlight-item:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #666;
}
.highlight-item strong {
    color: #333;
    font-weight: bold;
}

/* 移除不再使用的样式 */
.highlight-category,
.highlight-desc {
    display: none;
} 