加入社群页面

This commit is contained in:
2025-11-27 17:02:51 +08:00
parent a20490f28d
commit 2ad9988120
5 changed files with 160 additions and 17 deletions

View File

@@ -0,0 +1,22 @@
// 他人用户页面样式
.page_container {
height: 100vh;
overflow: hidden;
position: relative;
overflow-y: auto;
box-sizing: border-box;
background: radial-gradient(
circle at 50% 0,
/* 光晕圆心在顶部中间 */ rgba(191, 255, 239, 0.9) 0px,
/* 中间更深的浅蓝 */ rgba(191, 255, 239, 0.5) 200px,
/* 100px 处开始淡化 */ #fafafa 300px,
/* 到 200px 变成白色 */ #fafafa 100% /* 200px 以下全白 */
);
}
// 主要内容区域
.main_content {
display: flex;
flex-direction: column;
align-items: center;
}