diff --git a/src/user_pages/myself/index.scss b/src/user_pages/myself/index.scss index dd15bbf..b84a546 100644 --- a/src/user_pages/myself/index.scss +++ b/src/user_pages/myself/index.scss @@ -3,7 +3,17 @@ // 个人页面样式 .myself_page { min-height: 100vh; - background: radial-gradient(circle at 50% 0%, rgba(238, 255, 220, 1) 0%, rgba(255, 255, 255, 1) 37%); + background: radial-gradient(circle at 50% 0, + /* 光晕圆心在顶部中间 */ + rgba(173, 216, 230, 0.9) 0px, + /* 中间更深的浅蓝 */ + rgba(173, 216, 230, 0.5) 200px, + /* 100px 处开始淡化 */ + rgba(255, 255, 255, 1) 300px, + /* 到 200px 变成白色 */ + #ffffff 100% + /* 200px 以下全白 */ + ); position: relative; overflow: hidden; box-sizing: border-box; @@ -17,7 +27,7 @@ margin-top: 0; box-sizing: border-box; overflow-y: auto; - padding: 0px 15px 15px 15px ; + padding: 0px 15px 15px 15px; // 用户信息区域 .user_info_section { @@ -355,5 +365,4 @@ } } } -} - +} \ No newline at end of file