commen.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. html {
  2. margin: 0;
  3. padding: 0;
  4. width: 100%;
  5. height: 100%
  6. }
  7. body {
  8. width: 100%;
  9. height: 100%;
  10. margin: 0;
  11. overflow: hidden;
  12. background: #f4f4f4
  13. }
  14. .scrollBox {
  15. width: calc(50% - 20px);
  16. float: left;
  17. border: 1px solid #e8e8e8;
  18. background: #fff;
  19. box-sizing: border-box;
  20. margin: 10px 0 10px 10px;
  21. height: calc(50% - 15px);
  22. overflow: auto;
  23. padding: 10px
  24. }
  25. .scrollBox:nth-of-type(2n) {
  26. margin-right: 10px
  27. }
  28. .scrollBox:nth-of-type(3),
  29. .scrollBox:nth-of-type(4) {
  30. margin-top: 0
  31. }
  32. .contentBox1 {
  33. width: 100%;
  34. height: 900px;
  35. background-image: url(../images/1.png);
  36. background-size: cover;
  37. background-repeat: no-repeat
  38. }
  39. .contentBox2 {
  40. width: 1200px;
  41. height: 100%;
  42. background-image: url(../images/2.png);
  43. background-size: cover;
  44. background-repeat: no-repeat
  45. }
  46. .contentBox3 {
  47. width: 1200px;
  48. height: 900px;
  49. background-image: url(../images/2.png);
  50. background-size: cover;
  51. background-repeat: no-repeat
  52. }