| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- /* 基础样式 */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
-
- body {
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
- line-height: 1.6;
- color: #333;
- background-color: #f5f5f5;
- }
-
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 20px;
- }
-
- /* 头部样式 */
- .header {
- background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
- color: white;
- padding: 20px 0;
- margin-bottom: 30px;
- border-radius: 10px;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- }
-
- .header-content {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 20px;
- }
-
- .header h1 {
- font-size: 2.5rem;
- font-weight: 600;
- }
-
- .header-actions {
- display: flex;
- gap: 10px;
- }
-
- /* 按钮样式 */
- .btn {
- padding: 10px 20px;
- border: none;
- border-radius: 5px;
- font-size: 16px;
- cursor: pointer;
- transition: all 0.3s ease;
- font-weight: 500;
- }
-
- .btn-primary {
- background-color: #4CAF50;
- color: white;
- }
-
- .btn-primary:hover {
- background-color: #45a049;
- transform: translateY(-2px);
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- }
-
- .btn-secondary {
- background-color: #2196F3;
- color: white;
- }
-
- .btn-secondary:hover {
- background-color: #1976D2;
- transform: translateY(-2px);
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
- }
-
- .btn-back {
- background-color: #ff7043;
- color: white;
- padding: 8px 16px;
- font-size: 14px;
- }
-
- .btn-back:hover {
- background-color: #f4511e;
- }
-
- /* 看板选择器样式 */
- .dashboard-selector {
- margin-bottom: 30px;
- }
-
- .dashboard-selector h2 {
- margin-bottom: 20px;
- color: #333;
- font-size: 1.8rem;
- }
-
- .dashboard-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 20px;
- }
-
- .dashboard-card {
- background: white;
- border-radius: 10px;
- padding: 20px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- cursor: pointer;
- transition: all 0.3s ease;
- border: 2px solid transparent;
- }
-
- .dashboard-card:hover {
- transform: translateY(-5px);
- box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
- border-color: #667eea;
- }
-
- .dashboard-card h3 {
- color: #333;
- margin-bottom: 10px;
- font-size: 1.3rem;
- }
-
- .dashboard-card p {
- color: #666;
- margin-bottom: 15px;
- font-size: 0.95rem;
- }
-
- .dashboard-card .tags {
- display: flex;
- flex-wrap: wrap;
- gap: 5px;
- margin-bottom: 15px;
- }
-
- .tag {
- background-color: #e3f2fd;
- color: #1976d2;
- padding: 4px 8px;
- border-radius: 12px;
- font-size: 0.8rem;
- font-weight: 500;
- }
-
- .dashboard-card .charts-count {
- color: #667eea;
- font-weight: 600;
- font-size: 0.9rem;
- }
-
- /* 看板详情样式 */
- .dashboard-detail {
- background: white;
- border-radius: 10px;
- padding: 20px;
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
- }
-
- .dashboard-header {
- display: flex;
- align-items: center;
- margin-bottom: 30px;
- padding-bottom: 15px;
- border-bottom: 2px solid #f0f0f0;
- }
-
- .dashboard-header h2 {
- margin-left: 15px;
- color: #333;
- font-size: 1.8rem;
- }
-
- .charts-container {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
- gap: 20px;
- }
-
- .chart-container {
- background: #fafafa;
- border-radius: 8px;
- padding: 20px;
- border: 1px solid #e0e0e0;
- }
-
- .chart-container h3 {
- color: #333;
- margin-bottom: 15px;
- font-size: 1.1rem;
- }
-
- .chart {
- width: 100%;
- height: 300px;
- border-radius: 5px;
- }
-
- /* 模态框样式 */
- .modal {
- display: none;
- position: fixed;
- z-index: 1000;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- animation: fadeIn 0.3s ease;
- }
-
- .modal-content {
- background-color: white;
- margin: 5% auto;
- padding: 0;
- border-radius: 10px;
- width: 90%;
- max-width: 600px;
- max-height: 80vh;
- overflow-y: auto;
- animation: slideIn 0.3s ease;
- }
-
- .modal-header {
- padding: 20px;
- border-bottom: 1px solid #e0e0e0;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
-
- .modal-header h3 {
- margin: 0;
- color: #333;
- }
-
- .modal-close {
- background: none;
- border: none;
- font-size: 24px;
- cursor: pointer;
- color: #666;
- padding: 0;
- width: 30px;
- height: 30px;
- display: flex;
- align-items: center;
- justify-content: center;
- border-radius: 50%;
- transition: background-color 0.3s ease;
- }
-
- .modal-close:hover {
- background-color: #f0f0f0;
- }
-
- .modal-body {
- padding: 20px;
- }
-
- .search-input {
- width: 100%;
- padding: 12px;
- border: 1px solid #ddd;
- border-radius: 5px;
- font-size: 16px;
- margin-bottom: 20px;
- outline: none;
- }
-
- .search-input:focus {
- border-color: #667eea;
- box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
- }
-
- .search-results {
- max-height: 400px;
- overflow-y: auto;
- }
-
- .search-result-item {
- padding: 12px;
- border-bottom: 1px solid #f0f0f0;
- cursor: pointer;
- transition: background-color 0.3s ease;
- }
-
- .search-result-item:hover {
- background-color: #f8f9fa;
- }
-
- .search-result-item:last-child {
- border-bottom: none;
- }
-
- .search-result-item h4 {
- color: #333;
- margin-bottom: 5px;
- }
-
- .search-result-item p {
- color: #666;
- font-size: 0.9rem;
- margin: 0;
- }
-
- .search-result-item .type {
- display: inline-block;
- padding: 2px 8px;
- border-radius: 12px;
- font-size: 0.8rem;
- font-weight: 500;
- margin-top: 5px;
- }
-
- .search-result-item .type.chart {
- background-color: #e3f2fd;
- color: #1976d2;
- }
-
- .search-result-item .type.dashboard {
- background-color: #f3e5f5;
- color: #7b1fa2;
- }
-
- /* 动画效果 */
- @keyframes fadeIn {
- from { opacity: 0; }
- to { opacity: 1; }
- }
-
- @keyframes slideIn {
- from { transform: translateY(-50px); opacity: 0; }
- to { transform: translateY(0); opacity: 1; }
- }
-
- /* 响应式设计 */
- @media (max-width: 768px) {
- .container {
- padding: 10px;
- }
-
- .header-content {
- flex-direction: column;
- gap: 15px;
- }
-
- .header h1 {
- font-size: 2rem;
- }
-
- .dashboard-grid {
- grid-template-columns: 1fr;
- }
-
- .charts-container {
- grid-template-columns: 1fr;
- }
-
- .modal-content {
- width: 95%;
- margin: 10% auto;
- }
- }
-
- /* 加载状态 */
- .loading {
- text-align: center;
- padding: 40px;
- color: #666;
- }
-
- .loading::after {
- content: '';
- display: inline-block;
- width: 20px;
- height: 20px;
- border: 2px solid #ddd;
- border-top: 2px solid #667eea;
- border-radius: 50%;
- animation: spin 1s linear infinite;
- margin-left: 10px;
- }
-
- @keyframes spin {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
-
- /* 错误状态 */
- .error {
- background-color: #ffebee;
- color: #c62828;
- padding: 12px;
- border-radius: 5px;
- margin: 10px 0;
- border-left: 4px solid #c62828;
- }
-
- /* 空状态 */
- .empty {
- text-align: center;
- padding: 40px;
- color: #666;
- }
|