/* pages/personal/personal.wxss */ .personalContainer { width: 100%; height: 100%; } .personalContainer .user-section { height: 520rpx; position: relative; padding: 100rpx 30rpx 0; } .user-section .bg { position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0.7; filter: blur(1px); } .user-info-box { height: 180rpx; display: flex; align-items: center; position: relative; z-index: 1; } .user-info-box .portrait { width: 130rpx; height: 130rpx; border: 5rpx solid #fff; border-radius: 50%; } .user-info-box .username { font-size: 24; color: #303133; margin-left: 20rpx; } /* vip-box */ .vip-card-box { position: relative; display: flex; flex-direction: column; background: rgba(0, 0, 0, .7); height: 240rpx; color: #f7d680; border-radius: 16rpx 16rpx 0 0; padding: 20rpx 24rpx; } .vip-card-box .card-bg { position: absolute; top: 20rpx; right: 0; width: 380rpx; height: 260rpx; } .vip-card-box .b-btn { position: absolute; right: 20rpx; top: 30rpx; width: 132rpx; height: 50rpx; text-align: center; line-height: 50rpx; font-size: 24rpx; font-weight: bold; color: #36343c; border-radius: 20px; /*background: linear-gradient(left, #f9e6af, #ffd465);*/ /*渐变不生效*/ background: #f9e6af; z-index: 1; } .vip-card-box .tit { font-size: 22rpx; color: #f7d680; margin-bottom: 28rpx; } .vip-card-box .tit .iconfont { color: #f6e5a3; margin-right: 16rpx; } .vip-card-box .e-m { font-size: 34rpx; margin-top: 10rpx; } .vip-card-box .e-b { font-size: 24rpx; color: #d8cba9; margin-top: 10rpx; } .cover-container { margin-top: -150rpx; padding: 0 30rpx; position: relative; background: #f5f5f5; padding-bottom: 20rpx; } .cover-container .arc { position: absolute; left: 0; top: -34rpx; width: 100%; height: 36rpx; } /* 导航部分 */ .cover-container .nav-section { display: flex; background: #fff; padding: 20rpx 0; border-radius: 15rpx; } .nav-section .nav-item { width: 33.3%; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; } .nav-section .nav-item .iconfont { font-size: 50rpx; color: #d43c33; line-height: 70rpx; } .nav-section .nav-item text:last-child { font-size: 22rpx; } /* 个人中心列表 */ .personalContent { background: #fff; margin-top: 20rpx; } /* 最近播放 */ .personalContent .scrollView { display: flex; height: 160rpx; } .personalContent .recentPlay { display: flex; } .recentPlayContainer .title { padding-left: 20rpx; font-size: 26rpx; color: #333; line-height: 80rpx; } .personalContent .recentPlay image { width: 160rpx; height: 160rpx; margin-left: 20rpx; border-radius: 20rpx; } .cardList { margin-top: 20rpx; } .cardList .card-item { border-top: 1rpx solid #eee; height: 80rpx; line-height: 80rpx; padding: 10rpx; font-size: 26rpx; color: #333; margin: 0 10rpx; } .cardList .card-item .more { float: right; } .new_img1 { width: 32px; height: 32px; position: absolute; top: 20rpx; left: 130rpx; } .new_img2 { width: 32px; height: 32px; position: absolute; top: 120rpx; left: 130rpx; } .new_img3 { width: 32px; height: 32px; position: absolute; top: 220rpx; left: 130rpx; } /* 最近播放记录 */ .recentScroll { display: flex; height: 250rpx; } .recentItem { margin-right: 20rpx; } .recentItem image { width: 200rpx; height: 200rpx; border-radius: 10rpx; } .recentSongName { display: -webkit-box; -webkit-box-orient: vertical; /**对齐模式*/ -webkit-line-clamp: 1; overflow: hidden; text-overflow: ellipsis; }