1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- .container {
- position: relative;
- }
- .container-bg {
- position: absolute;
- left: 0;
- top: 0;
- }
- .teacher-bg {
- position: absolute;
- left: 50%;
- top: 120rpx;
- transform: translate(-50%);
- width: 635rpx;
- background: #FFFFFF;
- box-shadow: 0 0 25rpx 0 rgba(255, 67, 48, 0.14);
- border-radius: 14rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 80rpx 30rpx 0;
- }
- .teacher-avater-bg {
- position: absolute;
- left: 50%;
- transform: translate(-50%);
- top: 60rpx;
- width: 133rpx;
- height: 133rpx;
- background: #F4F1F4;
- border: 4rpx solid #FFFFFF;
- border-radius: 50%;
- display: flex;
- justify-content: center;
- align-content: center;
- }
- .teacher-name {
- font-size: 36rpx;
- font-weight: bold;
- color: #444444;
- }
- .tag {
- width: 635rpx;
- }
- .content {
- width: 100%;
- font-size: 26rpx;
- font-weight: 400;
- color: #999999;
- margin-bottom: 20rpx;
- }
|