30e100ef3e
2. 添加权限映射表和全局查看权限的hook,便于路由控制不同权限按钮显示/隐藏。 3. 删除评查点分组的部分旧api方法。 4. 对接评查点分组接口,文档类型接口, 提示词管理接口, 入口模块管理的接口。 5. 优化角色权限管理的接口,完善不用地区的访问权限认证。 6. 优化主页交叉评查和设置的入口样式和布局。 7. 优化评查点分组,评查规则的功能权限校验。
426 lines
8.2 KiB
CSS
426 lines
8.2 KiB
CSS
/* 主页样式 */
|
|
.home-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
/* height: 100%; */
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
/* 头部样式 */
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0.75rem 1rem;
|
|
background-color: white;
|
|
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.15);
|
|
z-index: 1;
|
|
}
|
|
|
|
.logo-container {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.logo {
|
|
height: 60px;
|
|
margin-right: 0.15rem;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1.8rem;
|
|
font-weight: 800;
|
|
color: #333;
|
|
}
|
|
|
|
.logo-text-en {
|
|
margin-top: -0.2rem;
|
|
font-size: 0.85rem;
|
|
color: #666;
|
|
font-weight: 500;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05rem;
|
|
}
|
|
|
|
.user-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.datetime {
|
|
font-size:1rem;
|
|
color: #666;
|
|
}
|
|
|
|
.user {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.avatar {
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 50%;
|
|
object-fit: cover;
|
|
}
|
|
|
|
.username {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
|
|
/* 主要内容区域 */
|
|
.index-main-content {
|
|
position: relative; /* 为绝对定位的管理入口提供定位上下文 */
|
|
height: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: flex-start; /* 改为从顶部开始 */
|
|
padding-bottom: 0;
|
|
margin-bottom: 0;
|
|
background-color: #f0f7f4;
|
|
background-image: url('/images/主页背景-min.png');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
.index-main-content-container {
|
|
padding: 0;
|
|
margin: 0 auto;
|
|
width: 90%;
|
|
max-width: 1200px;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.welcome-text {
|
|
font-size: 1.95rem;
|
|
font-weight: 500;
|
|
color: #333;
|
|
text-align: center;
|
|
/* 标题固定在页面上方 1/4 处,水平垂直居中 */
|
|
height: 25vh; /* 占据上方 25% 的高度 */
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0;
|
|
flex-shrink: 0; /* 防止被压缩 */
|
|
}
|
|
|
|
/* 模块网格容器 - 每行4个 */
|
|
.modules-container {
|
|
flex: 1; /* 占据剩余空间 */
|
|
overflow-y: auto; /* 超出高度时显示垂直滚动条 */
|
|
overflow-x: hidden; /* 隐藏水平滚动条 */
|
|
padding: 2rem 0 3rem 0;
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr); /* 每行固定4列 */
|
|
gap: 2rem 2.5rem; /* 行间距2rem,列间距2.5rem */
|
|
align-content: flex-start;
|
|
max-width: 1200px; /* 限制最大宽度 */
|
|
margin: 0 auto; /* 居中 */
|
|
}
|
|
|
|
/* 滚动条样式优化 */
|
|
.modules-container::-webkit-scrollbar {
|
|
width: 8px;
|
|
}
|
|
|
|
.modules-container::-webkit-scrollbar-track {
|
|
background: rgba(0, 0, 0, 0.05);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.modules-container::-webkit-scrollbar-thumb {
|
|
background: rgba(0, 104, 74, 0.3);
|
|
border-radius: 4px;
|
|
transition: background 0.2s;
|
|
}
|
|
|
|
.modules-container::-webkit-scrollbar-thumb:hover {
|
|
background: rgba(0, 104, 74, 0.5);
|
|
}
|
|
|
|
.module-card {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
gap: 1.5rem;
|
|
padding: 0 2rem;
|
|
height: 136px;
|
|
width: 100%; /* 适应grid列宽 */
|
|
background: linear-gradient(180deg, #ebf1f7 0%, #ffffff 100%);
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
|
|
transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
|
|
cursor: pointer;
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
.module-card:hover {
|
|
transform: translateY(-5px);
|
|
border-color: #269b6c;
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* .contract-icon {
|
|
background-image: url('/images/contract-icon.svg');
|
|
}
|
|
|
|
.review-icon {
|
|
background-image: url('/images/review-icon.svg');
|
|
}
|
|
|
|
.ai-icon {
|
|
background-image: url('/images/ai-icon.svg');
|
|
} */
|
|
|
|
.module-name {
|
|
font-size: 1.25rem;
|
|
font-weight: 500;
|
|
color: #333;
|
|
}
|
|
|
|
|
|
.mountains-bg {
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url('/images/mountains-bg.svg');
|
|
background-position: center bottom;
|
|
background-repeat: no-repeat;
|
|
background-size: cover;
|
|
}
|
|
|
|
.settings-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.5rem;
|
|
background: transparent;
|
|
border: none;
|
|
color: #666;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.settings-button:hover {
|
|
background-color: rgba(0, 104, 74, 0.05);
|
|
color: #00684a;
|
|
}
|
|
|
|
.settings-button i {
|
|
font-size: 1.5rem;
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.settings-button:hover i {
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.logout-button {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0.5rem;
|
|
background: transparent;
|
|
border: none;
|
|
color: #666;
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.logout-button:hover {
|
|
background-color: rgba(0, 104, 74, 0.05);
|
|
color: #00684a;
|
|
}
|
|
|
|
.logout-button i {
|
|
font-size: 1.25rem;
|
|
}
|
|
|
|
/* ===== 移动端响应式样式 ===== */
|
|
@media (max-width: 768px) {
|
|
/* 头部样式调整 */
|
|
.header {
|
|
padding: 0.5rem 0.75rem;
|
|
}
|
|
|
|
.logo {
|
|
height: 40px;
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.logo-text-en {
|
|
font-size: 0.65rem;
|
|
margin-top: -0.15rem;
|
|
}
|
|
|
|
/* 隐藏日期时间以节省空间 */
|
|
.datetime {
|
|
display: none;
|
|
}
|
|
|
|
.user-info {
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.username {
|
|
display: none; /* 移动端隐藏用户名,只显示头像 */
|
|
}
|
|
|
|
.avatar {
|
|
width: 36px;
|
|
height: 36px;
|
|
}
|
|
|
|
/* 主内容区域调整 */
|
|
.index-main-content {
|
|
padding: 1rem 0;
|
|
}
|
|
|
|
.index-main-content-container {
|
|
width: 95%;
|
|
padding: 0;
|
|
}
|
|
|
|
.welcome-text {
|
|
font-size: 1.3rem;
|
|
height: 20vh; /* 移动端标题区域稍小一点 */
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
/* 模块容器改为单列 */
|
|
.modules-container {
|
|
padding: 1.5rem 0 2rem 0;
|
|
grid-template-columns: 1fr; /* 移动端单列 */
|
|
gap: 1.25rem;
|
|
max-width: 100%; /* 移除最大宽度限制 */
|
|
}
|
|
|
|
/* 移动端滚动条样式 */
|
|
.modules-container::-webkit-scrollbar {
|
|
width: 6px;
|
|
}
|
|
|
|
/* 模块卡片调整 */
|
|
.module-card {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 100px;
|
|
padding: 0 1.5rem;
|
|
gap: 1.25rem;
|
|
}
|
|
|
|
.module-card img {
|
|
width: 48px !important;
|
|
height: 48px !important;
|
|
}
|
|
|
|
.module-name {
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.settings-button {
|
|
padding: 0.4rem;
|
|
}
|
|
|
|
.settings-button i {
|
|
font-size: 1.35rem;
|
|
}
|
|
|
|
.logout-button {
|
|
padding: 0.4rem;
|
|
}
|
|
|
|
.logout-button i {
|
|
font-size: 1.15rem;
|
|
}
|
|
}
|
|
|
|
/* 超小屏幕 (手机竖屏) */
|
|
@media (max-width: 480px) {
|
|
.header {
|
|
padding: 0.4rem 0.5rem;
|
|
}
|
|
|
|
.logo {
|
|
height: 36px;
|
|
}
|
|
|
|
.logo-text {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.logo-text-en {
|
|
font-size: 0.6rem;
|
|
}
|
|
|
|
.welcome-text {
|
|
font-size: 1.15rem;
|
|
height: 18vh; /* 超小屏幕标题区域更小 */
|
|
}
|
|
|
|
/* 超小屏幕模块网格 */
|
|
.modules-container {
|
|
gap: 1rem;
|
|
}
|
|
|
|
.module-card {
|
|
max-width: 100%;
|
|
height: 90px;
|
|
padding: 0 1.25rem;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.module-card img {
|
|
width: 42px !important;
|
|
height: 42px !important;
|
|
}
|
|
|
|
.module-name {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
/* 平板横屏 */
|
|
@media (min-width: 769px) and (max-width: 1024px) {
|
|
.index-main-content-container {
|
|
width: 85%;
|
|
}
|
|
|
|
.welcome-text {
|
|
font-size: 1.75rem;
|
|
height: 22vh; /* 平板电脑标题区域高度 */
|
|
}
|
|
|
|
/* 平板模块网格 - 每行3个 */
|
|
.modules-container {
|
|
padding: 1.5rem 0 2.5rem 0;
|
|
grid-template-columns: repeat(3, 1fr); /* 平板每行3列 */
|
|
gap: 1.75rem 2rem;
|
|
max-width: 900px; /* 平板上稍窄一些 */
|
|
}
|
|
|
|
.module-card {
|
|
width: 100%;
|
|
height: 120px;
|
|
}
|
|
} |