浏览代码

修改样式

ctt
chutingting 2 年前
父节点
当前提交
7b151faa5a
共有 22 个文件被更改,包括 13 次插入21 次删除
  1. 二进制
      public/img/icons/android-chrome-192x192.png
  2. 二进制
      public/img/icons/android-chrome-512x512.png
  3. 二进制
      public/img/icons/android-chrome-maskable-192x192.png
  4. 二进制
      public/img/icons/android-chrome-maskable-512x512.png
  5. 二进制
      public/img/icons/apple-touch-icon-120x120.png
  6. 二进制
      public/img/icons/apple-touch-icon-152x152.png
  7. 二进制
      public/img/icons/apple-touch-icon-180x180.png
  8. 二进制
      public/img/icons/apple-touch-icon-60x60.png
  9. 二进制
      public/img/icons/apple-touch-icon-76x76.png
  10. 二进制
      public/img/icons/apple-touch-icon.png
  11. 二进制
      public/img/icons/favicon-16x16.png
  12. 二进制
      public/img/icons/favicon-32x32.png
  13. 二进制
      public/img/icons/favicon.ico.ico
  14. 二进制
      public/img/icons/msapplication-icon-144x144.png
  15. 二进制
      public/img/icons/mstile-150x150.png
  16. +0
    -3
      public/img/icons/safari-pinned-tab.svg
  17. +0
    -2
      public/robots.txt
  18. +8
    -0
      src/assets/style/index.css
  19. +2
    -8
      src/components/introduce/index.vue
  20. +1
    -4
      src/components/product/index.vue
  21. +1
    -4
      src/components/technology/index.vue
  22. +1
    -0
      src/main.js

二进制
public/img/icons/android-chrome-192x192.png 查看文件

之前 之后
宽度: 192  |  高度: 192  |  大小: 9.2 KiB

二进制
public/img/icons/android-chrome-512x512.png 查看文件

之前 之后
宽度: 512  |  高度: 512  |  大小: 29 KiB

二进制
public/img/icons/android-chrome-maskable-192x192.png 查看文件

之前 之后
宽度: 192  |  高度: 192  |  大小: 6.3 KiB

二进制
public/img/icons/android-chrome-maskable-512x512.png 查看文件

之前 之后
宽度: 512  |  高度: 512  |  大小: 22 KiB

二进制
public/img/icons/apple-touch-icon-120x120.png 查看文件

之前 之后
宽度: 120  |  高度: 120  |  大小: 3.3 KiB

二进制
public/img/icons/apple-touch-icon-152x152.png 查看文件

之前 之后
宽度: 152  |  高度: 152  |  大小: 4.0 KiB

二进制
public/img/icons/apple-touch-icon-180x180.png 查看文件

之前 之后
宽度: 180  |  高度: 180  |  大小: 4.6 KiB

二进制
public/img/icons/apple-touch-icon-60x60.png 查看文件

之前 之后
宽度: 60  |  高度: 60  |  大小: 1.5 KiB

二进制
public/img/icons/apple-touch-icon-76x76.png 查看文件

之前 之后
宽度: 76  |  高度: 76  |  大小: 1.8 KiB

二进制
public/img/icons/apple-touch-icon.png 查看文件

之前 之后
宽度: 180  |  高度: 180  |  大小: 4.6 KiB

二进制
public/img/icons/favicon-16x16.png 查看文件

之前 之后
宽度: 16  |  高度: 16  |  大小: 799 B

二进制
public/img/icons/favicon-32x32.png 查看文件

之前 之后
宽度: 32  |  高度: 32  |  大小: 1.2 KiB

二进制
public/img/icons/favicon.ico.ico 查看文件

之前 之后

二进制
public/img/icons/msapplication-icon-144x144.png 查看文件

之前 之后
宽度: 144  |  高度: 144  |  大小: 1.1 KiB

二进制
public/img/icons/mstile-150x150.png 查看文件

之前 之后
宽度: 270  |  高度: 270  |  大小: 4.2 KiB

+ 0
- 3
public/img/icons/safari-pinned-tab.svg 查看文件

@@ -1,3 +0,0 @@
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M8.00251 14.9297L0 1.07422H6.14651L8.00251 4.27503L9.84583 1.07422H16L8.00251 14.9297Z" fill="black"/>
</svg>

+ 0
- 2
public/robots.txt 查看文件

@@ -1,2 +0,0 @@
User-agent: *
Disallow:

+ 8
- 0
src/assets/style/index.css 查看文件

@@ -0,0 +1,8 @@
h6, p{
margin: 0;
padding: 0;
}
img{
width: 100%;
display: block;
}

+ 2
- 8
src/components/introduce/index.vue 查看文件

@@ -319,16 +319,10 @@ export default {
<style lang="scss" scoped>
.introduce {
margin-top: 70px;
h6{
margin: 0;
}
.top {
width: 100%;
position: relative;
img{
width: 100%;
display: block;
}
.top_ct {
position: absolute;
left: 194px;
@@ -464,7 +458,7 @@ export default {
img{
width: 680px;
height: 383px;
margin-top: 113px;
margin: 113px auto 0;
}
}
}


+ 1
- 4
src/components/product/index.vue 查看文件

@@ -223,10 +223,7 @@ export default {
.top {
width: 100%;
position: relative;
img{
width: 100%;
display: block;
}
.top_ct {
position: absolute;
left: 194px;


+ 1
- 4
src/components/technology/index.vue 查看文件

@@ -55,10 +55,7 @@ export default {
.top {
width: 100%;
position: relative;
img{
width: 100%;
display: block;
}
.top_ct {
position: absolute;
right: 357px;


+ 1
- 0
src/main.js 查看文件

@@ -5,6 +5,7 @@ import router from './router'
import store from './store'
import ElementUI from 'element-ui'; //引入js
import 'element-ui/lib/theme-chalk/index.css';//引入css
import '@/assets/style/index.css'
// 引入amfe-flexible做rem适配
import 'amfe-flexible';
import axios from "axios"


正在加载...
取消
保存