contact.scss 972 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .wrap{
  2. .s1{
  3. display: block;
  4. min-height: 200px;
  5. overflow: hidden;
  6. .fl{
  7. width: 340px;
  8. margin-right: 1%;
  9. text-align: center;
  10. padding-bottom: 0;
  11. min-height: 700px;
  12. float: left;
  13. .item{
  14. margin-bottom: 40px;
  15. img{
  16. width: 100px;
  17. object-fit: contain;
  18. }
  19. p{
  20. font-weight: 400;
  21. font-size: 12px;
  22. color: rgba(40,46,48,0.6);
  23. }
  24. .t1{
  25. font-weight: 400;
  26. font-size: 14px;
  27. color: #282E30;
  28. margin: 5px 0;
  29. }
  30. }
  31. }
  32. .fr{
  33. width: calc(98% - 340px);
  34. margin-left: 1%;
  35. min-height: 700px;
  36. float: right;
  37. }
  38. }
  39. }