/* 基础样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

html {
    scroll-behavior: smooth;
}

/* 标题样式 */
h1 {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
}

h2 {
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 8px;
}

h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* 段落样式 */
p {
    margin-bottom: 15px;
    text-align: justify;
    word-break: break-all;
}

/* 列表样式 */
ul, ol {
    margin-left: 0;
    margin-bottom: 15px;
    padding-inline-start: 10px ;
}

li {
    margin-bottom: 10px;
    text-align: justify;
    word-break: break-word;
}

/* 强调样式 */
strong, b {
    color: #2c3e50;
    font-weight: bold;
}

/* 链接样式 */
a {
    color: #3498db;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* 布局样式 */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

/* 特殊区域样式 */
.version-info {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    text-align: center;
}

.contact-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

/* SDK相关样式 */
.sdk-list {
    margin: 20px 0;
}

.sdk-item {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    word-break: break-all;
}

.sdk-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.sdk-detail {
    font-size: 14px;
    margin-bottom: 5px;
}

/* 响应式设计 */
@media (max-width: 600px) {
    body {
        padding: 15px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    h2 {
        font-size: 18px;
    }
    
    h3 {
        font-size: 16px;
    }
}