/* 服务部分 */
.service .list {
    margin: 0 auto;
    background: #e3edfc;
    padding: 18px 0;
    border-bottom-left-radius: 4px; /* 下左角 */
    border-bottom-right-radius: 4px; /* 下右角 */
}

.service .list li.item {
    border-right: 1px solid #ccd4ee;
    width: 25%;
}

.service .list li.item .text {
    color: #454555;
    font-weight: bold;
}

.service .list li.item .el-image {
    width: 100px;
    height: 30px;
}

.service .list li.item:last-child {
    border-right-width: 0;
}

.products {
    max-width: 1200px; /* 使用 max-width 以限制最大宽度 */
    margin: 0 auto; /* 水平居中 */
}

.products:nth-of-type(2n) {
    background-color: #FFF;
}

.products > .center > .left {
    position: relative;
    padding-top: 10px;
    border-radius: 4px;
}

.products > .center > .left .title {
    width: 250px;
    position: absolute;
    left: 32px;
    top: 72px;
}

.products > .center > .left .title .border {
    height: 68px;
    border: 1px solid #fff;
    padding: 8px;
}

.products > .center > .left .title .border .bg {
    width: 100%;
    height: 100%;
    background: hsla(0, 0%, 100%, .5);
    font-size: 28px;
    line-height: 50px;
}

.products > .center > .left .title .description {
    padding: 10px 25px;
    font-size: 14px;
    text-align: left;
    line-height: 115%;
}

.products > .center > .right {
    width: 900px;
    height: 140px;
    padding-top: 10px;
    padding-left: 10px;
    min-height: 300px;
    
}

.products > .center > .left .el-image {
    width: 300px;
    min-height: 300px;
    border-radius: 4px;
}

.products.less-three > .center > .left .el-image {
    height: 168px;
}

.products.less-three > .center > .left .title {
    top: 72px;
}

/* 产品标签部分 */
.production-tag {
    width: 290px;
    height: 150px;
    padding: 30px 20px;
    border-radius: 4px;
    display: block;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 128, 128, 0.3); /* 更淡的半透明灰色实线边框 */
    transition: border 0.3s ease, box-shadow 0.3s ease; /* 平滑过渡效果 */
}

/* 悬停效果 */
.production-tag:hover {
    border: 3px solid #3369E3; /* 悬停时边框变蓝色 */
    box-shadow: 0 4px 12px rgba(173, 216, 230, 0.5); /* 阴影变淡蓝色 */
}

/* 下划线动画 */
.production-tag:after {
    content: '';
    display: block;
    width: 0;
    height: 5px;
    background: linear-gradient(to right, #3369E3, #008A64); /* 渐变从#3369E3到#008A64 */
    transition: width 0.3s ease; /* 平滑过渡效果 */
    position: absolute;
    bottom: 0;
    left: 0;
}

/* 悬停时下划线动画 */
.production-tag:hover:after {
    width: 100%; /* 悬停时下划线宽度变为100% */
}

.production-tag .left {
    width: 50%;
    height: 100%;
    position: relative;
}

.products.less-three > .center > .right {
    height: 168px;
}

.products.less-five > .center > .right .production-tag {
    width: 440px;
}

/* 响应式调整 */
.products.too-many > .center > .right .item:not(:nth-of-type(3n+1)) {
    margin-left: 10px;
}

.products.too-many > .center > .right .item:not(:nth-of-type(-n+3)) {
    margin-top: 10px;
}

.products.less-five > .center > .right .item:not(:nth-of-type(2n+1)) {
    margin-left: 10px;
}

.products.less-five > .center > .right .item:not(:nth-of-type(-n+2)) {
    margin-top: 10px;
}

/* 价格样式 */
.price {
    position: absolute;
    left: 0;
    bottom: 0;
    color: #008A64;
    font-weight: bold;
}

.products > .center > .right .item .right .el-image {
    width: 38px;
    height: 38px;
    margin: 0 auto;
    display: block;
}

.products > .center > .right .item .right .el-button {
    width: 100px;
    height: 30px;
    line-height: 8px;
    border-radius: 4px;
    margin-top: 15px;
    background-color: rgba(173, 216, 230, 0.5);
    color: #3369E3;
    border: 1px #3369E3;
}
/* 悬停效果 */
.products > .center > .right .item .right .el-button:hover {
    background: linear-gradient(to right, #3369E3, #008A64); /* 渐变从#3369E3到#008A64 */
    border: none; /* 去除默认边框 */
    color: #fff;
}
.banner-container {
    max-width: 1200px; /* 最大宽度为1200px */
    margin: 0 auto; /* 水平居中 */
    overflow: hidden; /* 防止图片超出容器 */
}

.banner-img {
    width: 100%; /* 图片宽度100% */
    height: auto; /* 自动高度以保持比例 */
    display: block; /* 去掉图片底部间隙 */
}
.bg.blue.text-center {
    font-weight: bold; /* 设置字体为粗体 */
}
