/* 页面基础样式 */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-image: url('/static/css/all/bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    position: relative;
}

/* 页面标题样式 */
.page-header {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}

.main-title {
    color: white;
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 容器样式 */
.container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 30px;
    flex-wrap: wrap;
}

/* 电脑状态卡片样式 - 修改为垂直长条 */
.computer-status {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 60px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-wrap: break-word;
}

/* 标题样式 */
.computer-status h1 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 32px;
}

/* 图标样式 */
.computer-status i {
    color: #000000;
    margin-bottom: 30px;
}

/* 状态内容样式 */
#status-content {
    display: none; /* 默认隐藏，通过JS控制显示 */
    text-align: left;
    margin-top: 30px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 状态项样式 */
.status-item {
    margin-bottom: 15px;
    font-size: 18px;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* 状态标签样式 */
.status-label {
    color: #000000;
    font-weight: bold;
    min-width: 90px;
    flex-shrink: 0;
}

/* 状态值样式 */
.status-value {
    color: #ff0000;
    word-wrap: break-word;
    overflow-wrap: break-word;
    flex-grow: 1;
    max-width: calc(100% - 100px);
}

/* 未使用提示样式 */
.not-in-use {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin-top: 0;
}

/* 手机状态卡片样式 */
.phone-status {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 60px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 400px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 手机状态标题样式 */
.phone-status h1 {
    color: #000000;
    margin-bottom: 20px;
    font-size: 32px;
}

/* 手机状态图标样式 */
.phone-status i {
    color: #000000;
    margin-bottom: 30px;
}

/* 手机开发中提示样式 */
.phone-dev-message {
    color: #000000;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
}

/* 版权信息样式 */
div[kid="copyright"] {
    background-color: #ffffff00;
    color: rgba(255, 255, 255, 0.524);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100px;
    font-size: 12px;
    padding-right: 20px;
}

div[kid="copyright"] a {
    color: rgba(255, 255, 255, 0.524);
    text-decoration: none;
    margin: 0 10px;
}

div[kid="copyright"] a:hover {
    text-decoration: underline;
}

div[kid="copyright"] h4 {
    margin: 0 10px;
}

h4.nul {
    margin: 0 5px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .computer-status,
    .phone-status {
        min-width: auto;
        width: 90%;
        padding: 30px;
    }
    
    .computer-status h1,
    .phone-status h1 {
        font-size: 24px;
    }
    
    .status-item {
        font-size: 16px;
    }
    
    div[kid="copyright"] {
        flex-direction: column;
        height: auto;
        padding: 10px;
        text-align: center;
    }
    
    div[kid="copyright"] h4, div[kid="copyright"] a {
        margin: 5px 0;
    }
}
