body {
    background-color: #ffffff;
    min-height: 100vh;
}

.digital-broken-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: white;
}

.artwork-grid {
    display: flex;
    flex-direction: column;
    gap: 120px;
    padding: 20px;
}

.artwork-group {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 60px 80px;
    background-color: white;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artwork-group:hover {
    transform: translateY(-2px);
}

.image {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.artwork-image {
    width: 85%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

.artwork-image:hover {
    opacity: 0.92;
}

.artwork-info {
    text-align: center;
    font-size: 16px;
    color: #222;
    padding: 40px 0 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    letter-spacing: 2px;
    white-space: pre;
    font-weight: 300;
    display: flex;
    justify-content: center;
    align-items: center;
}

.artwork-info span {
    display: inline-block;
    text-align: center;
    margin: 0 auto;
    line-height: 1.8;
}

/* 图片放大模态框 */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    cursor: default;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 85%;
    max-height: 95vh;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.close-modal:hover {
    opacity: 1;
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .digital-broken-content {
        padding: 40px 20px;
    }

    .artwork-grid {
        gap: 80px;
        padding: 10px;
    }

    .artwork-group {
        padding: 40px 20px;
        gap: 40px;
    }

    .artwork-image {
        width: 100%;
    }

    .artwork-info {
        font-size: 14px;
        padding: 30px 0 0 0;
        letter-spacing: 1.5px;
    }
}

/* 大屏幕优化 */
@media screen and (min-width: 1600px) {
    .digital-broken-content {
        max-width: 1600px;
    }

    .artwork-group {
        padding: 80px 100px;
    }

    .artwork-image {
        width: 80%;
    }

    .artwork-info {
        font-size: 18px;
    }
}

/* 添加导航按钮样式 */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
    z-index: 1001;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
} 
.footer {
    color: #222;
}