第一版

This commit is contained in:
17792275749
2025-03-25 20:52:15 +08:00
commit 04d373b84e
88 changed files with 4539 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
page {
width: 100%;
height: 100%;
box-sizing: border-box;
background-color: #F5F7FB;
}
image {
width: 100%;
height: 100%;
}
button {
all: unset;
display: inline-block;
}
button::after {
display: none;
}
.scrollView {
width: 100%;
height: 100%;
}
.arrowAfter {
position: relative;
}
.arrowAfter::after {
position: absolute;
right: 6rpx;
top: 0;
bottom: 0;
margin: auto;
content: "";
width: 12rpx;
height: 12rpx;
border-left: 5rpx solid #b6b6b6;
border-top: 5rpx solid #b6b6b6;
transform: rotate(135deg);
}