.type_area {
    max-width: 63.4vw;
    margin: 0 auto;
}

.header_box {
    background-color: #618cfd;
    position: relative;
    padding-top: 3vw;
}

.header_box_img {
    height: 38vw;
}

.header_box_img img {
    height: 100%;
    margin: 0 auto;
}

.header_box_value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3vw;
}

.header_box_value_title {
    font-weight: bold;
    font-size: 4.5vw;
    color: #FFFFFF;
}

.header_box_value_remoke {
    font-weight: 400;
    font-size: 1.2vw;
    color: #D5E1FF;
    margin-top: 0.2vw;
    margin-bottom: 2.5vw;
}

.header_box_value_button {
    font-weight: bold;
    font-size: 1.5vw;
    color: #2B2B2B;
    border: 1px solid #FFDC18;
    border-radius: 0.5vw;
    display: inline-block;
    margin: 0 auto;
    cursor: pointer;
}

.header_box_value_button_v {
    padding: 0.8vw 8vw;
    border-radius: 0.4vw;
    background-color: #FFDC18;
    transform: translate(-4px, -4px);
    transition: all 0.3s ease;
}

.header_box_value_button_v:hover {
    transform: translate(0px, 0px);
}

.header_box_value_button_v {
    padding: 0.8vw 8vw;
    border-radius: 0.4vw;
    background-color: #FFDC18;
    transform: translate(-4px, -4px);

    /* 模拟真实物理缓动 */
    animation: pulseAnimations 3s infinite;
}

@keyframes pulseAnimations {
    0% {
        transform: translate(-4px, -4px);
        border-radius: 5px;

        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    20% {
        transform: translate(-2px, -2px);
        border-radius: 5px;

    }

    50% {
        transform: translate(0px, 0px);
        border-radius: 5px;
        animation-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
    }

    80% {
        transform: translate(-2px, -2px);
        border-radius: 5px;

    }

    100% {
        transform: translate(-4px, -4px);
        border-radius: 5px;

    }
}



.main_box {
    position: relative;
}

.main_box_title {
    font-weight: 400;
    font-size: 2.2vw;
    color: #000000;
    text-align: center;
    margin: 2.84vw auto;
}

.main_box_g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
}

.main_box_g_item {
    padding: 2vw 2.2vw;
    background: rebeccapurple;
    color: #ffffff;
    border-radius: 0.8vw;
    padding-bottom: 3vw;
    position: relative;
    z-index: 0;
}

.main_box_g_item::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 1vw;
    color: #ffffff70;
    font-size: 2vw;
    z-index: -1;
    font-weight: 600;
}

.main_box_g_item_1 {
    background-color: #618CFD;
}

.main_box_g_item_2 {
    background-color: #07D0BE;
}

.main_box_g_item_3 {
    background-color: #FFAD28;
}

.main_box_g_item_4 {
    background-color: #FF9393;
}

.main_box_g_item_5 {
    background-color: #AC8BFF;
}

.main_box_g_item_6 {
    background-color: #2EA4FF;
}

.main_box_g_item_6::after {
    background-color: #2EA4FF;
}

.main_box_g_item_1::after {
    content: 'REALISTIC';
}

.main_box_g_item_2::after {
    content: 'INVESTIGATIVE';
}

.main_box_g_item_3::after {
    content: 'ARTISTIC';
}

.main_box_g_item_4::after {
    content: 'SOCIAL';
}

.main_box_g_item_5::after {
    content: 'ENTERPRISE';
}

.main_box_g_item_6::after {
    content: 'CONVENTIONAL';
}

.main_box_g_item_title {
    text-align: center;
    font-weight: bold;
    font-size: 1.4vw;
    margin-bottom: 1.5vw;
    position: relative;
    z-index: 0;
}

.main_box_g_item_remoke {
    font-weight: 400;
    font-size: 0.84vw;
    position: relative;
    z-index: 0;
}

.main_box_f {
    margin: 7vw auto;
}

.main_box_f_item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2vw;
    position: relative;
}

.main_box_f_item img {
    width: 100%;
    height: 100%;
}

.main_box_f_item_1 {
    padding-bottom: 5vw;
}

.main_box_f_item_2 {
    padding-top: 5vw;
}

.main_box_f_item_text {
    position: relative;
    opacity: 0;
}

.main_box_f_item_text_title {
    font-weight: 400;
    font-size: 2.2vw;
    color: #000000;
    margin-bottom: 2.5vw;
}

.main_box_f_item_text_title span {
    color: #0F69FF;
}

.main_box_f_item_text_remoke {
    margin-bottom: 1.5vw;
    font-size: 1vw;
    line-height: 1.6vw;
    color: #333333;
}

.main_box_f_item_text_remoke span {
    color: #0F69FF;
}

.main_box_f_item_img {
    opacity: 0;

    display: flex;
    align-items: center;
    flex-direction: column;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.active,
.slide-in-right.active {
    opacity: 1 !important;
    transform: translateX(0);
}

.main_box_f_tags {
    background-color: #f7fafc;
    border: 1px solid #f7fafc;
    overflow: hidden;
}

.main_box_f_tags_box {
    position: relative;
    width: 100vw;
    height: 20vw;
    overflow: hidden;
    pointer-events: none;
}

@media (max-width: 768px) {
    .main_box_f_tags_box {
        height: 60vw;
    }

}

.main_box_f_tags_item {
    position: absolute;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    white-space: nowrap;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
    pointer-events: auto;
}

.main_box_f_tags_item:hover {
    opacity: 0.8;
    transform: scale(1.05);
    transition: all 0.2s;
}

.main_box_f_tags_item_img {
    width: 2.3vw;
    height: 2.3vw;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.main_box_f_tags_item_img_text {
    font-size: 1vw;
    color: #333333;
    font-weight: 500;
    user-select: none;
    line-height: 1vw;
    padding-right: 1vw;
}

@keyframes barrageMove {
    from {
        transform: translateX(100vw);
    }

    to {
        transform: translateX(-100%);
    }
}


.main_box_f_fot_box {
    background: linear-gradient(to bottom,
            #f7fafc 0%,
            #f7fafc 4vw,
            #618CFD 4vw,
            #618CFD 100%);
}

.main_box_f_fot {
    display: flex;
    color: #FFFFFF;
    align-items: flex-end;
    position: relative;
}

.main_box_f_fot_left {
    margin-top: 1vw;
    flex: 2.2;
    margin-right: 2vw;
}

.main_box_f_fot_title {
    font-weight: bold;
    font-size: 2vw;
    color: #FFFFFF;
    margin-bottom: 1vw;
    padding-top: 6vw;
}

.main_box_f_fot_remoke {
    font-weight: 400;
    font-size: 1vw;
    color: #FFFFFF;
    margin-bottom: 7.5vw;
}

.main_box_f_fot_rigth {
    flex: 1;
    margin-bottom: 4vw;
    z-index: 1;
}


.main_box_f_key {
    margin-top: -5vw;
    background-color: #FFFFFF;
    border: 1px solid transparent;
    z-index: 2;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 0.5vw;
    max-width: 70vw;
}

.main_box_f_key .main_box_title {
    margin-bottom: 1vw;
}

.main_box_f_key_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1vw;
    padding: 0 2vw;
    margin-top: 3vw;
}



.main_box_f_key_item_1 {
    background-image: url(https://laoguo-caiji.oss-cn-beijing.aliyuncs.com/ceping/static/83/detail/main_box_f_key_item_1.png);
}

.main_box_f_key_item_2 {
    background-image: url(https://laoguo-caiji.oss-cn-beijing.aliyuncs.com/ceping/static/83/detail/main_box_f_key_item_2.png);
}

.main_box_f_key_item_3 {
    background-image: url(https://laoguo-caiji.oss-cn-beijing.aliyuncs.com/ceping/static/83/detail/main_box_f_key_item_3.png);
}


.main_box_f_key_item {
    padding: 1vw;
    padding-right: 2vw;
    margin-bottom: 2.5vw;
    position: relative;
    z-index: 0;
    margin-right: 2vw;
}

.main_box_f_key_item {
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;

}

.main_box_f_key_item_icon {
    width: 4vw;
    height: 4vw;
    margin-left: 0.5vw;
}

.main_box_f_key_item_title {
    font-size: 1.5vw;
    margin-bottom: 1vw;
}

.main_box_f_key_item_remoke {
    font-size: 1vw;

}












.card_title_info_box {
    padding: 60px 0;
    background-color: #ffffff;
    padding-bottom: 30px;
}

.card_title_info {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;

}

.card_title_info_left {
    flex: 0.4;
    padding: 30px;
}

.card_title_info_rigth {
    flex: 1;
}

.card_title_info_left_title {
    font-weight: bold;
    font-size: 50px;
    color: #181818;
    line-height: 60px;
    margin-bottom: 20px;
}

.card_title_info_left_remoke {
    font-weight: 400;
    font-size: 21px;
    color: #333333;
    line-height: 25px;
    margin-bottom: 56px;
}

.card_title_info_left_button {
    display: inline-block;
    border-radius: 32px;
    color: #ffffff;
    padding: 10px 43px;
    background-color: #618cfd;
    cursor: pointer;
    text-align: center;
    margin-right: 89px;
    font-size: 21px;
    border: 1px solid transparent;
}

.card_title_info_left_button:hover {
    background-color: #FFFFFF;
    color: #2D32B0;
    border-color: #2D32B0;
}

.jk_5_accordion {
    margin: 0 80px;
    overflow: hidden;
    background: #fff;
}

.jk_5_card {
    border-bottom: 1px solid #ddd;
}

.jk_5_card:last-child {
    border-bottom: none;
}

.jk_5_card_header {
    padding: 15px 20px;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

.jk_5_card_header h3 {
    margin: 0;
    font-size: 16px;
}

.jk_5_card_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
    background: #fff;
    color: #333;
}

.jk_5_card_content p {
    margin: 15px 0;
    margin-top: 0;
}

.jk_5_card.active .jk_5_card_content {
    max-height: 200px;
    padding: 15px 20px;
    padding-top: 0;
}

.jk_5_arrow {
    display: inline-block;
    margin-left: 5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    transition: transform 0.3s ease;
}

.jk_5_card.active .jk_5_arrow {
    transform: rotate(90deg);
}









@media (max-width: 768px) {

    .card_title_info_box {
        padding: 3vw 0;
        padding-bottom: 7vw;
    }

    .card_title_info {
        max-width: 100%;
        margin: 0 auto;
        flex-direction: column;
    }

    .card_title_info_left {
        flex: 1;
        padding: 9vw;
        padding-bottom: 4vw;
    }

    .card_title_info_rigth {
        flex: 1;
    }

    .card_title_info_left_title {
        font-size: 7vw;
        line-height: 10vw;
        margin-bottom: 4vw;
        margin-right: 0;
        text-align: center;
    }

    .card_title_info_left_remoke {
        font-weight: 400;
        font-size: 4vw;
        line-height: 6vw;
        margin-right: 0;
        text-align: center;
        margin: 0 8vw;
        margin-bottom: 0;
    }

    .card_title_info_left_button {
        border-radius: 7vw;
        color: #ffffff;
        padding: 2vw 7vw;
        font-size: 4.5vw;
        padding-bottom: 3vw;
        margin-right: 0;
        display: block;
        margin-top: 4vw;
    }

    .jk_5_accordion {
        margin: 0 3vw;
    }

    .jk_5_card_header {
        padding: 1.5vw 2vw;
        font-size: 4vw;
        line-height: 8.5vw;
    }

    .jk_5_card_header h3 {
        margin: 0;
        font-size: 4.5vw;
    }

    .jk_5_card_content {
        max-height: 0;
        padding: 0 20px;
    }

    .jk_5_card_content p {
        margin: 3vw 0;
        margin-top: 0;
    }

    .jk_5_card.active .jk_5_card_content {
        padding: 5.5vw 4vw;
        padding-top: 0;
        font-size: 3.5vw;
        line-height: 5.2vw;
    }

    .jk_5_arrow {
        margin-left: 3vw;
        width: 0;
        height: 0;
        border-left: 2vw solid transparent;
        border-right: 2vw solid transparent;
        border-top: 2vw solid #333;
        transition: transform 0.3s ease;
    }

}








.footer {
    background: #373737;
    color: #ffffff;
}

.footer_box {
    max-width: 63.4vw;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
}

.footer_box_left {
    flex: 2.5;
    margin-top: 2vw;
    padding-bottom: 2vw;
}

.footer_box_rigth {
    flex: 1;
    position: relative;
}

.footer_box_left_title {
    font-weight: 400;
    font-size: 24px;
    color: #FFFFFF;
}

.footer_box_left_data {
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.footer_box_left_data_left {
    margin-right: 1vw;
    flex: 2;
}

.footer_box_left_data_rigth {
    padding: 1vw;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_box_left_data_rigth_button {
    cursor: pointer;
    border: 1px solid #ffffff;
    margin: 0.3vw 3vw;
    border-radius: 1vw;
    text-align: center;
    display: inline-block;
    padding: 0.1vw 1.5vw;
}



.footer_box_rigth_but {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-50%);
    left: 50%;
    top: 0;
}

.footer_box_rigth_but img {
    width: 100%;
    height: 100%;
}


.footer_box_rigth_but_ico {
    width: 1.5vw;
    height: 1.5vw;
    margin-right: 0.5vw;
}

.footer_box_rigth_but_tex {
    font-size: 0.8vw;
}

.m_display_none {
    display: block;
}

.m_display_block {
    display: none;
}

@media (max-width: 768px) {



    .m_display_none {
        display: none;
    }

    .m_display_block {
        display: block;
    }

    .type_area {
        max-width: 94vw;
        margin: 0 auto;
    }



    .header_box_img {
        height: 65vw;
        margin-top: 35vw;
    }

    .header_box_img img {
        object-fit: cover;
    }

    .header_box_value {
        width: 80vw;
        margin-top: 9vw;
    }

    .header_box_value_title {
        font-size: 11vw;
    }

    .header_box_value_remoke {
        font-size: 4.2vw;
        margin-top: 3.2vw;
        margin-bottom: 8.5vw;
        text-align: center;
    }





    .header_box_value_button {
        font-size: 5.5vw;
        border: 0.2vw solid #FFDC18;
        border-radius: 1.5vw;
    }

    .header_box_value_button_v {
        padding: 3vw 21vw;
        border-radius: 1.4vw;
        transform: translate(-1vw, -1vw);
    }

    .header_box_value_button_v:hover {
        transform: translate(0px, 0px);
        border-radius: 5px;

    }


    .main_box_title {
        font-size: 6.2vw;
        margin: 6vw auto;
    }

    .main_box_g {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        margin-top: 3vw;
        margin-bottom: 5vw;
    }







    .main_box_title {
        font-weight: 400;
        font-size: 7vw;
        margin: 5vw auto;
    }


    .main_box_g_item {
        padding: 4vw;
        color: #ffffff;
        border-radius: 0.8vw;
        padding-bottom: 3vw;
    }

    .main_box_g_item::after {
        top: 2vw;
        font-size: 5vw;
        z-index: -1;
    }

    .main_box_g_item_title {
        font-size: 4.4vw;
        margin-bottom: 3.5vw;
    }

    .main_box_g_item_remoke {
        font-size: 3.1vw;
    }

    .main_box_f_item {
        grid-template-columns: repeat(1, 1fr);
        gap: 2vw;
    }



    .main_box_f_item_text_title {
        font-weight: 400;
        font-size: 6.2vw;
        margin-bottom: 2.5vw;
        text-align: center;
    }


    .main_box_f_item_text_remoke {
        margin-bottom: 3.5vw;
        font-size: 3.1vw;
        line-height: 4.5vw;
    }

    .main_box_f_item_2 .main_box_f_item_text_title {

        text-align: left;

    }

    .main_box_f_item_img {
        max-width: 80vw;
        margin: 0 auto;
    }


    .main_box_f_item_2 .main_box_f_item_img {
        order: 1;
        max-width: 60vw;
        margin-bottom: 10vw;

    }















    .main_box_f_tags_item {
        border-radius: 8vw;
    }



    .main_box_f_tags_item_img {
        width: 9.3vw;
        height: 9.3vw;
        border-radius: 50%;
        margin-right: 10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .main_box_f_tags_item_img_text {
        font-size: 4vw;
        font-weight: 500;
        line-height: 4vw;
        padding-right: 3vw;
    }






    .main_box_f_fot_box {
        background: linear-gradient(to bottom,
                #f7fafc 0%,
                #f7fafc 9vw,
                #618CFD 9vw,
                #618CFD 100%);
    }



    .main_box_f_fot {
        align-items: flex-start;
    }



    .main_box_f_fot_left {
        margin: 0 4vw;
        margin-top: 1vw;
        flex: 2.2;
        /* margin-right: 0; */
        /* font-size: 1vw; */
    }

    .main_box_f_fot_title {
        font-size: 7vw;
        margin-bottom: 1vw;
        padding-top: 15vw;
        width: 40vw;
        padding-bottom: 6vw;
    }

    .main_box_f_fot_remoke {
        font-size: 2.7vw;
        margin-bottom: 7.5vw;
    }

    .main_box_f_fot_rigth {
        margin-bottom: 4vw;
        position: absolute;
        right: 0;
        top: 0;
        width: 40vw;
    }




    .main_box_f_key {
        margin: 0;
        width: 100vw;
        max-width: 100vw !important;
        margin-top: 6vw;
        box-shadow: none;
    }


    .main_box_f_key_box {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1vw;
        padding: 0 2vw;
        margin-top: 12vw;
    }





    .main_box_f_key_item {
        padding: 1vw;
        padding-right: 2vw;
        margin-bottom: 2.5vw;
        position: relative;
        z-index: 0;
        margin-right: 2vw;
    }

    .main_box_f_key_item {
        background-repeat: no-repeat;
        background-size: contain;
        background-position: top right;
        padding: 0 6vw;
        padding-bottom: 1vw;
        margin-bottom: 16vw;
    }

    .main_box_f_key_item_icon {
        width: 9vw;
        height: 9vw;
        margin-left: 2vw;
        margin-bottom: 7vw;
        /* background: #000000; */
        margin-top: 8vw;
    }

    .main_box_f_key_item_title {
        font-size: 6vw;
        margin-bottom: 4vw;
    }

    .main_box_f_key_item_remoke {
        font-size: 4vw;
        color: #666666;
    }
















    .footer_box {
        display: flex;
        align-items: flex-end;
        flex-direction: column;
        max-width: 100vw;
    }

    .footer_box_left {
        flex: 1.8;
        margin-top: 2vw;
        padding-bottom: 2vw;
        text-align: center;
        max-width: 94vw;
        margin: 0 auto;
    }

    .footer_box_rigth {
        flex: 1;
        width: 100vw;
        background: #618cfd;
        padding-top: 13vw;
        display: none;
    }

    .footer_box_left_title {
        font-weight: 400;
        font-size: 5vw;
        margin: 4vw 0;
    }

    .footer_box_left_data {
        font-weight: 400;
        font-size: 3.5vw;
        flex-direction: column;
        text-align: center;
        margin-bottom: 4vw;
    }

    .footer_box_left_data_left {
        margin-right: 0;
        flex: 2;
        margin-bottom: 3.5vw;
        padding: 0 5vw;
    }

    .footer_box_left_data_rigth {
        padding: 1vw;
        flex: 1;
        flex-direction: row-reverse;
        margin-top: 13vw;
    }

    .footer_box_left_data_rigth_button {
        border: 1px solid #ffffff;
        margin: 0.3vw 1vw;
        border-radius: 4vw;
        padding: 1vw 7vw;
    }


    .footer_remoke {
        font-size: 3vw;
        margin: 6vw 0;
    }



    .footer_box_rigth img {
        max-width: 67vw;
        margin: 0 auto;
    }


    .footer_box_rigth_but {
        top: 33vw;
        display: flex;
    }

    .footer_box_rigth_but img {
        width: 100%;
        height: 100%;
    }


    .footer_box_rigth_but_ico {
        width: 8.5vw;
        height: 8.5vw;
        margin-right: 10px;
    }

    .footer_box_rigth_but_tex {
        font-size: 3.8vw;
    }



}