contact.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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: 100px;
  21. object-fit: contain;
  22. }
  23. p{
  24. font-weight: 400;
  25. font-size: 14px;
  26. color: #282E30;
  27. }
  28. .t1{
  29. font-weight: bold;
  30. font-size: 20px;
  31. color: #282E30;
  32. margin: 5px 0;
  33. }
  34. }
  35. }
  36. .fr{
  37. width: 100%;
  38. flex: 1;
  39. height: 100%;
  40. }
  41. }
  42. }