index.less 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .top{
  2. background: #0abf58;
  3. width: 100%;
  4. color: white;
  5. padding: 20rpx;
  6. .avatar{
  7. display: flex;
  8. align-items: center;
  9. image{
  10. width: 120rpx;
  11. height: 120rpx;
  12. border-radius: 50%;
  13. }
  14. .tag{
  15. border-radius: 44rpx;
  16. padding: 10rpx 30rpx;
  17. background: #186138;
  18. margin-left: 20rpx;
  19. }
  20. }
  21. }
  22. .cont{
  23. .h3{
  24. color: #646566;
  25. padding: 10rpx 28rpx;
  26. font-size: 28rpx;
  27. }
  28. .group {
  29. .field {
  30. font-size: 30rpx;
  31. font-weight: 600;
  32. }
  33. .avatar {
  34. display: flex;
  35. height: 80rpx;
  36. align-items: center;
  37. padding: 0 32rpx;
  38. justify-content: space-between;
  39. .image {
  40. width: 120rpx;
  41. height: 120rpx;
  42. }
  43. }
  44. }
  45. }
  46. .footer{
  47. width: 100%;
  48. position: fixed;
  49. bottom: 60rpx;
  50. z-index: 9;
  51. display: flex;
  52. justify-content: center;
  53. .sbmit{
  54. width: 92%;
  55. background: #0abf58;
  56. padding: 20rpx 0;
  57. text-align: center;
  58. border-radius: 10rpx;
  59. }
  60. }