/* 重置样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

/* 响应式设计 */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
}

/* 基础样式 */
.container {
    padding: 20px;
    background-color: #fff;
}

/* 头部 */
.header {
    width: 100%;
    height: 20px;
    background-color: #f0f0f0;
}

/* 标题 */
.title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 作品列表 */
.works-list {
    margin: 20px 0;
}

.work-item {
    background-color: #fff;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.work-image {
    position: relative;
    cursor: pointer;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    overflow: hidden;
}

.work-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 播放图标 */
.play-icon {
    position: absolute;
    left: 20px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    border: 5px solid #fff;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon::after {
    content: "";
    width: 0;
    height: 0;
    margin-left: 5px;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid #fff;
}

/* 作品信息 */
.work-info {
    padding: 20px;
}

.work-name {
    font-size: 16px;
    color: #000;
    font-weight: 400;
}

/* 更多链接 */
.more-link {
    text-align: center;
    padding: 40px 0;
    cursor: pointer;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: #e0e0e0;
    margin-bottom: 20px;
}

.more-text {
    font-size: 12px;
    color: #000;
}

/* 底部 */
.footer {
    background-color: #f0f0f0;
    padding: 30px 0 50px 0;
    text-align: center;
}

.copyright {
    font-size: 10px;
    color: #ccc;
}

/* 底部导航栏 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    z-index: 1000;
    background-clip: content-box;
}

.nav-left {
    display: flex;
    align-items: center;
    padding: 0 20px;
    flex: 2;
    height: 100%;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.name {
    font-size: 12px;
}

.nav-divider {
    width: 1px;
    background-color: #e0e0e0;
    height: 80px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0.8;
    height: 100%;
    cursor: pointer;
}

.nav-item.share {
    background-color: transparent;
}

.nav-item.contact {
    background-color: #000;
}

.nav-text {
    font-size: 12px;
}

.nav-text.white {
    color: #fff;
}
