/*---滚动条默认显示样式--*/ 
::-webkit-scrollbar-thumb{ 
    background-color:#018EE8;   
    height:50px; 
    outline-offset:-2px; 
    outline:2px solid #fff; 
    -webkit-border-radius:4px; 
    border: 2px solid #fff; 
}

/*---鼠标点击滚动条显示样式--*/ 
::-webkit-scrollbar-thumb:hover{ 
    background-color:#018EE8; 
    height:50px; 
    -webkit-border-radius:4px; 
}

/*---滚动条大小--*/ 
::-webkit-scrollbar{ 
    width:2px; 
    height:2px; 
}

/*---滚动框背景样式--*/ 
::-webkit-scrollbar-track-piece{ 
    background-color:#fff; 
    -webkit-border-radius:0; 
}
/*header*/
.public-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    min-width: 320px;
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    z-index: 999;
}

.public-hot{
    color: red;
    font-size: 12px;
    position: absolute;
    right: -8px;
}

.public-header.nofixed {
    position: relative;
}

.public-header .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-header-left {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 20px;
}

.public-header .public-logo {
    width: 130px;
    height: 35px;
    display: flex;
    align-items: center;
}

.public-header .public-logo img {
    width: 100%;
}

.public-nav {
    width: fit-content;
    display: flex;
    justify-content: center;
    margin-left: 20px;
}

.public-nav li {
    padding: 0 5px;
    height: 35px;
    position: relative;
    display: flex;
    justify-content: center;
}

.public-nav li a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 100%;
    font-size: 14px;
    transition: .3s;
}

.public-nav li a:hover {
    color: var(--link);
}

.public-nav li.hover a {
    color: var(--link);
}

.public-nav li:hover dl {
    display: block;
}

.public-nav li dl {
    display: none;
    position: absolute;
    top: 35px;
    width: max-content;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
    border-radius: 5px;
    overflow: hidden;
    animation: movenav .3s;
}

@keyframes movenav
{
    from {transform: translate3d(0,20px,0);opacity: 0;}
    to {transform: translate3d(0,0,0);opacity: 1;}
}

.public-nav li dl dd {
    width: 100%;
    height: 40px;
}

.public-nav li dl dd a:hover {
    background: var(--bg-2);
}

.public-header-right,
.public-header-right-nav {
    display: flex;
}

.public-entry-reg {
    display: flex;
    width: 120px;
    height: 60px;
    justify-content: center;
    align-items: center;
    background: var(--link);
    color: #fff;
    transition: .3s;
}

.public-entry-reg:hover {
    background: var(--link-hover);
    color: #fff;
}

.public-entry-nav {
    display: flex;
    margin-right: 10px;
}

.public-entry-nav a {
    display: flex;
    align-items: center;
    height: 60px;
    font-size: 14px;
    padding: 0 10px;
    margin-right: 10px;
    transition: .3s;
}

.public-entry-nav a:hover {
    color: var(--link);
}

.public-header-right-m-nav {
    display: none;
}

.public-header-right-m-nav-btn {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.public-header-right-m-nav-btn-icon {
    width: 24px;
    height: 24px;
}

.public-header-right-m-nav-btn-icon.user {
    background: url("../img/icon-user.png") no-repeat;
    background-size: cover;
}

.public-header-right-m-nav-btn-icon.user.is-login {
    background: url("../img/icon-user-is.png") no-repeat;
    box-shadow: 0 0 5px rgb(0 102 255 / 30%);
    border-radius: 20px;
}

.public-header-right-m-nav-btn-icon.menu {
    padding-top: 4px;
}

.public-header-right-m-nav-btn-icon.menu span {
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    margin: 0 auto 5px;
    -webkit-transform-origin: 20px;
    transform-origin: 20px;
    transition: background .4s cubic-bezier(0.77, 0.2, 0.05, 1),opacity .45s ease,width .4s,-webkit-transform .4s cubic-bezier(0.77, 0.2, 0.05, 1);
    transition: background .4s cubic-bezier(0.77, 0.2, 0.05, 1),opacity .45s ease,transform .4s cubic-bezier(0.77, 0.2, 0.05, 1),width .4s;
    transition: background .4s cubic-bezier(0.77, 0.2, 0.05, 1),opacity .45s ease,transform .4s cubic-bezier(0.77, 0.2, 0.05, 1),width .4s,-webkit-transform .4s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.public-header-right-m-nav-btn-icon.menu.toggle-animate span {
    opacity:1;
    -webkit-transform:rotate(-45deg);
    transform:rotate(-45deg)
}

.public-header-right-m-nav-btn-icon.menu.toggle-animate span:nth-child(2) {
    opacity:0;
    width: 0;
    -webkit-transform:rotate(0deg);
    transform:rotate(0deg)
}

.public-header-right-m-nav-btn-icon.menu.toggle-animate span:nth-child(3) {
    opacity:1;
    -webkit-transform:rotate(45deg);
    transform:rotate(45deg)
}

.public-header-right-m-nav-btn-icon.menu span:nth-child(3) {
    margin-bottom: 0;
}

.public-header-right-m-nav-dropdown {
    display: none;
    padding: 0 16px;
}

.public-header.hover-user .public-header-right-m-nav-dropdown.user {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: #fff;
    overflow: hidden;
}

.public-header.hover-menu .public-header-right-m-nav-dropdown.menu {
    display: block;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: calc(100% - 60px);
    background: #fff;
    overflow: hidden;
}

.public-entry-m-nav .item {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 14px;
    border-bottom: 1px solid var(--border-1);
}

.public-entry-m-nav .item span {
    color: var(--text-2);
}

.public-entry-m-nav .item.hover {
    color: var(--link);
}

.public-entry-m-nav .tips {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;
    font-size: 14px;
    color: var(--text-3);
}

.public-entry-m-nav-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.public-entry-m-nav-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 8px);
    height: 40px;
    border: 1px solid var(--link);
    color: var(--link);
    font-size: 14px;
}

.public-entry-m-nav-btn a:nth-child(2) {
    background: var(--link);
    color: #fff;
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
    .public-nav li {
        padding: 0;
    }
}

@media screen and (max-width: 992px) {
    .IndexBannerCard .container .item .fr {
        width:unset !important;
    }
    
    .public-index-banner .IndexBannerCard .item{
        justify-content: space-around !important;   
    }
    
    .swiper-slide .container .layer-1{
        background:unset !important;
    }
    .swiper-slide .container .layer-2{
       top:150px !important;
    }
    
    .public-header {
        position: relative;
        box-shadow: 0 0 0;
        border-bottom: 1px solid var(--border-1);
    }

    .public-nav li,
    .public-header-right-nav {
        display: none;
    }

    .public-header-right-m-nav {
        display: flex;
    }

    .public-header.hover-user .public-header-right-m-nav-btn[data-title=user],
    .public-header.hover-menu .public-header-right-m-nav-btn[data-title=user] {
        display: none;
    }
}

/*footer*/

.public-footer {
    padding: 40px 0;
    background: #fff;
}

.public-footer .serve {
    display: flex;
    justify-content: space-between;
}

.public-footer .serve .item {
    width: 20%;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-footer .serve .item i {
    width: 60px;
    height: 60px;
    background-repeat: no-repeat;
    background-size: 60px;
}

.public-footer .serve .item:nth-child(1) i {
    background-image: url("https://mcsqz.stay33.cn/img.php?images=footer-serve-1.png");
}

.public-footer .serve .item:nth-child(2) i {
    background-image: url("https://mcsqz.stay33.cn/img.php?images=footer-serve-2.png");
}

.public-footer .serve .item:nth-child(3) i {
    background-image: url("https://mcsqz.stay33.cn/img.php?images=footer-serve-3.png");
}

.public-footer .serve .item:nth-child(4) i {
    background-image: url("https://mcsqz.stay33.cn/img.php?images=footer-serve-4.png");
}

.public-footer .serve .item>div {
    width: calc(100% - 80px);
    height: 60px;
    display: flex;
    flex-direction: column;
}

.public-footer .serve .item>div em {
    font-size: 22px;
    margin-top: 15px;
}

.public-footer .serve .item>div span {
    font-size: 14px;
    color: var(--text-2);
}

.public-footer .entrance {
    border-top: 1px solid rgb(0 0 0 / 10%);
    margin-top: 40px;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
}

.public-footer .entrance .item {
    width: 20%;
}

.public-footer .entrance .item .title {
    font-size: 15px;
}

.public-footer .entrance .item .links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
}

.public-footer .entrance .item .links a {
    color: var(--text-2);
    font-size: 14px;
    transition: .3s;
    width: fit-content;
}

.public-footer .entrance .item .links a + a {
    margin-top: 15px;
}

.public-footer .entrance .item .links a:hover {
    color: var(--link);
}

.public-footer .entrance .item .pre-sale {
    display: flex;
    flex-direction: column;
}

.public-footer .entrance .item .pre-sale + .pre-sale {
    margin-top: 20px;
}

.public-footer .entrance .item .pre-sale em {
    font-size: 15px;
    margin-bottom: 10px;
}

.public-footer .entrance .item .pre-sale span {
    font-size: 16px;
    color: #000;
}

.public-footer .state {
    border-top: 1px solid rgb(0 0 0 / 10%);
    margin-top: 40px;
    padding-top: 40px;
    font-size: 13px;
    color: var(--text-2);
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
    .public-footer {
        padding: 20px 0;
    }

    .public-footer .serve .item i {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }

    .public-footer .serve .item>div {
        width: calc(100% - 50px);
        justify-content: center;
    }

    .public-footer .serve .item>div em {
        font-size: 18px;
        margin-bottom: 2px;
    }

    .public-footer .serve .item>div span {
        font-size: 12px;
    }

    .public-footer .entrance,
    .public-footer .state {
        margin-top: 20px;
        padding-top: 20px;
    }

    .public-footer .entrance .item .links {
        margin-top: 15px;
    }

    .public-footer .entrance .item .links a {
        font-size: 13px;
    }

    .public-footer .entrance .item .links a + a {
        margin-top: 8px;
    }
}

@media screen and (max-width: 992px) {
    .public-footer {
        padding: 20px 15px;
    }

    .public-footer .serve {
        flex-wrap: wrap;
    }

    .public-footer .serve .item {
        width: 50%;
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .public-footer .serve .item:nth-child(n+3) {
        margin-top: 20px;
    }

    .public-footer .serve .item i {
        width: 40px;
        height: 40px;
        background-size: 40px;
    }

    .public-footer .serve .item>div {
        width: 100%;
        height: auto;
        align-items: center;
        margin-top: 10px;
    }

    .public-footer .serve .item>div em {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .public-footer .entrance,
    .public-footer .state {
        margin-top: 20px;
        padding-top: 20px;
    }

    .public-footer .entrance {
        flex-direction: column;
    }

    .public-footer .entrance .item {
        width: 100%;
        height: 45px;
        background: var(--bg-2);
        border-radius: 4px;
        overflow: hidden;
    }

    .public-footer .entrance .item + .item {
        margin-top: 5px;
    }

    .public-footer .entrance .item .title {
        width: 100%;
        height: 45px;
        display: flex;
        align-items: center;
        position: relative;
        text-indent: 15px;
        border-radius: 4px;
        background: var(--bg-3);
        box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%);
    }

    .public-footer .entrance .item .title:after {
        content: "";
        position: absolute;
        right: 15px;
        top: 50%;
        margin-top: -8px;
        box-sizing: border-box;
        width: 10px;
        height: 10px;
        border-right: 2px solid #999;
        border-bottom: 2px solid #999;
        -webkit-transform: rotate3d(0, 0, 1,
        45deg);
        transform: rotate3d(0, 0, 1,
        45deg);
        transition: -webkit-transform .2s linear;
        transition: transform .2s linear;
        transition: transform .2s linear, -webkit-transform .2s linear;
    }

    .public-footer .entrance .item .links {
        margin-top: 0;
        padding: 20px 15px;
    }

    .public-footer .entrance .item .links a {
        width: 100%;
        height: 30px;
        line-height: 30px;
    }

    .public-footer .entrance .item.hover {
        height: auto;
    }

    .public-footer .entrance .item.hover .title {
        color: var(--link);
    }

    .public-footer .entrance .item.hover .title:after {
        -webkit-transform: rotate3d(0, 0, 1, -135deg);
        transform: rotate3d(0, 0, 1, -135deg);
        margin-top: -2px;
        border-right: 2px solid var(--link);
        border-bottom: 2px solid var(--link);
    }

    .public-footer .entrance .item:nth-child(4) {
        height: auto;
        background: transparent;
        overflow: initial;
        display: none;
    }

    .public-footer .entrance .item .pre-sale {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: 40px;
        margin-top: 20px;
        background: var(--link);
        border-radius: 4px;
        box-shadow: 0px 5px 10px 0 rgb(55 99 170 / 20%);
    }

    .public-footer .entrance .item .pre-sale em {
        margin: 0;
        font-size: 14px;
        color: #fff;
        margin-right: 5px;
    }

    .public-footer .entrance .item .pre-sale span {
        font-size: 14px;
        color: #fff;
    }
}

/*index*/

.public-index-banner {
    background: var(--bg-2);
    height: 460px;
    position: relative;
}

.public-index-banner .IndexBannerSwiper {
    width: 100%;
    height: 460px;
}

.public-index-banner .swiper-slide {
    width: 100%;
    height: 460px;
    position: relative;
}

.public-index-banner .common-banner {
    background: url("../img/banner-common-bg.png") no-repeat;
    background-position: top center;
}

.public-index-banner .common-banner .container {
    height: 400px;
    position: relative;
}

.public-index-banner .swiper-slide.common-banner .layer-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat!important;
    background-position: right 50px center!important;
}

.public-index-banner .swiper-slide.common-banner .layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 80px 0;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .bt {
    color: var(--text-1);
    font-size: 46px;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .bt-m {
    display: none;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .info-m {
    display: none;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .info p {
    color: var(--text-1);
    font-size: 15px;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .but {
    display: flex;
    margin-top: 40px;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .but a {
    display: block;
    padding: 10px 40px;
    color: #fff;
    font-size: 15px;
    background: var(--link);
    border: 2px solid transparent;
    transition: .3s;
}

.public-index-banner .swiper-slide.common-banner .layer-2 .but a:nth-child(1) {
    box-shadow: 2px 2px 8px 0 rgb(0 102 255 / 30%);
}

.public-index-banner .swiper-slide.common-banner .layer-2 .but a:nth-child(2) {
    border: 2px solid var(--link);
    background: transparent;
    color: var(--link);
}

.public-index-banner .swiper-slide.common-banner .layer-2 .but a:hover {
    color: #fff;
    background: var(--link-hover);
    border: 2px solid var(--link-hover);
}

.public-index-banner .swiper-slide .layer-1{
    transform:translateY(200px);
    opacity:0;
    transition:all .2s;
}

.public-index-banner .ani-slide .layer-1{
    transform:translateY(0);
    opacity:1;
}

.public-index-banner .swiper-slide .layer-2{
    transform:translateY(0);
    opacity:0;
    transition:all .4s;}

.public-index-banner .ani-slide .layer-2{
    transform:translateY(0);
    opacity:1;
}

.public-index-banner .pic-banner .container {
    height: 400px;
}

.public-index-banner .pic-banner .container .pic-banner-pc {
    width: 100%;
    display: flex;
    justify-content: center;
}

.public-index-banner .pic-banner .container .pic-banner-pc img {
    margin: 0 auto;
    width: 100%;
}

.public-index-banner .pic-banner .container .pic-banner-wap {
    display: none;
}

.public-index-banner .banner-pagination {
    position: relative;
}

.public-index-banner .swiper-pagination {
    bottom: 80px!important;
    text-align: left;
}

.public-index-banner .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: var(--bg-black);
    opacity: .2;
}

.public-index-banner .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--link);
    opacity: 1;
}

.public-index-banner .IndexBannerCard {
    width: 100%;
    height: 120px;
    position: absolute;
    bottom: -70px;
    z-index: 10;
}

.public-index-banner .IndexBannerCard .container {
    display: flex;
    justify-content: space-between;
}

.public-index-banner .IndexBannerCard .item {
    width: 24%;
    height: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    box-shadow: 1px 1px 8px 0 rgb(133 170 55 / 14%);
    transition: transform .3s;
}

.public-index-banner .IndexBannerCard .item:hover {
    transform:translateY(-10px);
}

.public-index-banner .IndexBannerCard .item .fl {
    width: 75px;
    height: 75px;
}

/*.public-index-banner .IndexBannerCard .item:nth-child(1) .fl {*/
/*    background: url("https://mcsqz.stay33.cn/img.php?images=bannericon1.png") center no-repeat;*/
/*    background-size: 70%;*/
/*}*/
.public-index-banner .IndexBannerCard .item:nth-child(1) .fl {
    background: url("https://mcsqz.stay33.cn/img.php?images=bannericon1.png") center no-repeat;
    background-size: 70%;
}

.public-index-banner .IndexBannerCard .item:nth-child(2) .fl {
    background: url("https://mcsqz.stay33.cn/img.php?images=bannericon2.png") center no-repeat;
    background-size: 70%;
}

.public-index-banner .IndexBannerCard .item:nth-child(3) .fl {
    background: url("https://mcsqz.stay33.cn/img.php?images=bannericon3.png") center no-repeat;
    background-size: 70%;
}

.public-index-banner .IndexBannerCard .item:nth-child(4) .fl {
    background: url("https://mcsqz.stay33.cn/img.php?images=bannericon4.png") center no-repeat;
    background-size: 70%;
}

.public-index-banner .IndexBannerCard .item .fr {
    width: calc(100% - 100px);
}

.public-index-banner .IndexBannerCard .item .fr p:nth-child(1) {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-1);
}

.public-index-banner .IndexBannerCard .item .fr p:nth-child(2) {
    font-size: 13px;
    margin-top: 15px;
    color: var(--text-3);
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
    .public-index-banner {
        height: 380px;
    }

    .public-index-banner .IndexBannerSwiper,
    .public-index-banner .swiper-slide {
        height: 380px;
    }

    .public-index-banner .swiper-slide.common-banner .layer-1 {
        background-size: 27%!important;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .bt {
        font-size: 36px;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .but a {
        padding: 8px 30px;
    }

    .public-index-banner .swiper-pagination {
        bottom: 60px!important;
    }

    .public-index-banner .IndexBannerCard {
        height: auto;
        bottom: -40px;
    }

    .public-index-banner .IndexBannerCard .item .fl {
        width: 42px;
        height: 42px;
    }

    .public-index-banner .IndexBannerCard .item .fr {
        width: calc(100% - 56px);
        display: flex;
        align-items: center;
    }

    .public-index-banner .IndexBannerCard .item .fr p:nth-child(1) {
        font-size: 16px;
    }

    .public-index-banner .IndexBannerCard .item .fr p:nth-child(2) {
        display: none;
    }
}

@media screen and (max-width: 992px) {
    .public-index-banner {
        margin-top: 0;
        height: 380px;
    }

    .public-index-banner .IndexBannerSwiper {
        height: 430px;
    }

    .public-index-banner .common-banner .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .public-index-banner .swiper-slide.common-banner .layer-1 {
        top: 20px;
        width: 180px;
        height: 180px;
        background-size: 100%!important;
        background-position: center!important;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 {
        top: 210px;
        padding: 0;
        text-align: center;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .bt {
        display: none;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .bt-m {
        display: block;
        font-size: 24px;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .info {
        display: none;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .info-m {
        display: block;
        margin-top: 10px;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .info-m p {
        font-size: 13px;
        color: var(--text-2);
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .but {
        display: none;
    }

    .public-index-banner .swiper-slide.common-banner .layer-2 .info p:nth-child(2) {
        display: none;
    }

    .public-index-banner .pic-banner .container .pic-banner-pc {
        display: none;
    }

    .public-index-banner .pic-banner .container .pic-banner-wap {
        width: 100%;
        height: 320px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .public-index-banner .pic-banner .container .pic-banner-wap img {
        width: 100%;
    }

    .public-index-banner .swiper-pagination {
        bottom: 130px!important;
        text-align: center;
    }

    .public-index-banner .swiper-pagination-bullet {
        width: 30px;
    }

    .public-index-banner .IndexBannerCard {
        height: auto;
        bottom: -70px;
        background: rgb(255 255 255 / 0%);
        top: 260;
        border-top: 0px solid var(--border-2);
    }

    .public-index-banner .IndexBannerCard .container {
        flex-wrap: wrap;
        background-color: rgb(255 255 255 / 0%);
    }

    .public-index-banner .IndexBannerCard .item {
        width: 45%;
        margin-left: auto;
        margin-right: auto;
        box-shadow: rgba(0, 0, 0, 0.01) 0px 1px 2px;
        padding: 8px;
        border-radius: 8px;
        border-bottom: 1px solid var(--border-2);
        background-color: rgb(255 255 255 / 70%);
    }

    .public-index-banner .IndexBannerCard .item:hover {
        transform:translateY(0px);
    }

    .public-index-banner .IndexBannerCard .item:nth-child(2n) {
        border-left: 1px solid var(--border-2);
    }

    .public-index-banner .IndexBannerCard .item .fl {
        width: 36px;
        height: 36px;
    }

    .public-index-banner .IndexBannerCard .item .fr {
        display: flex;
        align-items: center;
        height: 50%;
    }

    .public-index-banner .IndexBannerCard .item .fr p:nth-child(1) {
        font-size: 14px;
        color: #5a5a5a;
    }

    .public-index-banner .IndexBannerCard .item .fr p:nth-child(2) {
        display: none;
    }
}

.public-index-function {
    margin: 80px 0;
}

.public-index-function>.bt {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 2500px) {
    .public-index-function>.bt {
        width: 100%;
        padding: 110px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 2080px) {
    .public-index-function>.bt {
        width: 100%;
        padding: 40px 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.public-index-function>.bt h2 {
    font-size: 28px;
    font-weight: normal;
}

.public-index-function>.bt a {
    color: var(--link);
    font-size: 14px;
    transition: .3s;
    position: relative;
    display: flex;
    align-items: center;
}

.public-index-function>.bt a:hover {
    color: var(--link-hover);
}

.public-index-function>.bt a i {
    transition: .3s;
    transform: translateX(5px);
}

.public-index-function>.bt a:hover i {
    transform: translateX(10px);
}

.public-index-function>.bt a .bt-icon-right {
    transform: rotate(-90deg);
}

.public-index-function>.bt a .bt-icon-right path {
    color: var(--link);
}

.public-index-function>.bt a:hover  .bt-icon-right path {
    color: var(--link-hover);
}

.public-index-function .FunctionCard {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -5px;
}

.public-index-function .FunctionCard>div {
    padding: 0 5px;
}

.public-index-function .FunctionCard>div:nth-child(n+7) {
    margin-top: 30px;
}

.public-index-function .FunctionCard .item {
    height: 160px;
    background-image: linear-gradient(0deg,#fff,#f3f5f8);
    border: 2px solid #fff;
    box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%), -8px -8px 20px 0 #fff;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.public-index-function .FunctionCard .item:hover {
    background: var(--bg-2);
    box-shadow: inset 8px 8px 20px 0 rgb(55 99 170 / 11%), inset -8px -8px 20px 0 #fff;
}

.public-index-function .FunctionCard .item .icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    margin-bottom: 10px;
}

.icon-enter {
    animation: entry-icon-enter .2s steps(9) forwards;
}

.icon-leave {
    animation: entry-icon-leave .2s steps(9) forwards;
}

@keyframes entry-icon-enter {
    0% {background-position-y: 0px;}
    to {background-position-y: -576px;}
}

@keyframes entry-icon-leave {
    0% {background-position-y: -576px;}
    to {background-position-y: 0px;}
}

.public-index-function .FunctionCard .item .info {
    font-size: 15px;
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
    .public-index-function .FunctionCard>div:nth-child(5) {
        margin-top: 0px!important;
    }

    .public-index-function .FunctionCard>div:nth-child(6) {
        margin-top: 0px!important;
    }

    .public-index-function .FunctionCard>div:nth-child(n+7) {
        margin-top: 30px;
    }
}

@media screen and (max-width: 992px) {
    .public-index-function {
        margin: 60px 0;
    }

    .public-index-function>.bt {
        padding: 20px 15px;
    }

    .public-index-function>.bt h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .public-index-function>.bt a {
        margin-top: 10px;
    }

    .public-index-function .FunctionCard {
        padding: 0 15px;
        margin: 0;
    }

    .public-index-function .FunctionCard>div:nth-child(n+5) {
        margin-top: 10px;
    }

    .public-index-function .FunctionCard .item {
        height: 80px;
    }

    .public-index-function .FunctionCard .item .icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0;
    }

    .public-index-function .FunctionCard .item .info {
        font-size: 14px;
    }

    .icon-enter {
        animation-play-state:paused;
    }

    .icon-leave {
        animation-play-state:paused;
    }

    @keyframes entry-icon-enter {
        0% {background-position-y: 0px;}
        to {background-position-y: 0px;}
    }

    @keyframes entry-icon-leave {
        0% {background-position-y: 0px;}
        to {background-position-y: 0px;}
    }
}

.public-index-demo {
    width: 100%;
    padding: 80px 0;
    background: var(--bg-black);
}

.public-index-demo .bt {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-index-demo .bt h2 {
    font-size: 28px;
    color: #fff;
    font-weight: normal;
}

.public-index-demo .IndexDemo {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content:space-around;
}

.public-index-demo .IndexDemo .left {
    width: 40%;
    height: 300px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.public-index-demo .IndexDemo .left .item {
    width: 48%;
    height: 140px;
    background: var(--bg-black);
    box-shadow: 8px 8px 20px 0 rgb(18 21 26 / 60%), -8px -8px 20px 0 rgb(54 62 77 / 50%), inset 0 4px 20px 0 rgb(36 41 51 / 50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.public-index-demo .IndexDemo .left .item.hover {
    box-shadow: inset 8px 8px 20px 0 rgb(18 21 26 / 60%), inset -8px -8px 20px 0 rgb(54 62 77 / 50%);
}

.public-index-demo .IndexDemo .left .item .icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    margin-bottom: 10px;
}

.public-index-demo .IndexDemo .left .item .title {
    color: #fff;
    font-size: 18px;
}

.public-index-demo .IndexDemo .right {
    padding: 14px;
    box-shadow: 8px 8px 20px 0 rgb(18 21 26 / 60%), -8px -8px 20px 0 rgb(54 62 77 / 50%), inset 0 4px 20px 0 rgb(36 41 51 / 50%);
}

.public-index-demo .IndexDemo .right .img {
    display: none;
    width: 100%;
    height: 272px;
    overflow: hidden;
    position: relative;
}

.public-index-demo .IndexDemo .right .img:after {
    content: "演示图";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    opacity: .2;
}

.public-index-demo .IndexDemo .right .img.ing {
    display: block;
    animation: demo-ing .2s;
}

.public-index-demo .IndexDemo .right .img img {
    width: 100%;
    height: 100%;
}

@keyframes demo-ing {
    0% {opacity: 0;}
    to {opacity: 1;}
}

@media screen and (max-width: 992px) {
    .public-index-demo {
        padding: 0 0 40px;
    }

    .public-index-demo .bt {
        padding: 20px 15px;
    }

    .public-index-demo .bt h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .public-index-demo .IndexDemo {
        margin-top: 0px;
        padding: 0 15px;
        flex-direction: column;
    }

    .public-index-demo .IndexDemo .left {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .public-index-demo .IndexDemo .left .item {
        height: 80px;
    }

    .public-index-demo .IndexDemo .left .item .icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0px
    }

    .public-index-demo .IndexDemo .left .item .title {
        font-size: 16px;
    }

    .public-index-demo .IndexDemo .right {
        width: 100%;
    }

    .public-index-demo .IndexDemo .right .img {
        height: auto;
    }
}

.public-index-privilege {
    width: 100%;
    padding: 80px 0;
    height: 600px;
    background-image: url("../img/privilege-bg.png");
    background-color: var(--bg-2);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: top;
}

.public-index-privilege .bt {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-index-privilege .bt h2 {
    font-size: 28px;
    font-weight: normal;
}

.public-index-privilege .bt p {
    font-size: 14px;
    margin-top: 20px;
    color: var(--text-2);
}

.public-index-privilege .IndexPrivilegeCard {
    width: 80%;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.public-index-privilege .IndexPrivilegeCard .left {
    width: 30%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.public-index-privilege .IndexPrivilegeCard .left .item {
    width: 46%;
    height: 140px;
    box-shadow: 0 10px 20px rgb(0 102 255 / 10%);
    background: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.public-index-privilege .IndexPrivilegeCard .left .item.hover .title {
    color: var(--link);
}

.public-index-privilege .IndexPrivilegeCard .left .item .icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: top;
    margin-bottom: 10px;
}

.public-index-privilege .IndexPrivilegeCard .left .item .title {
    font-size: 16px;
}

.public-index-privilege .IndexPrivilegeCard .right {
    width: 68%;
    height: 300px;
    background: #fff;
    box-shadow: 0 10px 20px rgb(0 102 255 / 10%);
    border-radius: 8px;
    overflow: hidden;
}

.public-index-privilege .IndexPrivilegeCard .right .item {
    width: 100%;
    height: 100%;
    padding: 60px;
    display: none;
}

.public-index-privilege .IndexPrivilegeCard .right .item:nth-child(1) {
    background: url("../img/privilegecard-1.png") no-repeat 100%;
}

.public-index-privilege .IndexPrivilegeCard .right .item:nth-child(2) {
    background: url("../img/privilegecard-2.png") no-repeat 100%;
}

.public-index-privilege .IndexPrivilegeCard .right .item:nth-child(3) {
    background: url("../img/privilegecard-3.png") no-repeat 100%;
}

.public-index-privilege .IndexPrivilegeCard .right .item:nth-child(4) {
    background: url("../img/privilegecard-4.png") no-repeat 100%;
}

.public-index-privilege .IndexPrivilegeCard .right .item.ing {
    display: block;
}

.public-index-privilege .IndexPrivilegeCard .right .item .title {
    font-size: 28px;
}

.public-index-privilege .IndexPrivilegeCard .right .item .info {
    font-size: 16px;
    color: var(--text-3);
    margin-top: 15px;
    line-height: 30px;
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts {
    display: flex;
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts a {
    width: 120px;
    height: 40px;
    margin-top: 30px;
    margin-right: 15px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts a:nth-child(1) {
    background: var(--link);
    color: #fff;
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts a:nth-child(1):hover {
    background: var(--link-hover);
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts a:nth-child(2) {
    border: 1px solid var(--link);
    color: var(--link);
}

.public-index-privilege .IndexPrivilegeCard .right .item .buts a:nth-child(2):hover {
    background: rgb(0 102 255 / 5%);
}

@media screen and (max-width: 992px) {
    .public-index-privilege {
        padding: 40px 0 10px;
        height: auto;
    }

    .public-index-privilege .bt h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .public-index-privilege .bt p {
        margin-top: 5px;
    }

    .public-index-privilege .IndexPrivilegeCard {
        flex-direction: column;
        margin: 20px auto 40px;
        width: calc(100% - 30px);
    }

    .public-index-privilege .IndexPrivilegeCard .left {
        width: 100%;
    }

    .public-index-privilege .IndexPrivilegeCard .left .item {
        width: calc(50% - 8px);
        flex-direction: row;
        height: 60px;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .public-index-privilege .IndexPrivilegeCard .left .item .icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0;
    }

    .public-index-privilege .IndexPrivilegeCard .left .item .title {
        margin-left: 10px;
    }

    .public-index-privilege .IndexPrivilegeCard .right {
        width: 100%;
        margin-top: 20px;
    }

    .public-index-privilege .IndexPrivilegeCard .right .item {
        padding: 30px;
    }
}

.public-index-news {
    width: 100%;
    padding: 80px 0 0;
}

.public-index-news .bt {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-index-news .bt h2 {
    font-size: 28px;
    font-weight: normal;
}

.public-index-news .IndexNewsUl {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 80px;
}

.public-index-news .IndexNewsUl .card {
    width: 50%;
    position: relative;
    overflow: hidden;
}

.public-index-news .IndexNewsUl .card:hover .bg {
    transform: scale(1);
    opacity: 1;
    background-color: var(--bg-2);
}

.public-index-news .IndexNewsUl .card .bg {
    width: 100%;
    position: absolute;
    height: 300px;
    transform: scale(1.2);
    background: hsla(0,0%,100%,0);
    opacity: 0;
    transform-origin: 50% 50%;
    transition: transform .5s cubic-bezier(0.22, 0.61, 0.36, 1),opacity .5s cubic-bezier(.215,.61,.355,1);
}

.public-index-news .IndexNewsUl .card.left {
    border-top: 1px solid var(--border-1);
    border-left: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
    margin-bottom: 15px;
}

.public-index-news .IndexNewsUl .card.right {
    border-right: 1px solid var(--border-1);
    border-top: 1px solid var(--border-1);
    border-left: 1px solid var(--border-1);
    border-bottom: 1px solid var(--border-1);
    margin-bottom: 15px;
}

.public-index-news .IndexNewsUl .card ul {
    position: relative;
    padding: 40px;
    z-index: 9;
}

.public-index-news .IndexNewsUl .card ul .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.public-index-news .IndexNewsUl .card ul .title span {
    font-size: 18px;
    font-weight: bold;
}

.public-index-news .IndexNewsUl .card ul .title a {
    width: 80px;
    font-size: 14px;
    color: var(--text-2);
    display: flex;
    justify-content: center;
}

.public-index-news .IndexNewsUl .card ul .title a i {
    transform: translateX(5px);
    transition: .3s;
}

.public-index-news .IndexNewsUl .card ul .title a .bt-icon-right {
    transform: rotate(-90deg);
}

.public-index-news .IndexNewsUl .card ul .title a .bt-icon-right path {
    color: var(--text-2);
}

.public-index-news .IndexNewsUl .card ul .title a:hover i {
    transform: translateX(10px);
}

.public-index-news .IndexNewsUl .card ul li {
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}

.public-index-news .IndexNewsUl .card ul li:hover a {
    color: var(--link);
}

.public-index-news .IndexNewsUl .card ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--link);
    transition: .5s;
}

.public-index-news .IndexNewsUl .card ul li:hover a:after {
    width: 100%;
}

.public-index-news .IndexNewsUl .card ul li a {
    max-width: calc(100% - 80px);
    color: var(--text-2);
    position: relative;
    transition: .3s;
}

.public-index-news .IndexNewsUl .card ul li span {
    width: 100px;
    text-align: center;
    color: var(--text-3);
}

@media screen and (max-width: 992px) {
    .public-index-news {
        padding: 40px 0 0;
    }

    .public-index-news .bt h2 {
        font-size: 20px;
        line-height: 28px;
    }

    .public-index-news .IndexNewsUl {
        margin-top: 20px;
    }

    .public-index-news .IndexNewsUl .card {
        width: 100%;
    }

    .public-index-news .IndexNewsUl .card .bg {
        opacity: 1;
        transform: scale(1);
        background-color: var(--bg-2);
        background-position-x: 20%;
    }

    .public-index-news .IndexNewsUl .card ul {
        padding: 20px;
    }

    .public-index-news .IndexNewsUl .card ul .title span {
        font-size: 16px;
    }

    .public-index-news .IndexNewsUl .card ul .title a {
        justify-content: flex-end;
    }

    .public-index-news .IndexNewsUl .card ul li a {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 14px;
    }

    .public-index-news .IndexNewsUl .card ul li span {
        text-align: right;
    }
}

.public-index-please {
    width: 100%;
    height: 125px;
    background-color: var(--bg-black);
    background-image: url("https://cloudcache.tencent-cloud.com/qcloud/ui/static/tcloud_operation/775bbde4-325f-40bb-9943-34bf15a80197.jpg");
    background-repeat: no-repeat;
    background-position: top center;
}

.public-index-please .container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.public-index-please .container a {
    width: 200px;
    height: 45px;
    background: var(--link);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.public-index-please .container a:hover {
    background: var(--link-hover);
}

@media screen and (max-width: 992px) {
    .public-index-please {
        height: 140px;
        background-position: center;
    }
}

/*doc*/
.public-doc {
    margin: 65px;
    display: flex;
    justify-content: space-between;
}

.public-doc-nav {
    display: none;
}

.public-doc-left {
    width: 180px;
    display: flex;
    flex-direction: column;
}

.public-doc-left .close-m {
    display: none;
}

.public-doc-left a {
    display: flex;
    align-items: center;
    height: 40px;
    transition: .3s;
    padding-left: 10px;
    margin-bottom: 3px;
}

.public-doc-left a.parent {
    color: #333;
}

.public-doc-left a.item {
    color: var(--text-2);
    font-size: 14px;
    padding-left: 20px;
}

.public-doc-left a.parent:hover,
.public-doc-left a.item:hover {
    color: var(--link);
}

.public-doc-left a.hover {
    color: var(--link);
    background: rgb(0 102 255 / 5%)
}

.public-doc-right {
    width: 100%;
    padding-left: 20px;
}

.public-doc-head {
    padding: 20px 0;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
    text-align: center;
}

.announce-details-time{
    margin-top: 20px;
}

.public-doc-title {
    font-size: 26px;
    font-weight: normal;
}

.public-doc-content {
    margin-top: 20px;
    width: 100%;
    overflow: hidden;
}

.public-doc-content img,
.public-doc-content video {
    width:100%;
    height: 100%;
}

.public-doc-content blockquote {
    background: rgb(255 87 34 / 10%);
    border-left: 3px solid #ff5722;
    padding: 10px;
    font-size: 16px;
}

.public-doc-content blockquote code {
    color: #ff5722;
}

.public-doc-content h2 {
    margin: 10px 0;
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(0 0 0 / 5%);
}

.public-doc-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-2);
}

.public-doc-content a {
    color: var(--link);
    word-break: break-all;
}

.public-doc-content ul,
.public-doc-content ul li {
    list-style: initial;
    padding-left: 20px;
}

.public-doc-content ul li {
    line-height: 2;
    color: var(--text-2);
    padding: initial;
}

.public-doc-content ul li::marker {
    font-size: 12px;
    color: var(--text-2);
}

@media screen and (max-width: 992px) {
    .public-doc {
        margin: 20px 0;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-1);
    }

    .public-doc-nav {
        display: flex;
        width: 100%;
        height: 40px;
        padding: 0 15px;
        background: #fff;
        border-bottom: 1px solid var(--border-1);
        justify-content: space-between;
        align-items: center;
        top: 0;
    }

    .public-doc-nav .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        line-height: 24px;
        color: rgb(130 130 130);
    }

    .public-doc-nav .menu i {
        width: 18px;
        height: 18px;
        padding-top: 2px;
        margin-right: 6px;
    }

    .public-doc-nav .menu i span {
        display: block;
        width: 16px;
        height: 2px;
        margin: 0 auto 4px;
        background: rgb(130 130 130);
    }

    .public-doc-nav .menu span:nth-child(3) {
        margin-bottom: 0;
    }

    .public-doc-nav .top {
        font-size: 12px;
        height: 24px;
        line-height: 24px;
        color: rgb(130 130 130);
    }

    .public-doc-left {
        display: none;
    }

    .public-doc-left.hover {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1001;
    }

    .public-doc-left.hover .wrap {
        width: 70%;
        max-width: 320px;
        height: 100%;
        background: #fff;
    }

    .public-doc-left a {
        font-size: 13px!important;
    }

    .public-doc-left.hover .close-m {
        display: block;
        width: calc(100% - 320px);
        min-width: 30%;
        height: 100%;
        background: rgb(0 0 0 / 50%);
    }

    .public-doc-right {
        width: 100%;
        padding: 0 15px;
        border-left: 0;
    }
}

/*price*/

.public-price-header {
    margin-top: 0px;
    width: 100%;
    padding: 80px 0;
    background: url("../img/price-bg.png") no-repeat;
    background-position: top;
    background-size: auto 700px;
}

.public-price-header-wrap {
    display: flex;
    justify-content: space-between;
}

.public-price-header-wrap .left {
    width: calc(100% - 360px);
}

.public-price-header-wrap .left h1 {
    font-size: 42px;
    font-weight: normal;
}

.public-price-header-wrap .left .introduce {
    margin-top: 20px;
    line-height: 1.8;
    font-size: 14px;
    color: var(--text-2);
}

.public-price-header-wrap .left .buts {
    display: flex;
    margin-top: 20px;
}

.public-price-header-wrap .left .buts a {
    display: flex;
    height: 40px;
    padding: 0 30px;
    margin-right: 20px;
    justify-content: center;
    align-items: center;
    background: var(--link);
    color: #fff;
    transition: .3s;
}

.public-price-header-wrap .left .buts a:hover {
    background: var(--link-hover);
    color: #fff;
}

.public-price-header-wrap .left .buts a:nth-child(2) {
    background: #fff;
    color: var(--text-1);
    box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%);
}

.public-price-header-wrap .left .buts a:nth-child(2):hover {
    color: var(--link);
}

.public-price-header-wrap .right {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 180px;
    background-image: url("../img/price-icon.png");
    background-repeat: no-repeat;
    background-size: 180px;
    background-position-x: center;
}

.public-price-header-wrap .right .public-price-header-icon {
    width: 66px;
    height: 81px;
    background: url("../img/price-icon-i.png") no-repeat;
    background-size: 100%;
    animation: price-header-icon-animation 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes price-header-icon-animation {
    0% {transform: translateY(0);}
    50% {transform: translateY(-20px);}
    100% {transform: translateY(0);}
}

@media screen and (max-width: 992px) {
    .public-price-header {
        padding: 40px 0;
    }

    .public-price-header-wrap .left {
        width: 100%;
        padding: 0 15px;
    }

    .public-price-header-wrap .left h1 {
        text-align: center;
        font-size: 28px;
    }

    .public-price-header-wrap .left .introduce {
        text-align: center;
    }

    .public-price-header-wrap .left .buts {
        justify-content: space-between;
    }

    .public-price-header-wrap .left .buts a {
        width: calc(50% - 8px);
        margin-right: 0;
    }

    .public-price-header-wrap .right {
        display: none;
    }
}

.public-price-nav {
    width: 100%;
    height: 50px;
    background: #fff;
    box-shadow: 0 2px 4px 0 rgb(0 0 0 / 10%);
    z-index: 98;
}

.public-price-nav.fixed {
    position: fixed;
    top: 0px;
}

.public-price-nav .wrap {
    display: flex;
}

.public-price-nav .wrap>div {
    margin-right: 20px;
    padding: 0 20px;
    display: flex;
    height: 50px;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    border-bottom: 2px solid transparent;
}

.public-price-nav .wrap>div:hover {
    color: var(--link);
}

.public-price-nav .wrap>div.ing {
    color: var(--link);
    border-bottom: 2px solid var(--link);
}

@media screen and (max-width: 992px) {
    .public-price-nav {
        height: 40px;
    }

    .public-price-nav .wrap {
        overflow-y: hidden;
    }

    .public-price-nav .wrap::-webkit-scrollbar {
        display:none
    }

    .public-price-nav .wrap>div {
        white-space: nowrap;
        height: 40px;
        padding: 0 15px;
        margin-right: 0px;
    }
}

.public-price-content {
    margin-top: 20px;
}

.public-price-content-title {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.public-price-content-title .title {
    font-size: 28px;
    font-weight: normal;
}

.public-price-content-title p {
    font-size: 14px;
    margin-top: 20px;
    color: var(--text-2);
}

.public-price-content-title a {
    color: var(--link);
    font-size: 14px;
    transition: .3s;
    position: relative;
    display: flex;
    align-items: center;
}

.public-price-content-title a:hover {
    color: var(--link-hover);
}

.public-price-content-title a i {
    transition: .3s;
    transform: translateX(5px);
}

.public-price-content-title a:hover i {
    transform: translateX(10px);
}

.public-price-content-title a .bt-icon-right {
    transform: rotate(-90deg);
}

.public-price-content-title a .bt-icon-right path {
    color: var(--link);
}

.public-price-content-title a:hover .bt-icon-right path {
    color: var(--link-hover);
}

@media screen and (max-width: 992px) {
    .public-price-content-title .title {
        font-size: 20px;
        line-height: 28px;
    }

    .public-price-content-title a {
        margin-top: 10px;
    }
}

.public-price-content-activity {
    padding: 40px 0;
    background: #fff;
}

.public-price-content-activity-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.public-price-content-activity-wrap .item {
    width: 32%;
    height: 50px;
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
    transition: .3s;
    border: 1px solid var(--border-2);
}

.public-price-content-activity-wrap .item:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.public-price-content-activity-wrap .item .item-type {
    width: 60px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    color: #06f;
    background: rgb(0 102 255 / 5%);
}

.public-price-content-activity-wrap .item .item-title {
    width: calc(100% - 70px);
    color: var(--text-2);
    font-size: 13px;
    transition: .3s;
}

.public-price-content-activity-wrap .item .item-title:hover {
    color: var(--link);
}

.public-price-content-activity-wrap .item.lower {
    cursor: not-allowed;
    background: rgb(0 0 0 / 2%);
    border-color: transparent;
}

.public-price-content-activity-wrap .item.lower .item-type {
    background: var(--bg-2);
    color: var(--text-3);
}

.public-price-content-activity-wrap .item.lower .item-title {
    color: var(--text-3);
}

.public-price-content-activity-wrap .item.lower .item-title:hover {
    color: var(--text-3);
}

@media screen and (max-width: 992px) {
    .public-price-content-activity {
        padding: 20px 15px 30px;
    }

    .public-price-content-activity-wrap {
        margin-top: 20px;
    }

    .public-price-content-activity-wrap .item {
        width: 100%;
        height: 40px;
    }
}

    .public-price-content-price {
    padding: 40px 0;
    background: var(--bg-2);
}

.public-price-content-price-content>.type {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-1);
}

.public-price-content-price-content>.type .item {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 20px;
    font-size: 15px;
    position: relative;
    cursor: pointer;
}

.public-price-content-price-content>.type .item::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 50%;
    width: 0%;
    height: 2px;
    transform: translateX(-50%);
}

.public-price-content-price-content>.type .item:hover::after {
    width: 100%;
    background: rgb(0 102 255 / 50%);
    animation: price-content-price-animation .2s;
}

.public-price-content-price-content>.type .item.hover {
    color: var(--link);
}

.public-price-content-price-content>.type .item.hover::after {
    width: 100%;
    background: var(--link);
    animation: price-content-price-animation .2s;
}

@keyframes price-content-price-animation {
    0% {width: 0%;}
    100% {width: 100%;}
}

.public-price-content-price-content>.wrap>.item {
    display: none;
    justify-content: center;
    flex-wrap: wrap;
}

.public-price-content-price-content>.wrap>.item.hover {
    display: flex;
    margin-top:40px;
}

.price-card {
    width: 300px;
    height: fit-content;
    padding: 10px;
    margin: 40px 10px 0;
    background: #fff;
    border: 1px solid var(--border-2);
    transition: .3s;
}

.price-card:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}

.price-card-header {
    padding: 10px;
    border: 1px solid rgb(0 102 255 / 20%);
}

.price-card-header .title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    font-size: 24px;
    background: rgb(0 102 255 / 5%);
    color: var(--link);
}

.price-card-header .money {
    text-align: center;
    margin-top: 10px;
}

.price-card-header .money em {
    color: #f44336;
    font-size: 28px;
}

.price-card-header .money span {
    font-size: 20px;
    color: #f44336;
}

.price-card-header .money span:nth-child(3) {
    color: var(--text-2);
    font-size: 16px;
    margin-left: 5px;
}

.price-card-header p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
    color: var(--text-2);
}

.price-card-header .buy {
    margin-top: 10px;
    display: flex;
    width: 100%;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: var(--link);
    color: #fff;
    transition: .3s;
}

.price-card-header .buy:hover {
    background: var(--link-hover);
}

.price-card-wrap {
    margin-top: 20px;
}

.price-card-wrap .price-card-item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.price-card-wrap .price-card-item span {
    font-size: 14px;
    color: var(--text-3);
    margin-right: 10px;
}

.price-card-wrap .price-card-item em {
    font-size: 14px;
}

.price-card-wrap .price-card-item em.y {
    color: var(--link);
}

.price-card-wrap .price-card-item em.n {
    color: #f44336;
}

.price-card-wrap.more {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.price-card-wrap.more .more-but {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to top, #fff, transparent);
}

.price-card-wrap.more .more-but span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    background: var(--link);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    margin-top: 50px;
    border-radius: 3px;
    transition: .3s;
}

.price-card-wrap.more .more-but span:hover {
    background: var(--link-hover);
}

.price-card-wrap.more.hover {
    height: auto;
}

.price-card-wrap.more.hover .more-but {
    position: relative;
    height: 40px;
}

.price-card-wrap.more.hover .more-but span {
    margin-top: 0;
}

@media screen and (max-width: 992px) {
    .public-price-content-price {
        padding: 20px 0;
    }

    .public-price-content-price-content {
        margin-top: 10px;
    }
    .public-price-content-price-content>.type .item {
        padding: 0;
        font-size: 14px;
        white-space: nowrap;
    }

    .price-card {
        margin: 20px 10px 0;
    }
}

.public-price-list {
    margin-top: 40px;
    background-color: #fff;
    display: flex;
    width: fit-content;
    box-shadow: 0px 5px 10px 0 rgb(55 99 170 / 10%);
}

.public-price-list-left {
    width: 300px;
    background: url("../img/price-price-bg.jpg") no-repeat;
    background-size: 100%;
    display: flex;
    padding-top: 220px;
}

.public-price-list-left .body {
    width: 30%;
}

.public-price-list-left .body .bodyitem {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #06f;
    background-color: #f5f8fd;
}

.public-price-list-left .body .bodyitem + .bodyitem {
    border-top: 1px solid #efefef;
}

.public-price-list-left .content {
    width: 70%;
}

.public-price-list-left .content .subitem {
    width: 100%;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: var(--text-3);
    font-size: 14px;
}

.public-price-list-right {
    padding: 30px 0;
    border-left: 1px solid #f3f3f3;
}

.public-price-list-right .right-header {
    padding: 10px 40px;
    background-color: #fff;
    display: flex;
}

.public-price-list-right .right-header .header {
    width: 260px;
    height: 150px;
}

.list-1 .public-price-list-right .right-header .header,
.list-2 .public-price-list-right .right-header .header,
.list-3 .public-price-list-right .right-header .header {
    width: 260px;
}

.list-4 .public-price-list-right .right-header .header {
    width: 210px;
}

.public-price-list-right .right-header .header .title {
    font-size: 32px;
    width: fit-content;
    position: relative;
}

.public-price-list-right .right-header .header .title::after {
    position: absolute;
    content: '';
    bottom: -5px;
    left: 0;
    width: 70%;
    height: 2px;
    background-color: var(--link);
}

.public-price-list-right .right-header .header .money {
    margin-top: 20px;
    font-size: 16px;
}

.public-price-list-right .right-header .header .money span {
    color: #f00;
}

.public-price-list-right .right-header .header .money em {
    color: #f00;
    font-size: 24px;
    margin-right: 5px;
}

.public-price-list-right .right-header .header .introduce {
    max-width: 90%;
    font-size: 13px;
    color: var(--text-2);
    margin-top: 10px;
}

.public-price-list-right .right-header .header .guide {
    margin-top: 8px;
}

.public-price-list-right .right-header .header .guide a {
    color: var(--link);
    transition: .3s;
    position: relative;
    display: flex;
}

.public-price-list-right .right-header .header .guide a:hover {
    color: var(--link-hover);
}

.public-price-list-right .right-header .header .guide a i {
    transition: .3s;
    transform: translateX(5px);
}

.public-price-list-right .right-header .header .guide a:hover i {
    transform: translateX(10px);
}

.public-price-list-right .right-header .header .guide a .bt-icon-right {
    transform: rotate(-90deg);
}

.public-price-list-right .right-header .header .guide a .bt-icon-right path {
    color: var(--link);
}

.public-price-list-right .right-header .header .guide a:hover .bt-icon-right path {
    color: var(--link-hover);
}

.public-price-list-right .right-content {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.public-price-list-right .right-content .content {
    width: 100%;
    height: 40px;
    padding: 0 40px;
    display: flex;
    transition: .3s;
    background-color: #fff;
    border-top: 1px solid #f3f3f3;
}

.public-price-list-right .right-content .content:hover {
    background-color: rgb(0 102 255 / 3%);
    border-color: rgb(0 102 255 / 3%);
}

.public-price-list-right .right-content .content .subitem {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    color: var(--link);
    vertical-align: middle;
}

.list-1 .public-price-list-right .right-content .content .subitem {
    width: 100%;
}

.list-2 .public-price-list-right .right-content .content .subitem {
    width: 50%;
}

.list-3 .public-price-list-right .right-content .content .subitem {
    width: calc(100% / 3);
}

.list-4 .public-price-list-right .right-content .content .subitem {
    width: 25%;
}

.public-price-list-right .right-content .content .subitem i.yes {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/price-price-yes.png") no-repeat;
    background-size: 100%;
}
.public-price-list-right .right-content .content .subitem i.no {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url("../img/price-price-no.png") no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 992px) {
    .public-price-wrap {
        width: 100%;
        width: calc(100% - 40px);
        overflow-x: scroll;
    }

    .public-price-list {
        margin-top: 20px;
    }

    .public-price-list-left {
        width: 200px;
    }

    .public-price-list-right {
        padding: 10px 0 0;
    }
}

.public-price-content-advantage {
    padding: 80px 0;
    background: #fff;
}

.public-price-content-advantage-content {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.public-price-content-advantage .item {
    width: 25%;
    padding: 20px;
}

.public-price-content-advantage .item .item-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    transition: .3s;
}

.public-price-content-advantage .item .item-wrap:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
}

.public-price-content-advantage .item .item-wrap .icon {
    width: 64px;
    height: 64px;
    background-repeat: no-repeat;
    background-size: 64px;
    background-position: top;
}

.public-price-content-advantage .item:nth-child(1) .item-wrap .icon {
    background-image: url("../img/price-advantage-icon-1.png");
}

.public-price-content-advantage .item:nth-child(2) .item-wrap .icon {
    background-image: url("../img/price-advantage-icon-2.png");
}

.public-price-content-advantage .item:nth-child(3) .item-wrap .icon {
    background-image: url("../img/price-advantage-icon-3.png");
}

.public-price-content-advantage .item:nth-child(4) .item-wrap .icon {
    background-image: url("../img/price-advantage-icon-4.png");
}

.public-price-content-advantage .item .item-wrap .title {
    text-align: center;
    font-size: 18px;
    margin-top: 20px;
}

.public-price-content-advantage .item .item-wrap p {
    font-size: 14px;
    color: var(--text-3);
    line-height: 1.8;
    margin-top: 10px;
}

@media screen and (max-width: 992px) {
    .public-price-content-advantage {
        padding: 40px 0;
    }

    .public-price-content-advantage-content {
        margin-top: 20px;
    }

    .public-price-content-advantage .item {
        width: calc(50%);
        padding: 15px;
    }

    .public-price-content-advantage .item .item-wrap {
        padding: 15px;
        background-image: linear-gradient(0deg,#fff,#f3f5f8);
        border: 2px solid #fff;
        box-shadow: 8px 8px 20px 0 rgb(55 99 170 / 10%), -8px -8px 20px 0 #fff;
        border-radius: 10px;
    }

    .public-price-content-advantage .item .item-wrap .title {
        margin-top: 0;
        font-size: 16px;
    }

    .public-price-content-advantage .item .item-wrap p {
        display: none;
    }
}

.public-price-content-function {
    padding: 80px 0;
    background: var(--bg-2);
}

.public-price-content-function-wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}

.public-price-content-function-wrap .item {
    width: 25%;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 40px;
}

.public-price-content-function-wrap .item .title {
    width: 100%;
    height: 26px;
    font-size: 18px;
    line-height: 26px;
    text-indent: 15px;
    border-left: 2px solid var(--link);
    font-weight: bold;
}

.public-price-content-function-wrap .item p {
    font-size: 14px;
    color: var(--text-2);
    margin-top: 15px;
    line-height: 1.8;
}

@media screen and (max-width: 992px) {
    .public-price-content-function {
        padding: 40px 0;
    }

    .public-price-content-function-wrap {
        margin-top: 0;
    }

    .public-price-content-function-wrap .item {
        width: 100%;
        margin-top: 20px;
    }

    .public-price-content-function-wrap .item .title {
        font-size: 16px;
        height: 18px;
        line-height: 18px;
        text-indent: 8px;
    }
}

.public-price-content-demo {
    padding: 80px 0;
    background: #fff;
}

.public-price-content-demo-content {
    margin-top: 40px;
}

.public-price-content-demo-content .type {
    width: 100%;
    display: flex;
    justify-content: center;
}

.public-price-content-demo-content .type .item {
    display: flex;
    height: 40px;
    padding: 0 40px;
    margin: 0 40px;
    font-size: 14px;
    align-items: center;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.public-price-content-demo-content .type .item.hover {
    color: var(--link);
    border-bottom: 2px solid var(--link);
}

.public-price-content-demo-content .type .item:hover {
    color: var(--link);
}

.public-price-content-demo-content .wrap {
    margin-top: 40px;
}

.public-price-content-demo-content .wrap .item {
    display: none;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.public-price-content-demo-content .wrap .item.hover {
    display: block;
    position: relative;
    border: 1px solid var(--border-1);
}

.public-price-content-demo-content .wrap .item img {
    width: 100%;
    position: relative;
}

.public-price-content-demo-content .wrap .item::after {
    content: "演示图";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 48px;
    opacity: 0.2;
}

@media screen and (max-width: 992px) {
    .public-price-content-demo {
        padding: 40px 0;
    }

    .public-price-content-demo-content {
        margin-top: 20px;
        padding: 0 15px;
    }

    .public-price-content-demo-content .type {
        flex-wrap: wrap;
    }

    .public-price-content-demo-content .type .item {
        padding: 0;
        margin: 0;
        width: 50%;
        justify-content: center;
    }

    .public-price-content-demo-content .wrap {
        margin-top: 20px;
    }

    .public-price-content-demo-content .wrap .item {
        height: auto;
    }
}

.public-price-content-scene {
    padding: 80px 0;
    background: var(--bg-2);
}

.public-price-content-scene-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.public-price-content-scene-wrap .left {
    width: 49%;
}

.public-price-content-scene-wrap .right {
    width: 49%;
}

.public-price-content-scene-wrap .item {
    padding: 20px;
    background: #fff;
    border: 1px solid transparent;
    transition: .3s;
}

.public-price-content-scene-wrap .item:hover {
    border: 1px solid var(--link);
}

.public-price-content-scene-wrap .item .title {
    display: flex;
    align-items: center;
}

.public-price-content-scene-wrap .item .title i {
    display: block;
    width: 46px;
    height: 46px;
    background-size: 100%;
    background-repeat: no-repeat;
}

.public-price-content-scene-wrap .left .item:nth-child(1) .title i {
    background-image: url("../img/price-scene-icon-1.png");
}

.public-price-content-scene-wrap .left .item:nth-child(2) .title i {
    background-image: url("../img/price-scene-icon-2.png");
}
.public-price-content-scene-wrap .right .title i {
    background-image: url("../img/price-scene-icon-3.png");
}

.public-price-content-scene-wrap .item .title em {
    margin-left: 10px;
    font-size: 20px;
}

.public-price-content-scene-wrap .item .info {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-2);
    padding: 20px;
    background: var(--bg-2);
    position: relative;
}

.public-price-content-scene-wrap .item .info:after {
    position: absolute;
    content: "";
    top: -20px;
    left: 66px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: var(--bg-2);
}

.public-price-content-scene-wrap .left .item:nth-child(2) {
    margin-top: 20px;
}

.public-price-content-scene-wrap .right .item {
    height: 100%;
}

.public-price-content-scene-wrap .right .distinction {
    margin-top: 20px;
}

.public-price-content-scene-wrap .right .distinction .title {
    font-size: 15px;
}

.public-price-content-scene-wrap .right .distinction .distinction-item {
    margin-top: 10px;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.public-price-content-scene-wrap .right .distinction .distinction-item i {
    margin-right: 10px;
    display: flex;
}

.public-price-content-scene-wrap .right .distinction .distinction-item i path {
    color: var(--link);
}

.public-price-content-scene-wrap .right .distinction .distinction-item span {
    font-size: 14px;
    color: var(--text-2);
}

.public-price-content-scene-wrap .right .but {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.public-price-content-scene-wrap .right .but a {
    display: flex;
    width: 120px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: var(--link);
    font-size: 14px;
    color: #fff;
    transition: .3s;
}

.public-price-content-scene-wrap .right .but a:hover {
    background: var(--link-hover);
}

.public-price-content-scene-wrap .right .but>div {
    margin-left: 20px;
    font-size: 14px;
    color: var(--text-3);
}

@media screen and (max-width: 992px) {
    .public-price-content-scene {
        padding: 40px 0;
    }

    .public-price-content-scene-wrap {
        margin-top: 40px;
        flex-direction: column;
        padding: 0 15px;
    }

    .public-price-content-scene-wrap .left {
        width: 100%;
    }

    .public-price-content-scene-wrap .right {
        width: 100%;
        margin-top: 20px;
    }

    .public-price-content-scene-wrap .item .title i {
        width: 34px;
        height: 34px;
    }

    .public-price-content-scene-wrap .item .title em {
        font-size: 16px;
    }

    .public-price-content-scene-wrap .item .info:after {
        left: 52px;
    }
}

.public-price-content-trends {
    padding: 80px 0;
    background: #fff;
}

.public-price-content-trends .price-swiper {
    position: relative;
}

.public-price-content-trends .PriceSwiper {
    margin-top: 40px;
    width: calc(100% - 80px);
}

.public-price-content-trends .PriceSwiper .swiper-slide {
    width: 25%;
    padding-bottom: 5px;
}

.public-price-content-trends .PriceSwiper .swiper-slide .time {
    font-size: 14px;
    color: var(--text-2);
    padding-left: 30px;
}

.public-price-content-trends .PriceSwiper .swiper-slide .time em {
    font-size: 22px;
    color: var(--text-1);
}

.public-price-content-trends .PriceSwiper .swiper-slide .border {
    position: relative;
    width: 100%;
    height: 2px;
    background: var(--bg-3);
    margin: 10px 0 20px;
}

.public-price-content-trends .PriceSwiper .swiper-slide .border i {
    position: absolute;
    left: 40px;
    top: -4px;
    display: block;
    width: 10px;
    height: 10px;
    background: var(--link);
    box-shadow: 0 0 0 4px var(--bg-3);
    border-radius: 5px;
    transition: .3s;
}

.public-price-content-trends .PriceSwiper .swiper-slide .info {
    padding: 20px 30px;
    width: calc(100% - 20px);
    border: 1px solid var(--border-2);
}

.public-price-content-trends .PriceSwiper .swiper-slide .info .title {
    font-size: 16px;
    font-weight: 600;
}

.public-price-content-trends .PriceSwiper .swiper-slide .info p {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-2);
}

.public-price-content-trends .PriceSwiper .swiper-slide:hover .border i {
    background: var(--bg-3);
    box-shadow: 0 0 0 4px var(--link);
}

.public-price-content-trends .PriceSwiper .swiper-slide:hover .info {
    border: 1px solid var(--link);
    box-shadow: 0 0 8px rgb(0 0 0 / 10%);
}

.public-price-content-trends .swiper-button-next,
.public-price-content-trends .swiper-button-prev {
    top: 42px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: var(--bg-2);
    opacity: 1;
    color: var(--text-1);
}

.public-price-content-trends .swiper-button-next:after,
.public-price-content-trends .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 600;
}

.public-price-content-trends .swiper-button-next:hover,
.public-price-content-trends .swiper-button-prev:hover {
    color: var(--link);
}

.public-price-content-trends .swiper-button-next {
    right: 0;
}

.public-price-content-trends .swiper-button-prev {
    left: 0;
}

.public-price-content-trends .swiper-button-disabled {
    color: var(--text-3);
}

@media screen and (max-width: 992px) {
    .public-price-content-trends {
        padding: 40px 0;
    }

    .public-price-content-trends .price-swiper {
        padding: 0 15px;
    }

    .public-price-content-trends .PriceSwiper {
        margin-top: 40px;
    }

    .public-price-content-trends .PriceSwiper .swiper-slide {
        width: 100%;
    }

    .public-price-content-trends .PriceSwiper .swiper-slide .info {
        width: 100%;
    }

    .public-price-content-trends .swiper-button-next {
        right: 15px;
    }

    .public-price-content-trends .swiper-button-prev {
        left: 15px;
    }

}

.public-price-content-doc {
    padding: 80px 0;
    background: var(--bg-2);
}

.public-price-content-doc-wrap {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}

.public-price-content-doc-wrap .wrap {
    width: calc(50% - 10px);
    padding: 20px;
    background-color: #fff;
    background-image: url("../img/price-doc-bg.png");
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--border-2);
    transition: .3s;
}

.public-price-content-doc-wrap .wrap:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 5%);
}

.public-price-content-doc-wrap .wrap .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.public-price-content-doc-wrap .wrap .title em {
    font-size: 18px;
}

.public-price-content-doc-wrap .wrap .title .more {
    color: var(--link);
    font-size: 14px;
    transition: .3s;
    position: relative;
    display: flex;
    align-items: center;
}

.public-price-content-doc-wrap .wrap .title .more:hover {
    color: var(--link-hover);
}

.public-price-content-doc-wrap .wrap .title .more i {
    transition: .3s;
    transform: translateX(5px);
}

.public-price-content-doc-wrap .wrap .title .more:hover i {
    transform: translateX(10px);
}

.public-price-content-doc-wrap .wrap .title .more .bt-icon-right {
    transform: rotate(-90deg);
}

.public-price-content-doc-wrap .wrap .title .more .bt-icon-right path {
    color: var(--link);
}

.public-price-content-doc-wrap .wrap .title .more:hover .bt-icon-right path {
    color: var(--link-hover);
}

.public-price-content-doc-wrap .wrap .info {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.public-price-content-doc-wrap .wrap .info .item {
    width: 50%;
    margin-bottom: 10px;
}

.public-price-content-doc-wrap .wrap .info .item a {
    font-size: 14px;
    color: var(--text-2);
    transition: .3s;
}

.public-price-content-doc-wrap .wrap .info .item a:hover {
    color: var(--link);
}

@media screen and (max-width: 992px) {
    .public-price-content-doc {
        padding: 40px 0 0;
    }

    .public-price-content-doc-wrap {
        flex-wrap: wrap;
    }

    .public-price-content-doc-wrap .wrap {
        width: 100%;
        margin-top: -1px;
    }

    .public-price-content-doc-wrap .wrap .info .item {
        width: 100%;
    }
}

.product-all{
    display: none;
    position: absolute;
    top: 61px;
    width: 100vw;
    height: 600px;
    background: #fff;
}