body {
    overflow-x: hidden;
    /* height: 100%;
    min-height: 100%; */
}

body.active {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.inner {
    width: 1430px;
    padding: 0 15px;
    position: relative;
    margin: 0 auto;
    max-width: 90%;
}

.layui-form {
    position: relative;
    z-index: 10;
}

.table_must {
    color: #fd6162;
    margin-left: 4px;
    font-size: 24px;
    line-height: 0;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        height: auto;
        transform: translateY(0);
    }

    to {
        height: auto;
        transform: translateY(15px);
        opacity: 1;
    }
}

ol {
    list-style: decimal;
}

ol li {
    list-style: decimal;
}

/*.not_fixed {*/
/*    width: 100%;*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

.not_fixed .home_nav {
    position: absolute;
}

.home_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 12%;
}

.nav .list_box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px 0;
}

.nav .list_box .item {
    color: #fff;
    font-size: 18px;
}

.nav .list_box .item a {
    padding: 5px 20px;
    display: block;
    border-radius: 18px;
}
.nav .list_box .item a button{
    display: none;
}

.nav .list_box .item a.active {
    border: 2px solid;
}

.nav .list_box .item .sub_nav {
    position: absolute;
    height: 0;
    opacity: 0;
    box-sizing: border-box;
    border: 0 solid rgba(0, 0, 0, .08);
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
}

.nav .list_box .item .sub_nav::before {
    content: '';
    width: 0;
    position: absolute;
    top: -15px;
    left: 5px;
    border-width: 0 10px 15px 10px;
    border-color: transparent transparent #fff transparent;
    border-style: solid;
}

.nav .list_box .item .sub_nav::after {
    content: '';
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    top: -20px;
}

.nav .list_box .item .sub_nav li {
    border-bottom: 1px solid #eee;
}

.nav .list_box .item .sub_nav li a {
    color: #666;
    text-indent: 10px;
    font-size: 14px;
    padding: 10px 30px 10px 0;
    border-radius: 0;
    transition: all .6s ease;
}

/* .nav .list_box .item .sub_nav li::after{content: '';width: 60%;height: 2px;position: absolute;bottom: 0;left: 20%;background-color: #333;transform: scale(0);transition: all .6s ease;} */
.nav .list_box .item:hover .sub_nav {
    animation: fadeInUp 1s linear forwards;
    overflow: visible;
    border-width: 5px;
}

.nav .list_box .item .sub_nav li a:hover {
    color: #242275;
    background-color: rgba(0, 38, 200, .2);
}

/* .nav .list_box .item .sub_nav li:hover{color: #333;border-color: #333;transform: scale(1);} */
/* .nav .list_box .item .sub_nav li:hover::after{transform: scale(1);} */
.nav .list_box .item .logo {
    margin: 0 20px;
    position: relative;
}

.nav .list_box .item .logo .img_hover {
    position: absolute;
    left: 20px;
    top: 5px;
    opacity: 0;
}

.nav .search_box {
    border: 1px solid rgba(255, 255, 255, .4);
    position: relative;
    width: 200px;
    border-radius: 6px;
    margin-left: 20px;
    font-size: initial;
}

.nav .search_box .input {
    border: none;
    height: 35px;
    color: #fff;
    padding: 0 35px;
    width: 100%;
    font-size: 16px;
}

.nav .search_box .input::placeholder {
    color: #fff;
}

.nav .search_box .btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.nav .search_box .enter {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 35px;
    border-left: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-size: 16px;
}

/* 导航按钮 */
.menu_toggle {
    position: relative;
    cursor: pointer;
    display: none;
    font-size: initial
}

.menu_show {
    clip-path: circle(200% at 100% 50%);
    -webkit-clip-path: circle(200% at 100% 50%);
    transition: 1s ease-in-out;
}

.menu_show.active {
    clip-path: circle(0% at 100% 50%);
    -webkit-clip-path: circle(0% at 100% 50%);
    transition: .1s ease-in-out;
}

.menu_close {
    clip-path: circle(0% at 0% 50%);
    -webkit-clip-path: circle(0% at 0% 50%);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.menu_close.active {
    clip-path: circle(200% at 0% 50%);
    -webkit-clip-path: circle(200% at 0% 50%);
    opacity: 1;
    transition: 1s ease-in;
}

.mobile_logo {
    display: none;
}

.home_nav.black .list_box .item {
    color: #333;
}

.home_nav.black .search_box {
    border-color: #d5d5d5;
}

.home_nav.black .search_box .input {
    color: #333;
}

.home_nav.black .search_box .input::placeholder {
    color: #333;
}

.home_nav.black .search_box .btn {
    color: #333;
}

.home_nav.black .search_box .enter {
    color: #333;
    border-left-color: #d5d5d5;
}

.home_nav.black .list_box .item .logo .img {
    opacity: 0;
}

.home_nav.black .list_box .item .logo .img_hover {
    opacity: 1;
}

.home_nav.black .list_box.active .item a:after {
    background-color: #000;
}

.home_nav.black .mobile_logo .img_hover {
    opacity: 1;
    transition: opacity .5s linear;
}

.home_wrap{height: 100vh;}
.home_wrap .section_item{padding-top: 140px;}
.home_wrap .section_1{text-align: center;color: #ffffff;padding-top: 0;}
.home_wrap .section_1 .sup{font-size: 24px;margin-bottom: 18px;}
.home_wrap .section_1 .title{font-size: 60px;margin-bottom: 30px;}
.home_wrap .section_1 .more{width: 285px;padding: 12px 0;border: 1px solid #fff;display: block;margin: 0 auto;border-radius: 40px;}

.home_wrap .section_1 .section_1_slider{height: 100%;}
.home_wrap .section_1 .swiper-wrapper{height: 100%;}
.home_wrap .section_1 .swiper-wrapper .item{height: 100%;padding-bottom:200px;padding-top: 140px;display: flex;align-items: center;}

.home_wrap .section_2 .tab_box {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
}

.home_wrap .section_2 .tab_box .img_box {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80%;
    display: grid;
    overflow: hidden;
}

.home_wrap .section_2 .tab_box .img_box .img_item {
    width: 100%;
    height: 0;
    grid-column: 1;
    grid-row: 1 / -1;
    opacity: 0;
    overflow: hidden;
    transition: opacity .5s linear;
}
.home_wrap .section_2 .tab_box .img_box .img_item .link{display: none;}

.home_wrap .section_2 .tab_box .img_box .img_item.active {
    opacity: 1;
    height: 100%;
}

.home_wrap .section_2 .tab_box .title_box {
    position: relative;
    z-index: 10;
    padding-bottom: 100px;
}

.home_wrap .section_2 .tab_box .title_box .title_item {
    margin-bottom: 70px;
    text-align: right;
    cursor: pointer;
}

.home_wrap .section_2 .tab_box .title_box .title_item .title {
    font-size: 30px;
    color: #000;
    opacity: .2;
    margin-bottom: 15px;
}

.home_wrap .section_2 .tab_box .title_box .title_item .description {
    display: none;
}

.home_wrap .section_2 .tab_box .title_box .title_item .description a {
    color: #141414;
    display: block;
    border: 1px solid;
    margin-top: 10px;
    border-radius: 14px;
    padding: 2px 25px;
    position: absolute;
    right: 0;
}

.home_wrap .section_2 .tab_box .title_box .title_item.active .title {
    font-size: 60px;
    opacity: 1;
    position: relative;
}

.home_wrap .section_2 .tab_box .title_box .title_item.active .title::before {
    content: '';
    position: absolute;
    right: -30px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #242275;
    top: 50%;
    margin-top: -5px;
}

.home_wrap .section_2 .tab_box .title_box .title_item.active .description {
    font-size: 16px;
    display: block;
    position: relative;
}

.home_wrap .section_3 .inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_wrap .section_3 .list_box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.home_wrap .section_3 .list_box .item {
    width: 48%;
    border: 2px solid rgba(255, 255, 255, .4);
    position: relative;
    color: #fff;
    padding: 55px;
    transition: all .4s linear;
    margin-bottom: 60px;
}

.home_wrap .section_3 .list_box .item a {
    display: block;
    padding-right: 30%;
}

.home_wrap .section_3 .list_box .item .title {
    font-size: 44px;
    margin-bottom: 15px;
}

.home_wrap .section_3 .list_box .item .text {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: .2;
    transition: all .4s linear;
}

.home_wrap .section_3 .list_box .item .num_img {
    position: absolute;
    right: 35px;
    height: 100%;
    display: flex;
    align-items: center;
    top: 0;
    width: 30%;
    opacity: .05;
    transition: all .4s linear;
}

.home_wrap .section_3 .list_box .item:hover {
    border-color: #fff;
}

.home_wrap .section_3 .list_box .item:hover .text {
    opacity: 1;
}

.home_wrap .section_3 .list_box .item:hover .num_img {
    opacity: .8;
}

.home_wrap .section_4 {
    padding-top: 0;
}

.home_wrap .section_4 .section_4_slider {
    height: 100%;
}

.home_wrap .section_4 .swiper-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_wrap .section_4 .swiper-wrapper .item {
    height: 100%;
    border-left: 1px solid rgba(255, 255, 255, .4);
    display: flex;
    align-items: center;
    width: 13.75%;
    cursor: pointer;
    transition: all .4s linear;
    overflow: hidden;
}

.home_wrap .section_4 .swiper-wrapper .item .bg {
    width: 100%;
    color: #fff;
}

.home_wrap .section_4 .swiper-wrapper .item.active {
    width: 45%;
    padding: 0 5%;
}

.home_wrap .section_4 .swiper-wrapper .item .text_box {
    display: none;
}

.home_wrap .section_4 .swiper-wrapper .item .title {
    font-size: 46px;
    margin-bottom: 20px;
    text-align: center;
}

.home_wrap .section_4 .swiper-wrapper .item .en_title {
    font-size: 26px;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-bottom: 54px;
    position: relative;
}

.home_wrap .section_4 .swiper-wrapper .item .en_title::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: #fff;
}

.home_wrap .section_4 .swiper-wrapper .item .text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 40px;
}

.home_wrap .section_4 .swiper-wrapper .item .more {
    padding: 10px 45px;
    border-radius: 40px;
    border: 1px solid #fff;
}

.home_wrap .section_4 .swiper-wrapper .item .more img {
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    top: -2px
}

.home_wrap .section_4 .swiper-wrapper .item.active .title {
    text-align: left;
}

.home_wrap .section_4 .swiper-wrapper .item.active .text_box {
    display: block;
}

.home_wrap .section_5 {
    display: flex;
    align-items: center;
}

.home_wrap .section_5 .inner {
    width: 1750px;
}

.home_wrap .section_5 .section_5_box {
    position: relative;
}

.home_wrap .section_5 .describe_box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
}

.home_wrap .section_5 .describe_box .text_box {
    width: 60%;
}

.home_wrap .section_5 .describe_box .text_box .title {
    font-size: 46px;
    font-weight: bold;
    margin-bottom: 25px;
}

.home_wrap .section_5 .describe_box .text_box .text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 100px;
}

.home_wrap .section_5 .describe_box .img_box {
    width: 25%;
    padding-right: 75px;
    text-align: right;
}

.home_wrap .section_5 .list_box {
    display: grid;
    grid-template-columns: repeat(4, 23.5%);
    column-gap: 2%;
}

.home_wrap .section_5 .list_box .item:last-child {
    padding-right: 0;
}

.home_wrap .section_5 .list_box .item.last_item {
    width: 23.5%;
    position: absolute;
    right: 0;
    top: 0;
}

.home_wrap .section_5 .list_box .item .img {
    height: 250px;
}

.home_wrap .section_5 .list_box .item .img a {
    display: block;
    height: 100%;
}

.home_wrap .section_5 .list_box .item.last_item .img {
    height: 440px;
}

.home_wrap .section_5 .list_box .item .title {
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 20px 0 15px 0;
}

.home_wrap .section_5 .list_box .item .text {
    height: 3em;
    line-height: 1.5;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}

.home_wrap .section_5 .list_box .item .more {
    color: #141414;
    font-size: 14px;
}

/* 焦点图 */
.focus_pictures {
    width: 100%;
    height: 6.13rem;
    min-height: 250px;
    color: #fff;
    padding-left: 2.56rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(https://songyuansq.oss-cn-beijing.aliyuncs.com/home/images/background_img_4.png) center/cover no-repeat;
    position: relative;
}

.focus_pictures_h4 {
    font-size: .48rem;
    margin-bottom: .15rem;
    position: relative;
    z-index: 10;
    transition: all .3s linear;
}

.focus_pictures_txt {
    font-size: .72rem;
    position: relative;
    z-index: 10;
    transition: all .3s linear;
}

/* 遮罩层 */
.mask {
    width: 100%;
    height: 100%;
    background-color: rgba(36, 34, 117, .2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* 子导航 */
.header {
    width: 100%;
    height: 92px;
    background-color: #fff;
    font-size: .18rem;
    padding: 0 2.62rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .3s linear;
    position: sticky;
    top: 0;
    z-index: 90;
}

/*.header_pager {*/
/*    height: 100%;*/
/*    display: flex;*/
/*}*/

.header_pager {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1.7rem);
    overflow-x: auto;
}

.header_pager .header_anchor {
    margin-right: 0;
}

.header_anchor {
    height: 100%;
    color: #61686c;
    font-weight: bold;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin-right: .55rem;
    transition: all .3s linear;
}

.header_anchor>.header_img {
    margin-right: 8px;
    margin-left: -2px;
}

.header_pager>.is_active {
    color: #242275;
    border-bottom: 4px solid #0026c8;
}

.header_h4 {
    height: 100%;
    color: #242275;
    font-weight: bold;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    border-bottom: 4px solid #0026c8;
}

.header_link {
    display: flex;
    align-items: center;
}

.header_a {
    display: flex;
    align-items: center;
}

.header_a>.header_img {
    width: .19rem;
    height: .17rem;
    margin-right: 10px;
}

.header_img {
    margin: 0 10px;
}

/* 公司介绍 */
.introduced {
    color: #61686c;
    font-size: 16px;
    padding: .65rem 2.62rem .5rem;
    display: flex;
    align-items: center;
    /* transition: all .3s linear; */
}

.introduced_title {
    margin-right: .7rem;
}

.introduced_title_h4 {
    color: #242275;
    font-size: 36px;
    font-weight: bold;
    margin: .1rem 0 .25rem;
    transition: all .3s linear;
}

.introduced_title_txt {
    line-height: 32px;
    transition: all .3s linear;
}

.introduced_img {
    width: 6.74rem;
    height: 3.86rem;
}

/* 标题 */
.news_h2,
.publicity_h2,
.honor_h2 {
    color: #333;
    font-size: .6rem;
    margin-bottom: .6rem;
}

/* 新闻动态 */
.news {
    font-size: .16rem;
    padding: .65rem 2.62rem .5rem;
    background-color: rgba(21, 17, 177, 0.05);
}

.news_swiper {
    padding-bottom: 1.2rem;
}

.swiper-wrapper {
    height: auto;
}

.news_swiper_item {
    color: #666;
    width: 3.35rem;
    height: 4.65rem;
    background-color: #fff;
    padding: .5rem .54rem .42rem .3rem;
    transition: all .2s ease-out;
}

.news_swiper_h6 {
    color: #fff;
    width: .9rem;
    height: .36rem;
    text-align: center;
    line-height: .36rem;
    border-radius: .18rem;
    background-color: #302e87;
    margin-bottom: .3rem;
}

.news_swiper_summary {
    color: #333;
    font-size: .24rem;
    line-height: .44rem;
    margin-bottom: .35rem;
}

.news_swiper_txt {
    line-height: .32rem;
    margin-bottom: .6rem;
}

.news_swiper .swiper-slide-active .news_swiper_item {
    color: #fff;
    background-color: #302e87;
}

.news_swiper .swiper-slide-active .news_swiper_h6 {
    color: #242275;
    background-color: #fff;
}

.news_swiper .swiper-slide-active .news_swiper_summary {
    color: #fff;
}

.news_swiper .swiper-scrollbar {
    background-color: #fff !important;
    left: calc(50% - 50px) !important;
    bottom: .45rem !important;
}

.swiper-container {
    --swiper-navigation-size: 15px;
    /* 设置按钮大小 */
}

.news_swiper .swiper-button-next:after,
.news_swiper .swiper-button-prev:after {
    position: relative;
    top: 2.45rem;
}

.swiper-button-next:after {
    right: 5.8rem;
}

.swiper-button-prev:after {
    left: 5.8rem;
}

.news_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.news_link {
    width: 180px;
    height: 40px;
    color: #302e87;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(36, 34, 117, .43);
}

.news_link_img {
    width: 7px;
    height: 14px;
    position: relative;
    top: 13px;
    left: 5px;
}

/* 宣传片 */
.publicity {
    padding: .65rem 2.62rem 0;
}

.publicity_swiper {
    padding-bottom: 1.2rem;
}

.publicity_swiper_video {
    width: 14rem;
    height: 5.6rem;
    background-color: #000;
}

.publicity_swiper .swiper-scrollbar {
    left: calc(50% - 50px) !important;
    bottom: .55rem !important;
    transform: translateY(3px);
}

.publicity_swiper .swiper-button-next:after,
.publicity_swiper .swiper-button-prev:after {
    position: relative;
    top: 2.85rem;
}

/* 背景色 */
.block_color {
    width: 100%;
    height: 3.8rem;
    background-color: rgba(21, 17, 177, 0.05);
    margin-top: -3.8rem;
}

/* 公司荣誉 */
.honor {
    color: #333;
    font-size: .2rem;
    padding: .65rem 2.62rem .5rem;
}

.honor_swiper {
    padding-bottom: 1.2rem;
}

.honor_swiper_item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.honor_swiper_wrap {
    width: 100%;
    /* width: 3.2rem; */
    height: 2.25rem;
    overflow: hidden;
    display: grid;
    justify-items: center;
    align-items: center;
    margin-bottom: .3rem;
}

.honor_swiper_img {
    width: 100%;
    max-width: 120%;
    height: 100%;
    transition: all .3s linear;
}

.honor_swiper_img:hover {
    width: 120%;
    height: 120%;
}

.honor_swiper .swiper-scrollbar {
    left: calc(50% - 50px) !important;
    bottom: .45rem !important;
}

.honor_swiper .swiper-button-next:after,
.honor_swiper .swiper-button-prev:after {
    position: relative;
    top: 1.54rem;
}

/* 展示面板 */
.panel,
.case,
.case_details {
    background-color: #f7f8fa;
    padding: .01rem 2.62rem .34rem;
}

/* 面板下拉框 */
.case_choose {
    color: #666;
    align-self: flex-start;
    margin: .8rem 0 .34rem;
}

.case_choose .case_choose_select {
    width: 3.4rem;
    height: .62rem;
    border: 1px solid #242275;
}

.case_choose_select .layui-form-select dl {
    top: .65rem;
    min-width: 90%;
    border-radius: 10px;
    left: 5%;
}

.case_choose_select .layui-select-title input {
    color: #fff;
    text-indent: 30px;
}

/* .case_choose_select .layui-select-title input::-webkit-input-placeholder{color: #fff;text-indent: 30px;} */
.case_choose_select .layui-form-select .layui-edge {
    border-top-color: #fff;
}

.case_choose_select.layui-input-inline {
    border: none;
}

.case_choose_select .layui-form-select,
.case_choose_select .layui-select-title,
.case_choose_select .layui-input {
    border-radius: 10px;
    background-color: #302e87;
}

/* layui下拉框样式开始 */
.layui-select-title {
    position: relative;
    font-size: .22rem;
    line-height: .62rem;
}

.layui-form-select,
.layui-select-title,
.layui-input {
    height: 100%;
    text-indent: .28rem;
    border: none;
}

.layui-form-select dl {
    text-indent: .28rem;
}

.layui-form-select dl dd.layui-this {
    background-color: #302e87;
}

.case_choose_select .layui-form-select dl dd {
    font-size: .22rem;
    height: .62rem;
    line-height: .62rem;
}

.layui-select-title .layui-input::placeholder {
    font-size: .22rem;
}

.layui-form-select .layui-edge {
    right: 30px;
}

.layui-form-select dl::-webkit-scrollbar {
    display: none;
}

/* layui下拉框样式结束 */
/* 主体 */
.case_main_list {
    width: 100%;
    display: grid;
    /* grid-template-columns: repeat(auto-fill,24%); */
    grid-template-columns: 24% [a1] 24% [a2] 24% [a3] 24%;
    column-gap: 1.3%;
    /* justify-content: space-between; */
}

.case_main_img {
    width: 100%;
}

.case_main_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    padding: .3rem .70rem .4rem;
    transition: all .3s linear;
}

.case_main_h4 {
    color: #333333;
    font-size: .18rem;
    font-weight: bold;
    margin-bottom: .17rem;
}

.case_main_txt {
    font-size: .16rem;
    color: #989898;
}

/* 案例详情页面开始 */
/* 案例标题 */
.case_details_title {
    font-size: .16rem;
    text-align: center;
    padding-top: .82rem;
}

.case_details_title_h3 {
    color: #333;
    font-size: .32rem;
}

.case_details_title_txt {
    color: #999;
    margin: .62rem 0 .3rem;
}

.case_details_title_txt>span {
    margin: 0 .43rem;
    line-height: 20px;
}

/* 案例文本 */
.case_details_main {
    color: #666;
    font-size: .16rem;
    line-height: .36rem;
    /* padding: .2rem 0 1.2rem; */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.case_details_main>p {
    margin-bottom: .45rem;
}

/* 效果展示 */
.show {
    text-align: center;
    padding: .6rem 0 1.1rem;
    border-bottom: 1px solid #eee;
}

.show_h2 {
    font-size: .32rem;
    margin-bottom: .42rem;
}

/* 切换页面 */
.choose {
    width: 100%;
    color: #666;
    font-size: .16rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .44rem 0;
}

/* 案例页面详情结束 */
/* 面板主体 */
.effect_panel .panel_main{
    justify-content: flex-start;
}
.panel_main {
    height: 100%;
    color: #fff;
    padding: .65rem 0 .5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
}

.panel_main_item {
    width: 6.5rem;
    height: 4.42rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: .3rem;
}

.effect_panel .panel_main_item {
    width: 4.4rem;
    height: 3.31rem;
    font-size: .3rem;
}

.panel_main_content {
    width: 90%;
    height: 90%;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
    transition: all .5s linear;
}

/* 未选中情况下元素隐藏 */
.panel_main_content>.panel_main_title,
.panel_main_content>.mask {
    display: none;
}

.panel_main_txt {
    font-size: .3rem;
    user-select: none;
    position: absolute;
    left: .35rem;
    bottom: .32rem;
}

.panel_main_img {
    width: 100%;
    height: 100%;
}

.panel_main_item>.is_active {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .8);
    transition: all .3s linear;
}

/* 选中情况下文字隐藏 */
.panel_main_item>.is_active>.panel_main_txt {
    display: none;
}

.panel_main_item>.is_active .panel_main_title {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
}

.panel_main_item>.is_active .panel_main_h4 {
    font-size: .36rem;
    margin-bottom: .28rem;
    position: relative;
    z-index: 20;
}

.panel_main_item>.is_active .panel_main_txt {
    font-size: .28rem;
    position: relative;
    bottom: 0;
    left: 0;
}

.panel_main_item>.is_active .mask {
    display: block;
    background-color: rgba(0, 0, 0, .3);
}

/* 标题 */
.contact_h4,
.registration_h2 {
    color: #333;
    font-size: .6rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* 联系方式 */
.contact {
    color: #61686c;
    font-size: .18rem;
    line-height: .42rem;
    padding: .65rem 2.62rem .5rem;
}

.contact_list {
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin: .5rem 0;
}

.contact_item {
    width: 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contact_item>p {
    font-size: .22rem;
}

.contact_item_img {
    height: .9rem;
    display: flex;
    align-items: center;
}

.contact_item:nth-of-type(1)>.contact_item_img>img {
    width: .61rem;
    height: .62rem;
}

.contact_item:nth-of-type(2)>.contact_item_img>img {
    width: .6rem;
    height: .64rem;
}

.contact_item:nth-of-type(3)>.contact_item_img>img {
    width: .78rem;
    height: .53rem;
}

.contact_item:nth-of-type(4)>.contact_item_img>img {
    width: .49rem;
    height: .64rem;
}

/*.contact_img_wrap {
    height: 4.5rem;
    background: url() center/cover no-repeat;
    !*background: url(https://songyuansq.oss-cn-beijing.aliyuncs.com/home/images/map.png) center/cover no-repeat;*!
}*/

/* 供应商登记表 */
.registration {
    font-size: .16rem;
    padding: .65rem 2.62rem .5rem;
    background-color: #f4f4f4;
}

.table {
    color: #333;
    font-size: 18px;
    display: grid;
    grid-template-columns: 32% 32% 32%;
    gap: 20px;
}

.table p {
    text-indent: 16px;
    margin-bottom: 16px;
}

.occupy {
    grid-column: 1 / 4;
}

.table .layui-input-block {
    margin-left: 0;
    height: 57px;
}

.table .layui-form-select dl {
    top: 57px;
    text-indent: 6px;
    bottom: auto;
}

/* layui下拉框样式开始 */
.table .layui-select-title {
    font-size: 16px;
    line-height: 57px;
}

.table .layui-select-title::before {
    width: 9.5px;
    height: 16.5px;
    top: 20.5px;
}

.table .layui-form-select,
.layui-select-title,
.layui-input {
    height: 100%;
    text-indent: 6px;
    background-color: #fff;
}

.table .case_choose_select .layui-form-select dl dd {
    font-size: 16px;
    height: 57px;
    line-height: 57px;
}

.table .layui-select-title .layui-input::placeholder {
    font-size: 16px;
}

.table .layui-form-select dl dd,
.table .layui-form-select dl dt {
    padding: 5px 10px;
}

/* layui下拉框样式结束 */
.date {
    position: relative;
}

.date_img {
    width: 26px;
    height: 26px;
    position: absolute;
    bottom: 15.5px;
    right: 20px;
}

.table input,
textarea {
    text-indent: 16px;
    border: 1px solid #e2e2e2;
    background-color: #fff;
}

textarea {
    width: 100%;
    padding-top: 25px;
}

.table input {
    width: 100%;
    height: 57px;
}

.table input[type="radio"] {
    vertical-align: middle;
    width: 18px;
    height: 18px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    border-radius: 50%;
    border: 6px solid #ccc;
    background-color: #fff;
}

.table input::placeholder {
    font-size: 16px;
}

.table input[type="radio"]:checked {
    border: 6px solid #302e87;
}

.table input::-webkit-outer-spin-button,
.table input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    user-select: none;
}

.submit {
    text-indent: 0;
}

.table input[type="submit"] {
    width: 100%;
    color: #fff;
    text-indent: 0;
    background-color: #242275;
    margin-top: .86rem;
}

.radio {
    width: calc(50% - 3px);
    height: 57px;
    line-height: 54px;
    display: inline-block;
    border: 1px solid #e2e2e2;
    background-color: #fff;
    padding-left: 20px;
}

.radio label {
    padding: 0 .5rem 0 20px;
    user-select: none;
    vertical-align: middle;
    cursor: pointer;
}

.capital {
    position: relative;
}

.capital>span {
    position: absolute;
    top: 56px;
    right: .36rem;
}

/* 职位面板 */
.job {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.62rem .34rem;
}

/* 职位标题 */
.job_h2 {
    font-size: .6rem;
    align-self: flex-start;
    margin: .8rem 0 .34rem;
}

/* 职位内容 */
.job_main_content {
    width: 14rem;
    height: 2.05rem;
    min-height: 80px;
    font-size: .16rem;
    box-sizing: border-box;
    background-color: #fff;
    margin: 20px 0;
    padding: 0 .45rem 0 .37rem;
    transition: height .3s linear;
}

.job_main_title {
    height: 35%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.job_main_left,
.job_main_right {
    display: flex;
    align-items: center;
}

.job_main_left>.job_main_img {
    width: 17px;
    height: 29px;
    margin-right: .25rem;
}

.job_main_h4 {
    font-size: .24rem;
    font-weight: bold;
}

.job_main_right>.job_main_img {
    width: 14px;
    height: 12px;
    margin-left: .25rem;
}

.job_main_txt {
    width: 65%;
    height: 65%;
    color: #666666;
    display: flex;
    flex-wrap: wrap;
    padding: .2rem 0;
    transition: all .3s linear;
}

.job_main_txt>span {
    width: 25%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all .3s linear;
}

.job_main_item>.is_active {
    background-color: #302e87;
}

.job_main_item>.is_active>.job_main_title {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.job_main_item>.is_active>.job_main_title,
.job_main_item>.is_active>.job_main_txt {
    color: #fff;
}

/* 新闻动态 */
.dynamic {
    padding: .5rem 2.62rem .34rem;
}

/* 内容 */
.dynamic_main_content {
    width: 14rem;
    height: 2.1rem;
    min-height: 155px;
    color: #666;
    font-size: .16rem;
    line-height: .48rem;
    box-sizing: border-box;
    display: flex;
    background-color: #f4f4f4;
    margin-bottom: 40px;
    padding: .4rem .6rem;
    transition: height .3s linear;
}

.dynamic_main_title {
    flex: 1;
    color: #999;
    font-size: .18rem;
    text-align: right;
    border-right: 1px solid #ddd;
    padding-right: .55rem;
}

.dynamic_main_h4 {
    font-size: .4rem;
}

.dynamic_main_txt {
    flex: 6;
    color: #999;
    padding: 0 .55rem;
    transition: all .3s linear;
}

.dynamic_main_txt>.dynamic_main_link {
    color: #333;
    font-size: .24rem;
}

.dynamic_main_content>.dynamic_main_link {
    flex: 1;
    width: 1.42rem;
    height: .42rem;
    border-radius: 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #fff;
    transform: translateY(.52rem);
}

.dynamic_main_item>.is_active {
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
}

.dynamic_main_item>.is_active>.dynamic_main_txt>.dynamic_main_link {
    color: #0424ab;
    text-decoration: underline;
}

.dynamic_main_item>.is_active>.dynamic_main_link {
    color: #fff;
    background-color: #0424ab;
}

/* 面板分页器 */
.pager {
    color: #666666;
    font-size: 16px;
    padding-bottom: .83rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.pager ul {
    display: flex;
}

.pager li {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
}

.pager .active {
    color: #fff;
    background-color: #242275;
}

.breadcrumbs {
    color: #666;
    font-size: .16rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .52rem 0 .25rem;
    border-bottom: 1px solid #eee;
}

.breadcrumbs_link {
    display: flex;
    align-items: center;
}

.breadcrumbs_img {
    margin-left: 10px;
}

/* 商品信息 */
.goods {
    color: #666;
    font-size: .16rem;
    line-height: .32rem;
    display: flex;
    padding: .2rem 0 1.2rem;
    border-bottom: 1px solid #eee;
}

.goods_info {
    width: 7.5rem;
    height: 5.53rem;
    overflow-y: auto;
}

.goods_img {
    width: 5.53rem;
    height: 5.53rem;
    margin-right: .85rem;
}

.goods_h4 {
    color: #333;
    font-size: .28rem;
    margin: .55rem 0 .25rem;
}

.goods_txt {
    margin-bottom: .9rem;
}

.goods_txt>p {
    font-size: 14px;
}

.goods_txt>p>label {
    color: #333;
    font-weight: 900;
}

.goods_link {
    width: 1.9rem;
    height: .5rem;
    color: #fff;
    text-align: center;
    line-height: .5rem;
    display: block;
    background-color: #242275;
    border-radius: 5px;
    margin-bottom: .3rem;
}

/* 标题 */
.parameters_h2,
.characteristics_h2,
.effect_h2 {
    font-size: .22rem;
    margin-right: .5rem;
    min-width: 100px;
}

/* 效果展示 */
.parameters {
    color: #333;
    font-size: 14px;
    display: flex;
    padding: 1rem 0 .5rem;
    border-bottom: 1px solid #eee;
}

.parameters ul {
    width: auto;
    text-align: center;
}

.parameters li:first-child {
    font-size: 16px;
}

.parameters li:nth-child(odd) {
    background-color: rgba(125, 125, 125, .04);
}

.parameters li:nth-child(even) {
    background-color: rgba(48, 46, 135, .03);
}

.parameters li {
    display: flex;
}

.parameters li h6,
.parameters li span {
    display: inline-block;
    width: 158px;
    height: 54px;
    line-height: 54px;
}

.parameters_span_3 {
    width: 474px;
}

.parameters_span_2 {
    width: 316px;
}

/* 产品特点 */
.characteristics {
    color: #333;
    font-size: .18rem;
    line-height: .45rem;
    display: flex;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.characteristics table {
    font-size: 12px;
    color: #666;
    display: table;
    min-width: 500px;
    line-height: 1.2;
}

.characteristics table tr:nth-of-type(odd) {
    background-color: rgba(125, 125, 125, .04);
}

.characteristics table tr:nth-of-type(even) {
    background-color: rgba(48, 46, 135, .03);
}

.characteristics table td {
    padding: 10px 5px;
}

.characteristics_txt {
    max-width: 10rem;
    margin-bottom: .34rem;
}

/* 推荐案例 */
.effect {color: #333;display: flex;padding: 1rem 0;}
.effect_list {width: 100%;}
.effect_list .effect_img{width: 3rem;height: auto;}
.effect_link {display: block;width: 24%;margin-right: 1%;}
.effect_title {width: 100%;display: flex;flex-direction: column;align-items: center;text-align: center;background-color: #fff;padding: .3rem .5rem .4rem;transition: all .3s linear;}
.effect_h4 {color: #333333;font-size: .18rem;font-weight: bold;margin-bottom: .17rem;}
.effect_txt {font-size: .16rem;color: #989898;}
.effect_imgs {display: grid;grid-template-columns: 1fr [] 1fr [] 1fr [] 1fr;column-gap: .12rem;}
.effect_imgs img {width: 3rem;height: 4rem;}
.swiper-container.effect_list{
    --swiper-navigation-size: 20px; 
  }
.effect .swiper-button-next.effect_next{right: -55px;outline: none;}
.effect .swiper-button-prev.effect_prev{left: 65px;outline: none;}
.effect .swiper-button-next:after,
.effect .swiper-button-prev:after{display: block;}
.effect_list{padding-bottom: 30px;}

/* 职位 */
.position {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .45rem 2.62rem .51rem;
    background-color: rgba(247, 247, 247, .7);
}

.position_info_title {
    color: #999;
    font-size: .18rem;
    display: flex;
    align-items: center;
}

.position_info_img {
    width: .23rem;
    height: .23rem;
    margin-right: .1rem;
}

.position_info_h4 {
    color: #333;
    font-size: .32rem;
    margin: .36rem 0 .46rem;
}

.position_info_salary {
    color: #fd6162;
    font-size: .38rem;
    margin-bottom: .28rem;
}

.position_info_txt {
    color: #666;
    font-size: .22rem;
}

.position_link {
    width: 3.33rem;
    height: .65rem;
    color: #fff;
    font-size: .22rem;
    text-align: center;
    line-height: .65rem;
    display: block;
    border-radius: 3px;
    background-color: #242275;
}

/* 职位描述 */
.describe {
    padding: .7rem 2.62rem .9rem;
}

.describe_info {
    color: #666;
    font-size: .22rem;
    line-height: .46rem;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    position: relative;
}

.describe_info_h2 {
    color: #333;
    display: inline-block;
    padding-right: 10px;
    position: absolute;
    top: -.23rem;
    background-color: #fff;
}

.describe_info>ul {
    margin-bottom: .4rem;
}

/* 个人资料 */
.info {
    padding: .7rem 2.62rem .9rem;
    background-color: rgba(247, 247, 247, .7);
}

.info_content,
.experience_content {
    color: #333;
    font-size: .18rem;
    line-height: .18rem;
    border-top: 1px solid #ccc;
    padding-top: .75rem;
    margin-bottom: .85rem;
    position: relative;
}

.info_content_h2,
.experience_h2 {
    font-size: .3rem;
    line-height: .3rem;
    display: inline-block;
    padding-right: 10px;
    position: absolute;
    top: -.15rem;
    background-color: rgba(247, 247, 247, 1);
}

/* 文案 */
.copywriter {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2.6rem .34rem;
}

/* 标题 */
.copywriter_title {
    width: 80%;
    text-align: left;
    padding-top: .82rem;
}

.copywriter_title_h3 {
    color: #333;
    font-size: .32rem;
    text-align: center;
}

.copywriter_title_txt {
    color: #999;
    font-size: .16rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    align-items: center;
    margin: .62rem 0 .3rem;
}

.copywriter_title_txt>span:last-child {
    display: flex;
    align-items: center;
}

/* 内容 */
.copywriter_main {
    color: #666;
    font-size: .16rem;
    line-height: .36rem;
    padding: .2rem 0 1.2rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.copywriter_main>p {
    margin-bottom: .45rem;
}

/* 切换页面 */
.choose {
    width: 100%;
    color: #666;
    font-size: .16rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .44rem 0;
}

.panel_empty {
    font-size: 16px;
    line-height: 300px;
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success_window {
    width: 200px;
    color: #999;
    font-size: 14px;
    line-height: 20px;
    padding: 14px 20px;
    border-radius: 8px;
    box-sizing: border-box;
    border: 1px solid #ebeef5;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
    position: fixed;
    top: 30px;
    left: calc(50% - 100px);
    z-index: 100;
}

.success_window>h6 {
    color: #333;
    font-size: 16px;
}

/* 版权 */
.copyright {
    height: 204px;
    padding: 52px 0 72px;
    color: #6d6d6d;
    font-size: 16px;
    line-height: .35rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #232323;
    transition: all .1s linear;
}

.copyright_left,
.copyright_right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    top: 15px;
}

.copyright_right {
    align-items: flex-end;
}

.copyright_right_img {
    width: 66px;
    height: 23px;
    margin-bottom: .2rem;
}

@media screen and (max-width: 1550px) {
    .nav .list_box .item {
        font-size: 16px;
    }

    .nav .list_box .item a {
        padding: 5px 15px;
    }

    .nav .list_box .item .logo .img_hover {
        left: 15px;
        top: 5px;
    }

    .nav {
        padding-left: 2%;
    }
}

@media screen and (max-width: 1400px) {
    .nav .list_box {
        padding: 20px 0;
    }

    .nav .list_box .item a {
        padding: 5px 10px;
    }

    .nav .list_box .item .logo .img_hover {
        left: 10px;
    }

    .nav .search_box {
        width: 140px;
    }

    .nav .list_box .item .logo {
        max-width: 280px;
        display: block;
    }

    .nav .search_box .input {
        height: 30px;
    }

    .home_wrap .section_3 .list_box .item {
        padding: 44px;
    }

    .home_wrap .section_3 .list_box .item .title {
        font-size: 35px;
    }

    .home_wrap .section_3 .list_box .item .text {
        font-size: 20px;
    }

    .home_wrap .section_4 .swiper-wrapper .item {
        width: 18.3%;
    }

    .home_wrap .section_5 .describe_box {
        width: 100%;
    }

    .home_wrap .section_5 .list_box {
        grid-template-columns: repeat(3, 32%);
        column-gap: 2%;
    }

    .home_wrap .section_5 .list_box .item.last_item {
        display: none;
    }

    /* 子导航 */
    .header {
        font-size: 12px;
    }

    .header_a>.header_img {
        width: 14px;
        height: 12px;
    }

    /* 公司介绍 */
    .introduced {
        font-size: 15px;
    }

    .introduced_title_h4 {
        font-size: 32px;
    }

    .introduced_title_txt {
        line-height: 30px;
    }

    .introduced_img {
        width: 6.74rem;
        height: 3.86rem;
    }

    /* 轮播图切换按钮 */
    .swiper-button-next:after,
    .swiper-button-prev:after {
        display: none;
    }

    /* 新闻动态 */
    .news {
        font-size: 12px;
    }

    .news_swiper_item {
        width: 4.34rem;
        height: 5.98rem;
        padding: .65rem .8rem .54rem .39rem;
    }

    .news_swiper_h6 {
        width: 1.17rem;
        height: .46rem;
        line-height: .46rem;
        border-radius: .23rem;
        margin-bottom: .39rem;
    }

    .news_swiper_summary {
        font-size: .3rem;
        line-height: .56rem;
        margin-bottom: .45rem;
    }

    .news_swiper_txt {
        line-height: .42rem;
        margin-bottom: .78rem;
    }

    /* 公司荣誉 */
    .honor {
        font-size: .24rem;
    }

    .honor_swiper_img:hover {
        width: 100%;
        height: 100%;
    }

    .honor_swiper_wrap {
        width: 100%;
        /* width: 4.14rem; */
        height: 2.7rem;
        margin-bottom: .36rem;
    }

    /* 面板下拉框 */
    .case_choose {
        font-size: 16px;
        margin: 58px 0 24px;
    }

    .case_choose .case_choose_select {
        width: 190px;
        height: 41px;
    }

    .case_choose_select .layui-form-select dl {
        top: 43px;
        bottom: auto;
    }

    .layui-select-title::before {
        width: 9.5px;
        height: 16.5px;
        top: 11.5px;
    }

    .case_choose_select .layui-form-select dl dd {
        font-size: inherit;
        height: 41px;
        line-height: 41px;
    }

    .layui-select-title {
        font-size: 16px;
        line-height: 41px;
    }

    .layui-select-title .layui-input::placeholder {
        font-size: 16px;
    }
    

    /* 案例详情 */
    .case_details_title,
    .case_details_main,
    .choose {
        font-size: 12px;
    }

    .case_details_main {
        line-height: 26px;
        padding-top: 14px;
    }

    .case_details_main>p {
        margin-bottom: 20px;
    }

    .case_details_title_h3,
    .show_h2 {
        font-size: 23px;
    }

    .table {
        font-size: 16px;
        grid-template-columns: 49% 49%;
    }

    .occupy {
        grid-column: 1 / 3;
    }

    input::placeholder {
        font-size: 14px;
    }

    /* 面包屑 */
    .breadcrumbs {
        font-size: 12px;
    }

    /* 商品信息 */
    .goods {
        font-size: 13px;
        line-height: 23px;
    }

    .goods_info {
        height: 403px;
    }

    .goods_img {
        width: 403px;
        height: 403px;
        margin-right: .85rem;
    }

    .goods_h4 {
        font-size: 20px;
        margin: 40px 0 18px;
    }

    .goods_txt>p {
        font-size: 12px;
    }

    .goods_link {
        width: 138px;
        height: 36px;
        line-height: 36px;
        margin-bottom: 21px;
    }

    /* 标题 */
    .parameters_h2,
    .characteristics_h2,
    .effect_h2 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* 效果展示 */
    .parameters,
    .characteristics,
    .effect {
        font-size: 12px;
        flex-direction: column;
    }

    .parameters ul {
        width: 500px;
    }

    .parameters li:first-child {
        font-size: 13px;
    }

    .parameters li h6,
    .parameters li span {
        width: 125px;
        height: 45px;
        line-height: 45px;
    }

    .parameters_span_3 {
        width: 375px;
    }

    .parameters_span_2 {
        width: 250px;
    }

    .characteristics_txt {
        max-width: 100%;
        line-height: 32px;
        padding-left: 12px;
    }

    .effect_title {
        padding: .3rem 0 .4rem;
    }

    .effect_h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .effect_txt {
        font-size: 13px;
    }

    /* 职位 */
    .job_main_content {
        height: 150px;
        font-size: 12px;
    }

    .job_main_h4 {
        font-size: 17.5px;
    }

    /* 内容 */
    .dynamic {
        padding-top: 40px;
    }

    .dynamic_main_content {
        font-size: 12px;
        line-height: 35px;
        margin-bottom: 40px;
        padding: 30px .6rem;
    }

    .dynamic_main_title {
        font-size: 13px;
    }

    .dynamic_main_h4 {
        font-size: 29px;
    }

    .dynamic_main_txt {
        overflow: hidden;
        /* white-space: nowrap; */
        text-overflow: ellipsis;
    }

    .dynamic_main_txt>.dynamic_main_link {
        font-size: 17px;
    }

    .dynamic_main_content>.dynamic_main_link {
        width: 100px;
        height: 30px;
        transform: translateY(37px);
    }

    /* 文案 */
    .copywriter_title {
        width: 90%;
    }

    .copywriter_title_txt {
        font-size: 12px;
    }

    .copywriter_main {
        color: #666;
        font-size: 12px;
        line-height: 26px;
        padding-top: 14px;
    }

    .copywriter_main>p {
        margin-bottom: 32px;
    }

    .copyright {
        height: 164px;
    }

    .copyright_left,
    .copyright_right {
        top: 20px;
    }
    .effect_list .effect_img{width: 4rem;height: auto;}
    .effect .swiper-button-next.effect_next{display: none;}
    .effect .swiper-button-prev.effect_prev{display: none;}
}

@media screen and (max-width: 1200px) {

    /* 背景遮罩层 */
    body:after {
        content: "";
        height: 100%;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #1A2030;
        opacity: 0;
        visibility: hidden;
        z-index: 99;
    }

    body.active:after {
        opacity: 0.5;
        visibility: visible;
    }

    .home_nav {
        height: 68px;
        padding: 25px 25px 0;
        justify-content: flex-end;
        background-color: transparent;
    }

    .nav .list_box {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 70px 35px;
        overflow: hidden;
        height: 100vh;
        background: rgba(255, 255, 255,1);
        min-width: 260px;
        position: absolute;
        top: 0;
        left: 0;
        clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
        /* border-radius: 0 10px 10px 0; */
    }

    .nav .list_box.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        transition: .5s ease;
        overflow-y: scroll;
    }

    .nav .list_box .item {
        position: relative;
        transform: translateX(-100px);
        transition: all 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
        transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
    }
    .nav .list_box .item:hover .sub_nav{
        overflow: hidden;
    }

    .nav .list_box .item a {
        padding: 10px 0px;
    }

    .nav .list_box .item .btn{
        display: inline-block;
        width: 15px;
        height: 15px;
        margin-left: 40px;
        position: relative;
    }

    .nav .list_box .item .btn::before{
        content: '';
        width: 100%;
        height: 2px;
        background-color: #000;
        position: absolute;
        top: calc(50% - 1px);
        left: 0;
        transition: all .6s ease;
    }
    .nav .list_box .item .btn::after{
        content: '';
        width: 2px;
        height: 100%;
        background-color: #000;
        position: absolute;
        top: 0;
        left: calc(50% - 1px);
    }
    .nav .list_box .item .btn.open::after{
        transform: scaleX(0);
    }

    .nav .list_box .item .logo .img_hover {
        left: 0;
    }

    .nav .list_box .item a.active {
        border: none;
    }

    .nav .list_box .item .sub_nav {
        position: relative;
        text-indent: 10px;
        height: 0;
        opacity: 1;
        border: none;
        background-color: transparent;
    }
    .nav .list_box .item .sub_nav.open{
        height: auto;
    }

    .nav .list_box .item .sub_nav::before {
        border: none;
    }

    .nav .list_box .item .sub_nav::after {
        height: 0;
    }

    .nav .list_box .item .sub_nav li a {
        text-indent: 0;
        color: #666;
        padding-right: 10px;
    }

    .nav .list_box .item .sub_nav li a:hover {
        background-color: transparent;
        color: #fff;
    }

    .nav .list_box .item:hover .sub_nav {
        animation: none;
    }

    .nav .list_box.active .item {
        font-weight: 500;
        transform: translateX(0px);
        opacity: 1;
    }

    .list_box.active .item:nth-child(1) {
        transition-delay: .3s;
    }

    .list_box.active .item:nth-child(2) {
        transition-delay: .4s;
    }

    .list_box.active .item:nth-child(3) {
        transition-delay: .5s;
    }

    .list_box.active .item:nth-child(4) {
        transition-delay: .6s;
    }

    .list_box.active .item:nth-child(5) {
        position: absolute;
        top: 0;
        left: -10px;
        padding: 15px;
        transition-delay: .7s;
    }

    .list_box.active .item:nth-child(6) {
        transition-delay: .7s;
    }

    .list_box.active .item:nth-child(7) {
        transition-delay: .8s;
    }

    .list_box.active .item:nth-child(8) {
        transition-delay: .9s;
    }

    .list_box.active .item:nth-child(9) {
        transition-delay: 1s;
    }

    .nav .list_box.active .item a {
        display: inline-block;
        position: relative;
        transition: .4s ease;
    }

    .nav .list_box.active .item a:after {
        position: absolute;
        content: "";
        height: 1px;
        width: 100%;
        bottom: -3px;
        left: 0;
        transform: scaleX(0);
        transform-origin: left bottom;
        background-color: #fff;
        transition: all 500ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
    }

    .nav .list_box.active .item:nth-child(5) a:after {
        content: "";
        display: none;
    }

    .nav .list_box .item:hover>a:after {
        transform-origin: 100% bottom;
        transform: scaleX(1);
    }

    .menu_toggle {
        display: block;
        margin-left: 20px;
    }

    .menu_toggle .menu_show,
    .menu_close {
        width: 25px;
        height: auto;
        display: inline-block;
        overflow: hidden;
    }

    .home_nav.black .menu_toggle img {
        filter: drop-shadow(25px 0 #333);
        position: relative;
        left: -25px;
    }

    .home_nav.active .mobile_logo {
        opacity: 0;
        transition: opacity .3s linear;
    }

    .mobile_logo .img_hover {
        position: absolute;
        left: 0;
        top: 0;
        opacity: 0;
    }
    .home_nav .list_box .item{
        color: #333;
    }
    .list_box.active .item:nth-child(5) .logo img{
        opacity: 0;
    }
    .list_box.active .item:nth-child(5) .logo .img_hover{
        opacity: 1;
    }

    .mobile_logo {
        width: 230px;
        display: block;
        position: absolute;
        left: 20px;
        top: 30px;
        opacity: 1;
        transition: opacity 1.2s linear;
    }

    .home_wrap .section_3 .list_box .item {
        padding: 38px;
    }

    .home_wrap .section_3 .list_box .item .title {
        font-size: 30px;
    }

    .home_wrap .section_3 .list_box .item .text {
        font-size: 17px;
    }

    .home_wrap .section_4 .swiper-wrapper .item.active {
        width: 50%;
    }

    .home_wrap .section_4 .swiper-wrapper .item {
        width: 25%;
    }

    .home_wrap .section_4 .swiper-wrapper .item .title {
        font-size: 40px;
    }

    .home_wrap .section_4 .swiper-wrapper .item .en_title {
        font-size: 24px;
        padding-bottom: 46px;
    }

    .home_wrap .section_5 .describe_box .text_box .text {
        margin-bottom: 70px
    }

    .header_pager {
        grid-template-columns: repeat(5, 105px);
    }

    /* 公司介绍 */
    .introduced {
        font-size: 14px;
    }

    .introduced_title_h4 {
        font-size: 30px;
    }

    .introduced_title_txt {
        line-height: 28px;
    }

    .case_main_list {
        grid-template-columns: 32% [a1] 32% [a2] 32%;
        column-gap: 2%;
    }

    .case_main_h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .case_main_txt {
        font-size: 11.5px;
    }

    .contact {
        font-size: 13px;
        line-height: 26px;
    }

    .contact_list {
        flex-wrap: wrap;
    }

    .contact_item {
        width: 50%;
    }

    .contact_item>p {
        font-size: 14px;
    }

    .contact_item_img {
        height: 56px;
    }

    .contact_item:nth-of-type(1)>.contact_item_img>img {
        width: 38px;
        height: 38px;
    }

    .contact_item:nth-of-type(2)>.contact_item_img>img {
        width: 39px;
        height: 37px;
    }

    .contact_item:nth-of-type(3)>.contact_item_img>img {
        width: 48px;
        height: 33px;
    }

    .contact_item:nth-of-type(4)>.contact_item_img>img {
        width: 30px;
        height: 40px;
    }

    .contact_img_wrap {
        height: 280px;
    }

    /* 商品信息 */
    .goods {
        flex-direction: column;
        padding-top: 20px;
    }

    .goods_info {
        width: auto;
        height: auto;
    }

    .goods_img {
        margin-right: 0;
    }

    /* 职位 */
    .job_main_txt {
        width: 70%;
    }

    /* 职位 */
    .info {
        padding-top: 42px;
    }

    .position_info {
        line-height: 42px;
    }

    .position_info_title {
        font-size: 12px;
    }

    .position_info_img {
        width: 15px;
        height: 15px;
        margin-right: 6px;
    }

    .position_info_h4 {
        font-size: 21px;
    }

    .position_info_salary {
        font-size: 25px;
    }

    .position_info_txt {
        font-size: 14px;
    }

    .position_link {
        width: 219px;
        height: 42px;
        font-size: 14px;
        line-height: 42px;
    }

    /* 职位描述 */
    .describe_info {
        font-size: 13.5px;
        line-height: 28px;
    }

    .describe_info_h2 {
        top: -14px;
    }

    /* 内容 */
    .dynamic_main_content {
        margin-bottom: 30px;
    }

    .dynamic_main_title {
        font-size: 13px;
    }

    .dynamic_main_h4 {
        font-size: 20px;
    }

    .dynamic_main_txt {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .dynamic_main_txt>.dynamic_main_link {
        font-size: 14px;
        white-space: nowrap;
    }

    /* 文案 */
    .copywriter_title_h3 {
        font-size: 20px;
    }

    .copywriter_title_txt {
        grid-template-columns: 1fr 1fr;
    }

    .copywriter_title_txt>span {
        justify-self: center;
    }

    /* 版权 */
    .copyright {
        font-size: 14px;
    }

    .copyright_left,
    .copyright_right {
        top: 10px;
    }
}

@media screen and (min-width: 1024px) {}

@media screen and (max-width: 1023px) {

    /* 子导航 */
    .header {
        height: 49px;
    }

    .header_pager {
        width: 100%;
        justify-content: space-between;
    }

    .header_link {
        display: none;
    }

    .home_wrap .section_2 .tab_box {
        padding-right: 0;
    }

    .home_wrap .section_2 .tab_box .title_box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        right: calc(50% - 252px);
        padding-bottom: 0;
        top: -38%;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item {
        padding: 10px 80px;
        margin-bottom: 0;
        border-radius: 5px;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active {
        background: #242275;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item .title {
        margin-bottom: 0;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .description {
        display: none;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .title {
        font-size: 18px;
        color: #fff;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .title::before {
        display: none;
    }

    .home_wrap .section_2 .tab_box .img_box {
        width: 100%;
    }

    .home_wrap .section_2 .tab_box .img_box .img_item {
        width: 90%;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item .title {
        font-size: 18px;
        text-align: center;
        line-height: 40px;
    }

    /* 公司介绍 */
    .introduced {
        font-size: 14px;
        flex-direction: column;
    }

    .introduced_title {
        margin-right: 0;
    }

    .introduced_title_h4 {
        font-size: 30px;
    }

    .introduced_title_txt {
        line-height: 28px;
        margin-bottom: 30px;
    }

    .introduced_img {
        width: 539px;
        height: 270px;
    }

    .news_h2,
    .publicity_h2,
    .honor_h2 {
        font-size: 30px;
        margin: 10px 0 30px;
    }

    /* 新闻动态 */
    .news {
        font-size: 12px;
    }

    .news_swiper_item {
        width: 6.69rem;
        height: 8.97rem;
        padding: .97rem 1.4rem .81rem .58rem;
    }

    .news_swiper_h6 {
        width: 1.75rem;
        height: .69rem;
        line-height: .69rem;
        border-radius: .34rem;
        margin-bottom: .58rem;
    }

    .news_swiper_summary {
        font-size: .45rem;
        line-height: .84rem;
        margin-bottom: .67rem;
    }

    .news_swiper_txt {
        line-height: .63rem;
        margin-bottom: 1.17rem;
    }

    /* 公司荣誉 */
    .honor {
        font-size: 12px;
    }

    .honor_swiper_wrap {
        width: 100%;
        /* width: 6.88rem; */
        height: 4.48rem;
        margin-bottom: .59rem;
    }

    .info_content,
    .experience_content {
        padding-top: 40px;
        margin-bottom: 52px;
    }

    .info_content_h2,
    .experience_h2 {
        font-size: 15px;
    }

    /* 版权 */
    .copyright {
        height: 130px;
        padding: 27.5px 0 38px;
        font-size: 11px;
        line-height: 18px;
    }

    .copyright_right_img {
        width: 35px;
        height: 12px;
    }
}

@media screen and (max-width: 991px) {
    .home_wrap .section_2 .tab_box .img_box .img_item {
        width: 100%;
    }

    .home_wrap .section_3 .list_box .item {
        width: 100%;
        margin-bottom: 40px;
    }

    .home_wrap .section_3 .list_box .item .num_img {
        width: 130px;
    }

    .home_wrap .section_4 .swiper-wrapper .item .title {
        font-size: 36px;
    }

    .home_wrap .section_4 .swiper-wrapper .item .en_title {
        font-size: 22px;
        padding-bottom: 40px;
    }

    .home_wrap .section_4 .swiper-wrapper .item .text {
        font-size: 16px;
    }

    .home_wrap .section_5 .list_box {
        overflow-x: scroll;
        grid-template-columns: 250px 250px 250px;
        column-gap: 6%;
    }

    .home_wrap .section_5 .describe_box .img_box {
        width: 215px;
    }

    .focus_pictures {
        padding-top: 30px;
    }

    .case_main_title {
        padding: .3rem 0rem .4rem;
    }

    .effect_panel .panel_main_item {
        width: 6.6rem;
        height: 5rem;
        font-size: .6rem;
    }

    .breadcrumbs {
        padding: 26px 0 12px;
    }

    .effect_link{width: 32%;margin-right: 2%;}
    .effect_list .effect_img{width: 4.85rem;height: auto;}
    .effect_imgs {grid-template-columns: 1fr [] 1fr;row-gap: 20px;}
    .effect_imgs img {width: 6.85rem;height: 9.1rem;}

    /* 职位 */
    .job_main_txt {
        width: 80%;
    }

    .job_main_txt>span {
        width: 33%;
    }

    /* 内容 */
    .dynamic_main_h4 {
        font-size: 18px;
    }

    .dynamic_main_content>.dynamic_main_link>img {
        display: none;
    }

    /* .characteristics{
        position: relative;
    }
    .characteristics::after{
        content: '>';
        width: 20px;
        height: 20px;
        position: absolute;
        right: 0;
        top: 50%;
    } */
}

@keyframes arrow{
    50%{
        border-color: rgba(0,38,200,1) rgba(0,38,200,1) transparent transparent;
    }
    to{
        border-color: rgba(0,38,200,.3) rgba(0,38,200,.3) transparent transparent;
    }
}

@media screen and (max-width: 767px) {

    .header_pager {
        column-gap: 10px
    }
    /* .header_pager.arrow::after{
        content: '>';
        width: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        position: absolute;
        right: 3px;
        top: 0;
        font-size: 20px;
        color:  rgba(0,38,200,.3);
        animation: arrow 2s ease 1s infinite;
    }
    .header_pager.arrow::before{
        content: '>';
        width: 15px;
        height: 100%;
        display: flex;
        align-items: center;
        position: absolute;
        right: 11px;
        top: 0;
        font-size: 24px;
        color:  rgba(0,38,200,.3);
        animation: arrow 2s ease infinite;
    } */
    .header_pager.arrow::after{
        content: '';
        width: 10px;
        height: 10px;
        position: absolute;
        right: 10px;
        top: 18px;
        border-width: 2px;
        border-color: rgba(0,38,200,.3) rgba(0,38,200,.3) transparent transparent;
        border-style: solid;
        transform: rotateZ(45deg);
        /* font-size: 20px; */
        /* color:  rgba(0,38,200,.3); */
        animation: arrow 2s ease 1s infinite;
    }
    .header_pager.arrow::before{
        content: '';
        width: 10px;
        height: 10px;
        position: absolute;
        right: 19px;
        top: 18px;
        border-width: 2px;
        border-color: rgba(0,38,200,.3) rgba(0,38,200,.3) transparent transparent;
        border-style: solid;
        transform: rotateZ(45deg);
        /* font-size: 24px; */
        /* color:  rgba(0,38,200,.3); */
        animation: arrow 2s ease infinite;
    }
    

    .home_wrap .section_1 .sup {
        font-size: 16px;
    }

    .home_wrap .section_1 .title {
        font-size: 40px;
    }

    .home_wrap .section_2 .tab_box {
        padding-right: 0;
    }

    .home_wrap .section_2 .tab_box .title_box {
        right: calc(50% - 152px);
    }

    .home_wrap .section_2 .tab_box .title_box .title_item {
        padding: 10px 30px;
        margin-bottom: 0;
        border-radius: 5px;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active {
        background: #242275;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item .title {
        margin-bottom: 0;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .description {
        display: none;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .title {
        font-size: 16px;
        color: #fff;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .title::before {
        display: none;
    }

    .home_wrap .section_2 .tab_box .img_box {
        width: 100%;
    }

    .home_wrap .section_4 .swiper-wrapper .item.active {
        width: 65%;
    }

    .home_wrap .section_4 .swiper-wrapper .item {
        width: 35%;
    }

    .home_wrap .section_5 .describe_box .text_box {
        width: 100%;
    }

    .home_wrap .section_5 .describe_box .img_box {
        display: none;
    }

    .effect_header {
        display: block;
        overflow: auto;
    }

    .effect_header::-webkit-scrollbar {
        display: none;
    }

    .effect_header .header_pager {
        width: 557px;
    }

    /* 焦点图 */
    .focus_pictures_h4 {
        font-size: 19px;
    }

    .focus_pictures_txt {
        font-size: 29px;
    }

    /* 公司介绍 */
    .introduced_img {
        width: 100%;
        height: 6.75rem;
    }

    .introduced_title_h4 {
        margin: 14px 0;
    }

    /* 新闻动态 */
    .news {
        font-size: .48rem;
    }

    .news_swiper_item {
        width: 13.95rem;
        height: 17.94rem;
        padding: 1.94rem 3.3rem 1.62rem 1.16rem;
    }

    .news_swiper_h6 {
        width: 3.5rem;
        height: 1.38rem;
        line-height: 1.38rem;
        border-radius: .68rem;
        margin-bottom: 1.16rem;
    }

    .news_swiper_summary {
        font-size: .9rem;
        line-height: 1.68rem;
        margin-bottom: 1.34rem;
    }

    .news_swiper_txt {
        line-height: 1.26rem;
        margin-bottom: 2.34rem;
    }

    /* 公司荣誉 */
    .honor {
        font-size: .48rem;
    }

    .honor_swiper_wrap {
        width: 100%;
        /* width: 13.92rem; */
        height: 8.96rem;
        margin-bottom: .72rem;
    }

    /* 面板 */
    .panel_main_item {
        width: 100%;
        height: 10.14rem;
        transition: width .3s linear;
    }

    .panel_main a {
        display: block;
        width: 100%;
    }

    .effect_panel .panel_main_item {
        width: 100%;
        height: 8.6rem;
        font-size: .6rem;
    }

    .panel_main_txt {
        font-size: 13px;
    }

    .panel_main_item>.is_active .panel_main_h4 {
        font-size: .68rem;
    }

    .panel_main_item>.is_active .panel_main_txt {
        font-size: .55rem;
    }

    .case_main_list {
        grid-template-columns: 49% [a1] 49%;
    }

    .case_details_title {
        padding-top: 32px;
    }

    .case_details_title_h3,
    .show_h2 {
        font-size: 20px;
    }

    .case_details_title_txt {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact {
        line-height: 20px;
    }

    .contact_list {
        flex-wrap: wrap;
    }

    .contact_item {
        width: 50%;
    }

    .table {
        font-size: 14px;
        grid-template-columns: 100%;
    }

    .occupy {
        grid-column: 1 / 2;
    }

    input::placeholder {
        font-size: 12px;
    }

    .parameters_table_wrap {
        overflow-x: auto;
    }

    /* 职位 */
    .job_main_content {
        padding: 0 15px 0 18px;
    }

    .job_h2 {
        font-size: 24px;
    }

    .job_main_left>.job_main_img {
        width: 13px;
        height: 23px;
        margin-right: 10px;
    }

    .job_main_h4 {
        font-size: 15px;
    }

    .job_main_right>.job_main_img {
        margin-left: 10px;
    }

    .job_main_txt {
        width: 100%;
    }

    /* 内容 */
    .dynamic_main_content {
        line-height: 30px;
    }

    .dynamic_main_title {
        text-align: center;
    }

    .dynamic_main_h4 {
        line-height: 40px;
        writing-mode: vertical-lr;
    }

    .dynamic_main_content>.dynamic_main_link {
        width: 100%;
        height: 100%;
        min-height: 100%;
        text-indent: 5px;
        /* writing-mode: vertical-lr; */
        transform: translateY(0);
    }

    .dynamic_main_content>.dynamic_main_link span {
        /* letter-spacing: 5px; */
        display: inline-block;
        height: 100%;
        padding: 20% 35%;
        line-height: 1.7;
        text-indent: 0;
    }

    .goods_txt>p {
        font-size: 12px;
    }

    .effect_link{width: 48%;margin-right: 2%;}
    .effect_list .effect_img{width: 7rem;height: auto;}

}

@media screen and (max-width: 570px) {
    .not_fixed .home_nav .iconfont {
        transform: translateY(0);
    }

    .menu_toggle .menu_show,
    .menu_close {
        width: 20px;
    }

    .home_nav.black .menu_toggle img {
        filter: drop-shadow(20px 0 #333);
        left: -20px;
    }

    .iconfont {
        font-size: 20px;
        transform: translateY(-2px);
    }

    .nav .search_box .input {
        display: none;
    }

    .nav .search_box {
        width: 30px;
        border-width: 0;
    }

    .nav .search_box .btn {
        position: relative;
    }

    .nav .search_box .enter {
        display: none;
    }

    .nav .list_box .item .logo {
        max-width: 190px;
    }

    .mobile_logo {
        width: 170px;
        top: 25px;
    }

    .mobile_logo.click {
        display: none;
    }

    .nav .search_box .input.click {
        display: block;
    }

    .iconfont.click {
        transform: translateY(0);
    }

    .nav .search_box.click {
        transform: translateX(0);
        border-width: 1px;
        position: absolute;
        top: 90px;
        left: calc(50% - 100px);
        width: 200px;
        margin-left: 0;
    }

    .nav .search_box.click .btn {
        position: absolute;
    }

    .nav .search_box.click .enter {
        display: block;
    }

    .home_wrap .section_item.section_1{padding-bottom: 0;padding-top: 0;}
    .home_wrap .section_1 .swiper-wrapper .item{height: 100%;padding-bottom:100px;padding-top: 15%;}
	.home_wrap .section_1 .sup{font-size: 14px;}
    .home_wrap .section_1 .title{font-size: 28px;}
    .home_wrap .section_1 .more{width: 230px;}

    .home_wrap .section_2 .tab_box .title_box {
        gap: 10px;
        right: calc(50% - 165px);
        top: -32%;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item {
        padding: 2px 52px;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item .title {
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        line-height: 40px;
    }

    .home_wrap .section_2 .tab_box .title_box .title_item.active .title {
        font-size: 14px;
    }

    .home_wrap .section_item {
        padding-top: 15%;
    }

    .home_wrap .section_3 .list_box .item {
        padding: 4vw;
        margin-bottom: 26px;
    }

    .home_wrap .section_3 .list_box .item .title {
        font-size: 20px;
    }

    .home_wrap .section_3 .list_box .item .text {
        font-size: 12px;
    }

    .home_wrap .section_3 .list_box .item .num_img {
        width: 91px;
    }

    .home_wrap .section_4 .swiper-wrapper .item.active {
        width: 100%;
    }

    .home_wrap .section_4 .swiper-wrapper .item {
        width: 100%;
    }

    .home_wrap .section_4 .swiper-wrapper .item .title {
        font-size: 34px;
    }

    .home_wrap .section_5 .describe_box .text_box .title {
        font-size: 22px;
        margin-bottom: 14px;
    }

    .home_wrap .section_5 .describe_box .text_box .text {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .home_wrap .section_5 .list_box {
        column-gap: 30px;
    }

    .home_wrap .section_5 .list_box .item .title {
        padding: 15px 0 10px 0;
        font-size: 17px;
    }
    .home_wrap .section_5 .list_box .item .img{
        height: 170px;
    }

    .focus_pictures {
        padding: 50px 0 0 30px;
    }

    .header,
    .introduced,
    .news,
    .publicity,
    .honor,
    .panel,
    .case,
    .case_details,
    .contact,
    .registration,
    .job,
    .dynamic,
    .position,
    .describe,
    .info,
    .copywriter {
        padding-left: 30px;
        padding-right: 30px;
    }

    /* 公司介绍 */
    .introduced {
        font-size: 13px;
    }

    .introduced_title_h4 {
        font-size: 26px;
    }

    .introduced_title_txt {
        line-height: 26px;
    }

    .introduced_img {
        height: 8.75rem;
    }

    .contact_item>p {
        font-size: 12px;
    }

    .goods_img {
        width: 100%;
        height: auto;
    }

    /* 新闻动态 */
    .news {
        font-size: .58rem;
    }

    .news_swiper_item {
        width: 100%;
        height: 21.88rem;
        padding: 2.36em 4rem 1.97rem 1.4rem;
    }

    .news_swiper_h6 {
        width: 4.27rem;
        height: 1.68rem;
        line-height: 1.68rem;
        border-radius: .82rem;
        margin-bottom: 1.41rem;
    }

    .news_swiper_summary {
        font-size: 1rem;
        line-height: 2rem;
        margin-bottom: 1.63rem;
    }

    .news_swiper_txt {
        line-height: 1.53rem;
        margin-bottom: 2.85rem;
    }

    /* 职位 */
    .job_main_txt>span {
        width: 50%;
    }

    .job_main_content {
        width: 100%;
    }

    /* 职位 */
    .position {
        flex-direction: column;
        padding-bottom: 20px;
    }

    /* 文案 */
    .copywriter_title_h3 {
        font-size: 18px;
    }

    .copywriter_title_txt {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    /* 面板下拉框 */
    .case_choose .case_choose_select {
        width: 100%;
        margin: 0 0 15px 0;
    }

    /* 版权 */
    .copyright {
        line-height: 16px;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0 15px 2.62rem;
    }

    .copyright_left,
    .copyright_right {
        top: 0;
    }

    .copyright_right {
        margin-top: 10px;
        align-items: flex-start;
    }

    .copyright_right_img {
        margin-bottom: 8px;
    }

    /* 追加 */
    .publicity_swiper_video {
        width: 100%;
        height: 7.6rem;
    }

    .honor_swiper_wrap {
        height: 10.96rem;
    }

    .effect_panel .panel_main_item {
        height: 10.44rem;
    }

    .panel_main_item {
        height: 10.6rem;
    }

    .dynamic_main_content {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {

    .home_wrap .section_2 .tab_box .img_box{bottom: 16%;width: 110%;}
    .home_wrap .section_2 .tab_box .img_box .img_item .link{display: block;width: 40%;padding: 9px;text-align: center;border: 1px solid #333;border-radius: 30px;color: #333;margin-top: 30px;margin-left: 26%;}
    .home_wrap .section_2 .tab_box .img_box .img_item .link img{position: relative;top: 6px;left: 6px;}
    .news_h2, .publicity_h2, .honor_h2{font-size: 24px;}

    .home_wrap .section_5 .section_5_box {
        margin-top: -15%;
    }

    /* 公司介绍 */
    .introduced {
        font-size: 12px;
    }

    .introduced_title_h4 {
        font-size: 20px;
    }

    .introduced_title_txt {
        line-height: 24px;
    }

    /* 新闻动态 */
    .news {
        font-size: 12px;
    }

    /* 公司荣誉 */
    .honor {
        font-size: 12px;
    }

    .case_main_list {
        grid-template-columns: 100%;
    }

    .case_main_txt {
        width: 85%;
    }

    .case_details_title_h3,
    .show_h2 {
        font-size: 15px;
    }

    .effect_link{width: 100%;margin-right: 0;display: flex;flex-direction: column;align-items: center;}
    .effect_list .effect_img{width: 12.7rem;height: auto;}
    .effect_imgs {grid-template-columns: 1fr;justify-items: center;}
    .effect_imgs img {width: 12.7rem;height: 17rem;}

    /* 分页器 */
    .panel_pager {
        font-size: 12px;
    }

    .panel_pager_item,
    .panel_pager_next,
    .panel_pager_pages {
        width: 30px;
        height: 30px;
    }

    /* 文案 */
    .copywriter_title_h3 {
        font-size: 15.5px;
    }
    
}

@media screen and (max-width: 400px) {

    /* 焦点图 */
    .focus_pictures_h4 {
        font-size: 16px;
    }

    .focus_pictures_txt {
        font-size: 26px;
    }

    .case_main_txt {
        width: 100%;
    }

    .effect_panel .panel_main_item {
        font-size: 12px;
    }

    /* 文案 */
    .copywriter_title_h3 {
        font-size: 14px;
    }

    .pager {
        display: grid;
        justify-items: center;
        row-gap: 10px;
    }

    .choose {
        display: grid;
        row-gap: 5px;
    }
}