.product-img-content{
    width: 100vw;
    height: 100vh;
}
.product-img-max{
    width: 100vw;
    height: 100vh;
}
.product-img-max img{
    width: 100%;
    height: 100%;
}
.product-img-info{
    text-align: left;
}
.product-img-info .title{
    font-size: 24px;
    font-weight: 800;
}
.params-info{
    background-color: rgb(0, 0, 0);
    padding: 80px 0px 160px 0px;
}
/*.params-info .title{
    color: rgba(46, 255, 184, 0);
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(90deg, rgb(46, 255, 184) 25.7812%, rgb(80, 156, 254) 86.0352%, rgb(94, 86, 255)) text;
    padding: 10px;
    text-align: center;
}*/
.params-info .title {
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    padding: 10px;
    text-align: center;

    /* 设置为块级元素并自动宽度 */
    display: block;
    width: fit-content;
    margin: 0 auto; /* 水平居中 */

    /* 渐变背景 */
    background: linear-gradient(90deg, rgb(46, 255, 184) 25.7812%, rgb(80, 156, 254) 86.0352%, rgb(94, 86, 255));

    /* 背景剪裁属性 */
    -webkit-background-clip: text;
    background-clip: text;

    /* 文字颜色设置 */
    color: rgb(46, 255, 184); /* 回退颜色 */
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}
.params-info .parameter{
    color: #fff;
    margin: 0 auto;
    /*max-width: 1200px;*/
    width: 80%;

    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    padding-inline-start: 40px;
    unicode-bidi: isolate;
}
.parameter li::marker {
    color: rgb(0, 0, 0);
}
.parameter li{
    display: -webkit-box;
}
.params-info .parameter .name, .versions{
    border-top: 0.5px solid;
    padding: 12px 18px;
    /*float: left;*/
}
/*.params-info .parameter li:first-child .name, li:first-child .versions{
    background-color: #ffffff0d;
    -o-border-image: linear-gradient(90deg,#2effb8 25.78125%,#509cfe 86.03515625%,#5e56ff) 2 0 0 0;
    border-image: linear-gradient(90deg, #2effb8 25.78125%, #509cfe 86.03515625%, #5e56ff) 2 0 0 0;
    border-top: 2px solid !important;
}*/
.params-info .parameter li:first-child .name,
.params-info .parameter li:first-child .versions {
    background-color: #ffffff0d;
    position: relative; /* 为伪元素定位做准备 */

    /* 移除原有的 border-image 方法，改用伪元素 */
    border-top: none !important; /* 确保没有其他 border-top 干扰 */
}

/* 使用伪元素创建渐变边框 */
.params-info .parameter li:first-child .name::before,
.params-info .parameter li:first-child .versions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #2effb8 25.78125%, #509cfe 86.03515625%, #5e56ff);
    pointer-events: none;
}





.params-info .parameter .name{
    color: #fff;
    margin-right: 1%;
    width: 19%;
}
.params-info .parameter .versions{
    -webkit-box-flex: 1;
    color: #fffc;
    display: flex;
    justify-content: space-between;
}