no message

This commit is contained in:
DESKTOP-RQ919RC\Pc
2025-09-19 18:43:17 +08:00
parent 8542840577
commit 7355bdd146
9 changed files with 1427 additions and 235 deletions

View File

@@ -50,7 +50,6 @@
overflow: hidden;
}
.bubble-tag {
position: absolute;
padding: 8px 18px;
@@ -87,17 +86,17 @@
}
}
/* 呼吸效果动画 */
@keyframes pulse {
0% {
opacity: 0.8;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
100% {
opacity: 1;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
}
// /* 呼吸效果动画 */
// @keyframes pulse {
// 0% {
// opacity: 0.8;
// box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
// }
// 100% {
// opacity: 1;
// box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
// }
// }
.container-box {
padding-top: 24px;
@@ -313,12 +312,209 @@
padding: 3px 0;
margin-bottom: 40px;
flex: 1;
z-index: 1;
.left-icon {
width: 121px;
height: 144px;
position: absolute;
top: 61px;
left: 0;
z-index: 1;
}
.right-icon {
width: 57px;
height: 84px;
position: absolute;
top: 20px;
left: 1120px;
z-index: 1;
transform: rotate(15deg);
}
.list {
z-index: 100;
// background: linear-gradient(180deg, #7d4bf8 0%, #5241b0 100%);
}
.list-fill {
.fill-item {
width: 33px;
height: 23px;
border-radius: 8px;
background-color: rgba(255, 255, 255, 0.223529);
position: absolute;
cursor: pointer;
&::after {
content: "";
width: calc(100% - 6px);
height: calc(100% - 6px);
background: rgba(255, 255, 255, 0.5);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border-radius: 8px;
z-index: -1;
}
&.item2 {
width: 48px;
height: 28px;
}
&.item3 {
width: 63px;
height: 33px;
}
&.item4 {
width: 78px;
height: 38px;
}
&.item5 {
width: 93px;
height: 43px;
}
}
}
.list,
.list-fill {
width: 1194px;
height: 100%;
border-radius: 18px;
position: absolute !important;
}
&::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: calc(100% - 6px);
height: calc(100% - 6px);
background: linear-gradient(180deg, #7d4bf8 0%, #5241b0 100%);
z-index: -1;
border-radius: 18px;
}
}
}
}
.tag-item {
height: 60px;
line-height: 60px;
// border-radius: 8px;
border-radius: 30px;
// background-color: rgba(255, 255, 255, 0.223529);
background: #d5e7f7;
position: absolute;
font-size: 20px !important;
color: #1c3e5e;
padding: 0 25px;
width: fit-content;
cursor: pointer;
// transition: all 0.3s;
box-shadow: 0px 0 0 3px rgba(255, 255, 255, 0.223529);
opacity: 1 !important;
&:hover {
font-weight: 650;
color: rgb(88, 58, 5) !important;
background-color: rgba(241, 154, 4, 1) !important;
// &::after {
// background-color: rgba(241, 154, 4, 1) !important;
// }
}
// &.item2 {
// height: 60px;
// line-height: 60px;
// border-radius: 30px;
// color: #1c3e5e;
// font-size: 20px !important;
// // &::after {
// // background: #d5e7f7;
// // }
// }
&.item2 {
height: 50px;
line-height: 50px;
border-radius: 25px;
color: #1c3e5e;
padding: 0 20px;
font-size: 18px !important;
background: #d5e7f7;
// &::after {
// background: #d5e7f7;
// border-radius: 250px;
// }
}
&.item3 {
height: 47px;
line-height: 47px;
border-radius: 25px;
color: #1c3e5e;
padding: 0 16px;
font-size: 16px !important;
background: #d5e7f7;
// &::after {
// background: #d5e7f7;
// border-radius: 25px;
// }
}
&.item4 {
height: 30px;
line-height: 30px;
border-radius: 30px;
color: #1c3e5e;
padding: 0 10px;
font-size: 14px !important;
background: #d5e7f7;
// &::after {
// background: #d5e7f7;
// border-radius: 30px;
// }
}
// &::after {
// content: "";
// width: calc(100% - 6px);
// height: calc(100% - 6px);
// // background: linear-gradient(180deg, #ff8eba 0%, #f4458c 100%);
// background: #d5e7f7;
// position: absolute;
// top: 50%;
// left: 50%;
// transform: translate(-50%, -50%);
// // border-radius: 8px;
// border-radius: 30px;
// z-index: -1;
// }
&.red {
color: #62263c !important;
background: linear-gradient(180deg, #ff8eba 0%, #f4458c 100%);
&::after {
// background: linear-gradient(180deg, #ff8eba 0%, #f4458c 100%);
}
}
}