/* 滚动条美化 */
/*滚动条宽 长,滚动条整体部分，其中的属性有width,height,background,border等。*/
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
/* 滑块颜色 */
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background-color: rgba(170, 170, 170, 0.8);
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(170, 170, 170, 0.8) transparent;
}
.headerVeiw {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
}

.headerVeiw .content {
    width: 100%;
    margin: 0 auto;
}

.headerVeiw .content .navBox {
    padding: 2rem 8rem;
}

.headerVeiw .content .navBox .box {
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.headerVeiw .content .navBox .box .logo {
    flex: 0 0 8rem;
    cursor: pointer;
    margin-top: 1.9rem;
}

.headerVeiw .content .navBox .box .logo .i {
    width: 100%;
    display: none;
}
.headerVeiw .content .navBox .box .logo .i:last-child {
    display: block;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox {
    margin-right: -0.5rem;
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
    font-size: 0.8rem;
    color: #fff;
    padding: 0 0.5rem;
    cursor: pointer;
    line-height: 2.1rem;
}
@media screen and (min-width: 1100px) {
    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
        position: relative;
    }
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name {
    position: relative;
    white-space: nowrap;
    display: block;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name::after {
    content: "";
    position: absolute;
    height: 2px;
    background-color: #f39700;
    left: 0;
    bottom: 0%;
    width: 100%;
    opacity: 0;
    transition: all 0.3s ease;
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .name::after,
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item:hover
    .name::after {
    opacity: 1;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox {
    position: absolute;
    /* width: 100%; */
    left: 0;
    top: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    /* 改为使用 max-height 动画以支持从 0 -> 自适应高度的过渡 */
    max-height: 0;
    opacity: 0;
    transition:
        max-height 0.32s ease,
        opacity 0.2s ease;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: saturate(180%) blur(13px);
    -webkit-backdrop-filter: saturate(180%) blur(13px);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.13);
}
.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item:hover .childBox {
    opacity: 1;
    /* 改为使用 max-height 动画以支持从 0 -> 自适应高度的过渡 */
    max-height: none;
}

.headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox .cbox {
    padding: 1rem 1rem 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .label {
    font-size: 1.8rem;
    color: #fff;
    white-space: nowrap;
    display: none;
}

.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .clist {
    font-size: 0.8rem;
    color: #fff;
    min-width: 5rem;
}
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item:nth-child(3)
    .childBox
    .cbox
    .clist {
    width: 15rem;
}
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .clist
    + .clist {
    margin-left: 2rem;
}

.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .clist
    .clistitem {
    /* margin-right: 3rem; */
    font-size: 0.8rem;
    margin-bottom: 1rem;
    line-height: 1rem;
    display: block;
    white-space: nowrap;
}
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item:nth-child(3)
    .childBox
    .cbox
    .clist
    .clistitem {
    white-space: normal;
    height: 2rem;
}
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item:nth-child(10)
    .childBox {
    left: auto;
    right: 0;
}
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item.on
    .childBox
    .cbox
    .clist
    .clistitem.on,
.headerVeiw
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .clist
    .clistitem:hover {
    color: #f39700;
    font-weight: 500;
}

.headerVeiw .content .topnav {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.headerVeiw .content .search {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 0.3rem 0.5rem;
    border-radius: 5rem;
    margin-left: 2rem;
    min-height: auto;
}

.headerVeiw .content .search .i {
    width: 0.8rem;
}

.headerVeiw .content .search .t {
    font-size: 0.8rem;
    color: #000;
    line-height: 1;
    margin-left: 0.4rem;
    white-space: nowrap;
}

.headerVeiw .content .language {
    position: relative;
    margin-left: 2rem;
    cursor: pointer;
    font-size: 0.8rem;
    color: #000;
    white-space: nowrap;
}
.headerVeiw .content .language .cur {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5rem;
    border-radius: 0.7rem;
    background-color: #fff;
    padding: 0 0.45rem;
}
.headerVeiw .content .language:hover .cur {
    border-radius: 0.7rem 0.7rem 0 0;
}
.headerVeiw .content .language .cur .icon {
    width: 0.4rem;
    margin-left: 0.3rem;
    transform: rotate(180deg);
}
.headerVeiw .content .language:hover .cur .icon {
    transform: rotate(0deg);
}
.headerVeiw .content .language .selectbox {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #fff;
    border-radius: 0 0 0.7rem 0.7rem;
    box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.06);
    z-index: 1;
    overflow: hidden;
}
.headerVeiw .content .language:hover .selectbox {
    display: block;
}
.headerVeiw.showFixed .content .language:hover .selectbox a {
    background: rgba(200, 200, 200, 0.2);
}
.headerVeiw .content .language .selectbox a {
    font-size: 0.8rem;
    color: #000;
    line-height: 2em;
    display: block;
    text-align: left;
    padding: 0.45rem;
}
.headerVeiw .content .language .selectbox a + a {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.headerVeiw.showFixed .content .search,
.headerVeiw.showFixed .content .language .cur {
    background: rgba(200, 200, 200, 0.2);
}

.headerVeiw.showFixed {
    background-color: #fff;
    box-shadow: 0 0.8rem 1.6rem 0 rgba(0, 0, 0, 0.06);
}

.headerVeiw.showFixed .content .navBox .box .logo .i:first-child {
    display: block;
}
.headerVeiw.showFixed .content .navBox .box .logo .i:last-child {
    display: none;
}

.headerVeiw.showFixed .content {
    width: 100%;
}

.headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item {
    color: #3d3d3d;
}

.headerVeiw.showFixed
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox
    .cbox
    .clist {
    color: #3d3d3d;
}

.headerVeiw.showFixed
    .content
    .navBox
    .box
    .itemBoxBox
    .itemBox
    .item
    .childBox {
    background: #fff;
    backdrop-filter: none;
}

#footer {
    width: 100%;
    padding: 0px 0;
}
.footerView {
    background: #272727;
    padding: 3rem 0;
    position: relative;
}

.footerView .content {
    margin: auto;
    padding: 0 8rem;
    display: flex;
    color: #fff;
    justify-content: space-between;
}
.footerView .content .imgBox {
    display: flex;
    align-items: center;
}
.footerView .content .imgBox .i {
    width: 4.8rem;
    margin-right: 0.5rem;
}
.footerView .content .imgBox .i:last-child {
    margin-right: 0;
}
.footerView .content .imgBox .t {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 1);
    line-height: 1.6rem;
    text-align: center;
}

.footerView .content .leftbox .info {
    margin-left: 1.2rem;
}

.footerView .content .leftbox .info .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    line-height: 1.3rem;
}
.footerView .content .leftbox .info .itemBox {
    display: flex;
    margin-top: 1.4rem;
}
.footerView .content .leftbox .info .itemBox .item {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    white-space: nowrap;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.footerView .content .leftbox .info .itemBox .itemBoxT {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 1rem;
}
.footerView .content .leftbox .info .itemBox .itemBoxT .iconBox {
    display: flex;
    margin-top: 0.3rem;
}
.footerView .content .leftbox .info .itemBox .itemBoxT .iconBox .i {
    width: 1.4rem;
    margin-right: 0.4rem;
    cursor: pointer;
}

.footerView .content .right .iconBox {
    display: flex;
    justify-content: flex-end;
}

.footerView .content .right .iconBox .i {
    width: 2rem;
    margin-left: 1rem;
    cursor: pointer;
}

.footerView .content .right .copyright {
    margin-top: 1.4rem;
}

.footerView .content .right .copyright .item {
    display: flex;
    align-items: center;
    margin-bottom: 0.15rem;
}
.footerView .content .right .copyright .item :last-child {
    margin-bottom: 0;
}
.footerView .content .right .copyright .item .i {
    width: 0.8rem;
    margin-right: 0.8rem;
}
.footerView .content .right .copyright .item .i2 {
    width: 1.9rem;
    margin-top: 0.6rem;
}
.footerView .content .right .copyright .item .t {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    line-height: 1.3rem;
}
.footerView .content .right .flexbox .title {
    font-size: 1.3rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    line-height: 1.3rem;
}
.fixedbox {
    position: fixed;
    right: 4rem;
    top: 80%;
    background: #583492;
    border-radius: 3rem;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}
.fixedbox .icon {
    width: 3rem;
    display: block;
}
.fixedbox .icon:nth-child(2) {
    display: none;
}
@media screen and (min-width: 750px) {
    .fixedbox:hover {
        padding: 0.5rem 1rem 0.5rem 0.5rem;
    }
    .fixedbox:hover .icon:nth-child(1) {
        display: none;
    }
    .fixedbox:hover .icon:nth-child(2) {
        display: block;
    }
    .fixedbox:hover .txt {
        display: block;
    }
}
.fixedbox .txt {
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.25rem;
    margin-left: 0.5rem;
    display: none;
}
.wap {
    display: none !important;
}
.cookie-policy {
    z-index: 100;
    display: none;
    position: fixed;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 0%);
    width: 83.3%;
    border-radius: 0.3rem;
}
.cookie-policy .content {
    max-width: 45rem;
    margin: 0 auto;
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    color: #3a353f;
    line-height: 1.5em;
    border-radius: 0.3rem;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(13px);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cookie-policy .content .tit {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.cookie-policy .content .txt a {
    display: inline;
    color: #4713a7;
}
.cookie-policy .content .btnbox {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.cookie-policy .content .btn {
    min-width: 4rem;
    padding: 0 1rem;
    line-height: 1.5rem;
    cursor: pointer;
    margin-left: 0.6rem;
    text-align: center;
    border-radius: 0.8rem;
    border: 1px solid #4713a7;
}
.cookie-policy .content .btn.reject {
    color: #4713a7;
    background: rgba(255, 255, 255, 0.1);
}
.cookie-policy .content .btn.accept {
    color: #fff;
    background: #4713a7;
}
@media screen and (max-width: 1100px) {
    .headerVeiw .pc {
        display: none !important;
    }
    .headerVeiw .wap {
        display: block !important;
    }
    .headerVeiw .content .navBox {
        padding: 2rem 2rem;
    }

    .headerVeiw .content .navBox .box .logo {
        margin-top: 0;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .search {
        cursor: pointer;
        background-color: transparent;
        width: 2.1rem;
        padding: 0;
        border-radius: 0;
        margin-left: 2rem;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .search .i {
        width: 100%;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .search .i img:nth-child(2) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .search
        .i
        img:nth-child(1),
    .headerVeiw.open
        .content
        .navBox
        .box
        .itemBoxBox
        .search
        .i
        img:nth-child(1) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .search
        .i
        img:nth-child(2),
    .headerVeiw.open
        .content
        .navBox
        .box
        .itemBoxBox
        .search
        .i
        img:nth-child(2) {
        display: block;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .search .t {
        display: none;
    }
    .headerVeiw.showFixed .content .resourcecenter {
        color: #583492;
    }
    .headerVeiw .content .language {
        font-size: 1rem;
        color: #583492;
    }
    .headerVeiw .content .language .cur {
        line-height: 2.5rem;
        border-radius: 2rem;
        font-weight: bold;
        padding: 0 1rem;
    }
    .headerVeiw .content .language .cur .icon {
        width: 0.6rem;
    }
    .headerVeiw .content .language .selectbox {
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        box-shadow: 0 0.4rem 1.6rem 0 rgba(0, 0, 0, 0.06);
        z-index: 1;
    }
    .headerVeiw .content .language .selectbox a {
        font-size: 1.2rem;
        padding: 0.45rem 1rem;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .menu {
        margin-left: 2rem;
        width: 2.1rem;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .menu img {
        display: block;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .menu img:nth-child(2),
    .headerVeiw .content .navBox .box .itemBoxBox .menu img:nth-child(3) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .menu
        img:nth-child(1),
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .menu
        img:nth-child(3) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .menu
        img:nth-child(2) {
        display: block;
    }
    .headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(1),
    .headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(2) {
        display: none;
    }
    .headerVeiw.open .content .navBox .box .itemBoxBox .menu img:nth-child(3) {
        display: block;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .login {
        margin-left: 2rem;
        width: 2.5rem;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .login img:nth-child(2) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .login
        img:nth-child(1),
    .headerVeiw.open .content .navBox .box .itemBoxBox .login img:nth-child(1) {
        display: none;
    }
    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .login
        img:nth-child(2),
    .headerVeiw.open .content .navBox .box .itemBoxBox .login img:nth-child(2) {
        display: block;
    }
    .headerVeiw.open .content .navBox .box .logo .i:nth-child(2) {
        display: none;
    }
    .headerVeiw.open .content .navBox .box .logo .i:nth-child(1) {
        display: block;
    }
    .headerVeiw .content .navBox .box .itemBoxBox {
        display: flex;
        align-items: center;

        margin-right: 0;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .itemBox {
        display: none;
    }
    .headerVeiw.open .content .navBox .box .itemBoxBox .itemBox {
        position: fixed;
        top: 6rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 6rem);
        background: #ffffff;
        display: block;
    }
    .headerVeiw.open .content .navBox .box .itemBoxBox .itemBox::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 27%;
        height: 100%;
        background: #f5f5f5;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item {
        font-size: 1.4rem;
        color: #222222;
        line-height: 1.5rem;
        width: 27%;
        text-align: center;
        padding: 0;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name {
        padding: 1.2rem;
        position: relative;
        white-space: normal;
        text-align: left;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .name {
        background: #ffffff;
        font-weight: 600;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .name::after {
        content: "";
        position: absolute;
        width: 2px;
        background-color: #f39700;
        left: 0;
        bottom: 0%;
        height: 100%;
        opacity: 0;
        transition: all 0.3s ease;
    }
    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item.on
        .name::after,
    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item:hover
        .name::after {
        opacity: 1;
    }

    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item .childBox {
        display: none;
    }
    .headerVeiw .content .navBox .box .itemBoxBox .itemBox .item.on .childBox {
        display: block;
        position: absolute;
        left: 27%;
        top: 0;
        width: 73%;
        height: 100%;
        max-height: none;
        opacity: 1;
        box-shadow: none;
        backdrop-filter: none;
    }

    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox {
        padding: 0;
        display: block;
    }

    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox
        .clist {
        font-size: 1.3rem;
        color: #222222;
    }
    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox
        .clist
        + .clist {
        margin-left: 0;
    }

    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox
        .clist
        .clistitem {
        /* margin-right: 3rem; */
        height: auto !important;
        font-size: 1.3rem;
        margin-bottom: 0;
        padding: 1.25rem 2rem;
        line-height: 1.5rem;
        white-space: normal;
        width: 100%;
        text-align: left;
    }
    .headerVeiw
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item:nth-child(3)
        .childBox
        .cbox
        .clist {
        width: 100%;
    }

    .headerVeiw.open {
        background-color: #fff;
        box-shadow: 0 0.8rem 1.6rem 0 rgba(0, 0, 0, 0.06);
    }

    .headerVeiw.showFixed .content .navBox .box .itemBoxBox .itemBox .item,
    .headerVeiw.open .content .navBox .box .itemBoxBox .itemBox .item {
        color: #3d3d3d;
    }

    .headerVeiw.showFixed
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox
        .clist,
    .headerVeiw.open
        .content
        .navBox
        .box
        .itemBoxBox
        .itemBox
        .item
        .childBox
        .cbox
        .clist {
        color: #3d3d3d;
    }

    .headerVeiw.showFixed .content .navBox .box .itemBoxBox .search,
    .headerVeiw.open .content .navBox .box .itemBoxBox .search {
        background: transparent;
    }

    .headerVeiw.showFixed .content .navBox .box .itemBoxBox .language .cur,
    .headerVeiw.open .content .navBox .box .itemBoxBox .language .cur {
        background: #583492;
        color: #fff;
    }
    .headerVeiw .userinfo {
        position: relative;
        margin-left: 2rem;
        display: none;
        cursor: pointer;
    }
    .headerVeiw .userinfo .cursor {
        font-size: 0.9rem;
        color: #ffffff;
        max-width: 8rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .headerVeiw.showFixed .userinfo .cursor {
        color: #000;
    }
    .headerVeiw .userinfo .icon {
        width: 0.5rem;
        display: block;
        transform: rotate(-90deg);
    }
    .headerVeiw .userinfo .icon img:last-child {
        display: none;
    }
    .headerVeiw.showFixed .userinfo .icon img:first-child {
        display: none;
    }
    .headerVeiw.showFixed .userinfo .icon img:last-child {
        display: block;
    }
    .headerVeiw .userinfo:hover .icon {
        transform: rotate(90deg);
    }
    .headerVeiw .userinfo .setbox {
        display: none;
        position: absolute;
        top: 100%;
        right: -2rem;
        padding: 0 0.5rem;
        border-radius: 0.5rem;
        background: #ffffff;
    }
    .headerVeiw .userinfo:hover .setbox {
        display: block;
    }
    .headerVeiw .userinfo .setbox .setbtn {
        padding: 0.5rem;
        font-size: 0.7rem;
        color: #000000;
        line-height: 1.1rem;
        text-align: center;
        cursor: pointer;
    }
    .headerVeiw .userinfo .setbox .setbtn + .setbtn {
        border-top: 1px solid #d8d8d8;
    }
}
@media screen and (max-width: 750px) {
    .cookie-policy {
        width: 100%;
    }
    .cookie-policy .content {
        display: block;
        font-size: 1.2rem;
        width: 90%;
        padding: 2rem;
    }
    .cookie-policy .content .tit {
        font-size: 1.4rem;
    }
    .cookie-policy .content .btnbox {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 1rem;
    }
    .cookie-policy .content .btn {
        padding: 0 1rem;
        margin: 0;
        width: 48%;
        line-height: 3.5rem;
        min-width: auto;
    }
    body::-webkit-scrollbar {
        display: none;
    }
    ::-webkit-scrollbar {
        display: none;
    }
    .pc {
        display: none !important;
    }
    .wap {
        display: block !important;
    }
    .bannerBox .videobox {
        position: relative;
        z-index: 1;
    }
    .bannerBox video {
        position: relative;
        z-index: -1;
    }

    .footerView {
        padding: 3.5rem 0;
    }

    .footerView .content {
        width: 90%;
        display: block;
        padding: 0;
        margin: auto;
    }

    .footerView .content .leftbox .info {
        margin-left: 0;
        width: 100%;
    }

    .footerView .content .leftbox .info .title {
        font-size: 1.9rem;
        font-weight: bold;
    }
    .footerView .content .right .flexbox .title {
        font-size: 1.9rem;
    }
    .footerView .content .leftbox .info .itemBox .item {
        font-size: 1.4rem;
        font-weight: 400;
        line-height: 1.4;
    }
    .footerView .content .leftbox .info .itemBox .item a {
        display: inline;
    }

    .footerView .content .right {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 3rem;
    }
    .footerView .content .leftbox .info .itemBox {
        margin-top: 2rem;
    }
    .footerView .content .leftbox .info .itemBox .itemBoxT .iconBox a {
        display: block;
    }
    .footerView .content .leftbox .info .itemBox .itemBoxT .iconBox .i {
        width: 2rem;
    }
    .footerView .content .right .copyright .item {
        margin-bottom: 0.6rem;
        margin-left: 0;
    }
    .footerView .content .right .copyright .item .t {
        font-size: 1rem;
    }
    .footerView .content .right .copyright .item .i {
        width: 1rem;
    }
    .footerView .content .right .copyright .item .i2 {
        width: 3rem;
    }
    .footerView .content .imgBox .i {
        width: 7rem;
        margin-right: 0.6rem;
    }
    .footerView .content .leftbox .info .itemBox .itemBoxT {
        margin-left: 1rem;
    }
    .footerView .content .imgBox .t {
        font-size: 1.1rem;
        color: #999999;
        line-height: 1.7rem;
        text-align: center;
        margin-top: 1rem;
    }

    .footerView .content .right .iconBox .i {
        width: 2.4rem;
        margin-left: 1.25rem;
        cursor: pointer;
    }

    .footerView .content .right .copyright {
        font-size: 1.1rem;
        font-weight: 400;
        color: #999999;
        line-height: 2rem;
        margin-top: 2.5rem;
    }

    .footerView .content .right .copyright a {
        color: #999999;
        margin: 0 0.5rem;
        white-space: normal;
        text-align: right;
    }

    .fixedbox {
        right: 2rem;
        border-radius: 5rem;
    }
    .fixedbox .icon {
        width: 4.5rem;
        display: block;
    }
}
