
:root{
    --text-primary : #313855 ;   /* 主色调文本 */
    --text-secondary :  #62678B ; /* 次要文本 */
    --text-success :  #28a745 ;   /* 成功状态文本 */
    --text-error :  #dc3545 ;     /* 错误状态文本 */
    --text-warning :  #ffc107 ;   /* 警告状态文本 */
    --text-link :  #007bff ;      /* 链接文本 */
}
@media (min-width: 768px) and (max-width: 1199.98px) {
    html{
        font-size: 9px;
    }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    html{
        font-size: 10px;
    }
}
@media (min-width: 1400px) and (max-width: 1699.98px) {
    html{
        font-size: 12px;
    }
}
@media (min-width: 1700px) and (max-width: 2099.98px) {
    html{
        font-size: 14px;
    }
}
*{
    margin: 0;
    padding: 0;
}

.rowFlex{
    display: flex;
    flex-direction: row;
}
.columnFlex{
    display: flex;
    flex-direction: column;
}
.spaceBetween{
    justify-content: space-between;
}
.end{
    justify-content: end;
}
.mainContent{
    margin: auto;
    width: 93rem;
    padding: 1rem 0 1.5rem;
}
.mainCommonTitle{
    font-size: 2.4rem;
    font-weight: bold;
    font-style: normal;
    color: #313855;
    white-space: nowrap;
    position: relative;
    padding-left: 1rem;
    height: 2.5rem;
    line-height: 2.5rem;
}
.mainCommonTitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 2.3rem;
    background-color: rgb(38, 109, 255);
    border-radius: 5px;
}
.justify-between{
    justify-content: space-between;
}

/* 产品区域 多页面通用*/
/*.mainProductAreaBgColor{*/
/*    padding: 1rem 0;*/
/*    background: linear-gradient(to top, #FCFCFC, #daecff7c );*/
/*}*/
.mainProductAreaBgColor:nth-child(odd){
    padding: 1rem 0;
    /*background:  #daecff7c ;*/
}
.mainProductAreaBgColor:nth-child(even){
    padding: 1rem 0;
    background: rgb(246, 249, 255);
}
.mainProduct{
    background-color: #fff;
    border-radius: 10px;
    padding: 1.75rem;
    box-shadow: 0px 2px 15px 2px rgba(106, 146, 255, 0.2);
    border: 1px solid rgba(225, 230, 254, 1);
}
.productHead{
    display: flex;
    margin: 0.5rem 0 1.75rem;
}
.productTabList{
    display: flex;
    /* align-items: center; */
    margin-left: 7rem;
    margin-bottom: 0.2rem;
    flex-wrap: wrap;
}
.productTabItem{
    margin-right: 5rem;
    line-height: 2.7rem;
    font-size: 1.55rem;
    font-weight: 400;
    color: #62678B;
    cursor: pointer;
    transition: all 0.15s ease;
    border-bottom: 3px solid #236cfe00;

}
.productTabItem:hover,.productSelect{
    color: #313855;
    font-weight: 600;
    border-bottom: 3px solid #236CFE;
}
.productContent{
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}
.productDisArea{
    display: flex;
    flex-direction: column;
    width: 16.5%;
    padding: 1.5rem;
    cursor: default;
}
.disUrl{
    /*font-weight: 400;*/
    /*font-size: 1.1rem;*/
    /*color: var(--text-secondary);*/
    /*cursor: pointer;*/
    font-weight: 400;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    width: 9rem;
    color: rgb(38, 109, 255);
    font-size: 1.3rem;
    align-items: center;
}
.productDisArea .disUrl:hover{

}
.productDisArea .disTitle{
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem 0;
    font-weight: 600;
    color: rgb(38, 109, 255);
    height: 4rem;
    line-height: 4rem;
    width: 80%;
}
.productDisArea .disSmallTitle{
    font-size: 1.5rem;
    color: var(--text-primary);
}
.productDisArea .disContent{
    height: 2.8rem;
    font-size: 1.1rem;
    color: rgb(38, 109, 255);
    margin-top: 3rem;
    font-weight: bold;
    background-color: rgba(38, 109, 255, 0.07);
    border-radius: 4px;
    width: 7rem;
    border: 1px rgba(255, 255, 255, 1);
    text-align: center;
    line-height: 2.8rem;
    transition: all 0.15s ease-in;
    cursor: pointer;
}
.productDisArea .disContent:hover{
    scale: 1.025;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
}
/* 产品颜色 */
.productBgGreen{background: linear-gradient(to right, #e2f7f6, #FFFFFF);}
.productBgGreen .disTitle{color: #18bca5;}
.productBgGreen .disContent{color: #18bca5;}
.productBgBlue{background: linear-gradient(to right, #EDF8FF, #FFFFFF);}
.productBgBlue .disTitle{color: #236CFE;}
.productBgBlue .disContent{color: #236CFE;}
.productBgYellow{background: linear-gradient(to right, #FFF3E5, #FFFFFF);}
.productBgYellow .disTitle{color: #FF974A;}
.productBgYellow .disContent{color: #FF974A;}
.productBgPurple{background: linear-gradient(to right, #EFEFFD, #FFFFFF);}
.productBgPurple .disTitle{color: #826EEB;}
.productBgPurple .disContent{color: #826EEB;}
    /* 产品列表 横向单排卡片 */
    .productListRow{
        display: flex;
        flex-direction: row;
        justify-content: start;
        align-items: center;
        width: 82%;
        gap: 1rem;
        height: 30rem;
    }
    
    .productListRow .proScaleUp{
        cursor: pointer;
        max-width: 32%;
        flex: 1;
        height: 94%;
        position: relative;
    }
    .productListRow .proScaleUp:hover img{
        scale: 1.05;
    }
    .proFlag{
        position: absolute;
        left: 0.8rem;
        top: 0.8rem;
        height: 1.5rem;
        z-index: 1;
        font-size: 0.9rem;
        color: #fff;
        padding: 2px 7px;
        border-radius: 4px;
        display: flex;
        align-items: center;
    }
    .productItem{
        height: 100%;
        background: #FFFFFF;
        box-shadow: 0px 2px 16px 0px rgba(146,149,174,0.1);
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }

    .productItem img{
        width: 100%;
        height: 14rem;
        transition: all 0.15s ease;
    }
    .productItem .proDisArea{
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        height: calc(100% - 16.5rem);
    }
    .productItem .proDisArea .rowFlex{
        align-items: end;
    }
    .productItem .proDisArea .proTitle{
        width: 100%;
        font-size: 1.6rem;
        font-weight: 600;
        color: var(--text-primary);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .productItem .proDisArea .proKey{
        font-size: 1rem;
        color: #757785;
        width: 7rem;
    }
    .productItem .proDisArea .proPrice{
        font-size: 1.6rem;
        font-weight: 600;
        color: #FFA644;
        white-space: nowrap;
    }
    .productItem .proDisArea .proUnit{
        font-size: 1.2rem;
        font-weight: 600;
        color: #FFA644;
    }
    .productItem .proDisArea .proText{
        font-size: 1.1rem;
        color: var(--text-secondary);
    }

    .productItem .proState{
        position: absolute;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    .productItem .proState img{
        width: 4rem;
        height: 4rem;
        transition: all 0.15s ease;
    }
    /* 产品列表 网格图片 */
    .productListGrid{
        width: 82%;
        height: 30rem;
        display: grid;
        justify-content: space-between;
        align-content: space-evenly;
        grid-row-gap: 1rem;
        padding: 1.75rem;
    }
    .productListGridStyle0{
        grid-template-columns: repeat(4,24%);
        grid-template-rows: 48% 48%;
        grid-template-areas:
            'v1 a v3'
            'v4 a v6';
    }
    .productListGridStyle1{
        grid-template-columns: repeat(4,24%);
        grid-template-rows: 48% 48%;
        grid-template-areas:
        'a v2 v3'
        'a v5 v6';
    }
    .productListGridStyle2{
        grid-template-columns: repeat(4,24%);
        grid-template-rows: 48% 48% ;
        grid-template-areas:
         'v1 v2 a'
         'v3 v4 a';
    }
    .productListGridStyle3{
        grid-template-columns: repeat(4,24%);
        grid-template-rows: 48% 48%;
        grid-template-areas:
             'v1 v2 v3 v4'
             'v5 v6 v7 v8';
    }
    .productListGridStyle4{
        grid-template-columns: repeat(5,19%);
        grid-template-rows: 33% 33% 33% ;
        grid-template-areas:
             'v1 v2 v3 v4 v5'
             'v6 v7 v8 v9 v10'
             'v11 v12 v13 v14 v15';
    }
    .productListGrid .proScaleUp{
        cursor: pointer;
        height: 100%;
        position: relative;
        transition: all 0.3s ease;
    }
    .productListGrid .proScaleUp:hover{
        scale: 1.025;
    }
    .productItemOnlyImg{
        height: 100%;
        background: #FFFFFF;
        box-shadow: 0px 2px 16px 0px rgba(146,149,174,0.1);
        border-radius: 8px;
        overflow: hidden;
        position: relative;
    }
    .productItemOnlyImg img{
        width: 100%;
        height: 100%;
    }
    .productItemOnlyImg .proDisArea{
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 2.25rem;
        display: flex;
        align-items: center;
        font-size: 1.15rem;
        color: #fff;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        justify-content: center;
        background: #00000052;
    }
    /* 产品列表 瀑布流 */
    .productListFlow{
        width: 100%;
        min-height: 20rem;
        display: flex;
        flex-wrap: wrap;
        align-items: start;
    }
    .productListFlow .proScaleUp{
        height: 15rem;
        width: calc(20% - 1rem);
        margin:  0.5rem;
        transition: all 0.3s ease;
    }
    .productListFlow .proScaleUp:hover{
        scale: 1.025;
    }
    /* 统计数字 */
    .mainStats{
        width: 100%;
        display: flex;
        justify-content: space-between;
        height: 10rem;
        align-items: center;
        padding: 1.75rem;
    }
    /*.statsCbzy{background-image: url(../assets/img/stats1.png)}*/
    .statsItem{
        width: 22%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    .statsItem .rowFlex{
        margin-top: 1rem;
        /*align-items: end;*/
        /*margin-left: 3rem;*/
    }
    .statsNum{
        /*font-size: 2.8rem;*/
        /*font-weight: 400;*/
        /*color: #0061DC;*/
        /*font-family: cursive;*/
        font-size: 3.6rem;
        font-weight: 700;
        color: rgb(38, 109, 255);
        font-family: cursive;
    }
    .statsUnit{
        /*font-size: 1.2rem;*/
        /*color: #0061DC;*/
        /*margin-left: 0.5rem;*/
        font-size: 1.6rem;
        color: rgb(38, 109, 255);
        margin-left: 0.5rem;
        margin-top: .5rem;
    }
    .statsKey{
        width: 100%;
        color: rgba(49, 56, 85, 1);
        font-size: 1.6rem;
        font-family: PingFangSC-Medium;
        font-weight: 500;
        margin-top: 1rem;
        /*font-size: 1.2rem;*/
        /*color: var(--text-primary);*/
        /*margin-top: 2rem;*/
        /*margin-left: 3rem;*/
    }
    .mainProductAreaBgTp1{
        padding: 1rem 0;
        background-image: url(../assets/img/mkbg1.png)
    }
    .mainProductAreaBgTp2{
        padding: 1rem 0;
        background-image: url(../assets/img/mkbg2.png)
    }
    .articleListAreaBg{
        /*background-image: url(../assets/img/areaBg.png);*/
        background-color: #fff;
        border-radius: 8px;
        box-shadow: 0px 2px 15px 2px rgba(106, 146, 255, 0.2);
    }
    .articleListAreaBj{
        padding: 1.75rem;
    }

