/* 动画定义 */
@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 定义 imgbox 从中间向左移动的动画 */
@keyframes slideInFromCenterLeft {
    0% {
        transform: translateX(50%);
        opacity: 0;
    }

    50% {
        transform: translateX(25%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* 定义 tbox 从中间向右移动的动画 */
@keyframes slideInFromCenterRight {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    50% {
        transform: translateX(-25%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


/* 动画类 */
.mainP1_img .box .imgbox,
.mainP2_img .box .imgbox,
.mainP3_img .box .imgbox,
.mainP4_img .box .imgbox,
.mainP5_img .box .imgbox,
.mainP6_img .box .imgbox {
    z-index: 9999;
    opacity: 0;
    transform: translateX(-100%);
}

.mainP1_img .box .tbox,
.mainP2_img .box .tbox,
.mainP3_img .box .tbox,
.mainP4_img .box .tbox,
.mainP5_img .box .tbox,
.mainP6_img .box .tbox {
    z-index: 1;
    opacity: 0;
    transform: translateX(-100%);
}


.flexD .flexD_item {
    opacity: 0;
    transform: translateX(-100%);
}

.flexD .flexD_item.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

/* .mainP1_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP1_img .box .tbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP1_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP1_img .box .tbox.slideInFromRight {
    animation: slideInFromRight 1s ease-in-out forwards;
}


/* .mainP2_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP2_img .box .tbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP2_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP2_img .box .tbox.slideInFromRight {
    animation: slideInFromLeft 1s ease-in-out forwards;
}


/* .mainP3_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP3_img .box .tbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP3_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP3_img .box .tbox.slideInFromRight {
    animation: slideInFromRight 1s ease-in-out forwards;
}


/* .mainP4_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP4_img .box .tbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP4_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP4_img .box .tbox.slideInFromRight {
    animation: slideInFromLeft 1s ease-in-out forwards;
}


/* .mainP5_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP5_img .box .tbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP5_img .box .imgbox.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.mainP5_img .box .tbox.slideInFromRight {
    animation: slideInFromRight 1s ease-in-out forwards;
}


/* .mainP6_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP6_img .box .tbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
    animation-delay: 0.5s;
} */
.mainP6_img .box .imgbox.slideInFromLeft {
    animation: slideInFromRight 1s ease-in-out forwards;
}

.mainP6_img .box .tbox.slideInFromRight {
    animation: slideInFromLeft 1s ease-in-out forwards;
}



.flowD .box .card {
    opacity: 0;
    transform: translateX(-100%);
}

.flowD .box img {
    /* opacity: 0; */
    /* transform: translateX(-100%); */
}

.flowD .box .card.slideInFromLeft {
    animation: slideInFromLeft 1s ease-in-out forwards;
}

.flowD .box img.slideInFromLeft {
    /* animation: slideInFromLeft 1s ease-in-out forwards; */
}


html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

#app {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.home {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

.firstBox {
    width: 100%;
    height: 800px;
    background: #FFFFFF;
}

.el-header {
    width: 100%;
    height: 84px !important;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0px;
    padding: 0;
    border: 1px solid rgba(23, 26, 29, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

.select-g {
    width: 135px;
    height: 188px;
    background: #FFFFFF;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    position: absolute;
    top: 96px;
    left: 48%;
    display: none;
    padding: 32px;
}

.select-g .select-g-item {
    height: 38px;
    display: flex;
    justify-content: left;
    margin-bottom: 12px;
    cursor: pointer;
}

.select-g .select-g-item div {
    margin-left: 8px
}

.select-g .select-g-item a {
    height: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.select-g .select-g-item a:hover {
    color: #3A64FF;
}

.select-g.show {
    display: block;
}

.select-d {
    width: 288px;
    height: 421px;
    /* height: 461px; */
    background: #FFFFFF;
    box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.16);
    border-radius: 12px;
    position: absolute;
    top: 96px;
    left: 54%;
    display: none;
    padding: 32px;
}

.select-d .select-d-item {
    width: 230px;
    height: 38px;
    display: flex;
    justify-content: left;
    margin-bottom: 32px;
    cursor: pointer;
}

.select-d .select-d-item:nth-child(5) {
    margin-bottom: 20px;
}

.select-d .select-d-item:last-child {
    margin-bottom: 0px;
}

.select-d .soild-d {
    width: 230px;
    height: 1px;
    background: #EBEBEB;
    margin-bottom: 20px;
}

.select-d .select-d-item img {
    width: 32px;
    height: 32px;
    position: relative;
    top: 2px;
}

.select-d .select-d-item div {
    margin-left: 8px
}

.select-d .select-d-item a {
    height: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #262626;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.select-d .select-d-item a:hover {
    color: #3A64FF;
}

.select-d .select-d-item p {
    height: 17px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #8C8C8C;
    line-height: 17px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.select-d.show {
    display: block;
}

.menuD {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.logo {
    width: 177px;
    height: 44px;
    /* width: 86px;
    height: 32px; */
    margin: 22px 0 22px 0;
    position: fixed;
    z-index: 9999;
}

.logot {
    position: absolute;
    left: 113px;
    top: 24px;
    height: 28px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 20px;
    color: #3A64FF;
    line-height: 28px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.border-a {
    width: 1px;
    height: 18px;
    background: #AAAAAA;
    position: absolute;
    left: 99px;
    top: 30px;
    margin-right: 12px;
}

.border-b {
    width: 2px;
    height: 18px;
    background: #ABABAB;
    position: relative;
    right: 20px;
    top: 2px;
}

.el-menu {
    /* width: 624px; */
    height: 24px;
    background: transparent;
    border-radius: 0px;
    padding: 0;
    position: fixed;
    z-index: 9999;
    margin: 29px 53px auto 310px;
    display: flex;
    justify-content: space-between;
}

.el-menu-item {
    /* width: 64px; */
    height: 22px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #262626;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-right: 40px;
}

.el-menu-item .a1 {
    border: none;
    color: #262626;
    text-decoration: none;
}

.el-menu-item .a1 img {
    width: 16px;
    height: 16px;
    margin-bottom: 3px;
}

.el-menu-item .a1:hover {
    color: #3A64FF;
}

.el-menu-item.active .a1 {
    color: #3A64FF;
}

.el-menu-item.active .a1::after {
    color: #3A64FF;
}

.loginbtn,
.intobtn {
    width: 120px;
    height: 40px;
    cursor: pointer;
    border-radius: 8px;
    background: #3A64FF;
    margin: 22px 0 22px 1120px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    border: none;
    position: fixed;
    z-index: 9999;
    /* 提升层级确保在头部上方 */
}

.intobtn {
    display: none;
}

.loginbtn,
.intobtn:hover {
    background: #577BFF;
}

.tryoutBtn {
    width: 124px;
    height: 44px;
    background: #3A64FF;
    border-radius: 8px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    border: none;
    box-shadow: 0 16px 32px rgba(58, 100, 255, 0.2);
    /* box-shadow: 0 16px 32px rgba(#3A64FF, 0.2); */
    cursor: pointer;
}

.tryoutBtn:hover {
    background: #577BFF;
}

.tryoutBtn:hover .el-icon--right {
    margin-left: 9px;
}

.el-icon--right {
    width: 15px;
    height: 10px;
    margin-left: 5px;
}

.el-main {
    width: 100%;
    border-radius: 0px;
    padding: 0;
    overflow: hidden;
}

.hover-weix-box {
    width: 228px;
    height: 274px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    position: fixed;
    right: 95px;
    top: 48%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px;
    z-index: 9999;
}

.hover-weix-box p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #262626;
    line-height: 25px;
    text-align: center;
    margin: 0;
}

.hover-weix-box span {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #595959;
    line-height: 18px;
    display: block;
    text-align: center;
    margin: 3px 0 16px 0;
}

.hover-weix-box img {
    width: 148px;
    height: 148px;
    display: block;
    margin: 0 auto;
}

.hover-phone-box {
    width: 228px;
    height: 74px;
    background: #FFFFFF;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    position: fixed;
    right: 95px;
    top: 45%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 16px 20px;
    z-index: 9999;
}

.hover-phone-box img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    margin-top: 5px;
}

.hover-phone-box div {
    position: relative;
    bottom: 36px;
    left: 42px;
}

.hover-phone-box p:first-child {
    height: 20px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #8C8C8C;
    line-height: 20px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.hover-phone-box p:last-child {
    height: 22px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    font-size: 16px;
    color: #262626;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.floatbox {
    width: 68px;
    height: 308px;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    display: none;
    z-index: 1;
}

.floatbox.show {
    display: flex;
    /* 当添加 show 类时显示 */
}

.floatbox .three-b {
    border-radius: 8px;
    background: #3A64FF;
    margin-bottom: 12px;
}

.floatbox .three-b .float-d {
    width: 68px;
    height: 68px;
    background: #3A64FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
}

.floatbox .three-b .float-d img {
    width: 22px;
    height: 22px;
    margin-bottom: 4px;
}

.floatbox .float-d1 {
    width: 68px;
    height: 68px;
    background: #3A64FF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
}

.floatbox .float-d1 img {
    width: 48px;
    height: 48px;
}

.firstBj {
    width: 100%;
    height: 50rem;
    background: url("/assets/banner_bg_img.png") no-repeat center center;
    margin: 0 auto;
}

.box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.firstTBox {
    width: 685px;
    margin-top: 248px;
    /* margin-left: 60px; */
    animation: slideInFromTop 1s ease-in-out forwards;
}

.righticon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}


.firstBj .box .firstTBox div {
    text-align: left;
}

.firstBj .box .firstTBox div:nth-of-type(1) {
    width: 500px;
    height: 68px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 56px;
    color: #262626;
    line-height: 68px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 32px;
}

.firstBj .box .firstTBox div:nth-of-type(2) {
    width: 500px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #262626;
    line-height: 24px;
    text-align: justify;
    font-style: normal;
    text-transform: none;
}

.firstBj .box .firstTBox div:nth-of-type(2) span {
    width: 260px;
    height: 28px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: #595959;
    line-height: 28px;
    font-style: normal;
    text-transform: none;
    position: relative;
    bottom: 4px;
}

.firstBj .box .firstTBox div:nth-child(3) {
    margin-top: 56px;
    text-align: left;
}

.firstimgbox {
    flex: 1 1 auto;
    height: 450px;
    flex-shrink: 0;
    margin-top: 158px;
    animation: slideInFromBottom 1s ease-in-out forwards;
}

.firstimgbox .firstBanner {
    width: 638px;
    height: 480px;
    display: flex;
    margin: 0 0 auto;
    /* margin: 160px 120px auto; */
}

.firstNav {
    width: 100%;
    height: 420px;
    margin: 0 auto;
}

.firstNav div {
    margin: 0 auto;
}

.firstNav .textM {
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 38px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 80px;
}

.firstNav .textM p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 12px 0 0 0;
}

.flexD {
    width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.flexD div {
    /* width: 200px; */
}

.flexD .flexD_item1 {}

.flexD .flexD_item2 {}

.flexD .flexD_item3 {}

.flexD img {
    width: 56px;
    height: 56px;
    display: flex;
    margin: 0 auto;
}

.flexD p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 18px;
    color: #262626;
    line-height: 25px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 28px 0 16px 0;
}

.textD {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.textD1 {
    max-width: 318px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.textD1 p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 0;
}

.textD2 {
    max-width: 318px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.textD3 {
    max-width: 318px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.mainP1_img {
    width: 100%;
    height: 820px;
    margin: 0 auto;
}

.mainP1_img .textM {
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 38px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 60px;
    padding-top: 80px;
}

.mainP1_img .textM p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 12px 0 0 0;
}

.mainP1_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP1_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    position: relative;
    right: 30px;
    /* margin-right: 100px; */
}

.mainP1_img .box .imgbox .p1_img {
    width: 540px;
    height: 520px;
    display: flex;
    margin: 0 0 auto;
}

.mainP1_img .box .tbox {
    /* width: 700px; */
    flex: 1 1 auto;
    padding-top: 131px;
    margin-left: 44px;
}

.mainP1_img .box .tbox div {
    text-align: center;
}

.mainP1_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP1_img .box .tbox div:nth-child(1) {
    width: 650px;
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP1_img .box .tbox div:nth-child(2) {
    width: 600px;
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP1_img .box .tbox div:nth-child(2) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP2_img {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    /* background: #FAFBFC; */
}

.mainP2_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP2_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    margin-top: 40px;

}

.mainP2_img .box .imgbox .p2_img {
    width: 540px;
    height: 520px;
    display: flex;
    margin: 0 0 auto;
}

.mainP2_img .box .tbox {
    flex: 1 1 auto;
    padding-top: 152px;
}

.mainP2_img .box .tbox div {
    text-align: center;
}

.mainP2_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP2_img .box .tbox div:nth-child(1) {
    width: 650px;
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP2_img .box .tbox div:nth-child(2) {
    width: 610px;
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP2_img .box .tbox div:nth-child(2) span {
    width: 252px;
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP2_img .box .tbox div:nth-child(3) {
    max-width: 570px;
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP2_img .box .tbox div:nth-child(3) span {
    display: inline-block;
    vertical-align: top;
    width: 539px;
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    bottom: 23px;
    left: 30px;
}

.mainP3_img {
    width: 100%;
    height: 600px;
    margin: 0 auto;
}

.mainP3_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP3_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    position: relative;
    right: 30px;
    top: 40px;

}

.mainP3_img .box .imgbox .p3_img {
    width: 540px;
    height: 520px;
    display: flex;
    /* margin: 0 94px auto 0; */
}

.mainP3_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP3_img .box .tbox {
    flex: 1 1 auto;
    padding-top: 152px;
    margin-left: 44px;
}

.mainP3_img .box .tbox div {
    text-align: center;
}

.mainP3_img .box .tbox div:nth-child(1) {
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP3_img .box .tbox div:nth-child(2) {
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP3_img .box .tbox div:nth-child(2) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP3_img .box .tbox div:nth-child(3) {
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP3_img .box .tbox div:nth-child(3) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP3_img .box .tbox div:nth-child(4) {
    height: 25px;
    text-align: left;
    margin-bottom: 60px;
}

.mainP3_img .box .tbox div:nth-child(4) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP4_img {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    /* background: #FAFBFC; */
}

.mainP4_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP4_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    margin-top: 40px;
}

.mainP4_img .box .imgbox .p4_img {
    width: 540px;
    height: 520px;
    display: flex;
    margin: 0 0 auto;
}

.mainP4_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP4_img .box .tbox {
    flex: 1 1 auto;
    padding-top: 152px;
}

.mainP4_img .box .tbox div {
    text-align: center;
}

.mainP4_img .box .tbox div:nth-child(1) {
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP4_img .box .tbox div:nth-child(2) {
    max-width: 550px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP4_img .box .tbox div:nth-child(2) span {
    display: inline-block;
    vertical-align: top;
    width: 589px;
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    bottom: 23px;
}

.mainP4_img .box .tbox div:nth-child(3) {
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP4_img .box .tbox div:nth-child(3) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP5_img {
    width: 100%;
    height: 600px;
    margin: 0 auto;
}

.mainP5_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP5_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    position: relative;
    right: 30px;
    top: 40px;
}

.mainP5_img .box .imgbox .p3_img {
    width: 540px;
    height: 520px;
    display: flex;
    /* margin: 0 94px auto 0; */
}

.mainP5_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP5_img .box .tbox {
    flex: 1 1 auto;
    padding-top: 152px;
    margin-left: 44px;
}

.mainP5_img .box .tbox div {
    text-align: center;
}

.mainP5_img .box .tbox div:nth-child(1) {
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP5_img .box .tbox div:nth-child(2) {
    width: 588px;
    height: 25px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP5_img .box .tbox div:nth-child(2) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.mainP6_img {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    /* background: #FAFBFC; */
}

.mainP6_img .box {
    width: 1240px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    text-align: center;
}

.mainP6_img .box .imgbox {
    width: 540px;
    height: 520px;
    flex-shrink: 0;
    margin-top: 40px;
}

.mainP6_img .box .imgbox .p4_img {
    width: 540px;
    height: 520px;
    display: flex;
    margin: 0 0 auto;
}

.mainP6_img .box .tbox .p1icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.mainP6_img .box .tbox {
    flex: 1 1 auto;
    padding-top: 152px;
}

.mainP6_img .box .tbox div {
    text-align: center;
}

.mainP6_img .box .tbox div:nth-child(1) {
    height: 53px;
    font-family: PingFang SC, PingFang SC;
    /* font-weight: 600; */
    font-size: 38px;
    color: #262626;
    line-height: 53px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 40px;
}

.mainP6_img .box .tbox div:nth-child(2) {
    max-width: 600px;
    text-align: left;
    margin-bottom: 12px;
}

.mainP6_img .box .tbox div:nth-child(2) span {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #595959;
    line-height: 25px;
    font-style: normal;
    text-transform: none;
    position: relative;
    top: 4px;
}

.lastNav {
    width: 100%;
    height: 480px;
    margin: 0 auto;
    padding-top: 80px;
}

.lastNav div {
    margin: 0 auto;
}

.lastNav .textM {
    width: 350px;
    height: 104px;
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 38px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 60px;
}

.lastNav .textM p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 12px 0 0 0;
}

.lastNav .listD {
    width: 1240px;
    height: 292px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.lastNav .listD .divl {
    width: 397px;
    height: 168px;
    background: #FAFBFC;
    border-radius: 12px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-around;
}

.lastNav .listD .divl img {
    width: 64px;
    height: 64px;
    margin-top: 36px;
    margin-left: 24px;
}

.lastNav .listD .divl .divt {
    width: 272px;
    height: 54px;
    margin: 0 auto;
    font-weight: 600;
    margin-top: 34px;
    font-family: PingFang SC, PingFang SC;
    font-size: 18px;
    color: #262626;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.lastNav .listD .divl .divt p {
    height: 21px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 8px;
}

.caseNav {
    width: 100%;
    height: 709px;
    /* height: 851px; */
    margin: 0 auto;
    background: #FAFBFC;
}

.caseNav a {
    text-decoration: none
}

.caseNav div {
    /* margin: 0 auto; */
}

.caseNav .textM {
    width: 380px;
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 38px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding-top: 80px;
    margin-bottom: 40px;
}

.caseNav .textM p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 12px 0 0 0;
}

.t-box {
    margin: 0 auto;
    width: 1240px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.btn-b {
    width: 80px;
    margin-right: 10px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 32px;
}

.btn-b img {
    cursor: pointer;
}

.caseNav .xlist {
    width: 1150px;
    height: 48px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-right: 10px;
    box-sizing: border-box;
    margin-bottom: 32px;
    margin-left: 10px;

    /* 隐藏滚动条（适用于 WebKit 浏览器） */
    &::-webkit-scrollbar {
        display: none;
    }

    /* 隐藏滚动条（适用于 Firefox） */
    scrollbar-width: none;
    scrollbar-color: transparent transparent;

    /* 添加渐变遮罩 */
    mask: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask: linear-gradient(to right, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.caseNav .t-box .xlist .lispan {
    height: 48px;
    background: #FFFFFF;
    line-height: 48px;
    border-radius: 4px;
    padding: 0 36px;
    color: #262626;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-right: 12px;
    cursor: pointer;
}

.caseNav .t-box .xlist .lispan:hover {
    background: #3A64FF;
    color: #FFFFFF;
}

.caseNav .t-box .xlist .lispan:last-child {
    margin-right: 0;
}

.caseNav .t-box .xlist .lispan.selected-category {
    background: #3A64FF;
    color: #FFFFFF;
}

.caseNav .list-box {
    margin: 0 auto;
    width: 1240px;
    /* height: 400px; */
    display: flex;
    justify-content: flex-start;
}

.caseNav .list-box .list-box-item {
    width: 295px;
    /* height: 100%; */
    height: 75%;
    background: #FFFFFF;
    border-radius: 8px 8px 8px 8px;
    /* cursor: pointer; */
    margin-right: 20px;
    margin-bottom: 20px;
}

.caseNav .list-box .list-box-item:hover {
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
}

.caseNav .list-box .list-box-item .top-img {
    max-width: 295px;
    max-height: 156px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.caseNav .list-box .list-box-item .top-img img {
    width: 100%;
    max-height: 156px;
    max-width: 295px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.caseNav .list-box .list-box-item .bottom-card {
    width: 100%;
    height: 101px;
    /* height: 252px; */
    border-radius: 8px;
    position: relative;
    bottom: 8px;
    padding: 28px 24px;
    background: #FFFFFF;
}

.caseNav .list-box .list-box-item .bottom-card .head-img {
    width: 72px;
    height: 72px;
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    position: absolute;
    /* bottom: 216px; */
    bottom: 65px;
    right: 24px;
}

.caseNav .list-box .list-box-item .bottom-card p {
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #262626;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-bottom: 16px;
}

.caseNav .list-box .list-box-item .bottom-card .con {
    width: 247px;
    height: 69px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #8C8C8C;
    line-height: 23px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 57px;
}

.caseNav .list-box .list-box-item .bottom-card .bottom-card-bottom {
    display: flex;
    justify-content: space-between;
}

.caseNav .list-box .list-box-item .bottom-card .detailico {
    width: 14px;
    height: 9px;
    margin-left: 8px;
    margin-bottom: 1px;
}

.caseNav .list-box .list-box-item .bottom-card .bottom-card-bottom .ind_tag {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.caseNav .list-box .list-box-item .bottom-card .bottom-card-bottom span:first-child {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #ABABAB;
    line-height: 18px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.caseNav .list-box .list-box-item .bottom-card .bottom-card-bottom span:last-child {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #3A64FF;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.caseNav .btn-box {
    width: 1240px;
    display: flex;
    justify-content: center;
    position: relative;
    top: 40px;
}

.caseNav .btn-box .look-btn {
    width: 152px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid #595959;
    display: flex;
    justify-content: center;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #595959;
    line-height: 44px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;
    background: #FAFBFC;
}

.caseNav .btn-box .look-btn:hover {
    color: #3A64FF;
    border: 1px solid #3A64FF;
}

.flowD {
    width: 100%;
    height: 490px;
    margin: 0 auto;
    background: #FFFFFF;
}

.flowD div {
    margin: 0 auto;
}

.flowD .textM {
    width: 380px;
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 38px;
    color: #262626;
    text-align: center;
    font-style: normal;
    text-transform: none;
    padding-top: 80px;
}

.flowD .textM p {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #8C8C8C;
    line-height: 22px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin: 12px 0 0 0;
}

.flowD .box {
    width: 1240px;
    height: 160px;
    margin: 0 auto;
    margin-top: 60px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-evenly;
}

.flowD .box .card {
    width: 259px;
    height: 160px;
    background: #FAFBFC;
    border-radius: 12px;
    /* animation: slideInFromLeft 1s ease-in-out forwards; */
}

.flowD .box .card:nth-child(1) {
    /* animation-delay: 0s; 第一个元素无延迟 */
}

.flowD .box .card:nth-child(3) {
    /* animation-delay: 0.2s; 第三个元素延迟 0.2s */
}

.flowD .box .card:nth-child(5) {
    /* animation-delay: 0.4s; 第五个元素延迟 0.4s */
}

.flowD .box .card:nth-child(7) {
    /* animation-delay: 0.6s; 第七个元素延迟 0.6s */
}

.flowD .box .card div {
    margin: 0 auto;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 18px;
    color: #262626;
    line-height: 25px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin: 52px 0 0 24px;
}

.flowD .box .card span {
    font-weight: 600;
}

.flowD .box .card p {
    height: 21px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 15px;
    color: #8C8C8C;
    line-height: 21px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    margin-top: 12px;
}

.flowD .box img {
    width: 28px;
    height: 28px;
    margin-top: 60px;
    /* animation: slideInFromLeft 1s ease-in-out forwards; */
}

.flowD .box img:nth-child(2) {
    /* animation-delay: 0.1s; 第二个元素延迟 0.1s */
}

.flowD .box img:nth-child(4) {
    /* animation-delay: 0.3s; 第四个元素延迟 0.3s */
}

.flowD .box img:nth-child(6) {
    /* animation-delay: 0.5s; 第六个元素延迟 0.5s */
}

.mainP6img {
    width: 100%;
    height: 240px;
    background: url("/assets/zxpng/db_bg_img@2x.png") no-repeat center center;
    background-size: cover;
    margin: 0 auto;
}

.tbox {
    width: 1240px;
    height: 140px;
    margin: 0 auto;
}

.p6t {
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 52px;
    height: 39px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 600;
    font-size: 28px;
    color: #FFFFFF;
    line-height: 39px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 4px;
}

.p6t1 {
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 52px;
    height: 25px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 18px;
    color: #8898D7;
    line-height: 25px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 24px;
}

.p6t2 {
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 52px;
    width: 124px;
    height: 44px;
    text-align: left;
}

footer {
    width: 100%;
    height: 157px;
    /* height: 216px !important; */
    background: #262626;
    padding: 0;
    margin: 0 auto;
    border-radius: 0px;
    padding-top: 40px;
}

.el-footmenu {
    width: 488px;
    height: 24px;
    background: transparent;
    border-radius: 0px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

.el-footmenu-item {
    border: none;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 14px;
    color: #ccc;
    line-height: 22px;
    text-align: left;
    font-style: normal;
    text-transform: none;
}

.disabled {
    color: #ccc;
    font-size: 20px;
    line-height: 22px;
}

.el-footmenu-item a {
    border: none;
    color: #ccc;
    text-decoration: none;
}

.el-footmenu-item a:hover {
    color: #ccc;
}

.solid-fd {
    width: 1240px;
    height: 1px;
    border: 1px;
    background: #383838;
    margin: 12px auto;
}

.p-fd {
    margin: 0 auto;
    height: 18px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 13px;
    color: #999999;
    line-height: 18px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    margin-bottom: 8px;
}

.p-fd .ft-span {
    color: #999999;
    cursor: pointer;
    margin-left: 5px;
}

.p-fd .ft-span:hover {
    color: #FFFFFF;
}

.footD {
    width: 1112px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    position: relative;
    top: 5px;
    margin-bottom: 20px;
}

.xccB {
    width: 103px;
    height: 38px;
    margin: 0 auto;
}

.foott {
    height: 17px;
    line-height: 17px;
    /* margin-top: 20px; */
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    text-align: center;
    font-style: normal;
    text-transform: none;
}

.foota {
    font-weight: 400;
    font-size: 12px;
    color: #999999;
    text-align: center;
    font-style: normal;
    text-transform: none;
    text-decoration: none
}

.foota:hover {
    color: #428bca;
}