| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- .card-box{
- margin: 120rpx 30rpx 100rpx;
- background: #FFFFFF;
- border-radius: 20rpx 20rpx 20rpx 20rpx;
- position: relative;
- }
- .hearder{
- width: 160rpx;
- height: 160rpx;
- margin: -80rpx auto 14rpx;
- }
- .hearder image{
- width: 100%;
- height: 100%;
- }
- .user-name{
- line-height: 50rpx;
- font-size: 36rpx;
- font-weight: bold;
- color: #333333;
- text-align: center;
- }
- .user-tag{
- justify-content: center;
- margin-top: 10rpx;
- }
- .user-tag-item{
- padding: 0 10rpx;
- line-height: 32rpx;
- background: linear-gradient(80deg, #7EBFF1 0%, #458EEE 100%);
- border-radius: 5rpx 5rpx 5rpx 5rpx;
- opacity: 1;
- text-align: center;
- margin-right: 10rpx;
- font-size: 20rpx;
- color: #FFFFFF;
- }
- .user-tag-item:last-child{
- margin-right: 0rpx;
- }
- .pf{
- margin-top: 50rpx;
- text-align: center;
- }
- .pf-title {
- line-height: 45rpx;
- font-size: 32rpx;
- font-family: PingFang SC-Bold, PingFang SC;
- font-weight: bold;
- color: #333333;
- margin-bottom: 10rpx;
- }
- .user-data{
- margin-top: 51rpx;
- justify-content: center;
- }
- .user-data-num{
- line-height: 43rpx;
- font-size: 39rpx;
- font-family: Arial-Regular, Arial;
- font-weight: 400;
- color: #333333;
- text-align: center;
- margin-bottom: 10rpx;
- }
- .user-data-label image{
- width: 28rpx;
- height: 28rpx;
- margin-right: 10rpx;
- }
- .user-data-label{
- line-height: 33rpx;
- font-size: 24rpx;
- font-family: PingFang SC-Medium, PingFang SC;
- font-weight: 500;
- color: #A1A1A1;
- text-align: center;
- }
- .user-des{
- font-size: 24rpx;
- font-family: PingFang SC-Regular, PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 42rpx;
- margin: 40rpx;
- }
- .user-code{
- width: 262rpx;
- height: 262rpx;
- margin: 36rpx auto 0;
- }
- .user-btn{
- width: 400rpx;
- height: 80rpx;
- line-height: 80rpx;
- background: #27D699;
- border-radius: 40rpx 40rpx 40rpx 40rpx;
- opacity: 1;
- text-align: center;
- margin: 40rpx auto;
- font-size: 30rpx;
- font-family: Source Han Sans CN-Regular, Source Han Sans CN;
- font-weight: 400;
- color: #FFFFFF;
- }
- .user-btn-text{
- text-align: center;
- margin: 36rpx auto 90rpx;
- color: #009B62;
- font-size: 30rpx;
- z-index: 2;
- position: relative;
- }
- .card-bottom{
- position: absolute;
- bottom: 0;
- left: 0;
- right: 0;
- height: 190rpx;
- width: 100%;
- }
- .clearfix::after {
- content: ".";
- display: block;
- height: 0;
- line-height: 0;
- clear: both;
- visibility: hidden;
- }
- .clearfix::before {
- content: ".";
- display: block;
- height: 0;
- line-height: 0;
- clear: both;
- visibility: hidden;
- }
|