49 lines
1.1 KiB
Plaintext
49 lines
1.1 KiB
Plaintext
|
|
/**index.wxss**/
|
||
|
|
#queryForm {width: 100%;height: auto;position: fixed;top: 0;background: #fff;z-index: 999;padding-bottom: 30px;box-shadow: 0rpx 2rpx 10rpx #000}
|
||
|
|
.queryBox {width: 90%;margin: auto}
|
||
|
|
.box {display:flex;}
|
||
|
|
.section__title {width: 30%;line-height: 40px;text-align: right;padding-right: 10px;}
|
||
|
|
.section__input{width: 70%}
|
||
|
|
.box button {width: 100%;background: #007aff;border: 1px solid #007aff;color: #fff}
|
||
|
|
|
||
|
|
input {border:1px solid #eee;padding: 8px;border-radius: 5px;margin-bottom:10px;display: inline-block}
|
||
|
|
.table {
|
||
|
|
border: 0px solid darkgray;
|
||
|
|
width: 100%;
|
||
|
|
margin-top:70%;
|
||
|
|
position: relative;
|
||
|
|
}
|
||
|
|
.tr {
|
||
|
|
display: flex;
|
||
|
|
width: 100%;
|
||
|
|
justify-content: center;
|
||
|
|
height: 3rem;
|
||
|
|
align-items: center;
|
||
|
|
}
|
||
|
|
.td {
|
||
|
|
width:40%;
|
||
|
|
justify-content: center;
|
||
|
|
text-align: center;
|
||
|
|
overflow:hidden;
|
||
|
|
text-overflow:ellipsis;
|
||
|
|
white-space:nowrap;
|
||
|
|
|
||
|
|
}
|
||
|
|
.bg-w{
|
||
|
|
background: snow;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
}
|
||
|
|
.bg-g{
|
||
|
|
background: #E6F3F9;
|
||
|
|
border-bottom: 1px solid #eee;
|
||
|
|
}
|
||
|
|
.th {
|
||
|
|
width: 40%;
|
||
|
|
justify-content: center;
|
||
|
|
background: #fff;
|
||
|
|
color: #333;
|
||
|
|
display: flex;
|
||
|
|
height: 3rem;
|
||
|
|
align-items: center;
|
||
|
|
border: 1px solid #eee;
|
||
|
|
}
|