.detail .box .box-title {
    padding: 18px 46px;
    background: linear-gradient(270deg, #C3AEC4 0%, #6A2772 100%);
    font-size: 36px;
    color: #FFFFFF;
}

.detail .box .useful {
    padding: 84px 66px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.detail .box .useful .useful-line {
    color: #1E2328;
    font-size: 24px;
}

.detail .box .useful .useful-line span {
    color: #6A2772;
    font-size: 36px;
    font-weight: 600;
}

.detail .box .feature {
    padding: 80px 66px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 68px 150px;
}

.detail .box .feature .feature-line {
    display: flex;
    background: #FBFBFB;
    box-shadow: 8px 8px 10px #00000029;
    border-radius: 30px;
    opacity: 0.8;
    height: 122px;
    padding-left: 41px;
    padding-right: 41px;
    transition: all .2s ease-in-out;
}

.detail .box .feature .feature-line .feature-value {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font: normal normal normal 24px/48px Source Han Sans CN;
    color: #1E2328;
}

.detail .box .feature .feature-line .feature-num {
    font-size: 150px;
    color: #E5E5E5;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
.detail .box .feature .feature-line:hover {
    background: #6A2772;
    color: #FFFFFF !important;
}
.detail .box .feature .feature-line:hover .feature-value {
    color: #FFFFFF;
}
.detail .box .feature .feature-line:hover .feature-num {
    color: #FFFFFF;
}

.detail .box .parameter {
    padding: 80px 66px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail .box .parameter .parameter-line {
    display: flex;
    align-items: center;
}

.detail .box .parameter .parameter-line .parameter-label {
    flex: 1;
    height: 80px;
    background: #6A2772;
    border: 1px solid #6A2772;
    font-size: 24px;
    color: #FFFFFF;

    display: flex;
    align-items: center;
    justify-content: center;
}

.detail .box .parameter .parameter-line .parameter-value {
    flex: 3;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #A19F9F;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    font-size: 24px;
    color: #1E2328;
}
.detail .box .reagent {
    padding: 80px 66px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail .box .reagent .reagent-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail .box .reagent .reagent-line .reagent-label {
    flex: 3;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #A19F9F;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 24px;
    color: #1E2328;
}

.detail .box .reagent .reagent-line .reagent-value {
    flex: 1;
    height: 80px;
    font-size: 24px;
    background: #FFFFFF;
    border: 1px solid #A19F9F;
    color: #1E2328;
    display: flex;
    align-items: center;
    justify-content: center;
}
.detail .box .reagent .reagent-line:first-child .reagent-label {
    background: #6A2772;
    border: 1px solid #6A2772;
    color: #FFFFFF;
}
.detail .box .reagent .reagent-line:first-child .reagent-value {
    background: #6A2772;
    border: 1px solid #6A2772;
    color: #FFFFFF;
}

.detail .box .order {
    padding: 80px 66px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail .box .order .order-line {
    display: flex;
    align-items: center;
    gap: 8px;
}
.detail .box .order .order-line .order-title {
    flex: 2;
    height: 80px;
    background: #FFFFFF;
    border: 1px solid #A19F9F;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 24px;
    color: #1E2328;
}

.detail .box .order .order-line .order-type,
.detail .box .order .order-line .order-num {
    flex: 1;
    height: 80px;
    font-size: 24px;
    background: #FFFFFF;
    border: 1px solid #A19F9F;
    color: #1E2328;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail .box .order .order-line:first-child .order-title,
.detail .box .order .order-line:first-child .order-type,
.detail .box .order .order-line:first-child .order-num {
    background: #6A2772;
    border: 1px solid #6A2772;
    color: #FFFFFF;
}

.detail .box .sample,
.detail .box .storage {
    padding: 80px 66px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.detail .box .sample .sample-value,
.detail .box .storage .storage-value {
    font-size: 24px;
    color: #1E2328;
}

.detail .box .file {
    padding: 80px 66px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 68px;
}
.detail .box .file .file-line {
    display: flex;
    align-items: center;
    gap: 32px;
    border: 1px solid #A19F9F;
    border-radius: 30px 0 0 30px;
}
.detail .box .file .file-line .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 122px;
    width: 161px;
    background: #6A2772;
    box-shadow: 8px 8px 10px #00000029;
    border-radius: 30px;
}
.detail .box .file .file-line .icon-box .file-video-icon {
    width: 62px;
    height: 45px;
}
.detail .box .file .file-line .icon-box .file-pdf-icon {
    width: 46px;
    height: 61px;
}
.detail .box .file .file-line .file-title {
    font-size: 24px;
    color: #1E2328;
}
.detail .box .file .file-line:hover {
    cursor: pointer;
}

@media screen and (max-width: 600px)  {
    .detail .box .box-title {
        font-size: 18px;
        padding: 10px 14px;
    }

    .detail .box .useful {
        padding: 16px;
        gap: 16px;
    }

    .detail .box .useful .useful-line {
        font-size: 12px;
    }

    .detail .box .useful .useful-line span {
        font-size: 18px;
    }

    .detail .box .feature {
        padding: 16px;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    .detail .box .feature .feature-line {
        border-radius: 15px;
        height: 80px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .detail .box .feature .feature-line .feature-value {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        font-size: 16px;
        color: #1E2328;
    }

    .detail .box .feature .feature-line .feature-num {
        font-size: 80px;
    }

    .detail .box .parameter {
        padding: 16px;
        gap: 4px;
        overflow-x: auto;
    }
    .detail .box .parameter .parameter-line {
        overflow-x: auto;
        width: 150vw;
    }
    .detail .box .parameter .parameter-line .parameter-label {
        height: 50px;
        font-size: 12px;
    }

    .detail .box .parameter .parameter-line .parameter-value {
        height: 50px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
    }
    .detail .box .reagent {
        padding: 16px;
        gap: 4px;
        overflow-x: auto;
    }
    .detail .box .reagent .reagent-line {
        width: 150vw;
        overflow-x: auto;
    }
    .detail .box .reagent .reagent-line .reagent-label {
        height: 50px;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
        color: #1E2328;
    }

    .detail .box .reagent .reagent-line .reagent-value {
        height: 50px;
        font-size: 12px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .detail .box .order {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 4px;
        overflow-x: auto;
    }
    .detail .box .order .order-line {
        display: flex;
        align-items: center;
        gap: 4px;
        width: 150vw;
        overflow-x: auto;
    }
    .detail .box .order .order-line .order-title {
        height: 50px;
        background: #FFFFFF;
        border: 1px solid #A19F9F;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
        color: #1E2328;
    }

    .detail .box .order .order-line .order-type,
    .detail .box .order .order-line .order-num {
        height: 50px;
        font-size: 12px;
        background: #FFFFFF;
        border: 1px solid #A19F9F;
        color: #1E2328;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .detail .box .sample,
    .detail .box .storage {
        padding: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    .detail .box .sample .sample-value,
    .detail .box .storage .storage-value {
        font-size: 12px;
        color: #1E2328;
    }

    .detail .box .file {
        padding: 16px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }
    .detail .box .file .file-line {
        display: flex;
        align-items: center;
        gap: 16px;
        border: 1px solid #A19F9F;
        border-radius: 15px 0 0 15px;
    }
    .detail .box .file .file-line .icon-box {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 72px;
        width: 80px;
        background: #6A2772;
        box-shadow: 8px 8px 10px #00000029;
        border-radius: 15px;
    }
    .detail .box .file .file-line .icon-box .file-video-icon {
        width: 31px;
        height: 21px;
    }
    .detail .box .file .file-line .icon-box .file-pdf-icon {
        width: 23px;
        height: 31px;
    }
    .detail .box .file .file-line .file-title {
        font-size: 12px;
        color: #1E2328;
    }
    .detail .box .file .file-line:hover {
        cursor: pointer;
    }
}
