/* 引入字体 - 本地字体路径（需将字体文件放入 font 文件夹） */
@font-face {
    font-family: 'Alibaba-PuHuiTi-Heavy';
    src: url('../font/Alibaba-PuHuiTi-Heavy.ttf') format('truetype'),
        url('../font/Alibaba-PuHuiTi-Heavy.woff') format('woff'),
        url('../font/Alibaba-PuHuiTi-Heavy.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* 公共样式 */
.m {
    max-width: 1600px;
    width: 92%;
    margin: 0 auto;
}

.f-p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    line-height: 34px;
}

.f-a {
    font-size: 50px;
}

.f-time {
    font-size: 14px;
    font-weight: 400;
    color: rgb(102, 102, 102)
}

.title {
    font-size: 30px;
}

/* 分页样式 */
#page_1 {
    display: flex;
    gap: 10px;
    justify-content: center;
}

#page_1 a {
    display: block;
    padding: 10px 15px;
    color: #333;
    border: 1px solid #999;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#page_1 a:hover {
    color: #fff;
    background-color: #005bac;
    border-color: #005bac;
    transform: translateY(-3px);
}
@media screen and (max-width: 768px) {
    #page_1 a:nth-child(1) {
        display: none;
    }

    #page_1 a:last-child {
        display: none;
    }

}
/* 导航样式 */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative
}

header {
    background-color: rgba(0, 0, 0, 0.01);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: background-color 0.5s ease, box-shadow 0.5s ease, height 0.5s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.fixed {
    background-color: rgba(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    height: 90px;
}

header.fixed .nav-item {
    height: 90px;
    /* line-height: 90px; */
    position: relative;
}


header.fixed .nav-branding div h3,
header.fixed .nav-branding div p {
    color: #333;
}

header.fixed .sou {
    background-color: #000000;
}

header.fixed .nav-link {
    color: #333;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: white;

}

.nav-bar {
    min-height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;


}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;

}

.nav-branding {
    font-size: 2rem;
    z-index: 100;
}

.nav-link {
    font-size: 16px;
    font-weight: 700;
    transition: 0.7S;
    /* height: 90px !important; */
}

.nav-link:hover {
    color: #005bac;
}

.hamburger {
    display: none;
    /* 鼠标悬浮在该元素上时，光标变成小手样式 */
    cursor: pointer;
}

.bar {
    display: block;
    background-color: white;
    width: 25px;
    height: 3px;
    margin: 5px;
    transition: all 0.3S ease-in-out;
}

.nav-item-icon {
    display: flex;
    gap: 10px;
    margin-left: 71px;
}

.nav-item-icon .sou {
    width: 118px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid white;
    transition: background-color 0.5s ease, border-color 0.5s ease;
}

.nav-item-icon .sou a {
    font-size: 14px;
    color: white;
    transition: color 0.5s ease;
}

.nav-item-icon .tel {
    /* width: 166px; */
    height: 90px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    /* background-color: #005bac; */
}

.nav-item-icon .tel a {
    font-size: 25px;
    font-weight: bold;
}

.nav-branding {
    display: flex;
    gap: 15px;
}

.nav-item-icon .lang {
    height: 90px;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
    position: relative;
}


.nav-item-icon .lang a {
    font-size: 16px;
    color: #fff;
}

.nav-item-icon .lang svg {
    margin-left: 10px;
}

.lang-list {
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 120px;
    left: 0%;
    transition: all 0.5s ease;
    background-color: #fff;
}

.lang-list li {
    line-height: 45px;
    text-align: center;
}

.lang-list a {
    color: #333 !important;
    text-align: center;
    font-size: 16px !important;
}

.lang-list li:hover {
    background-color: #f5f5f5;
}

.nav-item-icon .lang:hover .lang-list {
    opacity: 1;
}
.nav-branding div{
    display: flex;
    flex-direction: column;
    align-content: center;
}
.nav-branding h3 {
    font-size: 26px;
    color: rgb(255, 255, 255);
    font-weight: 700;
    transition: color 0.5s ease;
    line-height: 40px;
}

.nav-branding p {
    font-size: 12px;
    color: rgb(255, 255, 255);
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.5s ease;
}

.nav-branding img {
    width: auto;
    height: 60px;
    /* filter: brightness(0) invert(1); */
    transition: filter 0.5s ease;
}

header.fixed .nav-branding img {
    filter: none;
}

/* 二级导航 */
.nav-menuer {
    padding: 0px 10px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0%;
    transform: translateX(-20%);
}

.nav-item {
    height: 90px;
    /* line-height: 90px; */
    position: relative;
    transition: height 0.5s ease, line-height 0.5s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 100%;
    cursor: pointer;
}

.nav-sub-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    color: inherit;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: calc(100% - 4px);
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #005bac;
    z-index: 1;
    opacity: 0;
}

.nav-item.active::after {
    opacity: 1;
}

.nav-item:hover .nav-menuer {
    display: block;
}

.nav-menuer {
    width: 140px;
    height: auto;
    background-color: #fff;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* border-radius: 0px 0px 5px 5px; */
    /* 添加阴影效果 */
}

.nav-menuer li {
    height: 45px;
    line-height: 45px;
    border-bottom: 1px solid #e7e7e7;
}

.nav-menuer li a {
    font-size: 16px;
    text-align: center;
    width: 120px;
    color: #333;
    display: block;
    transition: background-color 0.3s;
    /* 添加悬停效果 */
}

.nav-menuer li a:hover {
    background-color: #f5f5f5;
    /* 悬停时高亮 */
}

/* 按钮 */
.btn {
    display: inline-block;
    width: 250px;
    height: 64px;
    border-radius: 50px;
    line-height: 64px;
    text-align: center;
    background-color: #005bac;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    border: 2px solid #005bac;
    transition: all 0.5s ease;
    margin-top: 42px;
}

.btn:hover {
    background-color: #fff;
}

.btn:hover a {
    color: #005bac;
}

.btn:hover svg {
    background-color: #005bac;
}

.btn:hover .icon path {
    fill: #fff;
}

.btn svg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 5px;
    background-color: #fff;
}

.btn .icon path {
    fill: #005bac;
}

/* 按钮2 */
.btn3 {
    font-size: 14px;
    display: inline-block;
    width: 142px;
    height: 41px;
    line-height: 41px;
    text-align: center;
    border-radius: 50px;
    border: 1px solid rgb(85, 85, 85);
    color: rgb(85, 85, 85);
    transition: all 0.3s ease;
}

.btn3:hover {
    border: 1px solid #005bac;
    background-color: #005bac;
    color: #fff;
}


input:focus,
textarea:focus {
    outline: none;
    /* 清除默认蓝色外框，按需保留 */
}

.copyright {
    height: 386px;
    padding: 40px 0 0 0;
    /* background-color: #131a20; */
    background-image: url(../img/foot_bg.jpg);
    background-size: cover;
    position: relative;
}

.copyright::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.copyright .m {
    position: relative;
    z-index: 11;
}

.copyright-top {
    display: flex;
    /* align-items: center; */
    padding-bottom: 50px;
}

.copyright-left {
    width: 38.5%;
}

.copyright-middle {
    width: 30%;
    /* display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px; */
}

.copyright-middle ul {
    width: 75%;
    height: 295px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 35px;
}

.copyright-middle ul li {
    width: 20%;
}

.copyright-right {
    flex: 1;
}

.copyright-left img {
    width: auto;
    height: 80px;
}

.copyright-left strong {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin-top: 40px;
}

.copyright-left p {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-top: 25px;
}

.copyright-middle a {
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 18px;
}

.copyright-right p:nth-child(1) {
    width: 100%;
    color: #fff;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 32px;

}

.copyright-right a {
    width: 100%;
    color: #fff;
    font-size: 32px;
    font-weight: 400;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}

.copyright-right p:nth-child(2) {
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.copyright-right p:nth-child(3) {
    width: 100%;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}

.copyright-right input {
    width: 100%;
    padding: 0 10px;
    height: 42px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 45px;
}

.copyright-right button {
    width: 160px;
    padding: 10px 10px;
    height: 48px;
    background-color: #005bac;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-top: 16px;
}

.copyright-right div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.copyright-right img {
    width: 110px;
    height: 110px;
    margin-top: 40px;
    border-radius: 5px;
}

.copyright-bottom {
    height: 83px;
    line-height: 83px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #005bac;

}

.copyright-bottom .m {
    display: flex;
    justify-content: center;
}

.copyright-right svg {
    width: 35px;
    height: 35px;
}

.copyright-bottom {
    display: flex;
    color: #fff;
    font-size: 14px;
}

.copyright-bottom .color {
    color: #fff;
    margin-left: 20px;
}

.copyright-bottom p:nth-child(1) {
    margin-right: 40px;
}

.copyright-bottom div:nth-child(2) {
    /* margin-right: 610px; */
}

@media screen and (max-width:768px) {
    header {
        display: fixed;
        background-color: #fff;
        position: relative;
    }

    .hamburger {
        display: block;
        color: #000000;
    }

    .bar {
        background-color: #000000;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-bar {
        padding: 0 15px;


    }

    .nav-link {
        color: #000000;
        /* height: 80px; */
        padding: 0 15px;
    }

    .nav-menu {
        height: calc(100vh - 80px);
        overflow-y: auto;
        background-color: #FFFFFF;
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        transition: all 0.3s ease;
        display: block;
        -webkit-overflow-scrolling: touch;
    }

    .nav-item {
        margin: 0px;
        height: auto;
        min-height: 60px;
        line-height: 60px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-item-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        height: 60px;
        width: 100%;
    }

    .nav-sub-toggle {
        display: flex;
        color: #666;
        pointer-events: auto;
        padding: 5px;
    }

    .nav-item.sub-open>.nav-item-inner>.nav-sub-toggle {
        transform: rotate(180deg);
    }

    .nav-menuer {
        display: none !important;
        position: static;
        transform: none;
        width: 100%;
        box-shadow: none;
        padding: 0;
        background-color: #f8f9fa;
    }

    .nav-item.sub-open>.nav-menuer {
        display: block !important;
    }

    .nav-menuer li {
        border-bottom: 1px solid #eaeaea;
    }

    .nav-menuer li:last-child {
        border-bottom: none;
    }

    .nav-menuer li a {
        width: 100%;
        padding: 0 35px;
        text-align: left;
        font-size: 15px;
        color: #555;
    }

    .nav-menu.active {
        top: 80px;
    }

    .nav-branding img {
        width: auto;
        height: 40px;
        filter: brightness(0) saturate(100%) invert(27%) sepia(92%) saturate(2184%) hue-rotate(197deg) brightness(91%) contrast(101%);
    }

    .nav-branding h3,
    .nav-branding p {
        color: #000000;
    }

    .nav-branding h3 {
        font-size: 18px;
    }

    .nav-branding p {
        display: none;
        font-size: 12px;
    }

    .nav-item::after {
        display: none;
    }

    .copyright {
        height: auto;
    }

    .copyright-middle {
        display: none;
    }

    .copyright-top {
        display: flex;
        /* align-items: center; */
        flex-direction: column;
    }

    .copyright-left {
        width: 100%;
        margin-bottom: 30px;
    }

    .copyright-right {
        width: 100%;
    }

    .copyright-bottom .m {
        display: flex;
        flex-direction: column;
    }

    .copyright-bottom {
        height: 83px;
        line-height: 30px;

    }

    .copyright-left strong {
        display: inline-block;
        width: 100%;
        color: #fff;
        font-size: 23px;
        font-weight: 700;
        margin-top: 20px;
    }


}