.branches-container {
    width: 1200px;
    margin: 72px auto 0 auto;
}

.branches-map {
    width: 696px;
    height: 521px;
    margin-left: 66px;
    transition: all 0.4s;
}

.branches-map:hover {
    transform: scale(1.05);
}

.branches-msg {
    flex: 1;
}

.branches-msg div:nth-of-type(1) {
    font-family: "PuHuiTi";
    font-weight: 700;
    font-size: 48px;
    color: #000;
}

.branches-msg div:nth-of-type(2) {
    margin-top: 9px;
    color: #000000;
    font-size: 36px;
    font-family: "PuHuiTi";
    letter-spacing: 0;
}

.branches-msg div:nth-of-type(2) span {
    color: #6daf32;
    font-size: 48px;
    font-family: "DIN";
    font-weight: 700;
    letter-spacing: 0;
}

.branches-msg div:nth-of-type(3) {
    margin-top: 41px;
    font-family: "PuHuiTi";
    font-weight: 400;
    font-size: 20px;
    color: #000;
}

.addres-container {
    margin: 110px auto 50px auto;
    width: 1200px;
    background: #FFFFFF;
}

.addres-map {
    width: 640px;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
}

.addres-msg {
    margin-left: 58px;
    height: 300px;
    align-content: space-around;
}

.addres-list {

}

.addres-icon {
    height: 24.14px;
    margin-top: 8px;
}

.addres-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.addres-text {
    margin-left: 16px;
}

.addres-text div:nth-of-type(1) {
    font-family: "PuHuiTi";
    font-weight: 500;
    font-size: 28px;
    color: #6daf32;
}

.addres-text div:nth-of-type(2) {
    margin-top: 9px;
    font-family: "PuHuiTi";
    font-weight: 400;
    font-size: 18px;
    color: #14212f;
}

.work-container {
    margin: 0 auto 60px auto;
    width: 1200px;
}

.work-model {
    width: 360px;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s;
}

.work-img {
    width: 360px;
    height: 240px;
    overflow: hidden;
}

.work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.work-model:hover {
    box-shadow: 0 0 20px 0 rgba(2, 38, 135, 0.09);
    transform: translateY(-2px);
}

.work-model:hover .work-img img {
    transform: scale(1.05);
}

.work-msg {
    padding: 18px 18px 23px 18px;
}

.work-msg div:nth-of-type(1) {
    font-family: "PuHuiTi";
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #14212f;
}

.work-msg div:nth-of-type(2) {
    margin-top: 4px;
    font-family: "PuHuiTi";
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #14212f;
}

.custom-info-window {
    background: #6DAF32;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    max-width: 300px;
    position: relative;
}

.custom-info-window::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: -4px;
    background: #6DAF32;
    left: calc(50% - 4px);
    transform: rotate(45deg);
}

.tmap-info-close {
    display: none !important;
}


/* 1. 公共初始样式：不透明度为 0，带有 transition 过渡效果 */
.anim-section {
    opacity: 0;
    transition: opacity 0.75s ease, transform 0.75s ease;
}

/* 2. 不同方向的初始 transform */
.anim-section.top {
    transform: translateY(-20px);
}

.anim-section.bottom {
    transform: translateY(20px);
}

.anim-section.left {
    transform: translateX(-20px);
}

.anim-section.right {
    transform: translateX(20px);
}

/* 3. 当进入视口时，添加 in-view 触发最终状态 */
.anim-section.in-view {
    opacity: 1;
    transform: none;
}
