123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- .container {
- padding: 24rpx 0;
- color: #fff;
- .userinfo {
- margin: 0 auto;
- width: 714rpx;
- text-align: center;
- position: relative;
- height: 200rpx;
- >image {
- width: 100%;
- height: 100%;
- }
- .usercon {
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- font-size: 0;
- left: 0;
- .icon {
- width: 160rpx;
- height: 158rpx;
- position: absolute;
- top: 16rpx;
- left: 34rpx;
- }
- .username {
- color: #fff;
- font-size: 36rpx;
- font-weight: bold;
- position: absolute;
- top: 18rpx;
- left: 236rpx;
- }
- .bar {
- width: 284rpx;
- height: 68rpx;
- background: #012b4f;
- position: absolute;
- top: 90rpx;
- left: 232rpx;
- clip-path: polygon(0 4%, 96% 0, 100% 100%, 0 100%);
- .line {
- background: #a1cbec;
- width: 50%;
- height: 100%;
- }
- }
- .r_text {
- position: absolute;
- right: 46rpx;
- top: 24rpx;
- font-size: 28rpx;
- text-align: left;
- >text {
- display: block;
- margin: 10rpx 0;
- &:first-of-type {
- font-weight: bold;
- margin-bottom: 16rpx;
- }
- &:last-of-type {
- font-size: 20rpx;
- }
- }
- }
- }
- }
- .record {
- width: 686rpx;
- height: calc(100% - 340rpx);
- margin: 40rpx auto 0;
- border: 5rpx solid;
- background: linear-gradient(0deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
- box-shadow: 6rpx 10rpx 27rpx 0rpx rgba(75, 126, 160, 0.6);
- border-radius: 10rpx;
- padding: 30rpx 20rpx;
- box-sizing: border-box;
- .re_header {
- display: flex;
- justify-items: center;
- font-size: 32rpx;
- justify-content: space-between;
- width: 100%;
- border-bottom: 4rpx solid #fff;
- padding: 10rpx 30rpx 30rpx;
- color: #4C2508;
- box-sizing: border-box;
- >image {
- width: 80rpx;
- }
- .re_date {
- display: flex;
- align-items: center;
- >image {
- width: 20rpx;
- }
- >text {
- margin: 0 18rpx;
- transform: translateY(-2rpx);
- }
- }
- }
- .re_body {
- color: #765842;
- .item {
- position: relative;
- background: rgba(255, 255, 255, 0.5);
- border-radius: 6rpx;
- margin: 16rpx 0;
- height: 110rpx;
- padding: 10rpx 20rpx;
- box-sizing: border-box;
- >image {
- position: absolute;
- top: 50%;
- right: 26rpx;
- transform: translateY(-50%);
- width: 50rpx;
- }
- >text {
- display: block;
- &:last-of-type {
- font-size: 24rpx;
- margin-top: 12rpx;
- }
- }
- }
- }
- }
- }
|