refactor(web): 重构前端界面组件和导航结构
All checks were successful
Build Multi-Platform Binaries / build-frontend (push) Successful in 40s
Build Multi-Platform Binaries / build-binaries (amd64, linux, client, true) (push) Successful in 1m24s
Build Multi-Platform Binaries / build-binaries (amd64, darwin, server, false) (push) Successful in 1m27s
Build Multi-Platform Binaries / build-binaries (amd64, windows, client, true) (push) Successful in 1m27s
Build Multi-Platform Binaries / build-binaries (amd64, linux, server, true) (push) Successful in 1m49s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, client, true) (push) Successful in 1m15s
Build Multi-Platform Binaries / build-binaries (amd64, windows, server, true) (push) Successful in 1m39s
Build Multi-Platform Binaries / build-binaries (arm64, darwin, server, false) (push) Successful in 1m45s
Build Multi-Platform Binaries / build-binaries (arm, 7, linux, server, true) (push) Successful in 2m2s
Build Multi-Platform Binaries / build-binaries (arm64, linux, client, true) (push) Successful in 1m13s
Build Multi-Platform Binaries / build-binaries (arm64, linux, server, true) (push) Successful in 1m46s
Build Multi-Platform Binaries / build-binaries (arm64, windows, server, false) (push) Successful in 1m20s

- 替换 naive-ui 导航组件为自定义玻璃态设计组件
- 引入 GlassModal、GlassSwitch、GlassTag 等自定义组件
- 更新 App.vue 中的布局结构和样式设计
- 重构客户端视图中的表单验证逻辑
- 移除 tabs 组件改用侧边栏导航菜单
- 添加内联日志面板组件
- 优化响应式布局和移动端适配
- 更新图标组件引用方式
- 简化表单验证实现方式
- 添加插件下拉菜单功能
- 优化客户端管理界面UI
- 更新依赖注入声明文件
- 重构用户菜单交互逻辑
- 移除路由跳转相关代码优化性能
This commit is contained in:
Flik
2026-01-22 17:37:26 +08:00
parent 4500f48d4c
commit 67c41cde5c
13 changed files with 2025 additions and 786 deletions

View File

@@ -0,0 +1,112 @@
<script setup lang="ts">
import { CloseOutline } from '@vicons/ionicons5'
defineProps<{
show: boolean
title: string
width?: string
}>()
const emit = defineEmits<{
(e: 'close'): void
}>()
</script>
<template>
<Teleport to="body">
<div v-if="show" class="modal-overlay" @click.self="emit('close')">
<div class="modal-container" :style="{ maxWidth: width || '500px' }">
<div class="modal-header">
<h3>{{ title }}</h3>
<button class="close-btn" @click="emit('close')">
<CloseOutline />
</button>
</div>
<div class="modal-body">
<slot />
</div>
<div class="modal-footer">
<slot name="footer" />
</div>
</div>
</div>
</Teleport>
</template>
<style scoped>
.modal-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 24px;
}
.modal-container {
width: 100%;
background: rgba(30, 27, 75, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
overflow: hidden;
}
.modal-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-header h3 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: white;
}
.close-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 6px;
padding: 6px;
color: rgba(255, 255, 255, 0.6);
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
}
.close-btn:hover {
background: rgba(239, 68, 68, 0.2);
color: #fca5a5;
}
.close-btn svg {
width: 18px;
height: 18px;
}
.modal-body {
padding: 20px;
}
.modal-footer {
padding: 16px 20px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
display: flex;
justify-content: flex-end;
gap: 12px;
}
.modal-footer:empty {
display: none;
}
</style>

View File

@@ -0,0 +1,85 @@
<script setup lang="ts">
const props = defineProps<{
modelValue?: boolean
size?: 'small' | 'medium'
disabled?: boolean
}>()
const emit = defineEmits<{
(e: 'update:modelValue', value: boolean): void
}>()
const toggle = () => {
if (!props.disabled) {
emit('update:modelValue', !props.modelValue)
}
}
</script>
<template>
<button
class="glass-switch"
:class="[size || 'small', { active: modelValue, disabled }]"
@click="toggle"
:disabled="disabled"
>
<span class="switch-thumb"></span>
</button>
</template>
<style scoped>
.glass-switch {
position: relative;
width: 36px;
height: 20px;
background: rgba(255, 255, 255, 0.15);
border: none;
border-radius: 10px;
cursor: pointer;
transition: all 0.2s;
padding: 0;
}
.glass-switch.small {
width: 32px;
height: 18px;
}
.glass-switch:hover:not(.disabled) {
background: rgba(255, 255, 255, 0.25);
}
.glass-switch.active {
background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
}
.glass-switch.disabled {
opacity: 0.5;
cursor: not-allowed;
}
.switch-thumb {
position: absolute;
top: 2px;
left: 2px;
width: 14px;
height: 14px;
background: white;
border-radius: 50%;
transition: transform 0.2s;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.glass-switch.small .switch-thumb {
width: 12px;
height: 12px;
}
.glass-switch.active .switch-thumb {
transform: translateX(16px);
}
.glass-switch.small.active .switch-thumb {
transform: translateX(14px);
}
</style>

View File

@@ -0,0 +1,60 @@
<script setup lang="ts">
defineProps<{
type?: 'default' | 'success' | 'warning' | 'error' | 'info'
size?: 'small' | 'medium'
round?: boolean
}>()
</script>
<template>
<span class="glass-tag" :class="[type || 'default', size || 'small', { round }]">
<slot />
</span>
</template>
<style scoped>
.glass-tag {
display: inline-flex;
align-items: center;
padding: 2px 8px;
border-radius: 4px;
font-size: 12px;
font-weight: 500;
background: rgba(255, 255, 255, 0.1);
color: rgba(255, 255, 255, 0.8);
border: 1px solid rgba(255, 255, 255, 0.15);
}
.glass-tag.round {
border-radius: 20px;
}
.glass-tag.medium {
padding: 4px 12px;
font-size: 13px;
}
.glass-tag.success {
background: rgba(52, 211, 153, 0.15);
border-color: rgba(52, 211, 153, 0.3);
color: #34d399;
}
.glass-tag.warning {
background: rgba(251, 191, 36, 0.15);
border-color: rgba(251, 191, 36, 0.3);
color: #fbbf24;
}
.glass-tag.error {
background: rgba(239, 68, 68, 0.15);
border-color: rgba(239, 68, 68, 0.3);
color: #f87171;
}
.glass-tag.info {
background: rgba(96, 165, 250, 0.15);
border-color: rgba(96, 165, 250, 0.3);
color: #60a5fa;
}
</style>

View File

@@ -0,0 +1,299 @@
<script setup lang="ts">
import { ref, onMounted, onUnmounted, nextTick } from 'vue'
import { PlayOutline, StopOutline, TrashOutline } from '@vicons/ionicons5'
import { createLogStream } from '../api'
import type { LogEntry } from '../types'
const props = defineProps<{
clientId: string
}>()
const logs = ref<LogEntry[]>([])
const isStreaming = ref(false)
const autoScroll = ref(true)
const loading = ref(false)
let eventSource: EventSource | null = null
const logContainer = ref<HTMLElement | null>(null)
const startStream = () => {
if (eventSource) {
eventSource.close()
}
loading.value = true
isStreaming.value = true
eventSource = createLogStream(
props.clientId,
{ lines: 100, follow: true, level: '' },
(entry) => {
logs.value.push(entry)
if (logs.value.length > 500) {
logs.value = logs.value.slice(-300)
}
if (autoScroll.value) {
nextTick(() => scrollToBottom())
}
loading.value = false
},
() => {
isStreaming.value = false
loading.value = false
}
)
}
const stopStream = () => {
if (eventSource) {
eventSource.close()
eventSource = null
}
isStreaming.value = false
}
const clearLogs = () => {
logs.value = []
}
const scrollToBottom = () => {
if (logContainer.value) {
logContainer.value.scrollTop = logContainer.value.scrollHeight
}
}
const getLevelColor = (level: string): string => {
switch (level) {
case 'error': return '#fca5a5'
case 'warn': return '#fcd34d'
case 'info': return '#60a5fa'
case 'debug': return '#9ca3af'
default: return 'rgba(255,255,255,0.7)'
}
}
const formatTime = (ts: number): string => {
return new Date(ts).toLocaleTimeString('en-US', { hour12: false })
}
onMounted(() => {
startStream()
})
onUnmounted(() => {
stopStream()
})
</script>
<template>
<div class="inline-log-panel">
<div class="log-toolbar">
<div class="toolbar-left">
<span class="log-title">实时日志</span>
<span v-if="isStreaming" class="streaming-badge">
<span class="streaming-dot"></span>
实时
</span>
</div>
<div class="toolbar-right">
<button v-if="!isStreaming" class="tool-btn" @click="startStream" title="开始">
<PlayOutline class="tool-icon" />
</button>
<button v-else class="tool-btn" @click="stopStream" title="停止">
<StopOutline class="tool-icon" />
</button>
<button class="tool-btn" @click="clearLogs" title="清空">
<TrashOutline class="tool-icon" />
</button>
<label class="auto-scroll-toggle">
<input type="checkbox" v-model="autoScroll" />
<span>自动滚动</span>
</label>
</div>
</div>
<div ref="logContainer" class="log-content">
<div v-if="loading && logs.length === 0" class="log-loading">
连接中...
</div>
<div v-else-if="logs.length === 0" class="log-empty">
暂无日志
</div>
<div v-else class="log-lines">
<div v-for="(log, index) in logs" :key="index" class="log-line">
<span class="log-time">{{ formatTime(log.ts) }}</span>
<span class="log-level" :style="{ color: getLevelColor(log.level) }">
[{{ log.level.toUpperCase() }}]
</span>
<span class="log-src">[{{ log.src }}]</span>
<span class="log-msg">{{ log.msg }}</span>
</div>
</div>
</div>
</div>
</template>
<style scoped>
.inline-log-panel {
background: rgba(0, 0, 0, 0.3);
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08);
overflow: hidden;
}
.log-toolbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 16px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
background: rgba(255, 255, 255, 0.03);
}
.toolbar-left {
display: flex;
align-items: center;
gap: 10px;
}
.log-title {
font-size: 13px;
font-weight: 600;
color: white;
}
.streaming-badge {
display: flex;
align-items: center;
gap: 6px;
font-size: 11px;
color: #34d399;
background: rgba(52, 211, 153, 0.15);
padding: 2px 8px;
border-radius: 10px;
}
.streaming-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: #34d399;
animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.toolbar-right {
display: flex;
align-items: center;
gap: 8px;
}
.tool-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 6px;
padding: 6px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
}
.tool-btn:hover {
background: rgba(255, 255, 255, 0.2);
color: white;
}
.tool-icon {
width: 16px;
height: 16px;
}
.auto-scroll-toggle {
display: flex;
align-items: center;
gap: 6px;
font-size: 12px;
color: rgba(255, 255, 255, 0.6);
cursor: pointer;
}
.auto-scroll-toggle input {
width: 14px;
height: 14px;
accent-color: #a78bfa;
}
.log-content {
height: 200px;
overflow-y: auto;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 12px;
line-height: 1.6;
}
.log-loading,
.log-empty {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: rgba(255, 255, 255, 0.4);
font-size: 13px;
}
.log-lines {
padding: 8px 12px;
}
.log-line {
display: flex;
gap: 8px;
padding: 2px 0;
white-space: nowrap;
}
.log-time {
color: rgba(255, 255, 255, 0.4);
flex-shrink: 0;
}
.log-level {
flex-shrink: 0;
font-weight: 500;
}
.log-src {
color: rgba(255, 255, 255, 0.5);
flex-shrink: 0;
}
.log-msg {
color: rgba(255, 255, 255, 0.8);
overflow: hidden;
text-overflow: ellipsis;
}
/* Scrollbar */
.log-content::-webkit-scrollbar {
width: 6px;
}
.log-content::-webkit-scrollbar-track {
background: transparent;
}
.log-content::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
}
.log-content::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.3);
}
</style>

View File

@@ -1,7 +1,8 @@
<script setup lang="ts">
import { ref, computed, onMounted, onUnmounted, watch, nextTick } from 'vue'
import { NCard, NSpace, NButton, NSelect, NSwitch, NInput, NIcon, NEmpty, NSpin } from 'naive-ui'
import { PlayOutline, StopOutline, TrashOutline, DownloadOutline } from '@vicons/ionicons5'
import {
PlayOutline, StopOutline, TrashOutline, DownloadOutline, CloseOutline
} from '@vicons/ionicons5'
import { createLogStream } from '../api'
import type { LogEntry } from '../types'
@@ -24,14 +25,6 @@ const loading = ref(false)
let eventSource: EventSource | null = null
const logContainer = ref<HTMLElement | null>(null)
const levelOptions = [
{ label: '所有级别', value: '' },
{ label: 'Info', value: 'info' },
{ label: 'Warning', value: 'warn' },
{ label: 'Error', value: 'error' },
{ label: 'Debug', value: 'debug' }
]
const startStream = () => {
if (eventSource) {
eventSource.close()
@@ -133,100 +126,354 @@ onUnmounted(() => {
</script>
<template>
<n-card title="客户端日志" :closable="true" @close="emit('close')">
<template #header-extra>
<n-space :size="8">
<n-select
v-model:value="levelFilter"
:options="levelOptions"
size="small"
style="width: 110px;"
@update:value="() => { stopStream(); logs = []; startStream(); }"
/>
<n-input
v-model:value="searchText"
placeholder="搜索..."
size="small"
style="width: 120px;"
clearable
/>
<n-switch v-model:value="autoScroll" size="small">
<template #checked>自动滚动</template>
<template #unchecked>手动</template>
</n-switch>
<n-button size="small" quaternary @click="clearLogs">
<template #icon><n-icon><TrashOutline /></n-icon></template>
</n-button>
<n-button size="small" quaternary @click="downloadLogs">
<template #icon><n-icon><DownloadOutline /></n-icon></template>
</n-button>
<n-button
size="small"
:type="isStreaming ? 'error' : 'success'"
@click="isStreaming ? stopStream() : startStream()"
>
<template #icon>
<n-icon><StopOutline v-if="isStreaming" /><PlayOutline v-else /></n-icon>
</template>
{{ isStreaming ? '停止' : '开始' }}
</n-button>
</n-space>
</template>
<div v-if="visible" class="log-overlay" @click.self="emit('close')">
<div class="log-modal">
<!-- Header -->
<div class="log-header">
<h3>客户端日志</h3>
<div class="log-controls">
<select v-model="levelFilter" class="log-select" @change="() => { stopStream(); logs = []; startStream(); }">
<option value="">所有级别</option>
<option value="info">Info</option>
<option value="warn">Warning</option>
<option value="error">Error</option>
<option value="debug">Debug</option>
</select>
<input v-model="searchText" type="text" class="log-input" placeholder="搜索..." />
<label class="log-toggle">
<input type="checkbox" v-model="autoScroll" />
<span>自动滚动</span>
</label>
<button class="icon-btn" @click="clearLogs" title="清空">
<TrashOutline />
</button>
<button class="icon-btn" @click="downloadLogs" title="下载">
<DownloadOutline />
</button>
<button class="action-btn" :class="isStreaming ? 'danger' : 'success'" @click="isStreaming ? stopStream() : startStream()">
<StopOutline v-if="isStreaming" />
<PlayOutline v-else />
<span>{{ isStreaming ? '停止' : '开始' }}</span>
</button>
</div>
<button class="close-btn" @click="emit('close')">
<CloseOutline />
</button>
</div>
<n-spin :show="loading && logs.length === 0">
<div
ref="logContainer"
class="log-container"
>
<n-empty v-if="filteredLogs.length === 0" description="暂无日志" />
<div
v-for="(log, i) in filteredLogs"
:key="i"
class="log-line"
>
<span class="log-time">{{ formatTime(log.ts) }}</span>
<span class="log-level" :style="{ color: getLevelColor(log.level) }">[{{ log.level.toUpperCase() }}]</span>
<span class="log-src">[{{ log.src }}]</span>
<span class="log-msg">{{ log.msg }}</span>
<!-- Content -->
<div class="log-body">
<div v-if="loading && logs.length === 0" class="log-loading">加载中...</div>
<div ref="logContainer" class="log-container">
<div v-if="filteredLogs.length === 0" class="log-empty">暂无日志</div>
<div v-for="(log, i) in filteredLogs" :key="i" class="log-line">
<span class="log-time">{{ formatTime(log.ts) }}</span>
<span class="log-level" :style="{ color: getLevelColor(log.level) }">[{{ log.level.toUpperCase() }}]</span>
<span class="log-src">[{{ log.src }}]</span>
<span class="log-msg">{{ log.msg }}</span>
</div>
</div>
</div>
</n-spin>
</n-card>
</div>
</div>
</template>
<style scoped>
.log-container {
height: 400px;
overflow-y: auto;
background: #1e1e1e;
padding: 8px;
font-family: 'Consolas', 'Monaco', monospace;
font-size: 12px;
border-radius: 4px;
/* Overlay */
.log-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 24px;
}
/* Modal */
.log-modal {
width: 100%;
max-width: 900px;
max-height: 80vh;
background: rgba(30, 27, 75, 0.95);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.12);
display: flex;
flex-direction: column;
overflow: hidden;
}
/* Header */
.log-header {
display: flex;
align-items: center;
gap: 16px;
padding: 16px 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.log-header h3 {
margin: 0;
font-size: 16px;
font-weight: 600;
color: white;
white-space: nowrap;
}
.log-controls {
flex: 1;
display: flex;
align-items: center;
gap: 12px;
flex-wrap: wrap;
}
/* Select */
.log-select {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
padding: 6px 12px;
color: white;
font-size: 13px;
cursor: pointer;
outline: none;
}
.log-select option {
background: #1e1b4b;
color: white;
}
/* Input */
.log-input {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
padding: 6px 12px;
color: white;
font-size: 13px;
width: 150px;
outline: none;
}
.log-input::placeholder {
color: rgba(255, 255, 255, 0.4);
}
.log-input:focus {
border-color: rgba(167, 139, 250, 0.5);
}
/* Toggle */
.log-toggle {
display: flex;
align-items: center;
gap: 6px;
color: rgba(255, 255, 255, 0.7);
font-size: 13px;
cursor: pointer;
white-space: nowrap;
}
.log-toggle input[type="checkbox"] {
width: 16px;
height: 16px;
accent-color: #a78bfa;
}
/* Icon Button */
.icon-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 6px;
padding: 6px;
color: rgba(255, 255, 255, 0.7);
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
}
.icon-btn:hover {
background: rgba(255, 255, 255, 0.2);
color: white;
}
.icon-btn svg {
width: 18px;
height: 18px;
}
/* Action Button */
.action-btn {
display: flex;
align-items: center;
gap: 6px;
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 6px;
padding: 6px 12px;
color: white;
font-size: 13px;
cursor: pointer;
transition: all 0.2s;
}
.action-btn:hover {
background: rgba(255, 255, 255, 0.2);
}
.action-btn svg {
width: 16px;
height: 16px;
}
.action-btn.success {
background: rgba(52, 211, 153, 0.2);
border-color: rgba(52, 211, 153, 0.3);
color: #34d399;
}
.action-btn.danger {
background: rgba(239, 68, 68, 0.2);
border-color: rgba(239, 68, 68, 0.3);
color: #fca5a5;
}
/* Close Button */
.close-btn {
background: rgba(255, 255, 255, 0.1);
border: none;
border-radius: 6px;
padding: 6px;
color: rgba(255, 255, 255, 0.6);
cursor: pointer;
transition: all 0.2s;
display: flex;
align-items: center;
justify-content: center;
margin-left: auto;
}
.close-btn:hover {
background: rgba(239, 68, 68, 0.2);
color: #fca5a5;
}
.close-btn svg {
width: 20px;
height: 20px;
}
/* Body */
.log-body {
flex: 1;
padding: 16px;
overflow: hidden;
display: flex;
flex-direction: column;
}
.log-loading {
text-align: center;
padding: 32px;
color: rgba(255, 255, 255, 0.5);
}
/* Container */
.log-container {
flex: 1;
height: 400px;
overflow-y: auto;
background: rgba(0, 0, 0, 0.3);
padding: 12px;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 12px;
border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.log-empty {
text-align: center;
padding: 48px;
color: rgba(255, 255, 255, 0.4);
}
/* Log Line */
.log-line {
line-height: 1.6;
line-height: 1.8;
white-space: pre-wrap;
word-break: break-all;
color: #d4d4d4;
color: rgba(255, 255, 255, 0.8);
padding: 2px 0;
}
.log-time {
color: #808080;
color: rgba(255, 255, 255, 0.4);
margin-right: 8px;
}
.log-level {
margin-right: 8px;
font-weight: 500;
}
.log-src {
color: #a0a0a0;
color: rgba(167, 139, 250, 0.8);
margin-right: 8px;
}
.log-msg {
color: #d4d4d4;
color: rgba(255, 255, 255, 0.85);
}
/* Scrollbar */
.log-container::-webkit-scrollbar {
width: 6px;
}
.log-container::-webkit-scrollbar-track {
background: rgba(255, 255, 255, 0.05);
border-radius: 3px;
}
.log-container::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.2);
border-radius: 3px;
}
.log-container::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.3);
}
/* Responsive */
@media (max-width: 768px) {
.log-overlay {
padding: 12px;
}
.log-modal {
max-height: 90vh;
}
.log-header {
flex-wrap: wrap;
}
.log-controls {
order: 1;
width: 100%;
margin-top: 12px;
}
.log-input {
width: 100%;
}
}
</style>