123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613 |
- .reports-container {
- padding: 20px;
- max-width: 1400px;
- margin: 0 auto;
- }
- .reports-header {
- margin-bottom: 30px;
- text-align: center;
- }
- .header-top {
- margin-bottom: 20px;
- text-align: left;
- }
- .back-to-dashboard-btn {
- display: inline-flex;
- align-items: center;
- gap: 6px;
- padding: 8px 16px;
- background-color: #f5f5f5;
- color: #4a90e2;
- border: 1px solid #ddd;
- border-radius: 6px;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.3s ease;
- text-decoration: none;
- }
- .back-to-dashboard-btn:hover {
- background-color: #4a90e2;
- color: white;
- border-color: #4a90e2;
- transform: translateY(-1px);
- }
- .back-to-dashboard-btn:active {
- transform: translateY(0);
- }
- .reports-header h1 {
- font-size: 28px;
- font-weight: 600;
- margin-bottom: 8px;
- color: #333;
- }
- .reports-header p {
- font-size: 16px;
- color: #666;
- margin: 0;
- }
- /* 报表参数设置区域 */
- .reports-params {
- margin-bottom: 30px;
- }
- .params-card {
- background-color: #fff;
- border-radius: 12px;
- padding: 24px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
- border: 1px solid #e0e0e0;
- }
- .params-card h2 {
- font-size: 20px;
- font-weight: 600;
- margin-bottom: 20px;
- color: #333;
- }
- .params-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
- gap: 16px;
- margin-bottom: 24px;
- }
- .param-item {
- display: flex;
- flex-direction: column;
- gap: 6px;
- }
- .param-item label {
- font-size: 14px;
- font-weight: 500;
- color: #555;
- }
- .form-select,
- .form-input {
- padding: 10px 12px;
- border: 1px solid #ddd;
- border-radius: 6px;
- font-size: 14px;
- transition: all 0.3s ease;
- background-color: #fff;
- }
- .form-select:focus,
- .form-input:focus {
- outline: none;
- border-color: #4a90e2;
- box-shadow: 0 0 0 2px rgba(74, 144, 226, 0.2);
- }
- .params-actions {
- display: flex;
- gap: 12px;
- justify-content: flex-end;
- flex-wrap: wrap;
- }
- /* 按钮样式 */
- .btn-primary,
- .btn-secondary,
- .btn-outline {
- padding: 10px 20px;
- border: none;
- border-radius: 6px;
- font-size: 14px;
- font-weight: 500;
- cursor: pointer;
- transition: all 0.3s ease;
- display: flex;
- align-items: center;
- gap: 6px;
- }
- .btn-primary {
- background-color: #4a90e2;
- color: white;
- }
- .btn-primary:hover:not(:disabled) {
- background-color: #357abd;
- transform: translateY(-1px);
- }
- .btn-primary:disabled {
- background-color: #ccc;
- cursor: not-allowed;
- transform: none;
- }
- .btn-secondary {
- background-color: #28a745;
- color: white;
- }
- .btn-secondary:hover:not(:disabled) {
- background-color: #218838;
- transform: translateY(-1px);
- }
- .btn-secondary:disabled {
- background-color: #ccc;
- cursor: not-allowed;
- transform: none;
- }
- .btn-outline {
- background-color: transparent;
- color: #666;
- border: 1px solid #ddd;
- }
- .btn-outline:hover {
- background-color: #f5f5f5;
- border-color: #4a90e2;
- color: #4a90e2;
- }
- .btn-icon {
- background: none;
- border: none;
- cursor: pointer;
- padding: 8px;
- border-radius: 4px;
- color: #666;
- transition: all 0.3s ease;
- }
- .btn-icon:hover {
- background-color: #f5f5f5;
- color: #4a90e2;
- }
- /* 报表结果展示区域 */
- .reports-result {
- margin-bottom: 40px;
- background-color: #fff;
- border-radius: 12px;
- padding: 24px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
- border: 1px solid #e0e0e0;
- animation: fadeIn 0.5s ease;
- }
- @keyframes fadeIn {
- from {
- opacity: 0;
- transform: translateY(10px);
- }
- to {
- opacity: 1;
- transform: translateY(0);
- }
- }
- .result-header {
- margin-bottom: 24px;
- border-bottom: 1px solid #eee;
- padding-bottom: 16px;
- }
- .result-header h2 {
- font-size: 22px;
- font-weight: 600;
- margin-bottom: 8px;
- color: #333;
- }
- .result-meta {
- display: flex;
- gap: 20px;
- flex-wrap: wrap;
- font-size: 13px;
- color: #666;
- }
- /* 汇总卡片 */
- .summary-cards {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
- gap: 16px;
- margin-bottom: 32px;
- }
- .summary-card {
- background-color: #f8f9fa;
- border-radius: 8px;
- padding: 20px;
- display: flex;
- align-items: center;
- gap: 12px;
- transition: all 0.3s ease;
- border: 1px solid #e9ecef;
- }
- .summary-card:hover {
- transform: translateY(-2px);
- box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
- }
- .summary-icon {
- font-size: 24px;
- }
- .summary-content {
- flex: 1;
- }
- .summary-label {
- font-size: 13px;
- color: #666;
- margin-bottom: 4px;
- }
- .summary-value {
- font-size: 20px;
- font-weight: 600;
- color: #333;
- }
- .summary-value.profit {
- color: #28a745;
- }
- /* 图表容器 */
- .chart-container {
- background-color: #fafbfc;
- border-radius: 8px;
- padding: 20px;
- border: 1px solid #e9ecef;
- .role-warning {
- margin: 8px 0 12px;
- padding: 10px 12px;
- background: #fff7e6;
- border: 1px solid #ffe7ba;
- color: #ad6800;
- border-radius: 6px;
- font-size: 13px;
- }
- }
- .chart-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- flex-wrap: wrap;
- gap: 16px;
- }
- .chart-header h3 {
- font-size: 18px;
- font-weight: 600;
- color: #333;
- margin: 0;
- }
- .chart-legend {
- display: flex;
- gap: 16px;
- flex-wrap: wrap;
- }
- .legend-item {
- display: flex;
- align-items: center;
- gap: 6px;
- font-size: 13px;
- color: #666;
- }
- .legend-color {
- width: 12px;
- height: 12px;
- border-radius: 50%;
- flex-shrink: 0;
- }
- /* 柱状图 */
- .bar-chart {
- display: flex;
- gap: 16px;
- align-items: flex-end;
- height: 300px;
- padding: 20px 0;
- position: relative;
- }
- .bar-item {
- flex: 1;
- background-color: #4a90e2;
- border-radius: 6px 6px 0 0;
- position: relative;
- transition: all 0.3s ease;
- cursor: pointer;
- min-width: 40px;
- }
- .bar-item:hover {
- opacity: 0.9;
- transform: translateY(-2px);
- }
- .bar-label {
- position: absolute;
- bottom: -30px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 12px;
- color: #666;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- max-width: 100%;
- }
- .bar-value {
- position: absolute;
- top: -30px;
- left: 50%;
- transform: translateX(-50%);
- font-size: 13px;
- font-weight: 600;
- color: #333;
- background-color: #fff;
- padding: 4px 8px;
- border-radius: 4px;
- white-space: nowrap;
- }
- /* 饼图 */
- .pie-chart {
- display: flex;
- justify-content: center;
- padding: 20px;
- }
- .pie-container {
- width: 300px;
- height: 300px;
- border-radius: 50%;
- position: relative;
- overflow: hidden;
- }
- .pie-slice {
- position: absolute;
- width: 100%;
- height: 100%;
- transform-origin: center;
- }
- /* 表格 */
- .table-container {
- overflow-x: auto;
- }
- .data-table {
- width: 100%;
- border-collapse: collapse;
- background-color: #fff;
- border-radius: 8px;
- overflow: hidden;
- }
- .data-table th {
- background-color: #f8f9fa;
- padding: 12px 16px;
- text-align: left;
- font-weight: 600;
- font-size: 14px;
- color: #333;
- border-bottom: 2px solid #e9ecef;
- }
- .data-table td {
- padding: 12px 16px;
- font-size: 14px;
- color: #555;
- border-bottom: 1px solid #f0f0f0;
- }
- .data-table tr:last-child td {
- border-bottom: none;
- }
- .data-table tr:hover {
- background-color: #f8f9fa;
- }
- .table-total {
- background-color: #f8f9fa;
- font-weight: 600;
- }
- .table-label {
- display: flex;
- align-items: center;
- gap: 8px;
- }
- .label-color {
- width: 8px;
- height: 8px;
- border-radius: 50%;
- flex-shrink: 0;
- }
- /* 历史报表 */
- .historical-reports {
- background-color: #fff;
- border-radius: 12px;
- padding: 24px;
- box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
- border: 1px solid #e0e0e0;
- }
- .history-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- margin-bottom: 20px;
- }
- .history-header h2 {
- font-size: 20px;
- font-weight: 600;
- color: #333;
- margin: 0;
- }
- .history-count {
- font-size: 14px;
- color: #666;
- background-color: #f8f9fa;
- padding: 4px 12px;
- border-radius: 16px;
- }
- .history-list {
- display: flex;
- flex-direction: column;
- gap: 12px;
- }
- .history-item {
- display: flex;
- align-items: center;
- gap: 16px;
- padding: 16px;
- border: 1px solid #e9ecef;
- border-radius: 8px;
- cursor: pointer;
- transition: all 0.3s ease;
- background-color: #fafbfc;
- }
- .history-item:hover {
- background-color: #f0f2f5;
- border-color: #4a90e2;
- transform: translateX(2px);
- }
- .history-icon {
- font-size: 20px;
- flex-shrink: 0;
- }
- .history-content {
- flex: 1;
- min-width: 0;
- }
- .history-title {
- font-size: 15px;
- font-weight: 500;
- color: #333;
- margin-bottom: 4px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .history-meta {
- display: flex;
- gap: 12px;
- font-size: 12px;
- color: #666;
- }
- .history-actions {
- flex-shrink: 0;
- }
- /* 响应式设计 */
- @media (max-width: 768px) {
- .reports-container {
- padding: 16px;
- }
-
- .params-grid {
- grid-template-columns: 1fr;
- }
-
- .params-actions {
- justify-content: center;
- }
-
- .summary-cards {
- grid-template-columns: 1fr 1fr;
- }
-
- .result-meta {
- flex-direction: column;
- gap: 8px;
- }
-
- .bar-chart {
- height: 200px;
- flex-direction: column;
- align-items: stretch;
- }
-
- .bar-item {
- min-height: 40px;
- }
-
- .pie-container {
- width: 200px;
- height: 200px;
- }
- }
- @media (max-width: 480px) {
- .summary-cards {
- grid-template-columns: 1fr;
- }
-
- .params-actions {
- flex-direction: column;
- }
-
- .chart-header {
- flex-direction: column;
- align-items: flex-start;
- }
-
- .chart-legend {
- justify-content: flex-start;
- }
- }
|