Dwinzo_dev/app/src/styles/components/analysis/ROISummary.scss

311 lines
7.6 KiB
SCSS
Raw Normal View History

2025-04-29 05:04:21 +00:00
.roiSummary-container {
.roiSummary-wrapper {
2025-04-29 12:24:36 +00:00
background-color: var(--background-color);
2025-04-29 05:04:21 +00:00
.product-info {
display: flex;
}
.playBack {
display: flex;
background-color: var(--background-color);
border-radius: 12px;
padding: 6px;
.info {
span {
font-size: var(--font-size-xlarge);
&:first-child {
color: #31C756;
}
&:last-child {
2025-04-29 12:24:36 +00:00
color: var(--text-color);
2025-04-29 05:04:21 +00:00
}
}
}
}
.roi-details {
display: flex;
2025-04-29 12:24:36 +00:00
align-items: center;
gap: 12px;
.progress-wrapper {
width: 250px;
display: flex;
flex-direction: column;
gap: 6px;
.content {
display: flex;
flex-direction: column;
gap: 3px;
align-items: center;
.key {
font-size: var(--font-size-xlarge);
color: var(--accent-color);
}
}
}
2025-04-29 05:04:21 +00:00
.roi-progress {
2025-04-29 12:24:36 +00:00
width: 100%;
2025-04-29 05:04:21 +00:00
}
.metrics {
display: flex;
flex-direction: column;
gap: 6px;
.metric-item {
width: 100%;
border-radius: 6px;
2025-04-29 12:24:36 +00:00
border: 1px solid #00FF56;
background: #436D51;
2025-04-29 05:04:21 +00:00
display: flex;
flex-direction: column;
padding: 4px 6px;
&:last-child {
align-items: center;
}
.metric-label {
font-size: 10px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.metric-value {
text-align: center;
line-height: 20px;
}
}
.metric-wrapper {
display: flex;
gap: 6px;
.metric-item {
background-color: var(--background-color);
border: 1px solid var(--Grays-Gray-6, #F2F2F7);
}
}
}
}
.cost-breakdown {
background-color: var(--background-color);
border: 1px solid var(--text-disabled);
border-radius: 8px;
padding: 16px;
.breakdown-header {
display: flex;
align-items: center;
2025-04-29 12:24:36 +00:00
justify-content: space-between;
2025-04-29 05:04:21 +00:00
gap: 8px;
margin-bottom: 16px;
2025-04-29 12:24:36 +00:00
.section-wrapper {
display: flex;
gap: 4px;
align-items: center;
}
2025-04-29 05:04:21 +00:00
.section-number {
font-size: 20px;
color: #00aaff;
}
.section-title {
font-size: var(--font-size-regular);
2025-04-29 12:24:36 +00:00
color: var(--text-color);
2025-04-29 05:04:21 +00:00
}
.expand-icon {
font-size: 16px;
2025-04-29 12:24:36 +00:00
color: var(--text-color);
2025-04-29 05:04:21 +00:00
cursor: pointer;
2025-04-29 12:24:36 +00:00
transform: rotate(90deg);
transition: transform 0.2s linear;
2025-04-29 05:04:21 +00:00
}
2025-04-29 12:24:36 +00:00
.expand-icon.open {
transform: rotate(0deg);
2025-04-29 05:04:21 +00:00
2025-04-29 12:24:36 +00:00
}
}
2025-04-29 05:04:21 +00:00
.breakdown-table {
width: 100%;
border-collapse: collapse;
border-radius: 8px;
th,
td {
padding: 8px;
text-align: left;
border-top: 1px solid var(--text-disabled);
border-bottom: 1px solid var(--text-disabled);
}
2025-04-29 12:24:36 +00:00
th:first-child,
2025-04-29 05:04:21 +00:00
td:first-child {
border-left: 1px solid var(--text-disabled);
}
2025-04-29 12:24:36 +00:00
th:last-child,
2025-04-29 05:04:21 +00:00
td:last-child {
border-right: 1px solid var(--text-disabled);
}
th {
background-color: var(--background-color);
color: #333;
}
.total-row,
.net-profit-row {
font-weight: bold;
color: #333;
}
}
}
.tips-section {
background-color: var(--background-color);
border-radius: 8px;
display: flex;
flex-direction: column;
gap: 6px;
padding: 12px;
.tip-header {
display: flex;
align-items: center;
.tip-title {
color: var(--text-color);
font-weight: 600;
}
}
.tip-description {
span {
2025-04-29 12:24:36 +00:00
font-size: var(--font-size-xlarge);
2025-04-29 05:04:21 +00:00
color: #34C759;
&:first-child {
color: #34C759;
}
&:nth-child(2) {
color: #488EF6;
}
}
}
}
.get-tips-button {
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 14px;
margin-top: 8px;
display: inline-block;
display: flex;
justify-content: flex-end;
background: none;
.btn {
background-color: var(--accent-color);
color: var(--background-color);
padding: 4px 6px;
border-radius: 5px;
display: inline-block;
font-size: 14px;
text-align: center;
}
}
2025-04-29 12:24:36 +00:00
}
.semi-circle-wrapper {
width: 100%;
height: 125px;
overflow-y: hidden;
position: relative;
.semi-circle {
width: 100%;
height: 250px;
border-radius: 50%;
position: relative;
transition: background 0.5s ease;
}
.progress-cover {
position: absolute;
width: 75%;
height: 75%;
top: 12.5%;
left: 12.5%;
background: #000000cc;
border-radius: 50%;
}
2025-04-29 12:24:36 +00:00
}
2025-04-29 05:04:21 +00:00
2025-04-29 12:24:36 +00:00
.label-wrapper {
.label {
font-size: var(--font-size-xxxlarge);
}
2025-04-29 05:04:21 +00:00
2025-04-29 12:24:36 +00:00
position: absolute;
bottom: 0%;
left: 50%;
transform: translate(-50%, 0%);
font-weight: bold;
font-size: 1.2rem;
color: #333;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
2025-04-29 05:04:21 +00:00
}
}
2025-04-29 12:24:36 +00:00
// Breakdown Table Open/Close Logic
2025-04-29 05:04:21 +00:00
2025-04-29 12:24:36 +00:00
.breakdown-table-wrapper {
&.closed {
max-height: 0;
padding: 0;
}
&.open {
max-height: 500px;
}
.breakdown-table {
width: 100%;
border-collapse: collapse;
th,
td {
padding: 10px;
border: 1px solid #ddd;
text-align: left;
}
2025-04-29 12:24:36 +00:00
}
}