ah_jjzhgd_webscreen/css/newDataAnalysis/projectProgress.css

51 lines
980 B
CSS
Raw Normal View History

.tap-box {
margin-top: 30px;
padding: 0 10px;
display: flex;
}
.tap-box div {
2025-07-24 09:35:09 +08:00
text-align: center;
padding: 8px 16px;
background: rgba(22, 186, 170, 0.2);
border-radius: 6px;
border: 1px solid rgba(22, 186, 170, 0.5);
transition: all 0.3s ease;
cursor: pointer;
}
.tap-box div:last-child {
margin-left: 10px;
}
.active {
2025-07-24 09:35:09 +08:00
background: rgba(22, 186, 170, 0.8) !important;
border: 1px solid rgba(22, 186, 170, 0.8) !important;
color: #fff;
}
.chart-box {
padding: 10px;
display: flex;
}
.chart-box-left,
.chart-box-right {
2025-07-24 09:35:09 +08:00
width: 48%;
height: 400px;
2025-07-24 09:35:09 +08:00
background: linear-gradient(
135deg,
rgba(22, 186, 170, 0.1) 0%,
rgba(22, 186, 170, 0.05) 100%
);
border: 1px solid rgba(22, 186, 170, 0.3);
border-radius: 12px;
padding: 20px;
position: relative;
overflow: hidden;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.chart-box-left {
margin-right: 1%;
}