123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159 |
- /* pages/mine/mine.wxss */
- page {
- background-color: white;
- }
- /* 顶部 */
- .top-area {
- position: relative;
- width: 100%;
- height: 646rpx;
- /* background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 0.01%, rgba(162, 202, 170, 0.18) 40.63%, rgba(236, 241, 255, 0.71) 95.06%); */
- display: flex;
- align-items: center;
- flex-direction: column;
- }
- /* 波浪背景 */
- .wave {
- position: absolute;
- width: 100%;
- height: 100%;
- opacity: 0.4;
- /* filter: blur(4px) drop-shadow(0px 2px 4px rgba(206, 217, 242, 0.41)); */
- }
- /* 头像&名字 */
- .avator-area {
- width: 100%;
- flex: 0.6;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
- .avator-area > .avator {
- position: relative;
- width: 120rpx;
- height: 120rpx;
- border-radius: 70rpx;
- border: 8rpx solid #d4dbea;
- overflow: hidden;
- }
- .avator > image {
- width: 100%;
- height: 100%;
- padding-left: 1rpx;
- }
- .avator-area > .name {
- color: #383d4d;
- font-size: 40rpx;
- font-weight: 700;
- line-height: 60rpx;
- margin-top: 10rpx;
- letter-spacing: 2rpx;
- }
- .avator-area > .name-no {
- color: #566189;
- font-size: 34rpx;
- font-weight: 500;
- line-height: 60rpx;
- margin-top: 40rpx;
- letter-spacing: 2rpx;
- }
- .name-no > text {
- margin: 0 112rpx;
- display: block;
- }
- /* 手机&身份证 */
- .msg-area {
- width: 100%;
- flex: 0.4;
- display: flex;
- justify-content: flex-start;
- flex-direction: column;
- }
- .msg-area > view {
- display: flex;
- justify-content: space-between;
- padding: 0 70rpx;
- font-size: 28rpx;
- line-height: 50rpx;
- }
- .msg-area button {
- min-width: 200rpx;
- height: 68rpx;
- border-radius: 40rpx;
- background: rgba(255, 255, 255, 0.3);
- border: 1px solid #8695b6;
- line-height: 68rpx;
- color: #8695b6;
- font-size: 30rpx;
- margin-top: 20rpx;
- }
- /* 下部 */
- .bottom-area {
- background-color: white;
- min-height: 500rpx;
- border-radius: 40rpx 40rpx 0 0;
- transform: translateY(-50rpx);
- }
- .bottom-area > .title {
- font-size: 34rpx;
- font-weight: 500;
- line-height: 48rpx;
- padding: 64rpx 0 0 28rpx;
- }
- /* 功能区 */
- .component-area {
- position: relative;
- width: 100%;
- }
- .component-area > .component {
- width: 33%;
- height: 174rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- margin-top: 48rpx;
- float: left;
- }
- .component > image {
- width: 110rpx;
- height: 116rpx;
- }
- .component > text {
- color: #8695b6;
- font-size: 28rpx;
- }
- .type {
- padding: 5rpx 10rpx;
- background: #4689ee;
- border-radius: 4px;
- color: #bcdefe;
- font-size: 12px;
- margin-left: 10rpx;
- }
|