.Box1 {
    padding: 80px 0 50px 0;
}

.Box1 .t1 {
    font-size: 16px;
    padding-left: 10px;
    position: relative;
}

.Box1 .t1::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    background-color: #D71619;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.Box1 .t2 {
    font-size: 40px;
    font-weight: bold;
}

.Box1 p {
    font-size: 16px;
    line-height: 30px;
    color: #787878;
    padding-top: 0px;
    padding-bottom: 20px;
    margin: 0;
}



.Box2 {
    /* margin-bottom: 50px; */
}

.Box2 span {
    display: block;
    text-align: center;
}

.Box2 h6 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}






.Box3 {
    margin-top: 200px;
    margin-bottom: 70px;
    padding-top: 400px;
    background-image: url('../img/about/Car.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #1D1C20;
    position: relative;
}

.Box3::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(65, 65, 65, 0.5);
}

.Box3 button {
    position: absolute;
    z-index: 3;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* 居中核心样式 */
    width: 100px;
    height: 100px;
    border-radius: 99px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.5s;
    /* 新增：固定动画原点，避免缩放偏移 */
    transform-origin: center;
}

.Box3 button:hover {
    background-color: #D71619;
    /* 绑定脉冲动画：无限循环，速度曲线自然 */
    animation: pulse2 1.2s infinite ease-in-out;
}

/* 定义脉冲动画：保留居中的translate，只修改scale */
@keyframes pulse2 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        /* 初始大小+居中 */
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        /* 放大+居中 */
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        /* 恢复初始大小+居中 */
    }
}

.Box4 {
    background-color: #ededed75;
    border-top: 1px solid #dddddd55;
}

.Box4 .container-md.row {
    margin: 0 auto;
    text-align: center;
    padding: 60px;
}

.Box4 .box {
    position: relative;
    text-align: center;
}

.Box4 .box .jia {
    font-size: 60px;
    font-weight: bold;
    color: #333;
    margin: 0 auto;
    text-align: center;
    /* text-shadow: 0 0 2px rgba(0, 0, 0, 1); */
}

.Box4 .box .text {
    z-index: 1;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    color: #E62129;
}

.Box5 .container-md.row {
    margin: 80px auto;
}

.Box5 .left {
    overflow: hidden;
}

.Box5 .left span,
.Box5 .right span {
    font-size: 18px;
    color: #171717;
    text-transform: capitalize;
    padding-left: 16px;
    position: relative;
}

.Box5 .left span::before,
.Box5 .right span::before {
    position: absolute;
    content: '';
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    width: 6px;
    background: #E62129;
}

.Box5 .left h3,
.Box5 .right h3 {
    font-size: 48px;
    font-weight: 600;
    padding-top: 6px;
    text-transform: capitalize;
}

.Box5 .left img {
    width: 100%;
    margin: 10px 0 20px 0;
    /* border: 1px solid #dddddd; */
}

.Box5 .left p {
    font-size: 16px;
    line-height: 30px;
    color: #787878;
    font-weight: 400;
}

.Box5 .right ul {
    padding: 0;
    margin: 0;
}

.Box5 .right ul li {
    display: flex;
    align-items: center;

}

.Box5 .right ul li:not(:last-child) {
    margin-bottom: 20px;
}

.Box5 .right ul li i {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #dedede;
    border: 1px solid #dddddd55;
    font-size: 30px;
    margin-right: 20px;
}

.Box5 .right ul li div {
    width: calc(100% - 60px - 20px);
}

.Box5 .right ul li div h6 {
    font-size: 20px;
    color: black;
    font-weight: 600;
}

.Box5 .right ul li div p {
    font-size: 16px;
    line-height: 1.4;
    color: #787878;
    font-weight: 400;
    margin: 0;
}


.Box2 .imgs {
    margin-top: 30px;
    padding-bottom: 60px;
}

.Box2 .honor-gallery button {
    display: none !important;
}

.Box2 .honor-gallery .slick-list {
    height: fit-content;
    padding-bottom: 10px;
}

.Box2 .slick-initialized .slick-slide {}

.Box2 .honor-gallery .slick-list a {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.Box2 .honor-item img {
    width: 100%;
    height: auto;
    /* 保持图片比例 */
    display: block;
    border-radius: 8px;
    /* 圆角效果，可选 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.17);
    /* 轻微阴影，提升质感 */
    transition: transform 0.3s ease;
    /* 鼠标悬停动画 */
}

.Box2 .honor-item img:hover {
    transform: scale(1.03); 
}

 .Box3 .Hz-Logo .container-md{
    background-color: #fff;
    position: absolute;
    top: 0;
    height: 240px;
    width: 100%;
    top: -160px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    box-shadow:  0 0 5px rgba(0, 0, 0, 0.08);
 }
 .Box3 .Hz-Logo .container-md .logos{
    width: 95%;
    height: 100%;
    margin: 0 auto; 
 }

.Box3 .Hz-Logo .container-md .logos .slick-list{
    height: 100%;
}
.Box3 .Hz-Logo .container-md .logos .slick-next,
.Box3 .Hz-Logo .container-md .logos .slick-prev{ 
    display: none !important;
}

 .Box3 .Hz-Logo .container-md .logos .slick-list .slick-track{
    height: 100%;
 }
  .Box3 .Hz-Logo .container-md .logos .box-img{
    overflow: hidden;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
  }
  .Box3 .Hz-Logo .container-md .logos .box-img .img{
    width: 90%;
    height: 90%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:  0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
  }
  .Box3 .Hz-Logo .container-md .logos .box-img img{
    width: 90%;
    height: 90%;
    object-fit: contain;
  }