@charset "utf-8";

/* product-price-highlight */
.product-price-highlight {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #f7f8fc;
}

.product-price-highlight .product-price-left {
    display: flex;
    align-items: center;
}

.product-price-highlight .product-price-left .current-price {
    display: inline-block;
    color: #0036ff;
    font-family: 'Arial';
    font-size: 26px;
}

.product-price-highlight .product-price-left .price-change {
    cursor: pointer;
    margin-left: 6px;
    padding: 3px 8px;
    font-size: 14px;
}

.product-price-highlight .product-price-left .price-change.flat {
    color: #0036ff;
    background: #eaebf1;
}

.product-price-highlight .product-price-left .price-change.rise {
    color: red;
    background: #f5e5e5;
}

.product-price-highlight .product-price-left .price-change.fall {
    color: #32cb2e;
    background: #f0fff2;
}

.product-price-highlight .product-price-right {
    display: flex;
    align-items: center;
}

.product-price-highlight .product-price-right p {
    margin-left: 15px;
    color: #999;
}
/* product-price-highlight */

/* unit-price */
.unit-price .panel-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.unit-price .panel-body .price-index {
    width: 280px;
    text-align: center;
}

.unit-price .panel-body .price-index .index-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    height: 108px;
    margin: 0 auto;
    border-radius: 50%;
    background: conic-gradient(#0036ff 78%, #eef0fc 0);
}

.unit-price .panel-body .price-index .index-circle:before {
    content: '';
    display: inline-block;
    width: 78px;
    height: 78px;
    background-color: #fff;
    border-radius: 50%;
}

.unit-price .panel-body .price-index .index-circle .index-score {
    position: absolute;
    z-index: 99;
    color: #0036ff;
    font-size: 30px;
}

.unit-price .panel-body .price-index .index-details {
    margin-top: 15px;
}

.unit-price .panel-body .price-index .index-details h5 {
    color: #0036ff;
    font-size: 18px;
    font-weight: normal;
}

.unit-price .panel-body .price-index .index-details p {
    margin-top: 10px;
    color: #444;
    font-size: 16px;
    line-height: 1.25;
}

.unit-price .panel-body .price-index .index-details .index-tags {
    margin-top: 10px;
}

.unit-price .panel-body .price-index .index-details .index-tags a {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 5px;
    background-color: #dae2ff;
    color: #0036ff;
    font-size: 14px;
}

.unit-price .panel-body .price-index .index-details .index-tags a:nth-child(n+2) {
    margin-left: 5px;
}

.unit-price .panel-body .price-dimensions-list-box {
    overflow-y: auto;
    width: 770px;
    height: 250px;
}

.unit-price .panel-body .price-dimensions-list-box .mCSB_inside .mCSB_container {
    margin-right: 3px;
}

.unit-price .panel-body .price-dimensions-list-box .mCSB_inside .mCSB_scrollTools {
    width: 4px;
}

.unit-price .panel-body .price-dimensions-list-box .price-dimensions-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: flex-start;
    min-height: 250px;
}

.unit-price .panel-body .price-dimensions-list .dimension-card {
    box-sizing: border-box;
    width: 375px;
    height: 115px;
    padding: 20px;
    border-radius: 2px;
    background-color: #fff;
    box-shadow: 0 3px 10px rgba(0,35,166,0.1);
    transition: transform 0.4s,box-shadow 0.4s;
}

.unit-price .panel-body .price-dimensions-list .dimension-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,35,166,0.2);
}

.unit-price .panel-body .price-dimensions-list .dimension-card .dimension-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.unit-price .panel-body .price-dimensions-list .dimension-card .dimension-header .dimension-title {
    color: #434343;
    font-size: 16px;
}

.unit-price .panel-body .price-dimensions-list .dimension-card .dimension-header .dimension-trend {
    color: #32cb2e;
    font-size: 16px;
}

.unit-price .panel-body .price-dimensions-list .dimension-card .dimension-price {
    margin-top: 17px;
    color: #0036ff;
    font-size: 20px;
}

.unit-price .panel-body .price-dimensions-list .dimension-card .dimension-desc {
    margin-top: 17px;
    color: #999;
    font-size: 14px;
}
/* unit-price */

/* price-trend */
.price-trend .panel-body canvas {
    width: 100%;
    max-height: 250px;
}
/* price-trend */

/* price-fluctuations-group */
.price-fluctuations-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.price-fluctuations-group .price-fluctuations,
.price-fluctuations-group .competitive-prices {
    box-sizing: border-box;
    width: 550px;
    margin-top: 0;
}

.price-fluctuations-group canvas {
    width: 100%;
    max-height: 280px;
}
/* price-fluctuations-group */

/* price-history */
.price-history .panel-body table {
    width: 100%;
}

.price-history .panel-body table thead tr th {
    padding-left: 20px;
    background-color: #fff;
    color: #666;
    font-size: 16px;
    line-height: 38px;
    text-align: left;
    font-weight: normal;
}

.price-history .panel-body table tbody tr td {
    padding-left: 20px;
    color: #333;
    font-size: 16px;
    line-height: 32px;
    text-align: left;
}

.price-history .panel-body table tbody tr:first-child td {
    padding-top: 10px;
}

.price-history .panel-body table tbody tr:hover td {
    background-color: rgba(255,255,255,0.5);
}
/* price-history */