/* Media */
.banner {
    position: relative;
}

.banner .text {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.text h1 {
    font-size: 42px;
}

.text p {
    font-size: 26px;
}

.media {
    transform: translateY(-80px);
    border-radius: 0px;
}

.media .titBox {
    background-color: #F7FAFA;
    padding: 0px 15px 15px;
    line-height: 30px;
    border: 1px solid #E2F1EF;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.product-update {
    transform: translateY(-300px);
    border-radius: 0px;
}

.listBox {
    margin-top: 50px;
}

.listBox li {
    display: flex;
    align-items: center;
    background-color: #F7FAFA;
    border: 1px solid #E2F1EF;
    border-radius: 6px;
    margin-bottom: 15px;
}

.listBox li .left {
    width: 200px;
}

.listBox li .right {
    flex: 1;
    padding: 20px 15px 15px 30px;
}

.listBox li .right h3 {
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 15px;
}

.listBox li .right p {
    height: 72px;
    line-height: 36px;
    /* 超过2行显示...*/
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listBox li .right a,
.titBox a {
    text-align: right;
    color: #3ABDC7;
    display: block;
    margin-top: 20px;
}

.titBox a {
    margin-top: 0px;
}

.titBox p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listBox li .right a:hover {
    color: #FCB134;
}

.numBox {
    padding-top: 15px;
    display: flex;
    justify-content: center;
}

.numBox li {
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: #3ABDC7 1px solid;
    margin-left: 15px;
}

.numBox .active {
    background-color: #3ABDC7;
    color: #fff;
}

.numBox li:last-child {
    border: none;
    width: 100px;
    margin-left: 0;
}

.footBox {
    margin-top: 0px;
}

.media-content {
    transform: translateY(-150px);
    border-radius: 0px;
}

.videoBox {
    margin: 0 auto;
    width: 50%;
    padding: 10px 0;
}

/* 媒体查询 */
/* 小屏 */
@media (max-width:768px) {
    .text h1 {
        font-size: 20px;
    }

    .text p {
        font-size: 14px;
    }

    .banner .text {
        width: 90%;
    }

    .bannerImg {
        min-height: 230px;
    }

    .media {
        transform: translateY(-30px);
    }

    .media {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .product-update {
        transform: translateY(-100px);
        border-radius: 0px;
    }

    .product-update .new {
        font-size: 10px;
    }

    .view-btn {
        font-size: 11px;
    }

    .media .back {
        line-height: 20px;
        font-size: 12px;
    }

    .listBox {
        margin-top: 15px;
    }

    .listBox li .left {
        width: 120px;
    }

    .listBox li .right {
        padding: 10px;
    }

    .listBox li .right h3,
    .titBox h3 {
        height: 20px;
        line-height: 20px;
        margin-bottom: 5px;
        font-size: 16px;
        font-weight: bold;
    }

    .listBox li .right p {
        height: 44px;
        line-height: 20px;
        font-size: 12px;
    }

    .listBox li .right a {
        margin-top: 0px;
        font-size: 12px;
    }

    .numBox li {
        width: 32px;
        height: 32px;
        line-height: 32px;
        margin-left: 8px;
    }

    .numBox li:last-child {
        border: none;
        width: 62px;
        margin-left: 0;
    }

    .media-content {
        transform: translateY(-70px);
        border-radius: 0px;
    }

    .videoBox {
        width: 100%;
    }
}

/* 大屏 */
@media (min-width:992px) {}

/* 文字左边带竖线 */
.text-with-line {
    position: relative;
    padding-left: 10px;
    /* 左边留出竖线的空间 */
}

.text-with-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    /* 竖线居中对齐 */
    transform: translateY(-50%);
    /* 垂直居中对齐 */
    width: 5px;
    /* 竖线的宽度 */
    height: 100%;
    /* 竖线的高度 */
    background-color: #3ABDC7;
    /* 竖线的颜色 */
}

/* 文字右边带^*/
.caret-text {
    position: relative;
    padding-left: 10px;
    /* 可根据需要调整间距 */
}

.caret-text::after {
    content: '^';
    position: absolute;
    left: 0;
    top: 50%;
    /* 根据文字高度调整 */
    transform: translateY(-50%);
}

/* Product Update文字说明背景图 */
.product-update-bgBox {
    position: relative;
    padding-bottom: 40px;
    /* 确保足够的空间放置背景图片 */
}

.product-update-bgBox::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    /* bottom: 0;
    left: 0;  */
    width: 100px;
    /* 背景图片的宽度 */
    height: 100px;
    /* 背景图片的高度 */
    background-image: url('../images/bgLogo.png');
    /* 背景图片的路径 */
    background-size: cover;
    /* 背景图片覆盖整个元素 */
    background-position: left bottom;
    /* 背景图片定位到左下角 */
}

.product-update-titleBox {
    display: flex;
}

.product-update-titleBox .left {
    flex: 1;
}

.product-update-titleBox .right {
    text-align: right;
    margin-right: -20px;
}

.centerBox {
    background-color: #F5F5F5;
    border-radius: 8px;
}

.center {
    margin-top: 20px;
    padding: 0 20px 20px;
}

.centerBox h1 {
    padding: 15px;
    font-size: 24px;
    color: #333;
    font-weight: bold;
    background-color: #E2F1EF;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.centerBox h5 {
    text-align: center;
    padding: 0px 15px 15px;
    color: #666;
    line-height: 22px;
}

.centerBox p {
    color: #333;
}

.centerBox a {
    display: block;
    text-align: right;
    color: rgba(58, 189, 199, 1);
}

.topPhoto {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.leftPhoto {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}