/* 导航栏样式 */
.custom-navbar {
    background-color: rgba(135, 93, 191, 0.5);
    padding: 0;
    height: 139px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
}

.navbar-brand {
    /* width: 30%; */
    padding: 20px 30px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    width: 215px;
    height: 53px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.navbar-nav {
    justify-content: space-evenly;
    flex: 1;
    height: 100%;
    align-items: center;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 700;
    margin: 0;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 20px;
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.navbar-nav .nav-link:hover {
    color: #f0f0f0 !important;
}

/* PC端下划线样式 */
@media (min-width: 769px) {

    .navbar-nav .nav-link.active::after,
    .navbar-nav .nav-link:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background-color: white;
        border-radius: 1px;
    }
}

/*-------------------- 480px以下显示配置   --------------------*/
@media (max-width: 991px) {
    .custom-navbar {
        height: 60px;
    }

    .navbar-brand img {
        width: 140px;
        height: 34px;
    }

    .navbar-collapse {
        top: 60px;
    }

    .navbar-collapse {
        background-color: rgba(135, 93, 191, 0.98);
        padding: 10px 0;
        top: 60px;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        color: white !important;
        padding: 15px 0;
        margin: 0;
        font-size: 18px;
        font-weight: 800;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        white-space: nowrap;
    }

    .navbar-nav .nav-link.active {
        border-bottom: 1px solid white;
    }

    .navbar-nav .nav-link:hover {
        border-bottom: 1px solid white;
    }

    .navbar-nav .nav-link::after,
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        display: none;
    }
}

/*--------------------  底部区域样式  --------------------*/
.footer-section {
    /* background: url('../images/index-foot-bg.png') center bottom no-repeat; */
    height: auto;
    background-color: #8969C2;
    color: #fff;
    padding: 0;
    position: relative;
    font-size: 16px;
    /* display: flex;
    flex-direction: column;
    justify-content: flex-start; */
}

.footer-bg {
    height: auto;
    width: 100%;
    max-height: 120px;
    min-height: 100px;
    position: absolute;
    object-fit: fill;
}

.footer-container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-left: 50px;
    margin-top: 20px;
    position: absolute;
}

.footer-logo img {
    width: 250px;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.footer-main {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    max-width: 1320;
    padding: 3vh 50px;
}

.footer-left-column {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    margin-right: 40px;
}

.footer-nav {
    display: flex;
    justify-content: start;
    gap: 3vw;
    margin-bottom: 1vh;
    font-size: clamp(8px, 1vw, 12px);
    width: 100%;
}

.footer-left-content {
    display: flex;
    flex-direction: column;
    gap: 1vh;
    margin-top: 1vh;
    font-size: 13px;
}

.footer-slogan {
    font-size: 18px;
    letter-spacing: 4px;
    color: #fff;
    opacity: 0.85;
}

.footer-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-nav-item .nav-dot {
    width: 18px;
    height: 4px;
    background: #e74c3c;
    border-radius: 2px;
    display: inline-block;
}

.footer-contact-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1vh;
}

.footer-bottom-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 20px;
}

.footer-contact-info {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0;
}

.footer-contact-info i {
    font-size: 16px;
    margin-right: 6px;

}

.footer-contact-email {
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 0;
}

.footer-contact-email i {
    font-size: 16px;
    margin-right: 6px;
}

.footer-company-info {
    font-size: clamp(8px, 1vw, 12px);
    opacity: 0.7;
}

.footer-company-info a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
}

.footer-company-info a:hover {
    color: #fff;
    text-decoration: underline;
    opacity: 1;
}

.footer-qrcodes {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-qrcode-box {
    text-align: center;
}

.footer-qrcode-wrapper {
    position: relative;
    padding: 15px;
    border: 4px solid rgba(255, 255, 255, 0.8);
    border-radius: 25px;
    margin: 0 10px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-qrcode-img {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    margin: 0;
}

.footer-qrcode-wrapper {
    width: 150px;
    height: 150px;
}

.footer-qrcode-img img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

.footer-qrcode-label {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.95;
}

.footer-divider {
    border: none;
    height: 2px;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    margin: 0;
}

@media (max-width: 992px) {
    .footer-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-bg {

        min-height: 0;

    }

    .footer-logo {

        position: relative;
        margin: 10px auto;
        margin-top: 5vh;
    }

    .footer-logo img {
        width: 40vw;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .footer-left-column {
        margin: 0;
    }

    .footer-contact-row {
        justify-content: center;
    }

    .footer-bottom-row {
        justify-content: center;
        gap: 5px;
        margin-bottom: 3vh;
    }

    .footer-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer-bg {

        min-height: 0;

    }

    .footer-logo {

        position: relative;
        margin: 10px auto;
        margin-top: 5vh;
    }

    .footer-logo img {
        width: 40vw;
    }

    .footer-main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 0;
    }

    .footer-left-column {
        margin: 0;
    }

    .footer-contact-row {
        justify-content: center;
    }

    .footer-bottom-row {
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin-bottom: 3vh;
    }

    .footer-nav {
        display: none;
    }

    .footer-qrcodes {
        flex-direction: column;
        align-items: center;
    }
}




/* 覆盖苹果IOS电话号码的默认样式 */
a[href^="tel"] {
    color: inherit !important;
    /* 继承父元素文字颜色 */
    text-decoration: none !important;
    /* 移除下划线 */
    pointer-events: auto;
    /* 确保点击事件正常 */
}