This commit is contained in:
qsh
2026-01-30 14:08:23 +08:00
parent 36482fb428
commit ff3b306de0
38 changed files with 5491 additions and 190 deletions

View File

@@ -434,21 +434,141 @@
color: #f56c6c;
}
/* 响应式设计 */
@media screen and (min-width: 500px) {
/* 平板和大屏响应式 */
@media screen and (min-width: 768px) {
.quota-manage-container {
max-width: 900px;
margin: 0 auto;
width: 100%;
}
.filter-section {
margin: 0 32rpx 24rpx;
padding: 32rpx;
}
.total-quota-section,
.distributor-quota-section {
margin: 0 32rpx 24rpx;
padding: 40rpx;
}
.quota-stats {
margin: 0 32rpx 32rpx;
padding: 32rpx;
}
.section-title {
font-size: 36rpx;
margin-bottom: 32rpx;
}
.filter-label {
font-size: 26rpx;
}
.picker-text {
font-size: 26rpx;
}
.filter-control {
padding: 20rpx;
}
.quota-item {
margin-bottom: 24rpx;
}
.quota-label {
font-size: 26rpx;
}
.quota-input {
width: 160rpx;
height: 72rpx;
width: 180rpx;
height: 80rpx;
font-size: 28rpx;
padding: 0 20rpx;
}
.quota-unit {
font-size: 26rpx;
}
.quota-hint {
font-size: 22rpx;
}
.distributor-name {
font-size: 28rpx;
}
.distributor-id {
font-size: 22rpx;
}
.stats-label {
font-size: 26rpx;
}
.stats-value {
font-size: 32rpx;
}
.quota-list {
gap: 24rpx;
}
}
/* 大屏设备响应式 */
@media screen and (min-width: 1024px) {
.quota-manage-container {
max-width: 1000px;
}
.section-title {
font-size: 40rpx;
}
.filter-label {
font-size: 28rpx;
}
.picker-text {
font-size: 28rpx;
}
.quota-label {
font-size: 28rpx;
}
.quota-input {
width: 200rpx;
height: 90rpx;
font-size: 32rpx;
}
.quota-unit {
font-size: 28rpx;
}
.quota-hint {
font-size: 24rpx;
}
.distributor-name {
font-size: 32rpx;
}
.distributor-id {
font-size: 24rpx;
}
.stats-label {
font-size: 28rpx;
}
.stats-value {
font-size: 36rpx;
}
}
</style>