/* 头部 PC端样式*/
@media (min-width: 901px) {
    .header_wrapper {
        width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .header {
        height: 85px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .header .left,
    .header .right {
        width: 50%;
        display: flex;
        align-items: center;
    }

    /* logo */
    .header .left img {
        height: 43px;
    }


    .header .left img:last-child {
        margin-left: 17px;
    }

    /* logo end */


    /* 电话 */
    .header .right {
        justify-content: flex-end;
        position: relative;
    }

    .header .right .tel-wrapper {
        border-right: 1px solid #a7a7a7;
        padding-right: 35px;
        text-align: right;
    }
    .header .right .mo_tel{
        display: none;
    }
    .header .right .tel-title {
        display: inline-block;
        color: #39bacb;
        font-size: 16px;
    }

    .header .right .tel {
        display: flex;
        font-size: 18px;
        color: #747474;
        margin-top: 3px;
        align-items: center;
    }

    .header .right .line {
        width: 1px;
        height: 14px;
        background: #9a9a9a;
        margin: 0 12px;
    }

    .header .right .map-wrapper {
        cursor: pointer;
        color: #39bacb;
        font-size: 18px;
        margin-left: 35px;
        height: 25px;
        line-height: 25px;
    }

    .header .right .map-wrapper .icon {
        font-size: 20px;
        vertical-align: middle;
    }

    .header .right .map-wrapper .map-title {
        vertical-align: middle;
    }

    .header .right .map-wrapper:hover {
        color: #2679ea;
    }

    /* 电话end */

    .header_menu_icon {
        display: none;
    }

    /* 导航菜单 */
    .menu {
        height: 36px;
        line-height: 36px;
        display: flex;
        font-size: 18px;
        /* border-bottom: 1px solid #ccc; */
    }

    /* 热门菜单 */
    .menu .hot {
        box-sizing: border-box;
        width: 240px;
        cursor: pointer;
        position: relative;
    }

    .menu .hot-title {
        display: block;
        border-radius: 5px 5px 0 0;
        color: #f1f2f6;
        padding-left: 12px;
        background: #3bbcce;
        height: 36px;
    }

    .menu .hot-title .icon-caidan {
        font-size: 20px;
        color: #fff;
        vertical-align: middle;
    }

    .menu .hot:hover .hot-list {
        display: block;
    }

    .menu .hot-list {
        height: 432px;
        width: 100%;
        position: absolute;
        top: 36px;
        display: none;
        z-index: 999;
    }

    .menu .hot-list li {
        position: relative;
        background: rgba(0, 0, 0, 0.7);
        height: 11.1111%;
    }

    .menu .hot-list li .icon {
        position: absolute;
        right: 13px;
        top: 6px;
        color: #fff;
        font-size: 15px;
        opacity: 0.9;
    }

    .menu .hot-list li .hot-link {
        display: block;
        width: 100%;
        box-sizing: border-box;
        line-height: 47px;
        color: #ffffff;
        font-size: 16px;
        padding-left: 10px;
        transition: all 0.3s ease-out;
    }

    .menu .hot-list li .hot-link:hover {
        padding-left: 20px;
        background: rgba(255, 255, 255, 0.7) url("/style_2022/public/images/icon-hot-acitve-line.png") 0 no-repeat;
    }

    .menu .hot-list li .popup-link {
        display: none;
        position: absolute;
        width: 203px;
        height: 134px;
        background: #fff;
        right: -203px;
        top: 0;
    }

    /* 热门菜单 end */


    /* 其他菜单 */
    .menu .other-list-wrapper {
        width: 960px;
        display: flex;
        text-align: center;
    }

    .menu .other-list-wrapper>li {
        width: 14.285714%;
        position: relative;
        cursor: pointer;
    }

    .menu .other-list-wrapper .other-list {
        width: 100%;
        height: 100%;
        overflow: hidden;
        box-sizing: border-box;
        position: relative;
    }

    .menu .other-list-wrapper .other-list a {
        display: block;
        color: #202020;
        position: absolute;
        margin: auto;
        left: 0;
        right: 0;
    }




    .menu .other-list-wrapper .other-list a .icon {
        display: inline-block;
        color: #727272;
    }

    .menu .other-list-wrapper .other-list:hover a {
        color: red;
    }

    .menu .other-list-wrapper .other-list:hover a .icon {
        color: red;
    }

    .menu .other-list-wrapper .menu-child {
        position: absolute;
        width: 100%;
        top: 36px;
        left: 0;
        overflow: hidden;
        display: none;
        background: #fff;
        z-index: 99;
    }

    .menu .other-list-wrapper .menu-child li a {
        display: block;
        height: 30px;
        line-height: 30px;
        text-align: center;
        font-size: 14px;
        color: #202020;
    }

    .menu .other-list-wrapper .menu-child li:hover a {
        background: #f5f5f5;
        color: #4ec0d1;
    }

    /* 其他菜单 end*/
    /* 导航菜单 end */

    /* 轮播 */
    .swiper-home {
        min-width: 1200px;
        overflow: hidden;
    }

    .swiper-home .swiper-slide a {
        height: 432px;
        display: block;
        background-position: center;
        background-repeat: no-repeat;
    }


    /* 分页样式 */
    .home-bullet {
        cursor: pointer;
        display: inline-block;
        width: 10px;
        height: 10px;
        background: #ccc;
        border-radius: 50px;
        margin-right: 10px;
        opacity: 0.6;
        transition: all 0.3s linear;
    }

    /* 分页高亮样式 */
    .home-bullet-active {
        width: 20px;
        background: #00ddff;
        opacity: 1;
    }

    /* 轮播end */
}

/* 头部 移动端样式*/
@media (max-width: 900px) {


    .header_wrapper {
        height: 10rem;
        /* overflow: hidden; */
        box-sizing: border-box;
        border-bottom: 0.1rem solid #ccc;
    }

    .header_wrapper .header {
        display: flex;
        width: 100%;
        height: 100%;
        background-color: #fff;
      
    }

    .header_wrapper .header .left {
        width: 66%;
        height: 100%;
        display: flex;
        align-items: center;
        box-sizing: border-box;
        padding-left: 1rem;
        margin-right: 5rem;
    }

    .header_wrapper .header .left img {
        width: 100%;
    }

    .header_wrapper .header .right {
        flex: 1;
        font-size: 2.2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }
    .header .right .tel{
        margin-top: 0.5rem;
    }
    .header .right .tel-title{
        font-size: 2.4rem;
        font-weight: 700;
    }
    .header .right .tel-title .icon{
        font-weight: 400;
    }
    .header .right .pc_tel{
        display: none;
    }
    .header .right .mo_tel{
        font-size: 2.4rem;
        color: #666;
    }
    .header_wrapper .header .right .icon-zuoji {
        color: #3bbcce;
        margin-right: 1rem;
    }

    .header_wrapper .header .right .map-wrapper {
        display: none;
    }

    .header_wrapper .header .header_menu_icon {
        width: 8rem;
        font-size: 5rem;
        font-weight: 700;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header_wrapper .header .header_menu_icon:active {
        background-color: rgb(48, 105, 226);
        color: #fff;
    }

    .header_wrapper #header_menu_wrapper {
        display: none;        
    }

    /* 易聊对话框样式修改 */
    #jesong_chat_layout{
        max-width: 100% !important;
        box-sizing: border-box;

    }
}