This commit is contained in:
zhangjianjun 2026-04-15 13:18:12 +08:00
parent fc372a0278
commit b633764f0d
1 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,9 @@
.searchInputRow {
width: 72%;
margin: 0 auto;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: end;
justify-content: flex-end;
.searchInput {
@ -12,6 +14,7 @@
border: .0625rem solid #B6C0CB;
padding: 0 1rem;
position: relative;
box-sizing: border-box;
input {
width: 100%;
@ -30,6 +33,7 @@
position: absolute;
right: 1rem;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
font-size: 1rem;
color: #333;
@ -120,7 +124,8 @@
@media (max-width: 48rem) {
.searchInputRow {
justify-content: stretch;
-ms-flex-pack: start;
justify-content: flex-start;
}
.searchInputRow .searchInput {