appliance.scss 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .banner {
  2. width: 100%;
  3. height: 530px;
  4. img {
  5. width: 100%;
  6. height: 100%;
  7. display: block;
  8. }
  9. }
  10. .main {
  11. height: auto;
  12. -webkit-box-sizing: border-box;
  13. box-sizing: border-box;
  14. .appliance-title {
  15. width: 100%;
  16. height: 244px;
  17. -webkit-box-sizing: border-box;
  18. box-sizing: border-box;
  19. padding: 80px 0;
  20. h1 {
  21. font-size: 34px;
  22. line-height: 45px;
  23. color: #272727;
  24. text-align: center;
  25. font-weight: normal;
  26. }
  27. p {
  28. font-size: 16px;
  29. line-height: 30px;
  30. color: #999999;
  31. text-align: center;
  32. }
  33. }
  34. .appliance-content {
  35. width: 100%;
  36. height: auto;
  37. .appliance-li {
  38. width: 100%;
  39. height: 380px;
  40. margin-bottom: 80px;
  41. -webkit-transition: all 0.5s;
  42. transition: all 0.5s;
  43. &:hover {
  44. -webkit-transform: translateY(-10px);
  45. transform: translateY(-10px);
  46. -webkit-box-shadow: 0px 6px 30px rgba(39, 39, 39, 0.1);
  47. box-shadow: 0px 6px 30px rgba(39, 39, 39, 0.1);
  48. }
  49. &:last-child {
  50. margin-bottom: 0;
  51. }
  52. .appliance-lil {
  53. width: 570px;
  54. height: 100%;
  55. float: left;
  56. img {
  57. width: 570px;
  58. height: 100%;
  59. display: block;
  60. }
  61. }
  62. .appliance-lir {
  63. width: 630px;
  64. height: 380px;
  65. background: url(/img/appliance-lbg.png);
  66. background-size: cover;
  67. float: right;
  68. -webkit-box-sizing: border-box;
  69. box-sizing: border-box;
  70. padding: 48px 38px;
  71. .appliance-lir-top {
  72. width: 100%;
  73. height: 31px;
  74. font-size: 24px;
  75. color: #272727;
  76. text-align: left;
  77. margin-bottom: 30px;
  78. }
  79. .appliance-lir-text {
  80. width: 100%;
  81. -webkit-box-sizing: border-box;
  82. box-sizing: border-box;
  83. padding-left: 10px;
  84. p {
  85. font-size: 16px;
  86. color: #505050;
  87. text-align: justify;
  88. line-height: 35px;
  89. }
  90. }
  91. }
  92. }
  93. }
  94. }