49 lines
726 B
Plaintext
49 lines
726 B
Plaintext
/**
|
|
* 文件职责:到账查询页面响应式样式。
|
|
*/
|
|
@media (max-width: 1600px) {
|
|
.fst-stats {
|
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
}
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.fst-account-sep {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.fst-stats {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.fst-toolbar {
|
|
padding: 14px 12px;
|
|
|
|
.fst-store-select,
|
|
.fst-date-input,
|
|
.fst-channel-select {
|
|
width: 100%;
|
|
}
|
|
|
|
.fst-date-sep {
|
|
display: none;
|
|
}
|
|
|
|
.fst-toolbar-right {
|
|
width: 100%;
|
|
margin-left: 0;
|
|
}
|
|
|
|
.fst-export-btn {
|
|
justify-content: center;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.fst-detail-wrap {
|
|
padding: 12px 12px 12px 24px;
|
|
}
|
|
}
|