/* 版本号和更新日志样式 */
.app-version {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border-radius: 8px;
    padding: 8px 15px;
    max-width: 300px;
}

.version-label {
    color: rgba(0, 0, 0, 0.7);
    font-family: PingFang SC;
    font-size: 26px;
    margin-right: 8px;
    font-weight: 400;
}

.app-version-text {
    color: var(--black-color);
    font-family: PingFang SC;
    font-size: 26px;
    font-weight: 600;
}

.update-log {
    margin-top: 25px;
    width: 100%;
    max-width: 600px;
}

.log-title {
    color: rgba(0, 0, 0, 0.8);
    font-family: PingFang SC;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
}

.log-container {
    padding: 5px 5px 0 0;
    max-height: 150px;
    overflow-y: auto;
    font-size: 22px;
    color: var(--black-color);
    font-weight: 300;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
