12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- /* pages/search/search.wxss */
- page{
- background-color: #eff0f5;
- }
- .all{
- }
- .search-top {
- height: 55px;
- background-color: white;
- padding-bottom: 10px;
- padding-top: 5px;
- }
- .box{
- width:340px;
- height:32px;
- border:1px solid #b2b2b2;
- margin:auto;
- margin-top: 15px;
- /* margin-bottom: 15px; */
- border-radius: 40px;
- background: white;
- }
- .input{
- height:38px;
- outline:none;
- border:none;
-
- margin-left: 23px;
- margin-top: -2px;
- color: #cacaca;
- font-size: 13px;
- }
- .button{
- float:left;
- width:64px;
- height:19px;
- color:white;
- background-color:#ff8e0b;
- outline:none;
- border-radius: 40px;
- text-align: center;
- float: right;
- margin-top: -31px;
- margin-right:8px;
- font-size: 13px;
- }
- .search-box {
- margin-left: -2px;
- margin-right: -2px;
- height: 160px;
- }
- .total {
- display: block;
- margin: 20px 20px 1px 20px;
- }
- .title-name2{
- /* font-size: 13px; */
- }
- .value-name2{
- color: #ffa34a !important;
- }
- .message{
- margin-left: 15px;
- display: block;
- color: #706868;
- font-size: 14px;
- margin-bottom: 8px;
- }
- .reprint{
- float: right;
- display: inline;
- margin-top: -40px;
- margin-right: 10px;
- }
|