* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    list-style: none;
}

div {
    display: block;
}

.main {
    width: 100%;
    overflow: hidden;
}


.box1_top {
    display: flex;
    justify-content: space-between;
}

.box1_t_l {
    width: 68.572%;
}

.box1_t_l_title h6 {
    font-size: 40px;
    line-height: 1;
    font-family: HarmonyOS_Sans_SC_Medium;
    color: #222222;
    margin-bottom: 40px;
}

.box1_t_l_bom i {
    font-size: 22px;
    line-height: 1;
    color: #222222;
    font-family: HarmonyOS_Sans_SC_Medium;
    margin-bottom: 14px;
    display: block;
}

.box1_t_l_bom p {
    font-size: 16px;
    line-height: 24px;
    font-family: HarmonyOS_Sans_SC_Medium;
    color: #777777;
}

.box1_bom {
    margin-top: 60px;
}

.box1_bom p {
    font-size: 22px;
    line-height: 1;
    font-family: HarmonyOS_Sans_SC_Medium;
    color: #222222;
    margin-bottom: 20px;
}


.box1_bom ul {
    display: flex;
    flex-wrap: wrap;
}

.box1_bom ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    border-radius: 20px;
    color: #777777;
    font-size: 16px;
    font-family: HarmonyOS_Sans_SC_Medium;
    border: 1px solid #777777;
    margin-right: 16px;
    position: relative;
    transition: all 0.5s ease;
    overflow: hidden;
    z-index: 2;
}

.box1_bom ul li a:hover {
    color: #fff;
    border-color: #ff5101;
}

.box1_bom ul li a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: -100%;
    border-radius: 20px;
    transition: all 0.8s ease;
    background: #ff5101;
}

.box1_bom ul li a:hover:before {
    left: 0;
}

.box1_bom ul li:last-child a {
    margin-right: 0;
}

.box1_t_r {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.box1_t_r_good p {
    display: flex;
    align-items: flex-end;
    color: #555555;
    font-family: HarmonyOS_Sans_SC_Medium;
    font-size: 18px;
    line-height: 25px;

}

.box1_t_r_good p .iconfont {
    font-size: 18px;
    display: block;
    margin-right: 10px;
}

.box1_t_r_good .good_namber {
    font-family: GOTHICB;
    font-size: 40px;
    color: #222222;
    line-height: 1;
    display: block;
}

.box1_t_r_more {
    display: flex;
    flex-direction: column;
    margin-top: 48px;
}

.box1_t_r_more a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 48px;
    border-radius: 24px;
    color: #fff;
    background: #b9b9b9;
    font-family: HarmonyOS_Sans_SC_Medium;
    font-size: 18px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 17px;
}

.box1_t_r_more a::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
    left: -100%;
    border-radius: 20px;
    transition: all 0.8s ease;
    background: #ff5101;
}

.box1_t_r_more a:hover:before {
    left: 0;
}

.cse_des_box2 {
    width: 100%;
    background: #f0f0f0;
    padding: 80px 0 40px;
}

.cse_des_box2_title {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    line-height: 1;
    color: #333333;
    font-family: HarmonyOS_Sans_SC_Medium;
    margin-bottom: 50px;
}

.cse_des_box2_mind ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cse_des_box2_mind ul li {
    display: block;
    padding: 15px;
    overflow: hidden;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: #fff;
    margin-bottom: 40px;
}

.cse_des_box2_mind ul li:last-child {
    margin-bottom: 60px;
}

.cse_des_box2_mind ul li img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.cse_des_box2_bom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.cse_des_box2_bom_t {
    margin-bottom: 120px;
}

.cse_des_box2_bom_t a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 54px;
    background: #ff5101;
    color: #fff;
    border-radius: 27px;
    font-size: 18px;
    line-height: 1;
    font-family: HarmonyOS_Sans_SC_Medium;
    animation: shake 1s ease-in-out infinite;
}

.cse_des_box2_bom_t a:hover {
    animation: none;
}

@keyframes shake {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: rotateX(8deg) rotateY(8deg);
    }

    50% {
        transform: rotateX(-8deg) rotateY(-8deg);
    }

    75% {
        transform: rotateX(8deg) rotateY(8deg);
    }

    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
}

.cse_des_box2_bom_b {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cse_des_box2_bom_b a {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 18px;
    font-family: HarmonyOS_Sans_SC_Medium;
    color: #222222;
    transition: all 0.3s ease;
}

.cse_des_box2_bom_b a:hover {
    color: #ff5101;
}

.cse_des_box2_bom_b .pave_l .iconfont {
    transform: rotate(-180deg);
    display: block;
    margin-right: 5px;
}

.cse_des_box2_bom_b .next_r {
    color: #ff5101;
}

.cse_des_box2_bom_b .next_r .iconfont {
    display: block;
    margin-right: 5px;
}

.case_des_box3 {
    padding: 78px 0 100px;
    background: #f2f2f2;
}

.case_des_box3_title {
    margin-bottom: 50px;
}

.case_des_box3_title h6 {
    font-size: 40px;
    line-height: 1;
    font-family: HarmonyOS_Sans_SC_Medium;
    color: #222;
    text-align: center;
    list-style: none;
    font-weight: 400;
}


.case_des_box3 .box3_bom_box {
    /* background: #fff; */
}

.case_des_box3 .box3_prc {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.case_des_box3 .box3_prc .box3_prc_logo {
    position: absolute;
    left: 20px;
    top: 20px;
    z-index: 3;
}

.case_des_box3 .box3_prc .box3_prc_logo img {
    display: block;
    max-height: 40px;
    max-width: 70px;
}

.case_des_box3 .box3_prc>img {
    display: block;
    width: 100%;
    transition: all 0.5s ease;
}

.case_des_box3 .box3_bom_box:hover .box3_prc>img {
    transform: scale(1.1);
}

.case_des_box3 .box3_title {
    padding: 30px 0px 0px;
}

.case_des_box3 .box3_title h6 {
    font-size: 22px;
    line-height: 1;
    color: #222;
    font-family: HarmonyOS_Sans_SC_Medium;
    margin-bottom: 12px;
    letter-spacing: 2px;
    transition: all .4s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.case_des_box3 .box3_bom_box:hover .box3_title h6 {
    color: #ff5101;
}

.case_des_box3 .box3_title p {
    font-size: 16px;
    color: #777777;
    line-height: 24px;
    letter-spacing: 1px;
    font-family: HarmonyOS_Sans_SC_Medium;
    font-weight: 200;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.case_des_box3 .wz_logo {
    margin-top: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.case_des_box3 .wz_logo .iconfont {
    display: block;
    margin-right: 5px;
}

.case_des_box3 .wz_logo p {
    font-size: 14px;
    line-height: 1;
    color: #666666;
    font-family: HarmonyOS_Sans_SC_Bold;
}

.case_des_box3 .case_box1 .fyq {
    padding-top: 23px;
}

@media (max-width: 1600px) {

    .case_des_box1 {
        padding: 80px 0;
    }

    .box1_t_l_title h6 {
        font-size: 36px;
        margin-bottom: 35px;
    }

    .box1_t_r_more {
        margin-top: 39px;
    }

    .box1_t_l_bom i {
        font-size: 21px;
        margin-bottom: 12px;
    }

    .box1_bom {
        margin-top: 30px;
    }

    .box1_bom ul li a {
        width: 130px;
    }

    .box1_bom p {
        font-size: 21px;
        margin-bottom: 15px;
    }

    .box1_t_r_more a {
        width: 210px;
        height: 45px;
    }

    .box1_t_r_good .good_namber {
        font-size: 35px;
    }

    .box1_t_r_good p {
        font-size: 16px;
    }

    .box1_t_r_good p .iconfont {
        font-size: 16px;
    }

    .cse_des_box2 {
        padding: 70px 0 40px;
    }

    .cse_des_box2_title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .cse_des_box2_mind ul li:last-child {
        margin-bottom: 50px;
    }

    .cse_des_box2_bom_t {
        margin-bottom: 70px;
    }

    .case_des_box3 {
        padding: 60px 0 80px;
    }

    .case_des_box3_title h6 {
        font-size: 36px;
    }

    .case_des_box3_title {
        margin-bottom: 38px;
    }

    .case_des_box3 .box3_title {
        padding: 20px 0px 0px;
    }

    .case_des_box3 .box3_title h6 {
        font-size: 20px;
    }

    .case_des_box3 .wz_logo {
        margin-top: 16px;
    }
}

@media (max-width: 1400px) {
    .case_des_box1 {
        padding: 60px 0;
    }

    .box1_t_l_title h6 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .box1_t_l_bom i {
        font-size: 19px;
        margin-bottom: 10px;
    }

    .box1_t_l_bom p {
        font-size: 15px;
        line-height: 22px;
    }

    .box1_bom {
        margin-top: 25px;
    }

    .box1_bom ul li {
        margin-bottom: 10px;
    }

    .box1_t_r_good p {
        font-size: 15px;
        line-height: 20px;
    }

    .box1_t_r_good p .iconfont {
        font-size: 15px;
        margin-right: 6px;
    }

    .box1_t_r_good .good_namber {
        font-size: 30px;
    }

    .box1_t_r_more a {
        width: 210px;
        height: 45px;
        font-size: 16px;
    }

    .box1_t_r_more a {
        width: 180px;
    }

    .box1_t_r_more {
        margin-top: 30px;
    }

    .cse_des_box2 {
        padding: 55px 0 40px;
    }

    .cse_des_box2_mind ul li:last-child {
        margin-bottom: 36px;
    }

    .cse_des_box2_bom_t {
        margin-bottom: 50px;
    }

    .cse_des_box2_bom_t a {
        width: 230px;
        height: 50px;
    }

    .case_des_box3 {
        padding: 40px 0 50px;
    }

    .case_des_box3_title h6 {
        font-size: 30px;
    }

    .case_des_box3_title {
        margin-bottom: 28px;
    }
}

@media (max-width: 1200px) {
    .case_des_box1 {
        padding: 40px 0;
    }

    .box1_t_l_title h6 {
        font-size: 26px;
        margin-bottom: 16px;
    }

    .box1_t_l_bom p {
        font-size: 14px;
        line-height: 20px;
    }

    .box1_bom {
        margin-top: 20px;
    }

    .box1_bom p {
        font-size: 19px;
        margin-bottom: 15px;
    }

    .box1_bom ul li a {
        width: 110px;
        height: 30px;
        font-size: 14px;
    }

    .box1_t_r_good .good_namber {
        font-size: 28px;
    }

    .box1_t_r_more a {
        width: 170px;
        height: 40px;
        font-size: 15px;
    }

    .cse_des_box2 {
        padding: 45px 0 30px;
    }

    .cse_des_box2_title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .case_des_box3_title h6 {
        font-size: 26px;
    }

    .cse_des_box2_bom_t {
        margin-bottom: 30px;
    }

    .case_des_box3 {
        padding: 30px 0 40px;
    }

    .case_des_box3_title {
        margin-bottom: 20px;
    }

    .case_des_box3 .box3_title {
        padding: 15px 0px 0px;
    }

    .case_des_box3 .box3_title h6 {
        font-size: 18px;
    }

    .case_des_box3 .wz_logo {
        margin-top: 10px;
    }

    .case_des_box3 .wz_logo p {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .box1_top {
        flex-direction: column;
    }

    .box1_t_l {
        width: 100%;
    }

    .box1_t_l_title h6 {
        font-size: 23px;
        margin-bottom: 14px;
        justify-content: center;
    }

    .box1_bom ul li a {
        width: 90px;
    }

    .box1_t_r_good {
        width: 100%;
    }

    .box1_t_r_more {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }

    .box1_t_r_more a {
        margin-bottom: 8px;
        margin-right: 10px;
        width: 160px;
    }

    .box1_t_r_more a:last-child {
        margin-right: 0;
    }

    .case_des_box1 {
        padding: 28px 0;
    }

    .cse_des_box2 {
        padding: 30px 0 15px;
    }

    .cse_des_box2_title {
        font-size: 23px;
        margin-bottom: 18px;
    }

    .cse_des_box2_mind ul li {
        padding: 8px;
        margin-bottom: 16px;
    }

    .cse_des_box2_mind ul li:last-child {
        margin-bottom: 20px;
    }

    .cse_des_box2_bom_t a {
        width: 200px;
        height: 40px;
    }

    .cse_des_box2_bom_b a {
        font-size: 16px;
    }

    .case_des_box3 {
        padding: 25px 0 30px;
    }

    .case_des_box3_title {
        margin-bottom: 16px;
    }

    .case_des_box3_title h6 {
        font-size: 23px;
    }
}