.Box1 {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f5f5f5, #fff);
}

.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;
    position: relative;
    z-index: 2;
}
.Box1 .ProductType .text h4::before{
    position: absolute;
    content: '';
    z-index: 1;
    background-color: #004C90;
    width: 70px;
    height: 4px;
    bottom: 0;
    left: 0;
}
.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{
    padding: 60px 0;
}
.Box2 .container-md.row{
    margin: 0 auto;
}
.Box2 .CeList .box{
    background-color: white;
}
.Box2 .CeList .box .list-top{
    padding: 18px 0;
    background-color: #004C90;
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
}
.Box2 .CeList .box .list-top i{
    font-size: 25px;
    margin-right: 5px;
    font-weight: normal;
}
.Box2 .CeList .box .list-top h6{
    font-size: 14px;
    margin: 0;
}
.Box2 .CeList .box ul{
    margin: 0;
    padding:10px;

}
.Box2 .CeList .box ul li{
    background-color: #FAFAFA;
}
.Box2 .CeList .box ul li a{
    text-decoration: none;
    color: #333;
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 0 0 20px ;
    margin-bottom: 10px; 
}
.Box2 .CeList .box ul li a:hover{
    background-color: #004C90;
    color: white;
}
.Box2 .CeList .box ul li a.active{
    background-color: #004C90;
    color: white;
}



.Box2 .box {
    position: relative;
    margin-bottom: 55px;
}

.Box2 .box .pd {
    background-color: white;
    padding-bottom: 30px;
    border: 1px solid #ddd;
    position: relative;
}

.Box2 .box .pd .imgs {
    position: relative;
    width: 100%;
    padding-top: 230px;
    height: 0;
    overflow: hidden;
}

.Box2 .box .pd .imgs img {
    position: absolute;
    width: 85%;
    height: 85%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all .4s ease;
}

.Box2 .box .pd:hover .imgs img {
    transform: translate(-50%, -50%) scale(1.1);
}

.Box2 .box .pd .text {
    margin-top: 20px;
}

.Box2 .box .pd .text a {
    text-decoration: none;
    margin-top: 20px;
}

.Box2 .box .pd .text a h6 {
    text-align: center;
    color: #000;
    font-weight: 600;

}

.Box2 .box .pd .text p {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90%;
    font-size: 16px;
    color: #999;
    margin-bottom: 17px;

}

.Box2 .box .pd .text p span {
    margin-left: 8px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: fit-content;
}


.Box2 .box .pd .text p img {

    object-fit: contain;
}

.Box2 .box .pd .eyou_more {
    display: block;
    width: 134px;
    height: 40px;
    background: #eee;
    border-radius: 5px;
    font-size: 16px;
    color: #666;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    transition: all .4s ease;
    text-decoration: none;
}

.Box2 .box .pd .eyou_more em {
    display: block;
    width: 9px;
    height: 14px;
    background-size: 100%;
    background: url(../img/index/product-jt.png) center no-repeat;
    margin-left: 14px;
    transition: all .4s ease;
}

.Box2 .box .pd:hover .eyou_more {
    background: #D71619;
    color: #fff;
}

.Box2 .box .pd:hover .eyou_more em {
    margin-left: 17px;
    background: url(../img/index/product-jt2.png) center no-repeat;
}

.Box3 .eyou_more {
    display: block;
    width: 147px;
    height: 43px;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    background: #004C90;
    background: linear-gradient(135deg, #0162b8 0, #004C90 30%, #004C90 100%);
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: 0 auto;
    margin-top: 20px;
}

.Box3 .eyou_more img {
    margin-left: 17px;
    transition: all .4s ease;
}

.Box3 .eyou_more:hover img {
    margin-left: 30px;
}

@media screen and (max-width: 768px) {
    .Box2 .box .pd:hover .eyou_more{
        width: 50%;
    }
}



.Box2 .iPhone-box{
    display: none;
}
@media screen and (max-width:1200px) {
    .Box2 .CeList .box{
        display: none;
    }
    .Box2 .CeList .iPhone-box{
        display: block;
        margin-bottom: 30px;
    }
}


.Box2 .page{
    display: flex;
    align-items: center;
}
.Box2 .page li{
    width: 40px;
    height: 40px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: 0.4s;
}
.Box2 .page li a{
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;   
    color: #000;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
}
.Box2 .page li.thisclass{
    background-color: #004C90;
    color: #fff;
}

.Box2 .page li:hover{
    background-color: #004C90;
    color: #fff;
}
.Box2 .page li:hover a{
    color: #fff;
}