12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- .top{
- background: #0abf58;
- width: 100%;
- color: white;
- padding: 20rpx;
- .avatar{
- display: flex;
- align-items: center;
- image{
- width: 120rpx;
- height: 120rpx;
- border-radius: 50%;
- }
- .tag{
- border-radius: 44rpx;
- padding: 10rpx 30rpx;
- background: #186138;
- margin-left: 20rpx;
- }
- }
- }
- .cont{
- .h3{
- color: #646566;
- padding: 10rpx 28rpx;
- font-size: 28rpx;
- }
- .group {
- .field {
- font-size: 30rpx;
- font-weight: 600;
- }
- .avatar {
- display: flex;
- height: 80rpx;
- align-items: center;
- padding: 0 32rpx;
- justify-content: space-between;
- .image {
- width: 120rpx;
- height: 120rpx;
-
- }
- }
- }
- }
- .footer{
- width: 100%;
- position: fixed;
- bottom: 60rpx;
- z-index: 9;
- display: flex;
- justify-content: center;
- .sbmit{
- width: 92%;
- background: #0abf58;
- padding: 20rpx 0;
- text-align: center;
- border-radius: 10rpx;
- }
- }
|