浏览代码

1600, 1366适配

yx 4 年之前
父节点
当前提交
7b2825ae12
共有 1 个文件被更改,包括 9 次插入1 次删除
  1. 9 1
      src/views/other/index.vue

+ 9 - 1
src/views/other/index.vue

@@ -285,10 +285,18 @@ export default {
         }
         }
     }
     }
 }
 }
+@media screen and (max-width: 1600px) {
+    /*当屏幕尺寸小于1366px时,应用下面的CSS样式*/
+    .fzyfImg {
+        margin-top: 120px !important;
+        height: 500px !important;
+    }
+}
 @media screen and (max-width: 1366px) {
 @media screen and (max-width: 1366px) {
     /*当屏幕尺寸小于1366px时,应用下面的CSS样式*/
     /*当屏幕尺寸小于1366px时,应用下面的CSS样式*/
     .fzyfImg {
     .fzyfImg {
-        margin-top: 100px !important;
+        margin-top: 90px !important;
+        height: 400px !important;
     }
     }
 }
 }
 </style> 
 </style>