.main-content {
    margin: 70px auto 0;
    height: calc(100vh - 70px);
    width: 1200px;
}

.title {
    padding: 20px 0;
}

.zw {
    margin: 50px;
    font-size: 24px;
    color: #333;
    text-align: left;
}


.info-list {
    list-style: none;
    width: 55%;
    margin-top: 20px;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 16px;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.info-list li:hover {
    background-color: #f9f9f9;
}

/* 左右文字样式 */
.label {
    font-weight: bold;
    color: #444;
}

.value {
    color: #222;
    white-space: nowrap;
}

/* 响应式支持 */
@media (max-width: 600px) {
    .info-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .value {
        margin-top: 6px;
        white-space: normal;
    }
}

.cubes {
    position: absolute;
    top: 45%;
    right: 25%;
}