@charset "utf-8";

.product-panel {
    display: inline-block;
    box-sizing: border-box;
    padding: 20px;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(0,63,255,0.1);
    transition: transform .5s,box-shadow .5s;
}

.product-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.product-panel .panel-title {
    display: flex;
    justify-content: space-between;
}

.product-panel .panel-title h4 {
    font-size: 18px;
    font-weight: bold;
}

.product-panel .panel-title h4 i {
    color: #0036ff;
    font-size: 20px;
    font-weight: normal;
}

.product-panel .panel-title .panel-right a {
    color: #999;
    font-size: 14px;
}

.product-panel .panel-title .panel-right a i {
    font-size: 14px;
}

.product-panel .panel-body {
    margin-top: 13px;
}

/* product-body-panel */
.product-body-panel {
    padding: 20px 20px 25px;
    background-color: #f7f8fc;
}

.product-body-panel:nth-child(n+2) {
    margin-top: 20px;
}

.product-body-panel .panel-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-body-panel .panel-title h4 {
    color: #333;
    font-size: 20px;
    font-weight: normal;
}

.product-body-panel .panel-title h4 i {
    color: #0036ff;
    font-size: 24px;
}

.product-body-panel .panel-title .panel-title-right a {
    color: #0036ff;
    font-size: 16px;
}

.product-body-panel .panel-title .panel-title-right a i {
    font-size: 14px;
}

.product-body-panel .panel-title .panel-title-right .tools-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-body-panel .panel-title .panel-title-right .tools-tab li {
    margin-left: 15px;
}

.product-body-panel .panel-title .panel-title-right .tools-tab li a {
    display: block;
    padding: 8px 10px;
    color: #222;
    font-size: 14px;
}

.product-body-panel .panel-title .panel-title-right .tools-tab li.active a,
.product-body-panel .panel-title .panel-title-right .tools-tab li:hover a {
    border-radius: 2px;
    background-color: #003fff;
    color: #fff;
}

.product-body-panel .panel-body {
    margin-top: 15px;
}
/* product-body-panel */

/* product-main */
.product-main {
    margin-top: 25px;
    padding-bottom: 25px;
    /* background: linear-gradient(to bottom, #fff, #f7f8fc); */
}

.product-main .container {
    display: flex;
    justify-content: space-between;
}

.product-main .product-main-left {
    width: 320px;
}

/* gpu-rank */
.product-main .product-main-left .gpu-rank {
    width: 320px;
    height: 240px;
    padding-left: 0;
}

.product-main .product-main-left .gpu-rank .panel-title {
    margin-left: 20px;
}

.product-main .product-main-left .gpu-rank .panel-body ul {
    height: 170px;
    overflow: auto;
}

.product-main .product-main-left .gpu-rank .panel-body ul .mCSB_inside .mCSB_container {
    margin-right: 3px;
}

.product-main .product-main-left .gpu-rank .panel-body ul .mCSB_inside .mCSB_scrollTools {
    width: 4px;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 20px;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item.active:before {
    content: '';
    position: absolute;
    left: -20px;
    width: 3px;
    height: 22px;
    background-color: #0036ff;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item.active h5 {
    color: #0036ff;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item:hover  {
    background: #f5f5f5;
    cursor: pointer;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item + li {
    margin-top: 8px;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item .gpu-rank-version {
    width: 120px;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: -0.7px;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item .gpu-rank-bar {
    position: relative;
    overflow: hidden;
    width: 150px;
    height: 22px;
    margin-right: 5px;
    border-radius: 11px;
    background-color: #ddd;
}

.product-main .product-main-left .gpu-rank .gpu-rank-item .gpu-rank-bar span {
    display: inline-block;
    height: 22px;
    border-radius: 11px;
    background: #0036ff linear-gradient(to right, #839dff, #2d5aff);
}

.product-main .product-main-left .gpu-rank .gpu-rank-item.active .gpu-rank-bar span {
    background: #0036ff linear-gradient(to right, #4f70eb, #0036ff);
}

.product-main .product-main-left .gpu-rank .gpu-rank-item .gpu-rank-bar .gpu-rank-score {
    position: absolute;
    right: 15px;
    top: 0;
    line-height: 22px;
    color: #fff;
    font-size: 15px;
    text-shadow: 0 0 5px #000;
}
/* gpu-rank */

/* product-scene */
.product-main .product-main-left .product-scene {
    margin-top: 15px;
    width: 320px;
}

.product-main .product-main-left .product-scene .product-scene-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
}

.product-main .product-main-left .product-scene .product-scene-list .product-scene-item {
    /* width: 125px; */
    overflow: hidden;
    height: 45px;
    background-color: #f7f8fc;
    text-align: center;
}

.product-main .product-main-left .product-scene .product-scene-list .product-scene-item h4 {
    color: #333;
    font-size: 16px;
    line-height: 45px;
}

.product-main .product-main-left .product-scene .product-scene-list .product-scene-item h4 i {
    display: inline-block;
    width: 28px;
    background-color: #0036ff;
    margin-right: 3px;
    border-radius: 50%;
    color: #fff;
    line-height: 28px;
}

.product-main .product-main-left .product-scene .product-scene-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
    padding: 15px 20px;
    margin-top: 10px;
    background-color: #0036ff;
    border-radius: 2px;
    color: #fff;
    cursor: pointer;
}

.product-main .product-main-left .product-scene .product-scene-more .product-scene-text h5 {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.product-main .product-main-left .product-scene .product-scene-more .product-scene-text p {
    margin-top: 5px;
    color: #bccaff;
}

.product-main .product-main-left .product-scene .product-scene-more .product-scene-icon i {
    font-size: 30px;
}
/* product-scene */

/* product-img-box */
.product-main-center .product-img-box {
    width: 600px;
}

.product-main-center .product-img-box .product-img-list {
    position: relative;
    height: 418px;
}

.product-main-center .product-img-box .product-img-list:before{
    content: 'GPU显卡库';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    font-size: 100px;
    line-height: 1;
    text-align: center;
    font-weight: bold;
    background-image: linear-gradient(to bottom, #eef1fb, #eef1fb00);
    -webkit-background-clip: text;
    color: transparent;
    background: none\0;
    color: #eef1fb\0;
}

.product-main-center .product-img-box .product-img-list .product-img-item {
    position: absolute;
    display: none;
    width: 550px;
    height: 418px;
    margin: 0 25px;
    text-align: center;
}

.product-main-center .product-img-box .product-img-list .product-img-item.active {
    display: block;
}

.product-main-center .product-img-box .product-img-list .product-img-item img {
    max-width: 100%;
    max-height: 100%;
}

.product-main-center .product-img-box .product-img-more {
    position: relative;
    z-index: 99;
    margin-top: -20px;
    text-align: center;
}

.product-main-center .product-img-box .product-img-more a {
    color: #959595;
    font-size: 15px;
    transition: 0.6s;
}

.product-main-center .product-img-box .product-img-more a:hover {
    color: #0036ff;
}

.product-main-center .product-img-box .product-img-more a i {
    font-size: 14px;
}

.product-main-center .product-img-box .product-thumbnail-box {
    overflow: hidden;
    width: 480px;
    margin: 15px auto 0;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list {
    text-align: center;
    font-size: 0;
    white-space: nowrap;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    width: 92px;
    height: 80px;
    border: 1px solid #d9e1ff;
    margin-left: 5px;
    border-radius: 2px;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:first-child {
    margin-left: 0;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item.active,
.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:hover {
    border: 1px solid #0036ff;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item .product-thumbnail-item-box {
    width: 90px;
    height: 60px;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item p {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    color: #999;
    text-align: center;
}

.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item.active p,
.product-main-center .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:hover p {
    color: #0036ff;
}
/* product-img-box */

/* product-main-right */
.product-main-right {
    width: 550px;
    margin-top: 20px;
}

.product-main-right .product-title-box {
    display: flex;
    align-items: center;
}

.product-main-right .product-title-box h2 {
    color: #222;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
}

.product-main-right .product-title-box a {
    display: inline-block;
    padding: 0 8px;
    margin-left: 5px;
    border-radius: 12px;
    background: #f0f0f0 linear-gradient(to right,#f8f8f8,#f0f0f0);
    color: #646464;
    font-size: 13px;
    line-height: 24px;
}

.product-main-right .product-key-specs {
    display: flex;
    margin-top: 15px;
    /* justify-content: space-between; */
}

.product-main-right .product-key-specs li {
    margin-left: 30px;
}

.product-main-right .product-key-specs li:first-child {
    margin-left: 0;
}

.product-main-right .product-key-specs li strong {
    color: #666;
    font-size: 16px;
    font-weight: normal;
}

.product-main-right .product-key-specs li p {
    margin-top: 8px;
    color: #222;
    font-size: 16px;
}

.product-main-right .product-price-box {
    box-sizing: border-box;
    height: 200px;
    margin-top: 20px;
    padding: 15px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0.1);
    transition: transform .6s, box-shadow .6s;
}

.product-main-right .product-price-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.product-main-right .product-price-box .product-price-header {
    display: flex;
    justify-content: space-between;
}

.product-main-right .product-price-box .product-price-header .product-price-left {
    display: flex;
    align-items: center;
}

.product-main-right .product-price-box .product-price-header .product-price-left .price {
    font-family: 'Arial';
    color: #0036ff;
    font-size: 24px;
    line-height: 24px;
}

.product-main-right .product-price-box .product-price-header .product-price-left .price-change {
    cursor: pointer;
    margin-left: 6px;
    padding: 3px 8px;
    font-size: 12px;
}

.product-main-right .product-price-box .product-price-header .product-price-left .price-change.flat {
    color: #0036ff;
    background: #eaebf1;
}

.product-main-right .product-price-box .product-price-header .product-price-left .price-change.rise {
    color: red;
    background: #f5e5e5;
}

.product-main-right .product-price-box .product-price-header .product-price-left .price-change.fall {
    color: #32cb2e;
    background: #f0fff2;
}

.product-main-right .product-price-box .product-price-header .product-price-right a.price-history-btn {
    color: #333;
    font-size: 14px;
}

.product-main-right .product-price-box .product-price-header .product-price-right a.price-history-btn i {
    color: #333;
    font-size: 14px;
}

.product-main-right .product-price-box .price-chart-box {
    position: relative;
    margin-top: 10px;
    height: 137px;
}

.product-main-right .product-price-box .price-chart-box canvas {
    max-width: 100%;
    max-height: 100%;
}

.product-main-right .product-price-box .price-chart-box span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 137px;
    text-align: center;
    font-size: 14px;
    background: #eeeff5;
    color: #b5b5b5;
}

.product-main-right .product-action-btns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-main-right .product-action-btns a {
    box-sizing: border-box;
    width: 270px;
    height: 36px;
    border: 1px solid #0036ff;
    border-radius: 2px;
    color: #0036ff;
    font-size: 16px;
    text-align: center;
    line-height: 34px;
}

.product-main-right .product-action-btns a.share-btn {
    /* width: 100%; */
    /* margin-top: 10px; */
    border: 1px solid #c2cfff;
}

.product-main-right .product-action-btns a.add-to-compare {
    background-color: #0036ff;
    color: #fff;
    transition: 0.6s;
}

.product-main-right .product-action-btns a.add-to-compare:hover {
    background-color: #3a65ff;
    border: 1px solid #3a65ff;
}

.product-main-right .product-action-btns a.add-to-compare:active {
    background-color: #0036ff;
    border: 1px solid #0036ff;
}

.product-main-right .product-action-btns a i {
    margin-right: 3px;
}
/* product-main-right */

.product-body {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.product-body .product-body-left {
    width: 1120px;
}

.product-body .product-body-right {
    width: 360px;
}

/* .product-metadata-box */
.product-body-left .product-metadata-box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-body-left .product-metadata-box .product-metadata-left {
    display: flex;
    align-items: center;
    width: 780px;
}

.product-body-left .product-metadata-box .product-metadata-left .product-icon {
    width: 84px;
    height: 84px;
}

.product-body-left .product-metadata-box .product-metadata-left .product-icon img {
    width: 100%;
    height: 100%;
}

.product-body-left .product-metadata-box .product-metadata-left .product-metadata-info {
    margin-left: 25px;
}

.product-body-left .product-metadata-box .product-metadata-left .product-metadata-info .product-title-box {
    display: flex;
    align-items: center;
}

.product-body-left .product-metadata-box .product-metadata-left .product-metadata-info .product-title-box h2 {
    color: #222;
    font-size: 30px;
    font-weight: 900;
}

.product-body-left .product-metadata-box .product-metadata-left .product-metadata-info .product-title-box a {
    display: inline-block;
    padding: 0 8px;
    margin-left: 8px;
    border-radius: 12px;
    background: #f0f0f0 linear-gradient(to right,#f8f8f8,#f0f0f0);
    color: #646464;
    font-size: 13px;
    line-height: 24px;
}

.product-body-left .product-metadata-box .product-key-specs {
    display: flex;
    margin-top: 15px;
}

.product-body-left .product-metadata-box .product-key-specs li {
    margin-left: 30px;
}

.product-body-left .product-metadata-box .product-key-specs li:first-child {
    margin-left: 0;
}

.product-body-left .product-metadata-box .product-key-specs li strong {
    color: #666;
    font-size: 16px;
    font-weight: normal;
}

.product-body-left .product-metadata-box .product-key-specs li p {
    margin-top: 8px;
    color: #0036ff;
    font-size: 15px;
}

.product-body-left .product-metadata-box .product-action-btns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
}

.product-body-left .product-metadata-box .product-action-btns a {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    width: 120px;
    height: 36px;
    border: 1px solid #0036ff;
    border-radius: 2px;
    color: #0036ff;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
}

.product-body-left .product-metadata-box .product-action-btns a:nth-child(n+2) {
    margin-left: 10px;
}

.product-body-left .product-metadata-box .product-action-btns a.add-to-compare {
    background-color: #0036ff;
    color: #fff;
    transition: 0.6s;
}

.product-body-left .product-metadata-box .product-action-btns a.add-to-compare:hover {
    background-color: #3a65ff;
    border: 1px solid #3a65ff;
}

.product-body-left .product-metadata-box .product-action-btns a.add-to-compare:active {
    background-color: #0036ff;
    border: 1px solid #0036ff;
}

.product-body-left .product-metadata-box .product-action-btns a i {
    margin-right: 3px;
}
/* .product-metadata-box */

/* specs-table */
.product-body .product-specs .panel-body .specs-table {
    display: flex;
    justify-content: space-between;
}

.product-body .product-specs .panel-body .specs-table tbody {
    width: 535px;
}

.product-body .product-specs .panel-body .specs-table tbody tr {
    display: block;
    width: 100%;
    height: 38px;
    margin-bottom: 1px;
    line-height: 38px;
    background-color: #fff;
    text-align: left;
}

.product-body .product-specs .panel-body .specs-table tbody tr:nth-child(2n) {
    background-color: #fbfcfe;
}

.product-body .product-specs .panel-body .specs-table tbody tr th,
.product-body .product-specs .panel-body .specs-table tbody tr td {
    box-sizing: border-box;
    padding-left: 25px;
    font-size: 16px;
}

.product-body .product-specs .panel-body .specs-table tbody tr th {
    width: 200px;
    color: #444;
    font-weight: normal;
}

.product-body .product-specs .panel-body .specs-table tbody tr td {
    width: 335px;
    color: #666;
    font-weight: normal;
}
/* specs-table */

/* product-performance */
.product-performance .panel-body {
    display: flex;
    justify-content: space-between;
}

.product-performance .panel-body .performance-radar #performance-radar-chart {
    width: 320px;
}

.product-performance .panel-body .performance-list #performance-list-chart {
    width: 750px;
}
/* product-performance */

/* product-hot-comparison */
.product-hot-comparison .panel-body .hot-comparison-item {
    display: none;
    height: 300px;
}

.product-hot-comparison .panel-body .hot-comparison-item.active {
    display: block;
}
/* product-hot-comparison */

/* product-same-level */
.product-same-level .panel-body {
    display: flex;
}

.product-same-level .panel-body .product-list-item {
    position: relative;
    width: 261px;
    height: 365px;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0);
    transition: transform .6s, box-shadow .6s;
}

.product-same-level .panel-body .product-list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.1);
}

.product-same-level .panel-body .product-list-item:nth-child(n+2) {
    margin-left: 12px;
}

.product-same-level .panel-body .product-list-item .product-image-box {
    width: 261px;
    height: 198px;
}

.product-same-level .panel-body .product-list-item .product-image-box img.product-brand-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 42px;
    height: 42px;
}

.product-same-level .panel-body .product-list-item .product-image-box img.product-item-image {
    width: 100%;
    height: 100%;
}

.product-same-level .panel-body .product-list-item .product-item-trend {
    position: absolute;
    top: 175px;
    right: 10px;
}

.product-same-level .panel-body .product-list-item .product-item-trend a.trend-btn {
    color: #ff6000;
}

.product-same-level .panel-body .product-list-item .product-item-trend a.trend-btn i {
    margin-right: 3px;
    font-size: 15px;
}

.product-same-level .panel-body .product-list-item h4 {
    overflow: hidden;
    padding: 0 15px;
    font-size: 17px;
    font-weight: normal;
    text-overflow: ellipsis;
    letter-spacing: -0.5px;
}

.product-same-level .panel-body .product-list-item h4 a {
    white-space: nowrap;
    color: #222;
}

.product-same-level .panel-body .product-list-item ul {
    margin-top: 15px;
    padding: 0 15px;
}

.product-same-level .panel-body .product-list-item ul li {
    display: flex;
    justify-content: space-between;
}

.product-same-level .panel-body .product-list-item ul li+li {
    margin-top: 10px;
}

.product-same-level .panel-body .product-list-item ul li span {
    color: #454545;
}

.product-same-level .panel-body .product-list-item .product-item-btns {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    padding: 0 15px;
    font-size: 0;
}

.product-same-level .panel-body .product-list-item .product-item-btns a {
    display: flex;
    justify-content: center;
    flex: 1;
    height: 30px;
    padding: 0 8px;
    border-radius: 2px;
    border: 1px solid #0036ff;
    color: #0036ff;
    font-size: 14px;
    line-height: 30px;
}

.product-same-level .panel-body .product-list-item .product-item-btns a i {
    margin-right: 3px;
    font-size: 15px;
}

.product-same-level .panel-body .product-list-item .product-item-btns a.analysis-btn {
    background-color: #0036ff;
    border: 1px solid #0036ff;
    color: #fff;
}
/* product-same-level */

/* product-article-item */
.product-article .panel-body {
    display: flex;
    justify-content: space-between;
}

.product-article .product-article-item {
    width: 261px;
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0);
    transition: transform .6s, box-shadow .6s;
}

.product-article .product-article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.1);
}

.product-article .product-article-item .article-image {
    width: 261px;
    height: 175px;
    background-color: #0036ff;
}

.product-article .product-article-item .article-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-article .product-article-item .article-text {
    padding: 15px 15px 25px;
}

.product-article .product-article-item .article-text h3 {
    color: #222;
    font-size: 17px;
    line-height: 1.25;
    height: 43px;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
}

.product-article .product-article-item .article-text h3 a {
    color: #222;
}

.product-article .product-article-item .article-text h3:hover a {
    color: #0036ff;
}

.product-article .product-article-item .article-text .article-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
    color: #333;
}

.product-article .product-article-item .article-text p.article-excerpt {
    margin-top: 12px;
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.25;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-box-orient: vertical;
    -webkit-line-clamp: 2;
    -moz-line-clamp: 2;
    -ms-line-clamp: 2;
}

.product-article .product-article-item .article-text .article-tags {
    margin-top: 12px;
}

.product-article .product-article-item .article-text .article-tags a {
    display: inline-block;
    padding: 3px 5px;
    background-color: #e9eeff;
    color: #0036ff;
    font-size: 13px;
}
/* product-article-item */

/* .product-body-right product-img-box */
.product-body-right .product-img-box {
    padding-bottom: 20px;
    border-radius: 2px;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0.1);
    transition: transform .5s, box-shadow .5s;
}

.product-body-right .product-img-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.product-body-right .product-img-box .product-img-list {
    position: relative;
    height: 274px;
}

.product-body-right .product-img-box .product-img-list .product-img-item {
    position: absolute;
    display: none;
    width: 360px;
    height: 274px;
    text-align: center;
}

.product-body-right .product-img-box .product-img-list .product-img-item.active {
    display: block;
}

.product-body-right .product-img-box .product-img-list .product-img-item img {
    max-width: 100%;
    max-height: 100%;
}

.product-body-right .product-img-box .product-img-more {
    position: relative;
    z-index: 99;
    /* margin-top: -10px; */
    text-align: center;
}

.product-body-right .product-img-box .product-img-more a {
    color: #999;
    font-size: 14px;
}

.product-body-right .product-img-box .product-img-more a:hover {
    color: #0036ff;
}

.product-body-right .product-img-box .product-img-more a i {
    font-size: 13px;
}

.product-body-right .product-img-box .product-thumbnail-box {
    overflow: hidden;
    width: 303px;
    margin: 15px auto 0;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list {
    font-size: 0;
    white-space: nowrap;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item {
    display: inline-block;
    box-sizing: border-box;
    width: 72px;
    height: 66px;
    border-radius: 2px;
    border: 1px solid #d9e1ff;
    margin-left: 5px;
    cursor: pointer;
    text-align: center;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item.active,
.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:hover {
    border: 1px solid #0036ff;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:first-child {
    margin-left: 0;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item .product-thumbnail-item-box {
    width: 70px;
    height: 47px;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item img {
    display: block;
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item p {
    color: #9298ad;
    font-size: 12px;
}

.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item.active p,
.product-body-right .product-img-box .product-thumbnail-box .product-thumbnail-list .product-thumbnail-item:hover p {
    color: #0036ff;
}
/* .product-body-right product-img-box */

/* performance-analysis */
.performance-analysis {
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0.1);
    transition: transform .6s, box-shadow .6s;
}

.performance-analysis:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.performance-analysis .panel-body {
    padding-top: 10px;
}

.performance-analysis .panel-body canvas {
    /* max-width: 320px;
    max-height: 280px; */
}

.performance-analysis .panel-body .performance-analysis-btns {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
}

.performance-analysis .panel-body .performance-analysis-btns a {
    color: #0036ff;
    font-size: 14px;
}

.performance-analysis .panel-body .performance-analysis-btns a i {
    font-size: 13px;
}
/* performance-analysis */

/* framework-advantage */
.framework-advantage {
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0.1);
    transition: transform .6s, box-shadow .6s;
}

.framework-advantage:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.framework-advantage .panel-body ul {
    overflow: hidden;
}

.framework-advantage .panel-body ul li {
    margin-top: 15px;
}

.framework-advantage .panel-body ul li:first-child {
    margin-top: 5px;
}

.framework-advantage .panel-body ul li h6 {
    color: #333;
    font-size: 16px;
}

.framework-advantage .panel-body ul li p {
    margin-top: 10px;
    color: #666;
    font-size: 15px;
    line-height: 1.25;
}
/* framework-advantage */

/* product-framework */
.product-framework {
    background-color: #fff;
    box-shadow: 0 3px 20px rgba(0, 63, 255, 0.1);
    transition: transform .6s, box-shadow .6s;
}

.product-framework:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 30px rgba(0,63,255,0.2);
}

.framework-gpu-list .framework-gpu-item {
    overflow: hidden;
    position: relative;
    padding: 8px 0;
    border-top: 1px solid #eff2ff;
    background-color: #fff;
    transition: background-color .6s;
}

.framework-gpu-list .framework-gpu-item:hover {
    background-color: #f7f8fc;
}

.framework-gpu-list .framework-gpu-item:first-child {
    border: none;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box a {
    display: flex;
    align-items: center;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box .gpu-icon {
    width: 50px;
    height: 50px;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box .gpu-icon img {
    width: 100%;
    height: 100%;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box .gpu-info {
    width: 250px;
    margin-left: 10px;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box .gpu-info h5 {
    color: #222;
    font-size: 17px;
    font-weight: normal;
}

.framework-gpu-list .framework-gpu-item .gpu-info-box .gpu-info p {
    margin-top: 8px;
    color: #888888;
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.framework-gpu-list .framework-gpu-item .add-to-compare {
    position: absolute;
    right: -120px;
    top: 0;
    bottom: 0;
    width: 120px;
    box-sizing: border-box;
    padding-right: 20px;
    background: linear-gradient(to right,rgba(255,255,255,0.1),#f7f8fc,#f7f8fc);
    line-height: 60px;
    text-align: right;
    transition: right .6s;
}

.framework-gpu-list .framework-gpu-item:hover .add-to-compare,
.framework-gpu-list .framework-gpu-item.active .add-to-compare {
    right: 0;
}

.framework-gpu-list .framework-gpu-item .add-to-compare a {
    color: #0036ff;
    font-size: 14px;
}
/* product-framework */