1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- .flex-column {
- height: 80rpx;
- justify-content: space-between;
- }
- .detail-image {
- position: fixed;
- width: 100%;
- height: 800rpx;
- }
- .top-info {
- display: flex;
- align-items: center;
- margin-top: 180rpx;
- }
- .top-info .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);
- z-index: 55;
- }
- .top-info .top-name {
- margin-left: 50rpx;
- height: 130rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- font-weight: bold;
- }
- .top-info .top-name .name {
- color: #303133;
- font-size: 45rpx;
- font-weight: bold;
- z-index: 55;
- }
- .top-info .top-name .t-icon {
- width: 32rpx;
- height: 32rpx;
- margin-right: 5rpx;
- }
- .main-card {
- display: flex;
- flex-direction: column;
- padding: 80rpx 80rpx 0 80rpx;
- position: relative;
- background-color: #FFF;
- height: 100%;
- top: 80rpx;
- left: 50rpx;
- border-radius: 50rpx;
- border-bottom-left-radius: 0;
- z-index: 55;
- }
- .main-card .title {
- line-height: 32rpx;
- font-size: 32rpx;
- font-weight: 400;
- color: #303133;
- }
- .main-card .subtitle {
- line-height: 28rpx;
- font-size: 28rpx;
- color: #909399;
- font-weight: 400;
- }
- .main-card .t-icon {
- margin-right: 30rpx;
- width: 80rpx;
- height: 80rpx;
- }
- .box_title {
- line-height: 35rpx;
- font-size: 35rpx;
- font-weight: bold;
- color: #303133;
- }
- .flex-column-box {
- display: flex;
- flex-direction: column;
- }
- .flex-column-box .column-title {
- line-height: 35rpx;
- font-size: 32rpx;
- font-weight: bold;
- color: #303133;
- }
- .tag-fill {
- background-color: #d8deff;
- width: -webkit-fit-content;
- width: fit-content;
- z-index: 99;
- }
|