2026-02-13 22:10:03 +08:00
|
|
|
|
<template>
|
|
|
|
|
|
<div class="sql-playground-demo">
|
|
|
|
|
|
<div class="demo-header">
|
|
|
|
|
|
<span class="icon">💻</span>
|
|
|
|
|
|
<span class="title">SQL 练习场</span>
|
|
|
|
|
|
<span class="subtitle">体验 SQL 的 CRUD 操作</span>
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="intro-text">
|
|
|
|
|
|
SQL 就像和数据库<span class="highlight">对话</span>:你说"给我找所有年龄大于 25 的用户",数据库就会执行查询并返回结果。即使不会编程,也能很快上手。
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="playground-container">
|
|
|
|
|
|
<div class="operation-selector">
|
|
|
|
|
|
<button
|
|
|
|
|
|
v-for="op in operations"
|
|
|
|
|
|
:key="op.key"
|
|
|
|
|
|
class="op-btn"
|
|
|
|
|
|
:class="{ active: currentOp === op.key }"
|
|
|
|
|
|
@click="currentOp = op.key"
|
|
|
|
|
|
>
|
|
|
|
|
|
<span class="op-icon">{{ op.icon }}</span>
|
|
|
|
|
|
<span class="op-name">{{ op.name }}</span>
|
|
|
|
|
|
<span class="op-keyword">{{ op.keyword }}</span>
|
|
|
|
|
|
</button>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="content-area">
|
|
|
|
|
|
<div class="example-section">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div class="section-title">
|
|
|
|
|
|
📝 示例 SQL
|
|
|
|
|
|
</div>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="code-block">
|
|
|
|
|
|
<pre><code>{{ currentOperation.example }}</code></pre>
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="explanation-section">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div class="section-title">
|
|
|
|
|
|
💡 逐词翻译
|
|
|
|
|
|
</div>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="explanation-list">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-for="(item, i) in currentOperation.explanation"
|
|
|
|
|
|
:key="i"
|
|
|
|
|
|
class="explanation-item"
|
|
|
|
|
|
>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<span class="keyword">{{ item.keyword }}</span>
|
|
|
|
|
|
<span class="meaning">{{ item.meaning }}</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</div>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="result-section">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div class="section-title">
|
|
|
|
|
|
📊 返回结果
|
|
|
|
|
|
</div>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<div class="result-table">
|
|
|
|
|
|
<div class="table-header">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-for="col in currentOperation.result.columns"
|
|
|
|
|
|
:key="col"
|
|
|
|
|
|
class="header-cell"
|
|
|
|
|
|
>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
{{ col }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="table-body">
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-for="(row, i) in currentOperation.result.rows"
|
|
|
|
|
|
:key="i"
|
|
|
|
|
|
class="table-row"
|
|
|
|
|
|
>
|
|
|
|
|
|
<div
|
|
|
|
|
|
v-for="(cell, j) in row"
|
|
|
|
|
|
:key="j"
|
|
|
|
|
|
class="table-cell"
|
|
|
|
|
|
>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
{{ cell }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<div
|
|
|
|
|
|
v-if="currentOperation.warning"
|
|
|
|
|
|
class="warning-box"
|
|
|
|
|
|
>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<span class="icon">⚠️</span>
|
2026-02-18 17:38:10 +08:00
|
|
|
|
<span v-html="currentOperation.warning" />
|
2026-02-13 22:10:03 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="info-box">
|
|
|
|
|
|
<span class="icon">🎯</span>
|
|
|
|
|
|
<strong>核心概念:</strong>CRUD 涵盖了所有数据管理的基本需求。无论是淘宝、微信、抖音,它们的数据库操作本质上就是这四种:增、删、改、查。
|
|
|
|
|
|
</div>
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
<script setup>
|
|
|
|
|
|
import { ref, computed } from 'vue'
|
|
|
|
|
|
|
|
|
|
|
|
const currentOp = ref('SELECT')
|
|
|
|
|
|
|
|
|
|
|
|
const operations = {
|
|
|
|
|
|
SELECT: {
|
|
|
|
|
|
key: 'SELECT',
|
|
|
|
|
|
name: '查询',
|
|
|
|
|
|
icon: '🔍',
|
|
|
|
|
|
keyword: 'SELECT ... FROM',
|
|
|
|
|
|
example: "SELECT name, age FROM users WHERE age > 25;",
|
|
|
|
|
|
explanation: [
|
|
|
|
|
|
{ keyword: 'SELECT name, age', meaning: '选择 name 和 age 这两列' },
|
|
|
|
|
|
{ keyword: 'FROM users', meaning: '从 users 这张表' },
|
|
|
|
|
|
{ keyword: 'WHERE age > 25', meaning: '在 age 大于 25 的条件下' }
|
|
|
|
|
|
],
|
|
|
|
|
|
result: {
|
|
|
|
|
|
columns: ['name', 'age'],
|
|
|
|
|
|
rows: [
|
|
|
|
|
|
['李四', 30],
|
|
|
|
|
|
['王五', 28]
|
|
|
|
|
|
]
|
|
|
|
|
|
}
|
|
|
|
|
|
},
|
|
|
|
|
|
INSERT: {
|
|
|
|
|
|
key: 'INSERT',
|
|
|
|
|
|
name: '插入',
|
|
|
|
|
|
icon: '➕',
|
|
|
|
|
|
keyword: 'INSERT INTO',
|
|
|
|
|
|
example: "INSERT INTO users (name, age, city) VALUES ('赵六', 35, '广州');",
|
|
|
|
|
|
explanation: [
|
|
|
|
|
|
{ keyword: 'INSERT INTO users', meaning: '插入到 users 表' },
|
|
|
|
|
|
{ keyword: '(name, age, city)', meaning: '这几列' },
|
|
|
|
|
|
{ keyword: "VALUES ('赵六', 35, '广州')", meaning: '值分别是...' }
|
|
|
|
|
|
],
|
|
|
|
|
|
result: {
|
|
|
|
|
|
columns: ['结果'],
|
|
|
|
|
|
rows: [['✅ 成功插入 1 行']]
|
|
|
|
|
|
},
|
|
|
|
|
|
warning: '<strong>注意:</strong>字符串要用单引号包围,数字不需要引号。'
|
|
|
|
|
|
},
|
|
|
|
|
|
UPDATE: {
|
|
|
|
|
|
key: 'UPDATE',
|
|
|
|
|
|
name: '更新',
|
|
|
|
|
|
icon: '✏️',
|
|
|
|
|
|
keyword: 'UPDATE ... SET',
|
|
|
|
|
|
example: "UPDATE users SET age = age + 1 WHERE city = '北京';",
|
|
|
|
|
|
explanation: [
|
|
|
|
|
|
{ keyword: 'UPDATE users', meaning: '更新 users 表' },
|
|
|
|
|
|
{ keyword: 'SET age = age + 1', meaning: '把 age 设为 age + 1' },
|
|
|
|
|
|
{ keyword: "WHERE city = '北京'", meaning: '只修改城市为北京的行' }
|
|
|
|
|
|
],
|
|
|
|
|
|
result: {
|
|
|
|
|
|
columns: ['结果'],
|
|
|
|
|
|
rows: [['✅ 成功更新 2 行']]
|
|
|
|
|
|
},
|
|
|
|
|
|
warning: '<strong>重要警告:</strong>如果忘记写 WHERE,会修改<strong>所有行</strong>!这是最危险的操作之一。'
|
|
|
|
|
|
},
|
|
|
|
|
|
DELETE: {
|
|
|
|
|
|
key: 'DELETE',
|
|
|
|
|
|
name: '删除',
|
|
|
|
|
|
icon: '🗑️',
|
|
|
|
|
|
keyword: 'DELETE FROM',
|
|
|
|
|
|
example: 'DELETE FROM users WHERE user_id = 4;',
|
|
|
|
|
|
explanation: [
|
|
|
|
|
|
{ keyword: 'DELETE FROM users', meaning: '从 users 表删除' },
|
|
|
|
|
|
{ keyword: 'WHERE user_id = 4', meaning: '只删除 user_id 为 4 的行' }
|
|
|
|
|
|
],
|
|
|
|
|
|
result: {
|
|
|
|
|
|
columns: ['结果'],
|
|
|
|
|
|
rows: [['✅ 成功删除 1 行']]
|
|
|
|
|
|
},
|
|
|
|
|
|
warning: '<strong>重要警告:</strong>和 UPDATE 一样,如果忘记写 WHERE,会删除<strong>整张表</strong>的所有数据!'
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const currentOperation = computed(() => operations[currentOp.value])
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
2026-01-16 19:10:21 +08:00
|
|
|
|
<style scoped>
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.sql-playground-demo {
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
2026-02-14 20:23:34 +08:00
|
|
|
|
border-radius: 6px;
|
2026-02-13 22:10:03 +08:00
|
|
|
|
background: var(--vp-c-bg-soft);
|
2026-02-14 20:23:34 +08:00
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
margin: 0.5rem 0;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.demo-header {
|
2026-01-16 19:10:21 +08:00
|
|
|
|
display: flex;
|
2026-02-13 22:10:03 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.demo-header .icon { font-size: 1.25rem; }
|
|
|
|
|
|
.demo-header .title { font-weight: bold; font-size: 1rem; }
|
|
|
|
|
|
.demo-header .subtitle { color: var(--vp-c-text-2); font-size: 0.85rem; margin-left: 0.5rem; }
|
|
|
|
|
|
|
|
|
|
|
|
.intro-text {
|
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
line-height: 1.6;
|
|
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border-radius: 6px;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.intro-text .highlight {
|
|
|
|
|
|
color: var(--vp-c-brand-1);
|
|
|
|
|
|
font-weight: 500;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.operation-selector {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(4, 1fr);
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
@media (max-width: 640px) {
|
|
|
|
|
|
.operation-selector {
|
|
|
|
|
|
grid-template-columns: repeat(2, 1fr);
|
|
|
|
|
|
}
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.op-btn {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 4px;
|
|
|
|
|
|
padding: 0.75rem 0.5rem;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
transition: all 0.2s;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.op-btn:hover {
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.op-btn.active {
|
|
|
|
|
|
background: var(--vp-c-brand-soft);
|
|
|
|
|
|
border-color: var(--vp-c-brand);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.op-icon { font-size: 1.25rem; }
|
|
|
|
|
|
.op-name { font-size: 0.8rem; font-weight: 500; }
|
|
|
|
|
|
.op-keyword { font-size: 0.65rem; color: var(--vp-c-text-3); font-family: monospace; }
|
|
|
|
|
|
|
|
|
|
|
|
.content-area {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
gap: 1rem;
|
|
|
|
|
|
margin-bottom: 1rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
|
|
.content-area {
|
|
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
|
|
}
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.example-section, .explanation-section {
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.section-title {
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
|
|
color: var(--vp-c-text-1);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.code-block {
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
overflow-x: auto;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.code-block code {
|
|
|
|
|
|
font-family: var(--vp-font-family-mono);
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
color: var(--vp-c-brand-1);
|
|
|
|
|
|
line-height: 1.5;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.explanation-list {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 0.5rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.explanation-item {
|
2026-01-16 19:10:21 +08:00
|
|
|
|
display: flex;
|
2026-02-13 22:10:03 +08:00
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
gap: 0.5rem;
|
|
|
|
|
|
font-size: 0.8rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.keyword {
|
|
|
|
|
|
font-family: var(--vp-font-family-mono);
|
|
|
|
|
|
color: var(--vp-c-brand-1);
|
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
|
flex-shrink: 0;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.meaning {
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
line-height: 1.4;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.result-section {
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.result-table {
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 4px;
|
|
|
|
|
|
overflow: hidden;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.table-header {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.header-cell {
|
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
|
font-size: 0.75rem;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
text-align: center;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.table-body {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-13 22:10:03 +08:00
|
|
|
|
.table-row {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.table-row:last-child {
|
|
|
|
|
|
border-bottom: none;
|
2026-01-16 19:10:21 +08:00
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.table-cell {
|
|
|
|
|
|
padding: 0.5rem 0.75rem;
|
|
|
|
|
|
font-size: 0.8rem;
|
|
|
|
|
|
color: var(--vp-c-text-1);
|
2026-01-16 19:10:21 +08:00
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
2026-02-13 22:10:03 +08:00
|
|
|
|
|
|
|
|
|
|
.warning-box {
|
|
|
|
|
|
background: rgba(239, 68, 68, 0.05);
|
|
|
|
|
|
border: 1px solid rgba(239, 68, 68, 0.2);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.warning-box .icon {
|
|
|
|
|
|
margin-right: 0.25rem;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-box {
|
|
|
|
|
|
background: var(--vp-c-bg-alt);
|
|
|
|
|
|
padding: 0.75rem;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
font-size: 0.85rem;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
line-height: 1.5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-box .icon { margin-right: 0.25rem; }
|
2026-01-16 19:10:21 +08:00
|
|
|
|
</style>
|