BUG修改

This commit is contained in:
a0049873 2022-10-21 17:32:45 +08:00
parent bd036feee2
commit 7e9108e7d6
1 changed files with 42 additions and 39 deletions

View File

@ -1,8 +1,8 @@
<!-- <!--
* @Author: hisense.liangjunhua * @Author: hisense.liangjunhua
* @Date: 2022-08-19 10:00:16 * @Date: 2022-08-19 10:00:16
* @LastEditors: hisense.liangjunhua * @LastEditors: Light
* @LastEditTime: 2022-08-19 15:55:05 * @LastEditTime: 2022-10-21 17:29:46
* @Description: 告诉大家这是什么 * @Description: 告诉大家这是什么
--> -->
<template> <template>
@ -42,46 +42,49 @@
} }
</script> </script>
<style lang="less" scoped> <style lang="less" scoped>
.algorithm { .algorithm {
padding: 0.7rem 1.05rem 0.5rem; padding: 0.7rem 1.05rem 0.5rem;
.header { .header {
padding-bottom: 0.15rem; padding-bottom: 0.15rem;
border-bottom: 1px solid #bdbdbd; border-bottom: 1px solid #bdbdbd;
font-size: 30px; font-size: 30px;
font-weight: 600; font-weight: 600;
} }
.main { .main {
padding: 0 0.93rem; padding: 0 0.93rem;
display: flex;
flex-wrap: wrap;
.item {
width: 3.39rem;
height: 1rem;
border: 2px solid #7dbbff;
border-radius: 0.2rem;
margin: 0.3rem 0.2rem 0;
display: flex; display: flex;
flex-wrap: wrap; justify-content: space-between;
.item { align-items: center;
width: 3.39rem; padding: 0.41rem 0.4rem;
height: 1rem; transition: all 0.5s;
border: 2px solid #7dbbff; .name {
border-radius: 0.2rem; font-size: 26px;
margin: 0.3rem 0.2rem 0; color: #7dbbff;
display: flex; max-height: 26px;
justify-content: space-between; line-height: 26px;
align-items: center; overflow: hidden;
padding: 0.41rem 0.4rem;
transition: all 0.5s;
.name {
font-size: 26px;
color: #7dbbff;
}
.img {
width: 0.57rem;
height: 0.57rem;
background: url('~@/assets/cimSpecialArea/zj.png') no-repeat;
background-size: 100%;
}
} }
.item:hover { .img {
cursor: pointer; width: 0.57rem;
width: 3.45rem; height: 0.57rem;
height: 1.1rem; background: url('~@/assets/cimSpecialArea/zj.png') no-repeat;
margin: 0.25rem 0.17rem -0.05rem; background-size: 100%;
} }
} }
.item:hover {
cursor: pointer;
width: 3.45rem;
height: 1.1rem;
margin: 0.25rem 0.17rem -0.05rem;
}
} }
}
</style> </style>