This commit is contained in:
pengxiaolong
2025-05-13 19:39:53 +08:00
parent 37da6765b8
commit c006a8e63d
1232 changed files with 96963 additions and 883 deletions

View File

@@ -0,0 +1,8 @@
.words {
background-color: #ffffff;
&-header {
&-close {
color: #3370ff;
}
}
}

View File

@@ -0,0 +1,29 @@
.words-h5 {
width: 100%;
box-sizing: border-box;
max-height: 80vh;
height: fit-content;
overflow: hidden;
display: flex;
flex-direction: column;
&-header {
&-title {
font-size: 18px;
line-height: 40px;
}
}
&-list {
flex: 1;
overflow-y: scroll;
&-item {
cursor: none;
-webkit-tap-highlight-color: transparent;
-moz-tap-highlight-color: transparent;
padding: 12px 0;
font-size: 16px;
color: #50545c;
line-height: 18px;
border-bottom: 1px solid #eeeeee;
}
}
}

View File

@@ -0,0 +1,5 @@
@import url("../../../../../assets/styles/common.scss");
@import "./color.scss";
@import "./web.scss";
@import "./h5.scss";

View File

@@ -0,0 +1,32 @@
.words {
z-index: 5;
width: 315px;
padding: 12px;
display: flex;
flex-direction: column;
width: 19.13rem;
height: 12.44rem;
overflow-y: auto;
&-header {
display: flex;
justify-content: space-between;
font-size: 14px;
font-weight: 500;
}
&-list {
flex: 1;
display: flex;
flex-direction: column;
cursor: pointer;
&-item {
cursor: pointer;
padding: 4px 0;
font-size: 14px;
color: #50545c;
line-height: 18px;
}
&-item:hover {
color: #006eff;
}
}
}