Files
wu-lazy-cloud-network/website/src/assets/styles/index.scss
2025-07-29 23:55:10 +08:00

232 lines
3.9 KiB
SCSS

// 引入组件样式
//@import './components.scss';
// 全局样式变量
:root {
--primary-color: #409eff;
--success-color: #67c23a;
--warning-color: #e6a23c;
--danger-color: #f56c6c;
--info-color: #909399;
--text-primary: #303133;
--text-regular: #606266;
--text-secondary: #909399;
--text-placeholder: #c0c4cc;
--border-color: #dcdfe6;
--border-light: #e4e7ed;
--border-lighter: #ebeef5;
--border-extra-light: #f2f6fc;
--background-color: #ffffff;
--background-light: #f5f7fa;
--shadow-light: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
--shadow-base: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
--shadow-dark: 0 4px 8px rgba(0, 0, 0, 0.12), 0 0 6px rgba(0, 0, 0, 0.04);
}
// 全局样式
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Helvetica Neue', Helvetica, 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: var(--text-primary);
background-color: var(--background-color);
}
// 通用工具类
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.flex {
display: flex;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.flex-between {
display: flex;
align-items: center;
justify-content: space-between;
}
.flex-column {
display: flex;
flex-direction: column;
}
// 按钮样式
.btn {
display: inline-block;
padding: 12px 24px;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
&.btn-primary {
background-color: var(--primary-color);
color: white;
&:hover {
background-color: #66b1ff;
}
}
&.btn-outline {
background-color: transparent;
border: 2px solid var(--primary-color);
color: var(--primary-color);
&:hover {
background-color: var(--primary-color);
color: white;
}
}
&.btn-large {
padding: 16px 32px;
font-size: 16px;
}
}
// 卡片样式
.card {
background: white;
border-radius: 8px;
box-shadow: var(--shadow-light);
padding: 24px;
margin-bottom: 20px;
&.card-hover {
transition: all 0.3s ease;
&:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-dark);
}
}
}
// 标题样式
.title {
font-weight: 600;
margin-bottom: 16px;
&.title-large {
font-size: 32px;
line-height: 1.2;
}
&.title-medium {
font-size: 24px;
line-height: 1.3;
}
&.title-small {
font-size: 18px;
line-height: 1.4;
}
}
// 段落样式
.paragraph {
line-height: 1.6;
color: var(--text-regular);
margin-bottom: 16px;
}
// 代码块样式
.code-block {
background-color: #f6f8fa;
border: 1px solid var(--border-light);
border-radius: 6px;
padding: 16px;
font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
font-size: 14px;
line-height: 1.5;
overflow-x: auto;
&.code-block-dark {
background-color: #2d3748;
color: #e2e8f0;
border-color: #4a5568;
}
}
// 响应式设计
@media (max-width: 768px) {
.container {
padding: 0 16px;
}
.title-large {
font-size: 24px !important;
}
.title-medium {
font-size: 20px !important;
}
.btn-large {
padding: 12px 24px !important;
font-size: 14px !important;
}
}
// 动画效果
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.3s ease;
}
.fade-enter-from,
.fade-leave-to {
opacity: 0;
}
.slide-up-enter-active,
.slide-up-leave-active {
transition: all 0.3s ease;
}
.slide-up-enter-from {
transform: translateY(30px);
opacity: 0;
}
.slide-up-leave-to {
transform: translateY(-30px);
opacity: 0;
}