.productCenter3 {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 40px 0; */
    box-sizing: border-box;
}

.productCenter3 * {
    box-sizing: border-box;
}

.productCenter3Content {
    overflow: hidden;
}

.productCenter3Content:after {
    content: "";
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.productCenter3Left {
    float: left;
    width: 25%;
    padding-right: 5%;
    box-sizing: border-box;
}

.productCenter3Left .enTitle {
    font-size: 28px;
    color: rgb(38, 38, 38);
    font-weight: bold;
    margin-bottom: 22px;
}

.productCenter3Left .title {
    font-size: 16px;
    color: rgb(38, 38, 38);
    line-height: 1.5;
    margin-bottom: 26px;
}

.productCenter3Left .dec {
    color: rgb(127, 127, 127);
    font-size: 14px;
    line-height: 2;
    margin-bottom: 30px;
}

.productCenter3Left .seeMore {
    display:none;
}

.productCenter3Left .seeMore img {
    width: 120px;
}

.productCenter3Left .seeMore .hoverImg {
    display: none;
    transition: all 0.6s;
}

.productCenter3Left .seeMore:hover .normalImg {
    display: none;
}

.productCenter3Left .seeMore:hover .hoverImg {
    display: block;
    transition: all 0.6s;
}

.productCenter3Right {
    float: left;
    width: 100%;
    box-sizing: border-box;
}

.productCenter3Right .productContent .product-img {
    overflow: hidden;
    /* 新增：为图片容器添加圆角，配合图片实现圆形效果 */
    border-radius: 60%;
    /* 保证容器为正方形，圆形才规整 */
    width: 256px;
    height: 256px;
    margin: 0 auto;
}

.productCenter3Right .productContent:hover .product-img img {
    transform: scale(1.1);
}

.productCenter3Right .productContent .product-img img {
    max-width: 100%;
    display: block;
    border: 0;
    transition: all 0.6s;
    margin: 0 auto;
    width: 286px;
    height: 276px;
    object-fit: cover;
    /* 新增：图片设置圆角为50%，变为圆形 */
    border-radius: 50%;
    /* 微调图片位置，让圆形更居中 */
    margin-top: 5px;
}

/* 关键修改1：提高容器高度，容纳按钮 */
.productCenter3Right .swiper-container {
    height: 380px; /* 从350px增加到380px，留出按钮空间 */
    overflow: visible !important; /* 允许内容超出容器，不截断按钮 */
    position: relative; /* 确保子元素绝对定位参考 */
}

.productCenter3Right .swiper-container .swiper-slide {
    background: #fff;
    position: relative;
    /* 关键：给slide加底部内边距，避免按钮和内容重叠 */
    padding-bottom: 40px;
}

.productCenter3Right .swiper-container .swiper-slide:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background: rgb(253, 195, 0);
    bottom: 40px; /* 从0px改为40px，避开按钮区域 */
}

.productCenter3Right .swiper-container .swiper-slide:hover:before {
    transition: 0.6s linear;
    width: 100%;
}

.productCenter3Right .swiper-container .swiper-wrapper {
    height: auto;
}

.productCenter3Right .swiper-container .swiper-slide .product-tip {
    padding: 2% 5% 8%;
    transition: all 0.6s;
}

.productCenter3Right .swiper-container .swiper-slide .product-tip .content {
    color: rgb(63, 63, 63);
    font-size: 16px;
    height: 24px;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

/* 关键修改2：修复按钮定位，确保完全显示 */
.productCenter3Right .swiper-container .swiper-slide .viewMore {
    font-size: 12px;
    color: #fff;
    background: rgb(255, 192, 0);
    text-decoration: none;
    padding: 9px 12px;
    width: 40%;
    border-radius: 50px;
    position: absolute;
    bottom: 8px; /* 从-16px改为8px，移入容器内 */
    text-align: center;
    left: 64%;
    margin-left: -32.5%; /* 宽度65%的一半，精准居中 */
    z-index: 10; /* 提升层级，避免被遮挡 */
}

/* 新增：隐藏轮播左右按钮 */
.productCenter3Right .swiper-button-next,
.productCenter3Right .swiper-button-prev {
    display: none !important;
}

.productCenter3Right .swiper-button-next .newsButton,
.productCenter3Right .swiper-button-prev .newsButton {
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 58px;
}

.productCenter3Right .swiper-button-next .newsButton img,
.productCenter3Right .swiper-button-prev .newsButton img {
    max-width: 100%;
    display: inline-block;
    border: 0;
    width: 24px;
    height: 24px;
}