| | |
| | | |
| | | .case-search-query-form { |
| | | display: grid; |
| | | grid-template-columns: repeat(4, 1fr); |
| | | grid-template-columns: repeat(2, 1fr); |
| | | gap: 20px; |
| | | } |
| | | |
| | | /* 关键词输入框占满一行 */ |
| | | .case-search-keyword-full { |
| | | grid-column: 1 / -1; |
| | | } |
| | | |
| | | .case-search-form-group { |
| | |
| | | /* 筛选器区域 */ |
| | | .case-search-filters-section { |
| | | display: grid; |
| | | grid-template-columns: repeat(3, 1fr); |
| | | grid-template-columns: repeat(2, 1fr); |
| | | gap: 25px; |
| | | margin-bottom: 30px; |
| | | } |
| | |
| | | display: none; /* 使用自定义的 closeIcon */ |
| | | } |
| | | |
| | | /* Modal body 滚动样式 */ |
| | | .case-detail-antd-modal .ant-modal-body { |
| | | overflow-y: auto !important; |
| | | max-height: 85vh !important; |
| | | scrollbar-width: thin; |
| | | scrollbar-color: #1a6fb8 #f0f0f0; |
| | | } |
| | | |
| | | .case-detail-antd-modal .ant-modal-body::-webkit-scrollbar { |
| | | width: 8px; |
| | | } |
| | | |
| | | .case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-track { |
| | | background: #f0f0f0; |
| | | border-radius: 4px; |
| | | } |
| | | |
| | | .case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-thumb { |
| | | background-color: #1a6fb8; |
| | | border-radius: 4px; |
| | | } |
| | | |
| | | .case-detail-antd-modal .ant-modal-body::-webkit-scrollbar-thumb:hover { |
| | | background-color: #0d4a8a; |
| | | } |
| | | |
| | | /* 响应式 */ |
| | | @media (max-width: 1200px) { |
| | | .case-search-query-form { |