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