.Box1 {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.Box1 .ProductType .slick-list {
    height: fit-content;
}

.Box1 .ProductType .slick-slide {
    float: none;
}

.Box1 .ProductType .slick-track {
    display: flex;
}

.Box1 .ProductType .slick-next,
.Box1 .ProductType .slick-prev {
    display: none !important;
}

.Box1 .ProductType .row {
    display: flex !important;
    align-items: center;
    height: auto;
}

.Box1 .ProductType .img {
    position: relative;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Box1 .ProductType .img img {
    width: 80%;
    height: 90%;
    object-fit: contain;
    opacity: 0;
    transition: all 0.8s ease-out;
    position: absolute;
}

.Box1 .ProductType .text {
    padding: 50px 0 50px 20px;
    opacity: 0;
    transition: all 0.8s ease-out;
}

.Box1 .ProductType .text h4 {
    font-size: 37px;
    color: #333;
    text-align: left;
    margin-bottom: 30px;
    font-weight: 600;
}

.Box1 .ProductType .text p {
    color: #818181;
    max-width: 70%;
    line-height: 1.6;
}

/* 动画类 */
.Box1 .ProductType .slide-in-left {
    transform: translateX(-50px);
}

.Box1 .ProductType .slide-in-right {
    transform: translateX(150px);
}

.Box1 .ProductType .slide-active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.Box1 .ProductType .slick-dots li button:before {
    font-size: 12px;
    color: #333;
    opacity: 0.5;
}

.Box1 .ProductType .slick-dots li.slick-active button:before {
    opacity: 1;
    color: #007bff;
}

.Box1 .ProductType .slick-dots {
    position: absolute;
    /* 定位在轮播底部 */
    bottom: -60px;
    /* 距离底部的距离 */
    left: 0;
    right: 0;
    text-align: center;
    /* 横条居中 */
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
}

/* 横条指示器的单个样式 */
.Box1 .ProductType .slick-dots li {
    display: inline-block;
    margin: 0 5px;
    /* 横条之间的间距 */
}

/* 未激活的横条 */
.Box1 .ProductType .slick-dots li button {
    width: 30px;
    /* 横条宽度 */
    height: 4px;
    /* 横条高度（控制粗细） */
    background: #ddd;
    /* 未激活颜色 */
    border-radius: 2px;
    /* 轻微圆角，可选 */
    border: none;
    padding: 0;
    cursor: pointer;
    text-indent: -9999px;
    /* 隐藏默认文字 */
    transition: all 0.3s ease;
    /* 切换时的过渡动画 */
}

/* 激活的横条（当前幻灯片） */
.Box1 .ProductType .slick-dots li.slick-active button {
    width: 50px;
    /* 激活时横条更宽 */
    background: #333;
    /* 激活颜色（可改为品牌色） */
}









.Box2{
    background-color: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #0000001a;
}
.Box2 .container-md{
    display: flex;
    justify-content: center;
}

.Box2 ul {
    display: flex;
    align-items: center;  
    width: 90%;
}    
.Box2 ul li{
    width: calc( 100% / 7);
    position: relative;
}
.Box2 ul li.active::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    background-color: #C01920;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.Box2 ul li a {
    text-align: center;
    display: block;
    transition: 0.4s;
}
.Box2 ul li a:hover{
    transform: translateY(-10px);
}
.Box2 ul li a p{
    width: 78px;
    height: 78px;
    border: 1px solid #0000003a;
    margin: 0 auto;
    border-radius: 99px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.Box2 ul li a img{
    width: 90%;
    height: 90%;
    object-fit: contain; 
}
.Box2 ul li a span{ 
    margin: 0 auto;
    margin-top: 10px;
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 2; 
    overflow: hidden; 
    text-overflow: ellipsis;  
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #333;
    height: 40px;
    max-width: 90%;

}

.Box3 .container-md.row{
    margin: 0 auto;
    padding: 50px 0;
}
.Box3 .box{
    padding: 15px;

}

.Box3 .box > div.main{
    background-color: #F6F6F6;
    border: 1px solid #E5E5E5;
    transition: 0.4s;
}
.Box3 .box:hover > div.main{
     box-shadow: 0 10px 10px rgba(0,0,0,0.2);
    transform: translateY(-10px);
}
.Box3 .box .img{
    padding-top: 90%;
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
}
.Box3 .box .img img{
    position: absolute;
    width: 80%;
    height: 80%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 0.4s;
}
.Box3 .box:hover .img img{
    transform:translate(-50%,-50%) scale(1.03);
}
.Box3 .box .name {
    padding: 10px 0;
}
.Box3 .box .name  span{
    width: 89%;
    display: block;
    font-size: 14px;
    margin: 0 auto;
    text-align: center;
    color: #333;
}

.Box3 .page-nav{
    margin-top: 50px;
    display: flex;  
}
.Box3 .page-nav li{
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000; 
    margin-right: 5px;
}
.Box3 .page-nav li.thisclass{
    background-color: #ddd;
    color: #BF1A21 !important;
}

.Box3 .page-nav li a{
    color: #000;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.Box3 .page-nav li:hover a{
    background-color: #ddd;
    color: #BF1A21 !important;
}