contact.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .wrap{
  2. .s1{
  3. display: flex;
  4. height: 706px;
  5. overflow: hidden;
  6. margin-bottom: 20px;
  7. .fl{
  8. display: flex;
  9. flex-direction: column;
  10. align-items: center;
  11. width: 338px;
  12. height: 100%;
  13. text-align: center;
  14. float: left;
  15. .item{
  16. width: 234px;
  17. height: 156px;
  18. margin-bottom: 10px;
  19. img{
  20. width: 52px;
  21. height: 40px;
  22. object-fit: contain;
  23. }
  24. p{
  25. font-weight: 400;
  26. font-size: 14px;
  27. color: #282E30;
  28. }
  29. .t1{
  30. font-weight: bold;
  31. font-size: 20px;
  32. color: #282E30;
  33. margin: 5px 0;
  34. }
  35. }
  36. }
  37. .fr{
  38. width: 100%;
  39. flex: 1;
  40. height: 100%;
  41. }
  42. }
  43. }