* {
    padding: 0;
    margin: 0;
}

ul, ol, table, blockquote {
    margin: 0;
    padding: 0;
}

ul, ol {
    list-style-type: none;
}

:root {
    /*--contact_us_line_anim_inition_width与contact_us_line_anim_inition_position的绝对值一致*/
    --contact_us_hint_anim_con_common_width: 500px;
    --contact_us_line_anim_inition_position: -600px;
    --contact_us_line_anim_inition_width: 600px;
    --top_header_m_height: 60px;
    --quick_contact_tag_img_size: 30px;
}

html {
    font: normal normal normal 14px/normal "Microsoft YaHei";
    overflow-x: hidden;
    color: rgb(51, 51, 51);
    background-color: rgba(240, 248, 255, 0.6);
}

body {
    overflow: hidden;
    position: relative;
}

/*圆形*/
.body_bkg1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(43deg, rgb(53, 131, 200, 0.3) 0%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
}

.body_bkg1_m {
    width: 200px;
    height: 200px;
    background: linear-gradient(43deg, rgb(53, 131, 200, 0.3) 0%, rgb(255, 255, 255) 80%, rgba(255, 255, 255, 0) 100%);
    border-radius: 50%;
}

/*圆形*/
.body_bkg2 {
    width: 900px;
    height: 900px;
    background: linear-gradient(125deg, rgba(142, 220, 169, 0.3) 0%, rgba(170, 232, 213, 0.09) 72%, rgba(163, 23, 234, 0.02) 73%, rgba(117, 31, 222, 0.02) 74%, rgba(170, 232, 213, 0.09) 75%, rgba(255, 255, 255, 0.89) 90%, rgb(255, 255, 255) 100%);
    border-radius: 50%;
}

.body_bkg2_m {
    width: 300px;
    height: 300px;
    background: linear-gradient(125deg, rgba(142, 220, 169, 0.3) 0%, rgba(170, 232, 213, 0.09) 72%, rgba(163, 23, 234, 0.02) 73%, rgba(117, 31, 222, 0.02) 74%, rgba(170, 232, 213, 0.09) 75%, rgba(255, 255, 255, 0.89) 90%, rgb(255, 255, 255) 100%);
    border-radius: 50%;
}

/*菱形*/
.body_bkg3 {
    width: 900px;
    height: 900px;
    background: linear-gradient(90deg, rgba(169, 169, 169, 0.35) 0%, rgba(55, 155, 234, 0.7) 60%, white 87%);
    clip-path: polygon(50% 0, 90% 50%, 50% 100%, 10% 50%);
    animation-name: bkg3;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-direction: alternate;
}

.body_bkg3_m {
    width: 200px;
    height: 200px;
    background: linear-gradient(90deg, rgba(169, 169, 169, 0.35) 0%, rgba(55, 155, 234, 0.7) 60%, white 87%);
    clip-path: polygon(50% 0, 90% 50%, 50% 100%, 10% 50%);
    animation-name: bkg3;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-direction: alternate;
}

/*圆形*/
.body_bkg4 {
    width: 900px;
    height: 900px;
    border-radius: 50%;
    background: linear-gradient(295deg, rgba(255, 255, 0, 0.77) 0%, rgba(255, 255, 0, 0.17) 80%, white 90%);
}

.body_bkg4_m {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(295deg, rgba(255, 255, 0, 0.77) 0%, rgba(255, 255, 0, 0.17) 80%, white 90%);
}

/*圆形*/
.body_bkg5 {
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: linear-gradient(245deg, rgba(144, 93, 220, 0.55) 0%, rgba(111, 75, 215, 0.17) 70%, whitesmoke 90%);
    animation-name: bkg5;
    animation-direction: alternate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

.body_bkg5_m {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(245deg, rgba(144, 93, 220, 0.55) 0%, rgba(111, 75, 215, 0.17) 70%, whitesmoke 90%);
    animation-name: bkg5;
    animation-direction: alternate;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

@keyframes bkg3 {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1.1) scale(1.05);
    }
}

@-moz-keyframes bkg3 {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1.1) scale(1.05);
    }
}

@-o-keyframes bkg3 {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(1.1) scale(1.05);
    }
}

@keyframes bkg5 {
    0% {
        transform: scaleX(1);
        filter: contrast(1) brightness(100%) hue-rotate(0deg);
    }
    100% {
        transform: scaleX(0.95);
        filter: contrast(1.3) brightness(120%) hue-rotate(10deg);
    }
}

@-o-keyframes bkg5 {
    0% {
        transform: scaleX(1);
        filter: contrast(1) brightness(100%) hue-rotate(0deg);
    }
    100% {
        transform: scaleX(0.95);
        filter: contrast(1.3) brightness(120%) hue-rotate(10deg);
    }
}

@-moz-keyframes bkg5 {
    0% {
        transform: scaleX(1);
        filter: contrast(1) brightness(100%) hue-rotate(0deg);
    }
    100% {
        transform: scaleX(0.95);
        filter: contrast(1.3) brightness(120%) hue-rotate(10deg);
    }
}


a {
    text-decoration: none;
    color: rgb(51, 51, 51);
}

#footer a {
    text-decoration: none;
    color: #929496;
}

/*a:visited {*/
/*    color: #929496;*/
/*}*/

#top_header {
    padding: 0 280px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 80px;
    /*background-color: rgba(255, 255, 255, 0.3);*/
    backdrop-filter: blur(3px);
    width: 100%;
    box-sizing: border-box;
    transition: all 0.8s;
    transform-origin: center top;
}

#top_header_inner_ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;

}

#top_header_inner_ul a {
    color: white;
    /*color: #646a73;*/
    /*color: #3370ff;*/
    margin: 0 20px;
    transition: color 0.3s;
    -webkit-transition: color 0.3s;
    letter-spacing: 2px;
}

@media screen and (max-width: 1920px) {
    #top_header_inner_ul a {
        color: white;
        margin: 0 9px;
        transition: color 0.3s;
        -webkit-transition: color 0.3s;
        letter-spacing: 2px;
    }
}

#top_header_inner_ul a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.index_video_con {

    position: relative;
    z-index: 2;
}

.index_video {
    width: 100vw;
    height: 100vh;
    object-fit: fill;
    position: relative;
    z-index: 2;
}

.index_video_mask {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgba(51, 112, 255, 0.2);
}

.index_video_hint_con {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.index_video_hint_con div {
    color: white;

}


.index_video_hint_slogan {
    font-size: 45px;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    word-break: keep-all;
}

.index_video_hint_comment {
    font-size: 14px;
    position: relative;
    height: 20px;
    text-align: center;
    padding: 0 140px;
    letter-spacing: 12px;
    word-break: keep-all;
}

.index_video_hint_comment:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), white, rgba(255, 255, 255, 0.1));
}

.index_video_hint_comment:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 100px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), white, rgba(255, 255, 255, 0.1));
}

.slideshow_con {
    width: 86vw;
    height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

#slideshow_hidden_div {
    width: 0;
    height: 0;
    position: relative;
}

.slideshow_ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: relative;
    list-style-type: none;
}

.slideshow_li {

}

.slideshow_inner_img {
    width: 86vw;
    height: 100vh;
}

.slideshow_dot_con {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.slideshow_dot {
    width: 25px;
    height: 25px;
    border: 2px solid #dedede;
    background: transparent;
    border-radius: 50%;
    margin: 0 20px;
    cursor: pointer;
}

.slideshow_dot:first-child {
    background-color: rgb(173, 167, 163);
}

@keyframes slideshow_hint_anim {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

.slideshow_left_top_hint {
    width: 340px;
    height: 200px;
    position: absolute;
    z-index: 2;
    left: 215px;
    top: 110px;
    background: linear-gradient(135deg, transparent, white);
    border-top-left-radius: 135px;
    border-bottom-right-radius: 135px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transform-origin: center center;
    animation-name: slideshow_hint_anim;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1.7s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

.slideshow_left_top_hint_inner1 {
    font-weight: 500;
    font-size: 30px;
    color: rgba(245, 245, 245, 0.5);
}

.slideshow_left_top_hint_inner_common {
    font-size: 30px;
    color: rgba(0, 0, 0, 0.5);
}


#company_culture_pc_con {
    width: 60vw;
    margin: 150px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
}

.company_culture_pc_left {
    text-align: left;
    width: 40%;
    position: relative;
    left: -40px;
    top: 0;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center center;
}

@keyframes company_culture_pc_left_anim_name {
    100% {
        left: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes company_culture_pc_left_anim_name {
    100% {
        left: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes company_culture_pc_left_anim_name {
    100% {
        left: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes company_culture_pc_right_anim_name {
    100% {
        right: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes company_culture_pc_right_anim_name {
    100% {
        right: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes company_culture_pc_right_anim_name {
    100% {
        right: 0;
        opacity: 1;
        transform: scale(1);
    }
}

.company_culture_pc_left_anim {
    animation-name: company_culture_pc_left_anim_name;
    animation-duration: 800ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-direction: normal;
}

.company_culture_pc_right_anim {
    animation-name: company_culture_pc_right_anim_name;
    animation-duration: 800ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-direction: normal;
}

.company_culture_pc_right {
    width: 880px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background-color: white;
    top: 0;
    right: -40px;
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center center;
}

.company_culture_pc_right_item_con {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0 auto;
    width: 880px;
    position: relative;
    left: -880px;
    z-index: 3;
}

.company_culture_pc_right_item {
    flex: auto;
}


.culture_summary {
    font-size: 26px;
}

.company_culture_pc_img {
    width: 880px;
    height: 495px;
}

#company_culture_pc_right_item_mirror_mask_id {
    width: 880px;
    height: 495px;
    position: absolute;
    top: 0;
    left: -881px;
    background-color: rgba(245, 245, 245, 0.5);
    z-index: 4;
}

.company_culture_pc_right_item_inner_summary {
    font-size: 32px;
    margin: 20px 0 40px 180px;
    position: relative;
}

.company_culture_pc_right_item_inner_ul {
    list-style: none;
    padding: 0 0 40px 200px;
}

.company_culture_pc_right_item_inner_li {
    font-size: 20px;
    margin: 10px 0;
    position: relative;
}

.company_culture_pc_right_item_inner_li:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: rgb(0, 0, 0);
}

.company_culture_pc_right_inner_arrow {
    font-size: 50px;
    color: rgba(0, 160, 233, 0.5);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.left_arrow {
    left: -100px;
}

.left_arrow:hover, .right_arrow:hover {
    filter: grayscale(100)
}

.right_arrow {
    right: 80px;
}

#advantage {
    width: 100%;
    margin: 180px auto;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}


@keyframes advantage_hint_anim {
    100% {
        top: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes advantage_hint_anim {
    100% {
        top: 0;
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes advantage_hint_anim {
    100% {
        top: 0;
        opacity: 1;
        transform: scale(1);
    }
}


.advantage_hint_anim {
    animation-name: advantage_hint_anim;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

.advantage_hint {
    position: relative;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    left: 0;
    top: -40px;
    transform: scale(0.9);
}

.advantage_bkg_hint {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #d3d3d300;
    top: -27px;
    left: 0;
    z-index: 1;
    font-size: 40px;
    text-shadow: 2px 2px 5px lightgray;
    letter-spacing: 10px;
}

.advantage_hint_inner_p {
    font-size: 25px;
    margin: 20px 0;
    z-index: 2;
    white-space: pre;
}

.advantage_ul {
    width: 60%;
    margin: 40px auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    list-style: none;
    position: relative;
}

.advantage_inner_li {
    height: auto;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    position: relative;
    bottom: -100px;
    transform: scale(0.8);
    box-sizing: border-box;
    width: 25%;
}

@keyframes advantage_inner_li_anim {
    100% {
        bottom: 0;
        transform: scale(1) rotateY(360deg);
        opacity: 1;
    }
}

@-moz-keyframes advantage_inner_li_anim {
    100% {
        bottom: 0;
        transform: scale(1) rotateY(360deg);
        opacity: 1;
    }
}

@-o-keyframes advantage_inner_li_anim {
    100% {
        bottom: 0;
        transform: scale(1) rotateY(360deg);
        opacity: 1;
    }
}

.advantage_inner_li_anim {
    animation-name: advantage_inner_li_anim;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 0.8s;
    animation-timing-function: ease;
}

.advantage_inner_li_img_con {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    transition: all 0.5s;
}

.advantage_inner_li_img_con:hover {
    filter: saturate(200%);
}

.advantage_inner_li_img {

}

.advantage_inner_li_hint_con {
    width: 240px;
    color: #7c7c7c;
}

.advantage_inner_li_hint_summary {
    text-align: center;
    margin: 20px 0;
    color: #4d4d4d;
}

.advantage_inner_li_hint_desc {
    text-align: center;
    margin: 20px 0 0;
    text-overflow: ellipsis;
    overflow: hidden;
    height: auto;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

#service_team {
    margin: 150px auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.service_team_bkg_con {

    width: 100%;
    height: auto;
    z-index: 1;
}

.service_team_bkg_img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.service_team_bkg_mask {
    background-color: rgba(19, 19, 19, 0.76);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service_team_hint_con {
    width: 100%;
    left: -100%;
    top: 0;
    position: absolute;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;

}

.service_team_hint {
    width: 100%;
    text-align: center;
    color: #ffffff00;
    top: 40px;
    left: 0;
    z-index: 1;
    font-size: 40px;
    text-shadow: 4px 4px 5px #ffffff;
    letter-spacing: 10px;
}

.service_team_small_word_hint {
    font-size: 14px;
    width: 100%;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    margin: 20px 0;
}

.service_team_er_con {
    top: 40%;
    height: 60%;
    z-index: 2;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.service_team_inner_ul {
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-flow: row wrap;
    list-style: none;
}

.service_team_inner_li {
    margin: 0 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    transform: scale(0);
    opacity: 0;
    filter: blur(20px) brightness(50%);
}

.service_team_inner_li_er_img_con {
    position: relative;
    overflow: hidden;
    transition: all 1s;
    border-radius: 50%;

}

.service_team_inner_li_er_img {
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.service_team_inner_li_er_img_mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0;
    z-index: 1;
}

.service_team_er_name {
    color: white;
    margin: 20px 0 0;
}

.service_team_er_position {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-251px);
    font-size: 16px;
    color: white;
    z-index: 4;
}


@keyframes service_team_er_img_anim {
    0% {
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-251px);
    }
    50% {
        transform: translateX(220px) translateY(-50%);
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}

@-o-keyframes service_team_er_img_anim {
    0% {
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-251px);
    }
    50% {
        transform: translateX(220px) translateY(-50%);
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}

@-moz-keyframes service_team_er_img_anim {
    0% {
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-251px);
    }
    50% {
        transform: translateX(220px) translateY(-50%);
    }
    100% {
        transform: translateX(-50%) translateY(-50%);
    }
}

@keyframes service_team_er_mask_anim {
    100% {
        opacity: 0.65;
    }
}

@-o-keyframes service_team_er_mask_anim {
    100% {
        opacity: 0.65;
    }
}

@-moz-keyframes service_team_er_mask_anim {
    100% {
        opacity: 0.65;
    }
}

@keyframes service_team_er_img_leave_anim {
    0% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(-130px) translateX(-50%);
        opacity: 0;
    }
}

@-moz-keyframes service_team_er_img_leave_anim {
    0% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(-130px) translateX(-50%);
        opacity: 0;
    }
}

@-o-keyframes service_team_er_img_leave_anim {
    0% {
        transform: translateX(-50%) translateY(-50%);
        opacity: 1;
    }
    100% {
        transform: translateY(-130px) translateX(-50%);
        opacity: 0;
    }
}

@keyframes service_team_er_img_leave_mask_anim {
    0% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes service_team_er_img_leave_mask_anim {
    0% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes service_team_er_img_leave_mask_anim {
    0% {
        opacity: 0.65;
    }
    100% {
        opacity: 0;
    }
}

.service_team_hint_con_id_anim {
    animation-name: service_team_hint_anim;
    animation-duration: 500ms;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
}

@keyframes service_team_hint_anim {
    0% {
        left: -100%;
    }
    50% {
        left: 40vw;
    }
    100% {
        left: 0;
    }
}

@-o-keyframes service_team_hint_anim {
    0% {
        left: -100%;
    }
    50% {
        left: 40vw;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes service_team_hint_anim {
    0% {
        left: -100%;
    }
    50% {
        left: 40vw;
    }
    100% {
        left: 0;
    }
}

@keyframes service_team_inner_li_anim {
    0% {
        transform: scale(0);
        opacity: 0;
        filter: blur(10px) brightness(50%);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
        filter: blur(5px) brightness(75%);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0) brightness(100%);
    }
}

@-moz-keyframes service_team_inner_li_anim {
    0% {
        transform: scale(0);
        opacity: 0;
        filter: blur(10px) brightness(50%);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
        filter: blur(5px) brightness(75%);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0) brightness(100%);
    }
}

@-o-keyframes service_team_inner_li_anim {
    0% {
        transform: scale(0);
        opacity: 0;
        filter: blur(10px) brightness(50%);
    }
    50% {
        transform: scale(1.2);
        opacity: 0.5;
        filter: blur(5px) brightness(75%);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0) brightness(100%);
    }
}

.service_team_inner_li_anim {
    animation-name: service_team_inner_li_anim;
    animation-duration: 500ms;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
}


#production {
    width: 100%;
    margin: 150px auto;
    position: relative;
    z-index: 2;
}

.product_hint {
    font-size: 40px;
    text-align: center;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: scale(0);
    margin: 80px 0;
}

.product_hint_anim {
    animation-name: production_hint_anim;
    animation-fill-mode: forwards;
    animation-duration: 1s;
    animation-iteration-count: 1;

}

.english_hint {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #d3d3d300;
    top: -27px;
    left: 0;
    z-index: 1;
    font-size: 40px;
    text-shadow: 2px 2px 5px lightgray;
    letter-spacing: 10px;
}

.chinese_hint {
    position: relative;
    z-index: 3;
}

.production_con {

}

.production_inner_ul {
    list-style: none;
    max-width: 80%;
    margin: 20px auto;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;
    flex-flow: row wrap;
    position: relative;
}

.production_inner_li {
    width: 320px;
    height: auto;
    margin: 20px 40px;
    cursor: pointer;
    position: relative;
    left: -400px;
    opacity: 0;
}

.production_inner_li_img_con {
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 180px;
    border-radius: 8px;
}

.production_inner_li_img {
    transition: all 0.5s;

}

.production_inner_li_img_con:hover .production_inner_li_img {
    filter: blur(4px);
}

.production_inner_li_img_con:hover .production_inner_li_desc {
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 1;
}

.production_inner_li_name {
    text-align: center;
    font-size: 18px;
    margin: 20px 0;
}

.production_inner_li_desc {
    position: absolute;
    left: 0;
    bottom: -90px;
    transition: all 0.5s;
    padding: 20px;
    opacity: 0;
    width: 100%;
    box-sizing: border-box;
    word-break: break-all;
    text-align: justify;
}

@keyframes production_hint_anim {
    0% {
        opacity: 0;
        transform: scale(0) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(720deg);
    }

}

@-o-keyframes production_hint_anim {
    0% {
        opacity: 0;
        transform: scale(0) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(720deg);
    }
}

@-moz-keyframes production_hint_anim {
    0% {
        opacity: 0;
        transform: scale(0) rotateX(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateX(720deg);
    }
}

.production_inner_li_anim {
    animation-name: production_li_anim;
    animation-fill-mode: forwards;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

.production_inner_li_img_anim {
    animation-name: production_li_img_anim;
    animation-fill-mode: none;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
}

@keyframes production_li_img_anim2 {
    100% {
        transform: skew(180deg);
    }
}

@-moz-keyframes production_li_img_anim2 {
    100% {
        transform: skew(180deg);
    }
}

@-o-keyframes production_li_img_anim2 {
    100% {
        transform: skew(180deg);
    }
}

.production_li_img_anim2 {
    animation-name: production_li_img_anim2;
    animation-iteration-count: 1;
    animation-duration: 0.5s;
    animation-timing-function: ease;
}


@keyframes production_li_img_anim {
    0% {
        filter: brightness(0%);
        transform: rotateZ(0deg);
    }
    100% {
        filter: brightness(100%);
        transform: rotateZ(360deg);
    }
}

@-o-keyframes production_li_img_anim {
    100% {
        transform: rotateZ(360deg);
    }
}

@-moz-keyframes production_li_img_anim {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes production_li_anim {
    100% {
        left: 0;
        opacity: 1;
    }
}

@-moz-keyframes production_li_anim {
    100% {
        left: 0;
        opacity: 1;
    }
}

@-o-keyframes production_li_anim {
    100% {
        left: 0;
        opacity: 1;
    }
}

#partner {
    margin: 150px auto;
    width: 100%;
    height: auto;
    padding: 50px 0;
    position: relative;
    z-index: 2;
}

.partner_hint_con {
    position: relative;
    width: 100%;
    opacity: 0;
}

.partner_chinese_hint {
    font-size: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.partner_logo_con {
    overflow: hidden;
    margin: 80px auto;
    height: 150px;
}

.partner_logo_con_inner_ul {
    width: 80%;
    list-style: none;
    height: 150px;
    position: relative;
    margin: 0 auto;
}

.partner_logo_group_con {
    height: auto;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.partner_logo_con_inner_li {
    margin: 20px 40px;
    height: 110px;
    position: relative;
    cursor: pointer;
}

.partner_logo_img {
    position: relative;
    z-index: 2;

}

.partner_logo_anim_dom {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    transform-origin: center center;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    opacity: 1;
    transform: translate(-50%, -50%) scale(0);
}

.partner_logo_anim_class {
    animation-name: partner_logo_anim;
    animation-iteration-count: 1;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: both;
}

@keyframes partner_logo_anim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@-o-keyframes partner_logo_anim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

@-moz-keyframes partner_logo_anim {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.partner_hint_anim_class {
    animation-name: partner_hint_anim;
    animation-timing-function: ease;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes partner_hint_anim {
    0% {
        opacity: 0;

    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-moz-keyframes partner_hint_anim {
    0% {
        opacity: 0;

    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-o-keyframes partner_hint_anim {
    0% {
        opacity: 0;

    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.partner_logo_all_anim_class {
    animation-name: partner_logo_all_anim;
    animation-timing-function: ease;
    animation-duration: 0.5s;
    animation-iteration-count: 1;
    animation-fill-mode: both;
}

.partner_logo_all_anim_pause_class {
    animation-play-state: paused;
}

@keyframes partner_logo_all_anim {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: grayscale(100%);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
        filter: grayscale(50%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: grayscale(0);
    }
}

@-o-keyframes partner_logo_all_anim {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: grayscale(100%);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
        filter: grayscale(50%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: grayscale(0);
    }
}


@-moz-keyframes partner_logo_all_anim {
    0% {
        opacity: 0;
        transform: scale(0);
        filter: grayscale(100%);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.5);
        filter: grayscale(50%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: grayscale(0);
    }
}


#datebook {
    width: 100%;
    margin: 150px auto;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.datebook_hint {
    width: 60%;
    margin: 100px auto;
    text-align: left;
    font-size: 48px;
    font-weight: 700;
}


.datebook_timeline {
    width: 800px;
    margin: 80px auto;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
    height: 80px;
}

.datebook_timeline_inner_ul {
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-flow: row nowrap;
    align-items: center;
    list-style: none;
    flex: 1 0 auto;
    transition: all 0.4s;
}

.datebook_timeline_inner_li {
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
}

.datebook_timeline_inner_li_img_con {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: all 0.4s;
}


.datebook_timeline_inner_li_img {
    transition: all 0.4s;
}


.datebook_timeline_inner_li_through_line {
    width: 60px;
    height: 1px;
    background-color: black;
    flex: 1 0 auto;
    position: relative;
}

.datebook_timeline_inner_li_through_line:last-child {
    display: none;
}

.datebook_item {
    display: block;
    overflow: hidden;
    width: 100%;
    margin: 20px auto;
    position: relative;
}

.datebook_item_ul {
    width: auto;
    height: 250px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    position: relative;
    transition: all 0.4s;
}

.datebook_item_li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    width: 640px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    flex: none;
    opacity: 0;
    transition: all 0.4s;
    box-shadow: rgba(0, 0, 0, 0.15) 0 4px 5px;
}

.datebook_item_li_img_con {
    font-size: 0;
}

.datebook_item_li_time_desc_con {
    width: 320px;
    height: 180px;
    background-color: white;
    padding: 13px 16px 0 25px;
    box-sizing: border-box;
}

.datebook_item_li_desc {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

.datebook_item_li_time {
    font-family: Gilroy-Bold, sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 37px;
}

#footer {
    background-color: #1f2329;
    color: #929496;
    width: 100vw;
}

.footer_base_info {
    width: 100%;
    box-sizing: border-box;
    padding: 50px 20%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
}

.friend_link_con {
    margin: 0 20%;
    padding-bottom: 50px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.friend_link_item_con {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    flex: 1 1 auto;
}

.friend_link_item {
    margin: 0 20px 5px 0;
}

.footer_inner_logo_icp_con {
    display: inline-block;
    color: #929496;
}

.footer_inner_logo_icp_con div {
    margin: 10px 0;
}

.footer_inner_class_ul {
    list-style: none;
}

.footer_inner_ul_mod {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: flex-start;
}

.footer_inner_class_link_li {
    width: 50%;
    box-sizing: border-box;
}

.footer_inner_class_link_li_m {
    width: auto;
    box-sizing: border-box;
}

.footer_inner_copy_rights {

}

.footer_inner_logo_con {

}

.footer_inner_icp {

}

.footer_inner_police {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row nowrap;
}

.footer_inner_zblog_rights {

}

.footer_inner_class_link_con {
    color: #929496;
    list-style: none;
}

.footer_inner_about_us_hint {
    font-size: 30px;
}

.footer_inner_class_ul li {
    margin: 4px 0;
    text-align: center;
}

.footer_inner_social_account {

}

.footer_height_line {
    max-width: 1px;
    min-height: 80px;
    border-right: 1px solid #929496;
}

.footer_qrcode_ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    list-style: none;
    margin-top: 40px;
}

.qrcode_li {
    position: relative;
    margin-right: 20px;
}

.footer_qrcode_hint_con {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column nowrap;
    margin: 20px;
}

.qrcode_img {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

.qrcode_hint {
    min-width: 140px;
    word-break: keep-all;
    text-align: center;
}

.qrcode_li_inner_logo {
    border-radius: 50%;
}

.footer_qrcode_container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: row nowrap;
    position: absolute;
    background-color: white;
    border-radius: 5px;
    transition: all 200ms;
    opacity: 0;
    transform: scaleY(0) translateX(-50%);
    top: -488px;
    left: 50%;
}

.footer_qrcode_container:after {
    content: '';
    width: 0;
    height: 0;
    border-top: 7px solid white;
    border-left: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 7px solid transparent;
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-7px);
}

.logo_con {

}

.qrcode_con {
    position: absolute;

}

.footer_qrcode_container_anim_class {
    animation-name: footer_qrcode_container_anim;
    animation-duration: 150ms;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center center;
}

.footer_qrcode_container_tmp_class {
    opacity: 1;
}

@keyframes footer_qrcode_container_anim {
    0% {

        opacity: 0;
        transform: scaleY(0) translateX(-50%);
        top: -488px;
        left: 50%;
    }
    100% {

        opacity: 1;
        transform: scaleY(1) translateX(-50%);
        top: -288px;
        left: 50%;
    }
}

@-moz-keyframes footer_qrcode_container_anim {
    0% {
        opacity: 0;
        transform: scaleX(0);
        top: -240px;
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
        top: -288px;
    }
}


@-o-keyframes footer_qrcode_container_anim {
    0% {
        opacity: 0;
        transform: scaleX(0);
        top: -240px;
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
        top: -288px;
    }
}

#case_display {
    margin: 150px auto;
    position: relative;
    z-index: 2;
}

.case_display_con {
    width: 75%;
    margin: 20px auto;
}

.case_display_inner_ul {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: space-evenly;
    flex-flow: row wrap;
}

.case_display_li {
    min-height: 220px;
    margin: 20px 30px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.case_display_hint {
    font-size: 40px;
    text-align: center;
    width: 100%;
    position: relative;
    opacity: 0;
    filter: blur(6px);
}

#case_display_hint_id1 {
    left: -100%;
    margin: 80px 0;
}

#case_display_hint_id2 {
    left: 100%;
    top: 0;
    position: absolute;
}

.case_display_hint_anim_class {
    animation-name: case_display_hint_anim;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 500ms;
}

@keyframes case_display_hint_anim {

    100% {
        filter: blur(0);
        left: 0;
        opacity: 1;
    }
}

@-moz-keyframes case_display_hint_anim {
    100% {
        filter: blur(0);
        left: 0;
        right: 0;
        opacity: 1;
    }
}

@-o-keyframes case_display_hint_anim {
    100% {
        filter: blur(0);
        left: 0;
        right: 0;
        opacity: 1;
    }
}

.case_display_li_inner_img_con {

}

.case_display_li_inner_a_con {
    position: relative;
    display: inline-block;
}

.case_display_li_inner_img {
    border-radius: 50%;
    filter: brightness(0) contrast(0);
    opacity: 0;
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 3;
}

.case_display_li_inner_img_mask_div {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    opacity: 0;
    z-index: 4;
    transition: opacity 300ms;
}

.case_display_li_inner_img_mask_div:hover {
    opacity: 0.4;
}

.case_display_name_desc_con {
    opacity: 0;
    bottom: -150px;
    position: relative;
}


.case_display_name_desc_con_anim_class {
    animation-name: case_display_name_desc_anim;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 600ms;
}

@keyframes case_display_name_desc_anim {
    100% {
        opacity: 1;
        bottom: 0;
    }
}

@-o-keyframes case_display_name_desc_anim {
    100% {
        opacity: 1;
        bottom: 0;
    }
}

@-moz-keyframes case_display_name_desc_anim {
    100% {
        opacity: 1;
        bottom: 0;
    }
}

.case_display_name_desc_con p {
    margin: 20px 0;
}

.case_display_li_inner_name {
    width: 100%;
    text-align: center;
    word-break: break-all;
}

.case_display_li_inner_desc {
    width: 100%;
    text-align: center;
    word-break: break-all;
}

.case_display_li_inner_img_anim_class {
    animation-name: case_display_img_anim;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 600ms;
}

@keyframes case_display_img_anim {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 180px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 320px;
    }
}

@-o-keyframes case_display_img_anim {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 180px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 320px;
    }
}

@-moz-keyframes case_display_img_anim {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 180px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 320px;
    }
}


.index_video_m {
    object-fit: contain;
    width: 100%;
}

.index_video_mask_m {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgba(51, 112, 255, 0.2);
}

.index_video_con_m {
    position: relative;
    z-index: 2;
    background-color: white;
    width: 100vw;
    height: auto;
    font-size: 0;
}

.index_video_hint_con_m {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
}

.index_video_hint_slogan_m {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    word-break: keep-all;
}

.index_video_hint_comment_m {
    font-size: 12px;
    position: relative;
    height: 20px;
    text-align: center;
    padding: 0 40px;
    letter-spacing: 6px;
    word-break: keep-all;
}

.index_video_hint_comment_m:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), white, rgba(255, 255, 255, 0.1));
}

.index_video_hint_comment_m:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 30px;
    height: 1.5px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.1), white, rgba(255, 255, 255, 0.1));
}

.slideshow_con_m {
    width: 100vw;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.slideshow_ul_m {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    position: relative;
    list-style-type: none;
    touch-action: none;
}

.slideshow_li_m {

}

.slideshow_inner_img_m {
    object-fit: fill;
    width: 100vw;
    height: 260px;
}

@media screen and (min-width: 750px) and (max-width: 1000px) {
    .slideshow_inner_img_m {
        object-fit: fill;
        width: 100vw;
        height: 360px;
    }
}

@media screen and (min-width: 1001px) and (max-width: 1400px) {
    .slideshow_inner_img_m {
        object-fit: fill;
        width: 100vw;
        height: 460px;
    }
}

@media screen and (min-width: 1401px) {
    .slideshow_inner_img_m {
        object-fit: fill;
        width: 100vw;
        height: 560px;
    }
}

.slideshow_dot_con_m {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.slideshow_dot_m {
    width: 15px;
    height: 15px;
    border: 1px solid #dedede;
    background: transparent;
    border-radius: 50%;
    margin: 0 10px;
    cursor: pointer;
}

.slideshow_dot_m:first-child {
    background-color: rgb(173, 167, 163);
}

.slideshow_left_top_hint_m {
    width: 40%;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    border-bottom-right-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    background-color: white;
}

.slideshow_left_top_hint_inner1_m {
    color: darkgray;
}

.slideshow_left_top_hint_inner2_m {

}

.slideshow_left_top_hint_inner3_m {

}

.slideshow_left_top_hint_inner_common_m {
    font-size: 14px;
}


#company_culture_pc_con_m {
    width: 100vw;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
    opacity: 0;
    top: 100px;
}

#company_culture_pc_left_id_m {

}


.company_culture_pc_left_m {
    width: 100%;
    text-align: center;
}

.company_culture_pc_hint_h1_m {
    font-size: 22px;
}

.company_culture_pc_english_hint_m {
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.culture_summary_m {
    width: 320px;
    margin: 15px auto;
    font-size: 14px;
    word-break: break-all;
}

.company_culture_pc_right_m {
    width: auto;
    position: relative;
}

.company_culture_pc_right_item_con_m {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    flex-direction: row;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    left: -100vw;
    box-sizing: border-box;
}

.company_culture_pc_right_item_img_con {
    position: relative;
    overflow: hidden;
    width: 320px;
    height: 180px;
    margin: 0 auto;
}

#company_culture_pc_right_item_mirror_mask_id_m {
    width: 320px;
    height: 180px;
    position: absolute;
    top: 0;
    left: -321px;
    background-color: rgba(245, 245, 245, 0.5);
    z-index: 4;
}

.company_culture_pc_right_item_m {
    width: 100vw;
    position: relative;
    box-sizing: border-box;
}

.company_culture_pc_img_m {
    width: 320px;
    height: 180px;
    object-fit: fill;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 3;
}

.company_culture_pc_right_item_inner_summary_m {
    margin: 20px auto;
    position: relative;
    font-size: 16px;
    width: 320px;
    box-sizing: border-box;
    padding: 0 0 0 30px;
}

.company_culture_pc_right_inner_arrow_m {

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.left_arrow_m {
    left: -5px;
}

.right_arrow_m {
    right: -5px;
}


.company_culture_pc_right_item_inner_ul_m {
    list-style: none;
    width: 320px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 0 0 40px;
}

.company_culture_pc_right_item_inner_li_m {
    font-size: 13px;
    position: relative;
    margin: 10px 0;
}

.company_culture_pc_right_item_inner_li_m:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 100%;
    background: rgb(0, 0, 0);
}


.company_culture_m_anim_class {
    animation-name: company_culture_m_anim;
    animation-duration: 700ms;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes company_culture_m_anim {
    100% {
        opacity: 1;
        top: 0;
    }
}

@-moz-keyframes company_culture_m_anim {
    100% {
        opacity: 1;
        top: 0;
    }
}

@-o-keyframes company_culture_m_anim {
    100% {
        opacity: 1;
        top: 0;
    }
}

#advantage_m {
    margin: 80px auto;
    position: relative;
}


.advantage_hint_m {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    left: 0;
    top: -40px;
    transform: scale(0.4);
}

.advantage_bkg_hint_m {
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.advantage_hint_inner_p_m {
    font-size: 16px;
    margin-top: 10px;
}

.advantage_bkg_hint_h2_m {
    font-size: 22px;
}

.advantage_ul_m {
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-content: flex-start;
    align-items: flex-start;
    position: relative;
}

.advantage_inner_li_m {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    width: 150px;
    margin: 20px;

    opacity: 0;
    position: relative;
    bottom: -100px;
    transform: scale(0.4);
    box-sizing: border-box;
}

.advantage_inner_li_img_con_m {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.advantage_inner_li_img_m {
    width: 100px;
    height: 100px;
    flex: none;
}

.advantage_inner_li_hint_con_m {
    width: 100%;
    text-align: center;
    margin: 10px 0;
}

.advantage_inner_li_hint_desc_m {
    font-size: 14px;
}

.advantage_inner_li_hint_summary_m {
    font-size: 18px;
    margin-bottom: 10px;
}

#service_team_m {
    margin: 80px auto;
    position: relative;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100vw;
    opacity: 0;
    filter: blur(18px) contrast(0%);
    overflow: hidden;
}

.service_team_anim_m_class {
    animation-name: service_team_anim_m;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-duration: 700ms;
}

@keyframes service_team_anim_m {
    100% {
        filter: blur(0) contrast(100%);
        opacity: 1;
    }
}

@-o-keyframes service_team_anim_m {
    100% {
        filter: blur(0) contrast(100%);
        opacity: 1;
    }
}

@-moz-keyframes service_team_anim_m {
    100% {
        filter: blur(0) contrast(100%);
        opacity: 1;
    }
}

.service_team_bkg_mask_m {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

.service_team_bkg_con_m {
    position: relative;
    font-size: 0;
}

.service_team_hint_con_m {
    width: 100%;
    text-align: center;
    color: white;
    padding: 10px 0;
    position: relative;
    z-index: 3;
    height: 30%;
    box-sizing: border-box;
    flex: none;
    display: flex;
    flex-flow: column nowrap;
}

.service_team_main_info_body {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-flow: column nowrap;
}

.service_team_hint_m {
    color: darkgray;
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.service_team_hint_h2_m {
    font-size: 22px;
}

.service_team_small_word_hint_m {
    font-size: 16px;
    margin-top: 10px;
}

.service_team_er_con_m {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    height: 70%;
    box-sizing: border-box;
    flex: 0 1 auto;
}

.service_team_inner_ul_m {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    z-index: 3;
    height: 95%;
    flex: 0 1 auto;
    box-sizing: border-box;
}

.service_team_inner_li_m {
    width: 100vw;
    color: white;
    flex: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 50px;
    height: 100%;
    flex: 0 1 auto;
    box-sizing: border-box;
}

.service_team_inner_li_m a:active {
    background-color: transparent;
}

.service_team_inner_li_er_img_con_m {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service_team_inner_li_er_img_m {
    height: 100%;
    border-radius: 50%;
    flex: 0 1 auto;
    overflow: hidden;
}

.service_team_er_posi_name_con {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column nowrap;
    height: 20%;
    box-sizing: border-box;
    flex: none;
}

.service_team_er_position_m {
    margin-bottom: 10px;
}

.service_team_er_name_m {

}

.service_team_dot_con_m {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    text-align: center;
    width: 100%;
    list-style: none;
    margin-bottom: 20px;
    position: relative;
    z-index: 3;
    height: 5%;
    box-sizing: border-box;
}

.service_team_dot_m {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: darkgray;
    margin: 0 10px;
    transition: all 500ms;
}

.service_team_dot_m:first-child {
    width: 20px;
    background-color: #6ba1ef;
}

@media screen and (min-width: 700px) {
    #service_team_m {
        width: 600px;
    }

    .service_team_inner_li_m {
        width: 600px;
    }
}


#production_m {
    margin: 80px auto;
    position: relative;
}

.product_hint_m {
    width: 100vw;
    text-align: center;
    position: relative;
    opacity: 0;
    transform: scale(0);
}

.english_hint_m {
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.chinese_hint_m {
    font-size: 22px;
}

.production_con_m {

}

.production_inner_ul_m {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    align-content: flex-start;
    list-style: none;
    position: relative;
}

.production_inner_li_m {
    margin: 20px 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    align-content: flex-start;
    position: relative;
    left: -400px;
    opacity: 0;
}

.production_inner_li_img_con_m {
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.production_inner_li_img_m {
    width: 160px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
}

.production_inner_li_desc_name_con_m {
    width: 160px;
    display: flex;
    flex-flow: column nowrap;
    word-break: break-all;
    justify-content: space-evenly;
    align-items: center;
}

.production_inner_li_desc_m {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: justify;
}

.production_inner_li_name_m {
    margin-bottom: 10px;
}

#partner_m {
    width: 100vw;
    margin: 80px auto;
    overflow: hidden;
}


.partner_hint_con_m {
    width: 100vw;
    text-align: center;
    opacity: 0;
}

.partner_chinese_hint_m {
    font-size: 22px;
}

.partner_logo_con_m {
    position: relative;
    margin: 20px 0;
}

.partner_logo_con_inner_ul_m {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    position: relative;
    box-sizing: border-box;

}

.partner_dot_con_ul_m {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    text-align: center;
    width: 100%;
    list-style: none;
    bottom: -20px;
    position: absolute;
    z-index: 3;
}

.partner_dot_con_inner_li_m {
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: darkgray;
    margin: 0 10px;
    transition: all 500ms;
}

.partner_dot_con_inner_li_m:first-child {
    width: 20px;
    background-color: #ff9531;
}

.partner_logo_group_con_m {
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row nowrap;
    flex: none;
    position: relative;
}

.partner_logo_con_inner_li_m {
    width: 50%;
    height: 80px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    position: relative;
}

.partner_logo_img_m {
    width: 150px;
    height: 60px;
    opacity: 0;
    transform: scale(0);
    filter: grayscale(100%);
}

.partner_logo_con_inner_li_arrow_left_m {
    width: 10px;
    height: 11px;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(0, -50%);
    z-index: 4;
}

.partner_logo_con_inner_li_arrow_right_m {
    width: 10px;
    height: 11px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    z-index: 4;
}

@media screen and (min-width: 1024px) {
    #partner_m {
        width: 1024px;
    }

    .partner_hint_con_m {
        width: 100%;
    }

    .partner_logo_group_con_m {
        width: 1024px;
    }

    .partner_logo_img_m {
        width: 200px;
        height: 80px;
    }

    .partner_logo_con_inner_li_arrow_left_m {
        width: 20px;
        height: 21px;
    }

    .partner_logo_con_inner_li_arrow_right_m {
        width: 20px;
        height: 21px;
    }
}

#datebook_m {
    width: 100vw;
    margin: 80px auto;
    opacity: 0;
    filter: brightness(0);
}

.datebook_hint_con_m {
    width: 100vw;
    text-align: center;
    margin: 30px auto;
}

.datebook_hint_eng_m {
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.datebook_hint_m {
    font-size: 22px;

    font-family: Gilroy-Bold, sans-serif;
}

.datebook_timeline_m {

}

.datebook_timeline_inner_ul_m {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.datebook_inner_li_m {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: row nowrap;
    flex: 1 1 auto;
}

.datebook_item_li_icon_line_con_m {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    flex: none;
}

.datebook_timeline_inner_li_img_con_m {
    flex: none;
    font-size: 0;
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.datebook_timeline_inner_li_img_m {
    width: 50px;
    height: 50px;
}

.datebook_item_li_icon_line_con_m:after {
    content: '';
    width: 2px;
    min-height: 70px;
    flex: 1 0 auto;
    background-color: darkgray;
}

.datebook_inner_li_m:last-child .datebook_item_li_icon_line_con_m:after {
    content: none;
}

.datebook_inner_li_time_desc_con_m {
    flex: 1 1 auto;
    min-width: 40vw;
    min-height: 70px;
    padding: 0 30px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

.datebook_inner_li_time_m {
    font-family: Gilroy-Bold, sans-serif;
}

.datebook_inner_li_desc_m {
    text-align: justify;
}

.datebook_m_anim_class {
    animation-name: datebook_anim;
    animation-duration: 800ms;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}


@keyframes datebook_anim {
    100% {
        opacity: 1;
        filter: brightness(100%);
    }
}

@-moz-keyframes datebook_anim {
    100% {
        opacity: 1;
        filter: brightness(100%);
    }
}

@-o-keyframes datebook_anim {
    100% {
        opacity: 1;
        filter: brightness(100%);
    }
}

@media screen and (min-width: 1100px) {
    .datebook_timeline_inner_ul_m {
        width: 900px;
    }
}

#case_display_m {
    margin: 80px auto;
    position: relative;
    z-index: 2;
}


#case_display_hint_id1_m {
    left: -100%;
    margin: 10px 0;
}

#case_display_hint_id2_m {
    left: 100%;
    top: 0;
    position: absolute;
}


.case_display_hint_m {
    font-size: 22px;
    text-align: center;
    width: 100%;
    position: relative;
    opacity: 0;
    filter: blur(6px);
}

.case_display_hint_eng_m {
    font-size: 22px;
    text-shadow: 3px 3px 7px darkgray;
}

.case_display_con_m {
    width: 100vw;
    margin: 20px auto;
}

.case_display_name_desc_con_m {
    opacity: 0;
    bottom: -100px;
    position: relative;
    width: 160px;
    text-align: center;
}

.case_display_li_inner_img_m {
    border-radius: 50%;
    filter: brightness(0) contrast(0);
    opacity: 0;
    width: 90px;
    height: 90px;
}

.case_display_li_m {
    margin: 20px 0;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.case_display_li_inner_name_m {
    margin-top: 10px;
}

.case_display_li_inner_desc_m {
    margin-top: 10px;
}

.case_display_li_inner_img_anim_class_m {
    animation-name: case_display_img_anim_m;
    animation-fill-mode: both;
    animation-iteration-count: 1;
    animation-duration: 600ms;
}

@keyframes case_display_img_anim_m {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 90px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 160px;
    }
}

@-o-keyframes case_display_img_anim_m {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 90px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 160px;
    }
}

@-moz-keyframes case_display_img_anim_m {
    0% {
        opacity: 0;
        border-radius: 50%;
        filter: brightness(0) contrast(0);
        width: 90px;
    }
    100% {
        opacity: 1;
        border-radius: 10px;
        filter: brightness(100%) contrast(100%);
        width: 160px;
    }
}

#service_team_template_pc_id {
    padding: 150px 30%;
    min-width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;

}

.template_bkg_mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("/zb_users/theme/zbuser_companyWeb1/style/res/single_bkg.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    background-size: 100% 100%;
    opacity: 0.2;
    z-index: -2;

}

.template_pc_post {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin: 0 auto;
    opacity: 0.9;
    width: 100%;
    box-sizing: border-box;
}

.template_pc_post_inner_title {
    text-align: center;
    font-size: 26px;
}

.template_pc_post_inner_info {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

}

.template_pc_post_inner_info div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    width: 240px;
}

.template_pc_post_inner_info div img {
    width: 26px;
    object-fit: contain;
    margin-right: 10px;
}

.template_pc_post_inner_info div span {
    font-size: 20px;
    color: #bfbfbf;
}

.recommend_post {
    padding: 20px;
    background-color: white;
    margin: 50px auto;
    border-radius: 10px;
}

.recommend_post_inner_p {
    font-size: 20px;
    font-style: italic;
    color: darkgray;
}

.service_team_inner_li_img_a_m {
    margin: 15px 0;
    font-size: 16px;
    height: 80%;
    box-sizing: border-box;
    flex: 0 1 auto;
    display: flex;
}

.recommend_post_inner_a {
    color: #655be3;
    font-size: 18px;
    display: block;
    margin: 20px 0;
}

.recommend_post_inner_other_post_from {
    margin-top: 20px;
    font-size: 16px;
}

.single_comment_container {
    padding: 20px;
    background-color: white;
    margin: 50px auto;
    border-radius: 10px;
}

.single_comments_history_container {
    padding: 20px;
    background-color: white;
    margin: 50px auto;
    border-radius: 10px;
}

.single_comment_item {
    padding: 10px;
    margin: 15px 0;
    border: 1px solid darkgray;
    border-radius: 5px;
}

.single_comment_msgarticle {
    font-size: 16px;
    padding: 0 10px;
    margin: 15px 0;
}

.post_comment_container {
    padding: 20px;
    background-color: white;
    margin: 50px auto;
    border-radius: 10px;
}

.recommend_post_m {

}

.tags_con {
    margin: 30px 0;
}

.tags_con span {
    font-size: 16px;
}

.post_tag:visited {
    color: white;
}

.post_tag {
    margin: 0 10px;
    padding: 5px 30px;
    border: none;
    border-radius: 5px;
    color: white;
    background-color: rgb(188, 215, 239);
    font-size: 16px;
    transition: background-color 200ms;
}

.post_tag:hover {
    background-color: rgb(111, 164, 211);
}

#common_single_m {
    min-width: 100vw;
    min-height: 100vh;
    box-sizing: border-box;
}

.template_bkg_mask_m {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url("/zb_users/theme/zbuser_companyWeb1/style/res/single_bkg_m.jpg");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-attachment: fixed;
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: -2;
}

.template_pc_post_first_m {
    background-color: white;
    opacity: 0.9;
    width: 85%;
    margin: 50px auto;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
}

.post_comment_avatar {
    vertical-align: text-bottom;
}

.template_pc_post_m {
    background-color: white;
    opacity: 0.9;
    width: 85%;
    margin: 50px auto;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
}

.template_pc_post_m * {
    margin: 10px 0;
}

.recommend_post_inner_intro {
    font-size: 16px;
}

.recommend_post_inner_intro img,
.recommend_post_inner_intro video,
.recommend_post_inner_intro iframe {
    display: none !important;
}

.recommend_post_inner_intro_m * {
    font-size: 14px;
}

.recommend_post_inner_intro_m img,
.recommend_post_inner_intro_m video,
.recommend_post_inner_intro_m iframe {
    display: none !important;
}

.template_pc_post_inner_info_m {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}


.template_pc_post_inner_info_m div img {
    width: 20px;
    object-fit: contain;
    margin-right: 10px;
}

.template_pc_post_inner_info_m div {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
}

#footer_m {
    width: 100%;
    box-sizing: border-box;
    background-color: #1f2329;
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    color: #929496;
    padding-top: 20px;
}

#footer_m a {
    color: #929496;
}

#footer_qrcode_con_top_dom_id {
    display: none;
    position: fixed;
    z-index: 2000;
}

.footer_width_line {
    width: 80%;
    height: 1px;
    margin: 20px auto;
    background-color: #929496;
    position: relative;
}

.footer_qrcode_container_m {
    display: none;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: column nowrap;
    position: fixed;
    left: -100%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    opacity: 0;
    padding: 30px;
    overflow-y: auto;
}

.footer_qrcode_container_m_anim {
    animation-name: footer_qrcode_anim;
    animation-iteration-count: 1;
    animation-duration: 400ms;
    animation-fill-mode: forwards;
}

@keyframes footer_qrcode_anim {
    33% {
        left: 60%;
        opacity: 0.3;
    }
    66% {
        left: 40%;
        opacity: 0.65;
    }
    100% {
        left: 50%;
        opacity: 1;
    }
}

@-o-keyframes footer_qrcode_anim {
    33% {
        left: 90%;
    }
    66% {
        left: 10%;
    }
    100% {
        left: 50%;
    }
}

@-moz-keyframes footer_qrcode_anim {
    33% {
        left: 90%;
    }
    66% {
        left: 10%;
    }
    100% {
        left: 50%;
    }
}


.footer_inner_social_account_m {
    text-align: center;
    margin-bottom: 30px;
}

.footer_qrcode_ul_m {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    list-style: none;
    width: 100%;
    margin: 20px auto;
}

.qrcode_li_m {
    margin: 5px 10px;
}

.qrcode_li_inner_logo_m {
    border-radius: 50%;
}

.mask_qrcode_m {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    background-color: black;
    opacity: 0.7;
}

.qrcode_hint_m {
    width: 140px;
    text-align: center;
    word-break: break-all;
}


.friend_link_con_m {
    width: 100%;
    padding: 0 60px 0;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 30px;
}


.friend_link_item_con_m {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}


.friend_link_item_m {
    width: 50%;
    word-break: break-all;
    box-sizing: border-box;
    margin: 0 0 10px;
    text-align: center;
    padding: 0 5px;
}

#about_us_body {

}


.about_us_body_ready_anim_class {
    animation-name: about_us_body_ready_anim;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-duration: 700ms;
    animation-fill-mode: none;
}

@keyframes about_us_body_ready_anim {
    0% {
        opacity: 0;
        transform: scale(1);
        filter: grayscale(100%);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
        filter: grayscale(50%);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: grayscale(0%);
    }
}


#about_us {

}

.about_us_bkg_img_con {
    position: relative;
    width: 100vw;
    font-size: 0;
}

.about_us_bkg_img {
    width: 100vw;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.about_us_content_con {
    width: 60%;
    box-sizing: border-box;
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    line-height: 2.5;
    margin: 20px auto 120px;
    white-space: pre-wrap;
}

.about_us_bkg_img_mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(51, 112, 255, 0.2);
    z-index: 3;
}

.about_us_hint_con {
    width: 55%;
    margin: 80px auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.about_us_hint_con ul {
    width: 100%;
    list-style: none;
}


.about_us_hint_con li div {
    width: 100%;
    box-sizing: border-box;
}


.hint_anim_left {
    width: 35%;
}

.hint_anim_right {
    width: 35%;
}

.about_us_hint {
    font-size: 35px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.about_us_hint_main {
    letter-spacing: 5px;
    word-break: keep-all;
}

.about_us_hint_circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: lightgrey;
    animation-name: about_us_hint_circle_anim;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    margin: 0 40px;
}

.about_us_anim_inner_ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}


.about_us_anim_unit_anim_con {
    width: 100%;
    margin: 20px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
}

.about_us_anim_unit_anim_inner_con {
}

.about_us_anim_unit_anim_rec_ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}

.about_us_anim_unit_anim_rec_li {
    width: 40px;
    height: 100px;
    border-radius: 20px;
    transform: rotateZ(330deg);
    margin-right: 20px;
}

.about_us_anim_unit_anim_circle_ul {
    display: flex;
    flex-flow: row nowrap;
    justify-self: flex-start;
    align-items: center;
}

.about_us_anim_unit_anim_circle_li {
    width: 100px;
    height: 100px;
    opacity: 0.5;
    border-radius: 50%;
}

.about_us_anim_unit_circle_anim_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}


.about_us_anim_inner_unit_left {
    display: block;
    opacity: 0;
}

.about_us_anim_inner_unit_right {
    display: block;
    opacity: 0;
}

.about_us_anim_left_unit_top {

    transform: skew(20deg, 0deg);
}

.about_us_anim_left_unit_bottom {

    transform: skew(340deg, 0deg);
}

.about_us_anim_right_unit_top {

    transform: skew(340deg, 0deg);
}

.about_us_anim_right_unit_bottom {

    transform: skew(20deg, 0deg);
}

.anim_opacity {
    animation-name: anim_opacity_common;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
}

@keyframes anim_opacity_common {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes anim_opacity_common {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-o-keyframes anim_opacity_common {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.company_news_page_main_con {

}

.company_news_page_hint {
    font-size: 45px;
    text-align: left;
    font-weight: bold;
    width: 60%;
    height: 100px;
    margin: 250px auto;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background-color: #FFFFFF00;
    z-index: 99;
}

.company_news_page_hint div.company_news_line_anim {
    position: absolute;
    z-index: 3;
    box-sizing: border-box;
}

.company_news_page_hint p {
    text-align: center;
}

.company_news_page_news_list_con {
    width: 45%;
    margin: 80px auto;
}

.company_news_page_news_list {
    list-style: none;
}

.company_news_page_news_item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    box-sizing: border-box;
    margin: 100px auto;
}

.company_news_page_item_info {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 45%;
    padding-right: 20px;
}

.company_news_page_item_info_title:visited {
    color: rgb(46 128 255);
}

.company_news_page_item_info_title {
    color: rgb(46 128 255);
    font-size: 25px;
    font-weight: bold;
}

.company_news_page_item_info_datetime {
    color: rgb(130, 130, 130);
    margin: 10px 0;
}


/*顶多只显示4行,剩余的用省略号替代*/
.company_news_page_item_info_intro {
    font-size: 15px;
    word-break: break-all;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.company_news_page_item_info_intro img,
.company_news_page_item_info_intro video,
.company_news_page_item_info_intro iframe {
    display: none !important;
}

.company_news_page_item_info_intro_m img,
.company_news_page_item_info_intro_m video,
.company_news_page_item_info_intro_m iframe {
    display: none !important;
}

.company_news_page_hint div {

}

.company_news_page_item_img {
    object-fit: cover;
    object-position: center;
}

.company_news_page_hint .company_news_page_hint_inner1 {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: -110%;

}

.company_news_page_hint .company_news_page_hint_inner2 {
    width: 1px;
    height: 100%;
    bottom: -110%;
    right: 0;

}

.company_news_page_hint .company_news_page_hint_inner3 {
    width: 100%;
    height: 1px;
    top: 0;
    right: -110%;

}

.company_news_page_hint .company_news_page_hint_inner4 {
    width: 1px;
    height: 100%;
    top: -110%;
    left: 0;

}

.slogan_and_comment_con_m {
    margin: 20px auto;
    padding: 10px 30px;
    border: 1px solid lightgrey;
    box-sizing: border-box;
    width: 80%;
    overflow: hidden;
    position: relative;
}

.slogan_hint_m {
    font-size: 25px;
    font-weight: bold;
}

.comment_hint_m {
    font-size: 15px;
}

.slogan_and_comment_common_m {
    display: block;
    width: 80%;
    margin: 10px auto;
    text-align: center;
    word-break: break-all;
    animation-name: font_opacity_anim;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease;

}

.slogan_and_comment_con_inner_anim_unit_m {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    bottom: -100%;

    z-index: 9;
}

.slogan_comment_anim_unit_m_left {
    left: -30px;

}

.slogan_comment_anim_unit_m_right {
    right: -30px;
}

#about_us_main_content_con_id {
    width: 85%;
    margin: 20px auto;
    white-space: pre-wrap;
}

@keyframes font_opacity_anim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@-o-keyframes font_opacity_anim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@-moz-keyframes font_opacity_anim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

@-webkit-keyframes font_opacity_anim {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

.company_news_page_main_m {

}

.company_news_page_main_ul_m {
    list-style-type: none;
}

.company_news_page_main_inner_li_m {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 60px auto;
}

.company_news_page_img_con_m {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.company_news_page_item_title_img_m {
    width: 85%;
    object-fit: cover;
    aspect-ratio: 16 / 9;
    object-position: center;
}

.company_news_page_item_title_m {
    color: cornflowerblue;
    font-size: 25px;
    font-weight: bold;
    margin: 0 20px 10px;
    text-align: center;
}

.company_news_page_item_info_datetime_m {
    color: #989898;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
}

.company_news_page_item_info_intro_m {
    text-align: center;
    color: #575757;
    font-size: 16px;
    width: 85%;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.contact_us_main {
    width: 100%;
}

.contact_us_bkg_img {
    width: 100%;
    object-fit: contain;
}

.contact_us_apartment_or_com_p {
    margin: 80px auto;
    font-size: 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.contact_us_baidumap {
    margin: 20px auto;
    width: 750px;
    height: 400px;
    overflow: hidden;
    font-family: 微软雅黑;
}

.contact_us_base_info {

}

.contact_us_base_info_ul {
    width: 50%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px auto;

}

.contact_us_base_info_ul_inner_li {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 15px;
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 30px;
    width: 750px;
}

.contact_us_inner_img {
    width: 30px;
    height: 30px;

}

.contact_us_inner_img:hover {

}

.contact_us_inner_hint {
    font-size: 16px;
    margin-right: 40px;
    flex: none;
}

.contact_us_inner_content {
    font-size: 16px;
    word-break: break-all;
}

.contact_us_hint_anim_con_left {
    margin-right: 80px;
}

.contact_us_hint_anim_con_right {
    margin-left: 80px;
}

.contact_us_hint_anim_con_common {
    position: relative;
    overflow: hidden;
    width: var(--contact_us_hint_anim_con_common_width);
    height: 1px;
    box-sizing: border-box;
}

.contact_us_hint_anim_con_left_inner_line {
    animation-name: contact_us_line_anim_left_to_right;
    animation-direction: normal;
    animation-timing-function: ease;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    left: 0;
}

.contact_us_hint_anim_con_right_inner_line {
    animation-name: contact_us_line_anim_right_to_left;
    animation-direction: normal;
    animation-timing-function: ease;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    right: 0;
}

.contact_us_line_anim_common {
    width: var(--contact_us_line_anim_inition_width);
    height: 1px;
    box-sizing: border-box;
    position: absolute;
}

@keyframes contact_us_line_anim_left_to_right {
    0% {
        left: var(--contact_us_line_anim_inition_position);
    }
    100% {
        left: var(--contact_us_hint_anim_con_common_width);
    }
}

@-moz-keyframes contact_us_line_anim_left_to_right {
    0% {
        left: var(--contact_us_line_anim_inition_position);
    }
    100% {
        left: var(--contact_us_hint_anim_con_common_width);
    }
}

@-o-keyframes contact_us_line_anim_left_to_right {
    0% {
        left: var(--contact_us_line_anim_inition_position);
    }
    100% {
        left: var(--contact_us_hint_anim_con_common_width);
    }
}

@-webkit-keyframes contact_us_line_anim_left_to_right {
    0% {
        left: var(--contact_us_line_anim_inition_position);
    }
    100% {
        left: var(--contact_us_hint_anim_con_common_width);
    }
}

@keyframes contact_us_line_anim_right_to_left {
    0% {
        right: var(--contact_us_line_anim_inition_position);
    }
    100% {
        right: var(--contact_us_hint_anim_con_common_width);
    }
}

@-moz-keyframes contact_us_line_anim_right_to_left {
    0% {
        right: var(--contact_us_line_anim_inition_position);
    }
    100% {
        right: var(--contact_us_hint_anim_con_common_width);
    }
}

@-o-keyframes contact_us_line_anim_right_to_left {
    0% {
        right: var(--contact_us_line_anim_inition_position);
    }
    100% {
        right: var(--contact_us_hint_anim_con_common_width);
    }
}

@-webkit-keyframes contact_us_line_anim_right_to_left {
    0% {
        right: var(--contact_us_line_anim_inition_position);
    }
    100% {
        right: var(--contact_us_hint_anim_con_common_width);
    }
}

.contact_us_apartment_or_com_p_m {
    margin: 40px auto;
    font-size: 24px;
    text-align: center;
    position: relative;
    border: 1px solid rgb(51, 51, 51);
    display: inline-block;
    padding: 10px 40px;
    width: 80%;
    left: 50%;
    box-sizing: border-box;
}

.contact_us_apartment_or_com_inner_p_m {
    white-space: normal;
}

.contact_us_base_info_ul_inner_li_m {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
    width: 80%;

}

.contact_us_base_info_ul_m {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px auto;
}

.contact_us_baidumap_m {
    margin: 20px auto;
    width: 80%;
    height: 200px;
    overflow: hidden;
    font-family: 微软雅黑;
}

.news_detail_main_content {
    width: 65%;
    margin: 300px auto 100px;
    position: relative;
    padding-bottom: 100px;
    border-bottom: 1px solid darkgray;
}

.news_detail_title {
    word-break: break-all;
    margin: 15px 0;
    text-align: left;
    font-weight: bold;
    font-size: 26px;
}

.news_detail_pub_time {
    font-size: 16px;
    color: darkgray;
    text-align: left;
    margin: 15px 0;
}

.news_detail_content {
    white-space: pre-wrap;
    width: 100%;
}

.news_detail_content img {
    object-fit: contain;
    border-radius: 8px;
}

.news_detail_content * {
    max-width: 100% !important;
}

.news_detail_random_news {
    width: 65%;
    margin: 50px auto 150px;
    position: relative;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
}

.random_news_item {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 480px;
}

.random_news_item_inner_img {
    width: 480px;
    height: 270px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.random_news_item_none_img {
    width: 480px;
    height: 270px;
    border: 1px solid darkgray;
    color: darkgray;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 40px;
}

.random_news_item_inner_title {
    color: rgb(46 128 255);
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
}

.random_news_item_inner_date {
    font-size: 14px;
    color: darkgray;
    margin-bottom: 20px;
}

/*顶多显示4行,剩余的用省略号替代*/
.random_news_item_inner_summary {
    word-break: break-all;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
}

.random_news_item_inner_summary img,
.random_news_item_inner_summary video,
.random_news_item_inner_summary iframe {
    display: none !important;
}

.news_detail_main_content_m {
    width: 85%;
    margin: 100px auto;
    padding-bottom: 30px;
    border-bottom: 1px solid darkgray;
}

.news_detail_random_news_m {
    width: 85%;
    margin: 0 auto;
    position: relative;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
}


@media screen and (min-width: 768px) {
    .news_detail_random_news_m {
        width: 85%;
        margin: 0 auto;
        position: relative;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
}


.random_news_item_m {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 60px;
    width: 240px;
}

.random_news_item_inner_img_m {
    width: 240px;
    height: 135px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.random_news_item_none_img_m {
    width: 240px;
    height: 135px;
    border: 1px solid darkgray;
    border-radius: 10px;
    color: darkgray;
    display: flex;
    justify-content: center;
    align-items: center;
    font-style: italic;
    margin-bottom: 20px;
    font-size: 40px;
}

.random_news_item_inner_summary_m {
    word-break: break-all;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
}

.random_news_item_inner_summary_m img,
.random_news_item_inner_summary_m video,
.random_news_item_inner_summary_m iframe {
    display: none !important;
}


#top_header_m_id {
    position: fixed;
    top: 0;
    left: 0;
    height: var(--top_header_m_height);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
    background-color: #829ee3;
    width: 100vw;
    transition: all 800ms;
}

.top_header_m_inner_logo_con {
    margin-left: 20px;
}

.top_header_m_inner_logo {
    width: 140px;
    height: 40px;
}

.top_header_m_inner_menu_btn_con {
    margin-right: 20px;
}

.top_header_m_inner_menu_btn {
    width: 30px;
    height: 30px;
}


#top_header_m_inner_menu {
    position: absolute;
    left: -100vw;
    top: var(--top_header_m_height);
    width: 100vw;
    height: calc(100vh - var(--top_header_m_height));
    opacity: 0;
    display: none;
    background-color: white;
    font-size: 20px;
    justify-content: center;
    align-items: center;
}

.top_header_m_inner_wrapper {
    width: 70%;
}

.top_header_m_inner_menu_con {
    position: relative;
    z-index: 9;
}

.top_header_m_inner_menu_con_ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    list-style-type: none;
}

.top_header_m_inner_menu_item {
    margin: 15px 0;
    left: -100vw;
    position: relative;
}

.top_header_m_inner_link_con {
    position: relative;
    z-index: 9;
}

.top_header_m_inner_link_con_ul {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    list-style-type: none;
}

.top_header_m_inner_link_item {
    margin: 15px 0;
    left: -100vw;
    position: relative;

}

.top_header_m_item_anim_class {
    animation-name: top_header_m_item_anim;
    animation-iteration-count: 1;
    animation-duration: 450ms;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
}

.top_header_inner_a_item_m {
    color: #00b7ee;
    font-size: 18px;
}

@keyframes top_header_m_item_anim {
    0% {
        left: -100vw;
    }
    33% {
        left: 30px;
    }
    66% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-o-keyframes top_header_m_item_anim {
    0% {
        left: -100vw;
    }
    33% {
        left: 30px;
    }
    66% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-moz-keyframes top_header_m_item_anim {
    0% {
        left: -100vw;
    }
    33% {
        left: 30px;
    }
    66% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes top_header_m_item_anim {
    0% {
        left: -100vw;
    }
    33% {
        left: 30px;
    }
    66% {
        left: -15px;
    }
    100% {
        left: 0;
    }
}

#quick_contact_con {
    position: fixed;
    right: 20px;
    bottom: 40px;
    border: 1px solid #1e1e1e;
    z-index: 999999;
    border-radius: 5px;
    background-color: white;
}

#quick_contact_con > div {
    position: relative;
    z-index: 999999;
    padding: 20px;
    border-bottom: 1px solid #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quick_contact_wechat {

}

.quick_contact_phone {

}

.quick_contact_qq {

}

.quick_contact_to_top {
    cursor: pointer;
}


.quick_contact_wechat:hover .quick_contact_wechat_qrcode_con {
    opacity: 1;
    transform: translateY(-50%) rotateY(0deg);
}

.quick_contact_wechat_inner_img {
    width: var(--quick_contact_tag_img_size);
    height: var(--quick_contact_tag_img_size);
    position: relative;
}

.quick_contact_wechat_qrcode {
    width: 150px;
    height: 150px;
    position: relative;
    z-index: 999999;
}

.quick_contact_wechat_triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
}

.quick_contact_wechat_qrcode_con {
    position: absolute;
    top: 50%;
    transform-origin: right center;
    transform-style: preserve-3d;
    transform: translateY(-50%) rotateY(90deg);
    right: 140%;
    transition: all 500ms;
    opacity: 0;
    z-index: 999999;
    background-color: white;
    padding: 15px;
}

.quick_contact_phone:hover .quick_contact_phone_number_con {
    opacity: 1;
    transform: translateY(-50%) rotateY(0deg);
}

.quick_contact_phone_inner_img {
    width: var(--quick_contact_tag_img_size);
    height: var(--quick_contact_tag_img_size);
    position: relative;
}

.quick_contact_phone_number_con {
    position: absolute;
    top: 50%;
    transform-origin: right center;
    transform-style: preserve-3d;
    transform: translateY(-50%) rotateY(90deg);
    right: 140%;
    transition: all 500ms;
    opacity: 0;
    z-index: 999999;
    font-size: 30px;
}

.quick_contact_phone_number {
    padding: 20px;
    background-color: white;
    word-break: keep-all;
    white-space: nowrap;
    color: rgb(211, 60, 129);
}

.quick_contact_phone_number_triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
}

.quick_contact_qq_inner_img {
    width: var(--quick_contact_tag_img_size);
    height: var(--quick_contact_tag_img_size);
}

.quick_contact_qq_number_con {
    position: absolute;
    top: 50%;
    transform-origin: right center;
    transform-style: preserve-3d;
    transform: translateY(-50%) rotateY(90deg);
    right: 140%;
    transition: all 500ms;
    opacity: 0;
    z-index: 999999;
}

.quick_contact_qq_number_triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid white;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999999;
}

.quick_contact_qq_number_inner_con {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: flex-start;
    background-color: white;
}

.quick_contact_qq_number_inner_con a {
    color: rgb(54, 155, 206);
    white-space: nowrap;
}

.quick_contact_qq:hover .quick_contact_qq_number_con {
    opacity: 1;
    transform: translateY(-50%) rotateY(0deg);
}

.quick_contact_to_top_img {
    width: var(--quick_contact_tag_img_size);
    height: var(--quick_contact_tag_img_size);

}

.quick_contact_qq_a_con {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin: 20px;
}


@-o-keyframes news_hint {
    0% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }

    25% {
        height: 20px;
        background-color: #fcff00;
        transform: scaleX(0.6);
    }

    50% {
        height: 0;
        background-color: #d3d3d3;
        transform: scaleX(0.3);
    }

    75% {
        height: 20px;
        background-color: lightskyblue;
        transform: scaleX(0.6);
    }

    100% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }
}

@-moz-keyframes news_hint {
    0% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }

    25% {
        height: 20px;
        background-color: #fcff00;
        transform: scaleX(0.6);
    }

    50% {
        height: 0;
        background-color: #d3d3d3;
        transform: scaleX(0.3);
    }

    75% {
        height: 20px;
        background-color: lightskyblue;
        transform: scaleX(0.6);
    }

    100% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }
}

@-webkit-keyframes news_hint {
    0% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }

    25% {
        height: 20px;
        background-color: #fcff00;
        transform: scaleX(0.6);
    }

    50% {
        height: 0;
        background-color: #d3d3d3;
        transform: scaleX(0.3);
    }

    75% {
        height: 20px;
        background-color: lightskyblue;
        transform: scaleX(0.6);
    }

    100% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }
}

@keyframes news_hint {
    0% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }

    25% {
        height: 20px;
        background-color: #fcff00;
        transform: scaleX(0.6);
    }

    50% {
        height: 0;
        background-color: #d3d3d3;
        transform: scaleX(0.3);
    }

    75% {
        height: 20px;
        background-color: lightskyblue;
        transform: scaleX(0.6);
    }

    100% {
        height: 0;
        background-color: lightsalmon;
        transform: scaleX(1);
    }
}

.company_news_hint_anim_news_anim_sub1 {
    width: 20%;
    height: 0;
    animation: news_hint normal 2800ms infinite;
    -webkit-animation: news_hint normal 2800ms infinite;
    -moz-animation: news_hint normal 2800ms infinite;
    -o-animation: news_hint normal 2800ms infinite;

}

.company_news_hint_anim_news_anim_sub2 {
    width: 20%;
    height: 0;
    animation: news_hint normal 5800ms infinite;
    -webkit-animation: news_hint normal 5800ms infinite;
    -moz-animation: news_hint normal 5800ms infinite;
    -o-animation: news_hint normal 5800ms infinite;


}

.company_news_hint_anim_news_anim_sub3 {
    width: 20%;
    height: 0;
    animation: news_hint normal 1600ms infinite;
    -webkit-animation: news_hint normal 1600ms infinite;
    -moz-animation: news_hint normal 1600ms infinite;
    -o-animation: news_hint normal 1600ms infinite;


}

.company_news_hint_anim_news_anim_sub4 {
    width: 20%;
    height: 0;
    animation: news_hint normal 8100ms infinite;
    -webkit-animation: news_hint normal 8100ms infinite;
    -moz-animation: news_hint normal 8100ms infinite;
    -o-animation: news_hint normal 8100ms infinite;


}

.company_news_hint_anim_news_anim_sub5 {
    width: 20%;
    height: 0;
    animation: news_hint normal 4900ms infinite;
    -webkit-animation: news_hint normal 4900ms infinite;
    -moz-animation: news_hint normal 4900ms infinite;
    -o-animation: news_hint normal 4900ms infinite;

}

.template_pc_post_inner_content * {
    max-width: 100% !important;
}

.template_pc_post_inner_content img {
    object-fit: contain;
    border-radius: 8px;
}

.template_pc_post_inner_content {
    width: 100%;
    white-space: pre-wrap;
}


.template_pc_post_inner_content ol {
    list-style-type: decimal;
    list-style-position: inside;
}

.template_pc_post_inner_content ul {
    list-style-type: disc;
    list-style-position: inside;
}

.template_pc_post_inner_content ol li p {
    display: inline-block;
}

.template_pc_post_inner_content ul li p {
    display: inline-block;
}

.template_pc_post_inner_content blockquote {
    padding: 10px;
    border-left: 5px solid #b2cafd;
    background-color: #b9b9b9;
    color: white;
    word-break: break-all;
}

.template_pc_post_inner_content table {
    border-collapse: collapse;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 10px;
}

.template_pc_post_inner_content table td {
    word-break: break-all;
    padding: 10px;
}

.template_pc_post_inner_content table tr:nth-of-type(odd) {
    background-color: #efefef;
}

.template_pc_post_inner_content table tr:nth-of-type(even) {
    background-color: white;
}