.main-bg {
    width: 100%;
    /* background-color: #000; */
    max-width: 1540px;
    margin: 0 auto;
}

/* 重置默认样式，方便统一控制 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.top-banner {
    position: relative;
    top: 0;
    left: 0;
    background: url(img/ban.jpg) 100% / 100% 100%;
    width: 100%;
    height: 360px;
    color: #fff;
}

.banner-title {
    text-align: center;
}

.banner-bg {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.title-words {
    display: inline-block;
    vertical-align: top;
    font-size: clamp(36px, 4vw, 64px);
    font-weight: bold;
    line-height: 86px;
    white-space: nowrap;
}

.banner-words {
    font-size: clamp(14px, 4vw, 24px);
    line-height: 40px;
    text-align: center;

    p {
        color: #fff;
        margin: 0;
    }
}

.bg-title {
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 30px;


    p {
        font-size: 52px;
        position: relative;
        top: 10px;
        z-index: 10;
        color: #000;
        font-weight: bold;
        text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
        white-space: nowrap;


        i {
            font-weight: bold;
            color: #f29c4a;
            font-size: 52px;
            font-style: normal;
            white-space: nowrap;
        }
    }

    span {
        position: absolute;
        z-index: 1;
        font-size: 80px;
        font-weight: bold;
        color: rgba(0, 0, 0, 0.012);
        white-space: nowrap;
        text-shadow: 0.5px 0 0 currentColor, -0.5px 0 0 currentColor;
    }

    h4 {
        font-size: 20px;
        color: #999;
        position: absolute;
        display: block;
        bottom: 0;
        white-space: nowrap;
        margin: 0;
    }
}

.country-container {
    padding: 60px 0;
    padding-bottom: 80px;

    ul {
        display: flex;
        justify-content: space-between;

        li {

            &:hover {
                img {
                    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
                }

                span {
                    color: #e70012;
                }
            }

            img {
                width: 280px;
                height: auto;
                border: 1px solid rgba(0, 0, 0, 0.12);
                box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
            }

            span {
                text-align: center;
                display: block;
                font-size: 18px;
                margin-top: 24px;
            }
        }
    }
}

.zoom-element {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.zoom-element:hover {
    transform: scale(1.07);
    @apply scale-105 shadow-xl transition-all duration-400 ease-in
}

/* @media (max-width: 920px) {
    .title-words {
        font-size: 32px;
    }
}

@media screen and (min-width: 739px) and (max-width: 1420px) {
    .title-words {
        font-size: 56px;
    }
} */