@charset "utf-8";

/* product-performance-info */
.product-performance-info .performance-info-tab {
    display: flex;
    justify-content: space-between;
}

.product-performance-info .performance-info-tab .performance-info-item {
    position: relative;
    box-sizing: border-box;
    width: 353px;
    height: 104px;
    padding: 15px 18px;
    border-radius: 2px;
    background: #f7f8fc linear-gradient(to bottom,#fff,#f7f8fc);
    box-shadow: 0 3px 10px rgba(0,35,166,0.1);
    transition: transform 0.4s,box-shadow 0.4s;
}

.product-performance-info .performance-info-tab .performance-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0,35,166,0.2);
}

.product-performance-info .performance-info-tab .performance-info-item h5 {
    margin-left: 5px;
    color: #333;
    font-size: 16px;
    font-weight: normal;
}

.product-performance-info .performance-info-tab .performance-info-item strong {
    display: block;
    margin-top: 15px;
    margin-left: 3px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.product-performance-info .performance-info-tab .performance-info-item p {
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}

.product-performance-info .performance-info-tab .performance-info-item p i {
    color: #0036ff;
    font-size: 16px;
}

.product-performance-info .performance-info-tab .performance-info-item a {
    position: absolute;
    top: 10px;
    right: 10px;
    display: block;
    padding: 3px 8px;
    border-radius: 5px;
    background-color: #dae2ff;
    color: #0036ff;
    font-size: 13px;
}

.product-performance-info .performance-info-chart-box {
    margin-top: 20px;
}

.product-performance-info .performance-info-chart-box canvas {
    width: 100%;
    height: 340px;
}

.product-performance-info .performance-info-advantage h5 {
    margin-top: 15px;
    color: #333;
    font-size: 18px;
    font-weight: bold;
}

.product-performance-info .performance-info-advantage ul {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.product-performance-info .performance-info-advantage ul li {
    box-sizing: border-box;
    width: 535px;
    height: 80px;
    padding: 15px 18px;
    background-color: #fff;
    border-radius: 2px;
}

.product-performance-info .performance-info-advantage ul li h6 {
    color: #333;
    font-size: 18px;
}

.product-performance-info .performance-info-advantage ul li p {
    margin-top: 10px;
    color: #999;
    font-size: 16px;
}
/* product-performance-info */