.product-table{
    border-radius: 20px;
    overflow-x: scroll;
    /* 隐藏滚动条 */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-table::-webkit-scrollbar{
    display: none;
}


table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
td {
    height: 80px;
    padding: 0; /* 去除内边距 */
    margin: 0; /* 去除外边距 */
    border-width: 1px;
    border-style: solid;
    border-color: rgba(26, 26, 51, 0.1);
    padding: 27px 28px;
    font-weight: 600;
    line-height: 24px;
    min-width: 240px;
    vertical-align: middle;
}

td img{
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

.product-col1 {
    background-color: #2C1E48;
    color: white;
    min-width: 220px;
}

.product-col2 {
    background-color: #FFFFFF;
    color: #1A1A33;
    text-align: center;
    min-width: 200px;;
}
.product-col3 {
    background-color: #F6F6F7;
    color: rgba(26, 26, 51, 0.75);
    font-weight: 400;
    min-width: 700px;
}

.product-table-highlight{
    color: #1A1A33 !important;
    font-weight: 600;
}

.product-info-2{
    padding: 100px 0;
}

.product-info-2-item{
    width: 100%;
    box-sizing: border-box;
    border-width: 0px 0px 0px 6px;
    border-style: solid;
    border-color: #8F5DE8;
    min-height: 118px;
    padding: 12px 32px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.product-info-2-item:hover{
    background-color: #efefff;
}



.product-info-2-item-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #1A1A33;
    margin-bottom: 12px;
}

.product-info-2-item-des{
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: rgba(26, 26, 51, 0.75);
}

.product-info-3{
    padding-bottom: 100px;
}


.product-info-3-item{
    padding: 24px;
    box-sizing: border-box;
    border: 1px solid rgba(26, 26, 51, 0.1);
    border-radius: 12px;
    min-height: 162px;
    display: flex;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.product-info-3-item:hover{
    background-color: #efefff;
}

.product-info-3-item-title{
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    color: #1A1A33;
    margin-bottom: 12px;
}

.product-info-3-item-des{
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: rgba(26, 26, 51, 0.75);
}

.product-info-3-item-icon{
    padding-top: 5px;
    margin-right: 24px;
    width: 69px;
    flex-shrink: 0;
}

.product-info-3-tips{
    padding: 0px 32px;
    gap: 24px;
    background: rgba(26, 26, 51, 0.04);
    box-sizing: border-box;
    border: 1px solid rgba(26, 26, 51, 0.1);
    display: flex;
    align-items: center;
    min-height: 74px;
}

.product-info-3-tips p{
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: rgba(26, 26, 51, 0.75);
}

.product-contact{
    padding: 100px 0;
    background-color: #F6F6F7;
}

.product-contact-highlight{
    color: #8F5DE8;
    font-weight: 600;
    text-decoration: underline;
}

.product-contact-item{
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.product-contact-content-text{
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: #1A1A33;
}

.product-contact-content-title{
    color: rgba(26, 26, 51, 0.45);
    margin-bottom: 4px;
}

.product-contact-content-icon{
    margin-right: 14px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .imgText-block{
        padding: 40px 0;
    }
    .imgText-block-title{
        font-size: 30px;
    }
    .contact-content{
        padding-top: 40px;
    }
}


