index.scss 654 B

123456789101112131415161718192021222324252627282930313233
  1. .myIndex{
  2. .myIndex_header{
  3. height: 300rpx;
  4. background: linear-gradient(180deg, rgba(190, 163, 117, 1) 0%, rgba(255, 255, 255, 1) 100%);
  5. display: flex;
  6. padding-top: 100rpx;
  7. .myIndex_header_icon{
  8. .header_icon{
  9. height: 140rpx;
  10. width: 140rpx;
  11. }
  12. }
  13. .myIndex_header_info{
  14. .myIndex_header_name{
  15. display: flex;
  16. .myIndex_header_name_text{
  17. color: rgba(255, 255, 255, 1);
  18. font-size: 20px;
  19. text-align: left;
  20. }
  21. .myIndex_header_eyeIcon{
  22. height: 60rpx;
  23. width: 60rpx;
  24. }
  25. }
  26. .myIndex_header_address{
  27. color: rgba(255, 255, 255, 1);
  28. font-size: 12px;
  29. text-align: left;
  30. }
  31. }
  32. }
  33. }