.layout-header .header-pc .header-wrap .header-menu {
    width: initial;
}

.layout-header .header-pc .header-wrap .header-menu .mysearch {
    vertical-align: middle;
    height: inherit;
    padding: 8px 5px;
    box-sizing: border-box;
    padding-right: 30px;
    width: 7.8vw;

}

.layout-header .header-pc .header-wrap .header-menu .mybox {
    position: relative;
    display: inline;
}

.layout-header .header-pc .header-wrap .header-menu .button {
    position: absolute;
    width: 20px;
    height: 20px;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.layout-header .header-pc .header-wrap .header-menu .button:active {
    opacity: 0.6;
}




.mysidebar {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

.mysidebar .item {
    cursor: pointer;
    position: relative;
    user-select: none;
    /* 禁止选中文本 */
}

.mysidebar .item .weChatBox {
    background: #0043b3;
    position: absolute;
    right: 40px;
    top: 0;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 100%;
    transition: all 0.5s;
    overflow: hidden;
}

.mysidebar .item .askBox {
    width: 350px;
    position: absolute;
    right: 40px;
    top: 140px;
    height: 446px;
    background: #eee;
    overflow: hidden;
    transition: all 0.3s;
}

.mysidebar .item .askBox .top {
    display: flex;
    padding: 0 20px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.mysidebar .item .askBox .top .text {
    font-size: 18px;
    line-height: 46px;
    font-weight: bold;
}

.mysidebar .item .askBox .top .icon {
    display: block;
    width: 20px;
    height: 20px;
}

.mysidebar .item .askBox .myInput {
    width: calc(100% - 40px);
    margin: auto;
    border: 1px solid #999;
    display: block;
    padding: 8px 8px 8px 20px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.mysidebar .item .askBox .myInput:focus {
    border-color: #0043b3;
    box-shadow: 0 0 8px rgba(224, 19, 13, 0.5);
}

.mysidebar .item .askBox textarea {
    width: calc(100% - 40px);
    margin: auto;
    border: 1px solid #999;
    display: block;
    padding: 8px 8px 8px 20px;
    transition: all 0.3s;
    resize: none;
    outline: none;
    height: 120px;
}

.mysidebar .item .askBox textarea:focus {
    border-color: #0043b3;
    box-shadow: 0 0 8px rgba(224, 19, 13, 0.5);
}

.mysidebar .item .askBox .myInput:nth-of-type(1) {
    margin-top: 20px;
}

.mysidebar .item .askBox .sendMessage {
    background: #0043b3;
    font-size: 17px;
    line-height: 40px;
    text-align: center;
    color: #FFF;
    width: calc(100% - 40px);
    margin: auto;
    margin-top: 10px;
    cursor: pointer;
}


.mysidebar .item .askBox .sendMessage:hover{
    opacity: 0.8;
}












.mysidebar .item .hideBlock {
    height: 0;
}