body {
    font-family: sans-serif;
    margin: 20px;
}
.actor-info {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto 30px;
}
.actor-info img {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ccc;
}
.actor-name {
    margin-top: 15px;
    font-size: 24px;
    font-weight: bold;
}
.actor-en-name {
    font-size: 16px;
    color: #888;
    margin-bottom: 20px;
}
.actor-detail-table {
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}
.actor-detail-table p {
    margin: 5px 0;
    font-size: 14px;
}
.vod-section {
    max-width: 1000px;
    margin: 0 auto;
}
.vod-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    text-align: left;
}
.vod-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.vod-item {
    width: calc(33.333% - 14px);
    box-sizing: border-box;
    text-align: left;
}
/* .vod-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
} */

.vod-img-wrapper {
    width: 100%;
    padding-top: 140%; /* 控制比例，這裡是 1:1.4 */
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: #eee;
}

.vod-img-wrapper img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.vod-item p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #000;
}
.vod-item .subtitle {
    font-size: 14px;
    color: #888;
}

.vod-item p,
.vod-item .subtitle {
    white-space: nowrap;        
    overflow: hidden;           
    text-overflow: ellipsis;  
    font-weight: bolder;  
}