.common-pc-show {
    display: block !important;
}

.common-phone-show {
    display: none !important;
}

/* 版心 */
.wrapper {
    max-width: 1560px;
    margin: 0 auto;
}

/* 头部 */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 28px 0;
}

.header.active {
    background-color: #4A53E6;
    transition: all 1s;
}

.header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .header-logo-box {
    display: flex;
    align-items: center;
}

.header .logo {
    height: 44px;
    margin-right: 37px;
}

.header .slogan {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 6%;
    color: #fff;
}

.header .head-tel {
    display: flex;
    align-items: center;
}

.header .head-tel .tel-icon {
    width: 32px;
    height: 32px;
    margin-right: 8px;
}

.header .head-tel .head-tel-text {}



.header .head-tel .head-tel-text .tel {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5em;
    color: #ffffff;
}

.header .head-tel .head-tel-text .tel a {
    color: #ffffff;
}

/* 底部 */

@keyframes footerShow {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0);
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 10, 100, 0.6);
    transform: translateY(100%);
    animation: footerShow 1s forwards;
    /* animation-delay: 2s; */
}



.footer .sector-list {
    display: flex;
    align-items: stretch;
    padding: 0 162px;
    justify-content: space-between;
}

.footer .sector-list .sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    padding: 20px 0 26px;
    cursor: pointer;
}

.footer .sector-list .sector-item:nth-child(2) {
    margin-left: 10px;
    margin-right: 10px;
}

.footer .sector-list .sector-item:hover {
    color: #FF7700;
}

.footer .sector-list .sector-item:hover .icon {
    height: 0px;
    opacity: 0;
}

.footer .sector-list .sector-item .icon {
    width: 70px;
    height: 70px;
    transition: all 500ms;
}

.footer .sector-list .sector-item .item-content {
    margin-top: 24px;
}

.footer .sector-list .sector-item .briefIntroduction {
    font-size: 16px;
    line-height: 100%;
    text-align: center;
}

.footer .sector-list .sector-item .briefIntroduction .copyright {
    font-size: 14px;
    position: relative;
    left: 0;
    top: -6px;
    /* margin-left: 2px;
    margin-right: 4px; */
    margin: 0 1px;

}

.footer .sector-list .sector-item .name {
    font-weight: 600;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    margin-top: 10px;
}

.footer .copyright-box {
    padding: 12px 0;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
    color: #ffffff;
}

.footer .copyright-box a {
    color: #ffffff;
}

.footer .copyright-box .businessLicense {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}



.banner {
    height: 100vh;
    overflow: hidden;
}

.banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.banner-content {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
}

.banner-content .banner-text {
    color: #ffffff;
    margin-left: 162px;
    margin-top: calc(198px + 100px);
    font-weight: 700;
    font-size: 47px;
    line-height: 170%;
    letter-spacing: 0.05em;
    position: relative;
}


.banner-content .banner-text .quan-bg {
    position: absolute;
    width: 70px;
    height: 70px;
    left: 309px;
    bottom: 5px;
    background-repeat: no-repeat;
    background-size: 100%;
    animation: rotate360 5s linear infinite;
    z-index: -1;
}

/* 360度旋转动画 */
@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 屏幕小于 1560px */
@media screen and (max-width: 1560px) {
    .wrapper {
        max-width: 1375px;
    }

}

/* 屏幕小于 1375px */
@media screen and (max-width: 1375px) {
    .wrapper {
        max-width: 728px;
    }

    .footer .sector-list {
        padding: 14px;
    }

    .banner-content .banner-text {
        margin-left: 14px;
    }


}


/* 手机 版心 */
@media screen and (max-width: 768px) {
    .common-pc-show {
        display: none !important;
    }

    .common-phone-show {
        display: block !important;
    }

    .wrapper {
        max-width: 414px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .header {
        padding: 8px 0;
    }

    .header .wrapper {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }


    .header .logo {
        height: 30px;
    }


    .header .head-tel .head-tel-text .tel {
        font-size: 14px;
    }


    .footer .sector-list {
        justify-content: space-between;
        padding-left: 0;
        padding-right: 0;
    }

    .footer .sector-list .sector-item {
        padding: 22px 0 10px;
        flex: 1;
    }

    .footer .sector-list .sector-item .icon {
        width: 30px;
        height: 30px;
    }

    .footer .sector-list .sector-item .item-content {
        margin-top: 10px;
        display: flex;
        flex-direction: column-reverse;
    }

    .footer .sector-list .sector-item .briefIntroduction {
        font-size: 10px;
        line-height: 140%;
        margin-top: 6px;
    }

    .footer .sector-list .sector-item .briefIntroduction .copyright {
        font-size: 10px;
        top: -3px;
    }

    .footer .sector-list .sector-item .name {
        font-weight: 600;
        font-size: 16px;
        line-height: 140%;
        margin-top: 0;
    }

    .footer .copyright-box {
        padding: 30px 20px 20px;
        font-size: 10px;
        line-height: 16px;
        color: #9296B7;
    }

    .footer .copyright-box a {
        color: #9296B7;
    }

    .footer .copyright-box .businessLicense {
        display: none;
    }



    .banner-content .banner-text {
        font-weight: 700;
        font-size: 23px;
        line-height: 140%;
        letter-spacing: 0.03em;
        margin-left: 14px;
        /* margin-top: calc(14% + 46px); */
        margin-top: calc(24% + 46px);
        background-position: 147px 100%;
        background-size: 34px 34px;
    }

    .banner-content .banner-text .quan-bg {
        width: 34px;
        height: 34px;
        left: 147px;
        bottom: 0px;
    }
}

/* 小屏手机 */
@media screen and (max-width: 360px) {}