123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- .container {
- height: 600rpx;
- background: linear-gradient(#ff8caf, $page-background-color);
- .top-info {
- display: flex;
- align-items: center;
- margin-top: 10rpx;
- .top-avatar {
- margin-left: 50rpx;
- width: 140rpx;
- height: 140rpx;
- border-radius: 100%;
- border: 6rpx solid #FFF;
- box-shadow: 0 10rpx 20rpx rgba(0, 0, 0, 0.2);
- }
- .top-name {
- margin-left: 50rpx;
- display: flex;
- flex-direction: column;
- font-weight: bold;
- .name {
- color: $color-title;
- font-size: 45rpx;
- font-weight: bold;
- }
- .detail {
- color: #FFF;
- font-size: 40rpx;
- font-weight: bold;
- }
- }
- }
- //背景大卡片
- .card-box {
- position: relative;
- background-color: #FFF;
- box-shadow: 0 6rpx 10rpx rgba(0, 0, 0, 0.1);
- top: 80rpx;
- left: 50rpx;
- border-radius: 50rpx;
- width: 750rpx;
- height: 100vh;
- .i-item {
- display: flex;
- align-items: center;
- margin-left: 35rpx;
- }
- }
- .data-box-item {
- display: flex;
- flex-direction: column;
- margin: 20rpx;
- background-color: #FFF;
- border-radius: $card-border-radius;
- width: 280rpx;
- height: 280rpx;
- box-shadow: $box-shadow-stereo-white;
- .item-text {
- font-size: 30rpx;
- color: $color-title;
- margin: 20rpx 0 0 20rpx;
- }
- .t-icon {
- width: 100rpx;
- height: 100rpx;
- }
- .item-number {
- font-size: 60rpx;
- margin: 20rpx 0 10rpx 30rpx;
- color: #FFF;
- font-weight: bold;
- }
- }
- }
|