parent
70d38b12b4
commit
20b94f55fe
4 changed files with 75 additions and 205 deletions
@ -0,0 +1,64 @@ |
||||
.forms { |
||||
display: flex; |
||||
align-items: center; |
||||
padding: 15px; |
||||
margin-bottom: 20px; |
||||
background-color: #fff; |
||||
.item { |
||||
display: inline-flex; |
||||
align-items: center; |
||||
margin-right: 30px; |
||||
} |
||||
.label { |
||||
font-size: 16px; |
||||
color: #333; |
||||
white-space: nowrap; |
||||
} |
||||
/deep/.el-input__inner { |
||||
width: 100%; |
||||
height: 38px; |
||||
line-height: 38px; |
||||
border: 0; |
||||
background: #F7F7F7; |
||||
} |
||||
.search { |
||||
display: inline-flex; |
||||
width: 34%; |
||||
input { |
||||
width: 100%; |
||||
height: 38px; |
||||
padding: 0 15px; |
||||
font-size: 14px; |
||||
color: #333; |
||||
background: #F7F7F7; |
||||
border: 0; |
||||
border-top-left-radius: 6px; |
||||
border-bottom-left-radius: 6px; |
||||
&:focus { |
||||
outline: none; |
||||
} |
||||
} |
||||
} |
||||
.icon { |
||||
display: inline-flex; |
||||
justify-content: center; |
||||
align-items: center; |
||||
width: 62px; |
||||
height: 38px; |
||||
background: #1583FF; |
||||
border-radius: 0px 6px 6px 0px; |
||||
cursor: pointer; |
||||
} |
||||
} |
||||
|
||||
@media (max-width: 1200px) { |
||||
.forms { |
||||
padding: 1.25rem; |
||||
flex-direction: column; |
||||
.item, .search,div { |
||||
width: 80%;margin: 0 auto; |
||||
justify-content: center; |
||||
margin-top: 20px; |
||||
} |
||||
} |
||||
} |
Loading…
Reference in new issue