/* 头部样式 */
.header-box {
    width: 100%;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background-color: #fff;
}

.header-areaBox {
    position: relative;
    margin: 0 auto;
    width: 1366px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 0 auto;
    transition: all .2s ease;
    background-color: #fff;
}

.headLogo-img {
    /*width: 40px;*/
    height: 40px;
}

/* pc版头部 */

.header-Pcul {
    list-style: none;
    display: flex;
    padding: 0;

}

.header-Navtext {
    display: inline-block;
    margin-right: 92px;
    color: #191919;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 80px;
    line-height: 80px;

}

.header-Navtext-active {
    color: #0158fd;
    border-bottom: 1.4px solid #0158fd;
    box-sizing: border-box;
}

.header-Navtext:hover {
    color: #0158fd;
    border-bottom: 1.4px solid #0158fd;
    box-sizing: border-box;
}


/* pc版登录按钮 */
.header-Pclogin-box {
    display: flex;
    align-items: center;


}

.header-Pclogin {
    color: #000;
    font-size: 18px;
    margin-right: 20px;
}

.header-Pclogin:hover {
    color: #0158fd;
}

.header-Pcgift {
    background-color: #0158fd;
    width: 142px;
    height: 36px;
    min-width: 142px;
    display: flex;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
}

.header-Pcgift:hover {
    background-color: #1890ff;

}

.header-Pcgift:hover .Pclogin-Icon {
    animation: identifier 1s ease;
}

.header-Pcgift-text {
    color: #fff;
    font-size: 18px;

}

.Pclogin-Icon {
    margin-right: 5px;
}


@keyframes identifier {
    0% {
        transform: scale3d(0.9, 0.9, 0.9) rotate(-1.3deg);
    }

    25% {
        transform: scale3d(1, 1, 1) rotate(-3deg);
    }

    50% {
        transform: scale3d(1.2, 1.2, 1.2) rotate(3deg);
    }

    25% {
        transform: scale3d(1, 1, 1) rotate(-3deg);
    }

    100% {
        transform: scale3d(1, 1, 1) rotate(0deg);
    }
}





.header-country {
    width: 100%;
    position: absolute;
    left: 0;
    max-height: 0px;
    background-color: #f9fbfd;
    margin: 0 auto;
    padding: 0 80px;
    box-sizing: border-box;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;


}

.header-country-active {
    max-height: 1000px;
    z-index: 10px;
    padding: 30px 80px;
    overflow: visible;
}

.vpsNav-title {
    font-size: 18px;
    /* height: px; */
    line-height: 80px;

    margin-bottom: -10px;
}

.Nav-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    margin-bottom: 10px;
}

.vpsNav-IconBox {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.vpsNav-country {
    padding-left: 20px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.Nav-country {
    font-size: 20px;
    color: #414141;
    font-weight: 500;
    transition: all 0.3s ease;
}

.Nav-country:hover {
    transform: translateZ(0) scale(1.05);
    color: #0158fd !important;
    filter: blur(0.5px);
}

.vpsNav-country:hover {
    transform: translateZ(0) scale(1.05);
    color: #0158fd !important;
    filter: blur(0.5px);
}

.vpsNav-Icon {
    width: 28px;
    height: 20px;
    margin-right: 12px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
}

/* 移动端的头部按钮 */
.expand-item {
    display: none;
}

.app-expand {
    display: none;
}

@media screen and (max-width:768px) {

    /* 头部样式 */
    .header-box {

        height: 60px;
        box-shadow: 0 1px 5px #f0f2fa;
    }

    .header-areaBox {
        width: 100%;
        padding: 0 20px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all .2s ease;
        background-color: #fff;
    }

    .headLogo-img {
        /*width: 40px;*/
        height: 40px;
    }

    .app-expand {
        display: block;
    }

    .app-expand img {
        width: 18px;
        height: 18px;

    }

    /* pc版头部 */
    .header-Pcbox {
        display: none;
    }


    /* pc版登录按钮 */
    .header-Pclogin-box {
        display: none;
    }


    /* app头部分类盒子 */
    .expand-item {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1000;
        pointer-events: none;
        max-width: 0;
        transition: all 0.2s ease;
    }

    .expand-item-active {
        max-width: 100%;
    }


    .expand-mask {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1000;
        background: rgba(0, 0, 0, .45);
        pointer-events: auto;
    }

    .expand-data {
        max-width: 85%;
        height: 100%;
        overflow: auto;
        background: #fff;
        pointer-events: auto;
        overflow: hidden;
        position: relative;
    }

    .expand-header {
        height: 58px;
        padding: 0 25px;
        display: flex;
        top: 0;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
    }

    /* app头部关闭按钮 */
    .app-expand-closeBox {
        width: 20px;
        height: 20px;
        margin-right: -15px;
        font-size: 16px;
        color: #29394a;
        font-weight: 600;

    }

    .app-expand-close {
        width: 15px;
        height: 2px;
        background-color: #29394a;
        border-radius: 10%;
    }

    .close-top {
        margin-top: 10px;
        margin-bottom: -2px;
        transform: rotate(41deg);
    }

    .close-bot {

        transform: rotate(133deg);
    }

    /* 分类内容 */
    .expand-module {
        width: 100%;
        background-color: #f9fbfd;
        overflow-y: auto;
        height: 100%;
        padding-bottom: 170px;

    }

    .expand-module-nav {
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #191919;
        height: 50px;
        line-height: 50px;
        padding: 0px 25px;
    }

    .expand-module-nav p {
        font-weight: 700;
    }

    .expand-item-pActive {
        color: #40a9ff
    }

    .expand-item-arrow {
        display: inline-block;
        width: 14px;
        height: 14px;
        border-right: 2px solid #ccc;
        border-top: 2px solid #ccc;
        transform: rotate(135deg);
        transition: all .1s;
    }

    .expand-item-arrow-active {
        transform: rotate(314deg);
    }




    .expand-nav-list {
        width: 100%;
        background-color: inherit;
        max-height: 0px;
        padding: 0px 20px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .expand-nav-list-active {
        max-height: 10000px;
        overflow: visible;
    }

    .vpsNav-title {
        width: 100%;
        margin-left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #191919;
        height: 50px;
        line-height: 50px;
        padding: 0 25px;
    }

    .vpsNav-IconBox {
        display: block;
    }

    .vpsNav-country {
        display: block;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        display: flex;
        align-items: center;
        font-size: 14px;
        color: #191919;
        height: 50px;
        line-height: 50px;
        padding: 0 40px;
        font-weight: 700;
    }

    .expand-login {
        display: flex;
        justify-content: space-between;
        position: absolute;
        bottom: 30px;
        width: 100%;
        padding: 0 20px;
    }

    .header-Pcgift {
        width: 46%;
        height: 50px;
        border-radius: 5px;
        background: #0158fd;
        color: #fff;
    }

    .header-Pcgift-text {
        font-size: 12px;
    }

    .header-Pclogin {
        background: #fff;
        border: 1px solid #0f7aff;
        width: 46%;
        height: 50px;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        color: #0f7aff;
        margin-right: 0;
    }
    
}

/* 侧边按钮 */
.side-btnBox {
    position: fixed;
    top: 50%;
    bottom: auto;
    right: 10px;
    transform: translateY(-50%);
    z-index: 10;
}

.side-service {
    margin-bottom: 10px;
    width: 51px;
    height: 51px;
    border: 1px solid #fff;
    background: linear-gradient(0deg, #f4f5fa, #fff);
    box-shadow: 0 4px 10px 0 rgba(0, 114, 255, .1);
    border-radius: 25px;
    padding: 15px 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
}

.side-Top {
    display: block;
    width: 51px;
    height: 60px;
    opacity: 0;
    background: url('/web/imitate/assets/headerImg/service-top.png') no-repeat 50%;
    background-size: 100%;
    transition: all .3s ease-in;
}

.customer-box {
    position: absolute;
    padding: 10px 25px;
    background-color: #fff;
    border: 1px solid #f0f4fa;
    border-radius: 5px;
    box-shadow: 0 0 1px #f0f4fa;
    top: -40px;
    left: 100px;
    transition: all .3s ease;
    z-index: 5;

}

.customer-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
}

.customer-box img {
    display: block;
    margin: 0 auto;
}
.customer-desc{
    text-align: center;

}
.customer-box-sctive{
    left: -200px;
}

@media screen and (max-width:768px) {
    .side-btnBox {
        top: 80%;
        right: 5px;
    }
    .side-service {
        width: 40px;
        height: 40px;
    }
    .side-Top {
        width: 40px;
        height: 40px;
    }
}