no message

This commit is contained in:
A1300399510 2024-11-26 14:26:36 +08:00
parent e30c4bd1ee
commit da10d54352
2 changed files with 10 additions and 3 deletions

View File

@ -731,6 +731,8 @@
border-radius: 114px; border-radius: 114px;
margin: 0 auto 33px; margin: 0 auto 33px;
position: relative; position: relative;
z-index: 1;
--tab-left: "0px";
transition: all 0.3s; transition: all 0.3s;
} }
.content .details-box .pattern .tab .item { .content .details-box .pattern .tab .item {
@ -751,7 +753,8 @@
height: 100%; height: 100%;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: var(--tab-left);
z-index: -1;
} }
.content .details-box .pattern .introduce .item { .content .details-box .pattern .introduce .item {
text-align: center; text-align: center;

View File

@ -833,6 +833,9 @@
border-radius: 114px; border-radius: 114px;
margin: 0 auto 33px; margin: 0 auto 33px;
position: relative; position: relative;
z-index: 1;
--tab-left: "0px";
.item { .item {
height: 100%; height: 100%;
font-size: 14px; font-size: 14px;
@ -842,7 +845,7 @@
color: #ffffff; color: #ffffff;
} }
} }
transition: all 0.3s; transition: all 0.3s;
&::after { &::after {
@ -854,7 +857,8 @@
height: 100%; height: 100%;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: var(--tab-left);
z-index: -1;
} }
} }