contact.scss 842 B

12345678910111213141516171819202122232425262728293031323334353637
  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. }
  18. p{
  19. font-size: 14px;
  20. color: #999;
  21. }
  22. .t1{
  23. font-size: 16px;
  24. color: #333;
  25. margin: 5px 0;
  26. }
  27. }
  28. }
  29. .fr{
  30. width: calc(98% - 340px);
  31. margin-left: 1%;
  32. min-height: 700px;
  33. float: right;
  34. }
  35. }
  36. }