/* 视口悬浮样式 */


/* 侧边栏 */

.right_menu {
    width: 92px;
    position: fixed;
    right: 0px;
    top: 50%;
    transform: translateY(-40%);
    box-sizing: content-box;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    z-index: 9;
}

.right_menu .menu_wrap {
    position: relative;
}

.right_menu .menu_wrap .menu_item {
    position: relative;
    width: 92px;
    height: 92.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    cursor: pointer;
    background: #fff;
    position: relative;
    width: 92px;
    height: 92.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    cursor: pointer;
    background: #fff;
}

.right_menu .menu_wrap .menu_item::before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0px;
    height: 1px;
    width: 40px;
    height: 1px;
    background: #e8e8e8;
    transform: translateX(-50%);
}

.right_menu .menu_wrap .menu_item .menu_item_prc {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 9;
}

.right_menu .menu_wrap .menu_item .menu_item_prc p {
    font-size: 12px;
    text-align: center;
    color: #333333;
    font-family: OPPOSANS-R;
    margin-top: 10px;
    line-height: 1;
}

.menu_item_prc img {
    display: block;
}

.menu_item_prc .menu_item_prc_b {
    display: none;
}

.right_menu .menu_wrap .menu_item:hover {
    background: #ce0e2d;
}

.right_menu .menu_wrap .menu_item:hover .menu_item_prc p {
    color: #fff;
}

.right_menu .menu_wrap .menu_item:hover .menu_item_prc_a {
    display: none;
}

.right_menu .menu_wrap .menu_item:hover .menu_item_prc_b {
    display: block;
}

.right_menu .menu_wrap .menu_item:hover::before {
    height: 0;
}

.menu_item_tc {
    position: absolute;
    z-index: -1;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    transition: all 0.6s ease;
}

.menu_item:hover .menu_item_tc {
    left: -200px;
}

.menu_item .menu_item_tc.sm {
    display: flex;
    align-items: center;
}

.menu_item:hover .menu_item_tc.sm {
    left: -200px;
}


/* 报价弹窗 */

.popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}

.popup_item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    border: 1px solid #000;
    background-color: #fff;
}

.popup .popup_item .input {
    padding: 40px 20px 20px 20px;
}
.popup .popup_item .input>div {}
.popup .popup_item .input>div:nth-child(4)>input{
    width:100%
}

.popup .popup_item .input>div:nth-last-child(2)>input{
    width: 80%;
} 
.popup .popup_item .input>div>input {
    width: 100%;
    height: 45px;
    line-height: 45px;
    border: none;
    padding-left: 20px;
    margin-bottom: 20px;
    background: #e3e3e3;
}


.popup .popup_item .input>div:last-child {
    width: 100%;
    height: 45px;
    line-height: 45px;
    background-color: #ff002b;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    position: relative;
    border: 1px solid #ce0e2b;
}

.popup .popup_item .input>div:last-child button {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 20px;
    border: none;
    z-index: 9;
    background: none;
}

.popup .popup_item .input>div:last-child::before {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    top: 0;
    width: 0%;
    height: 100%;
    background-color: #ffffff;
    transition: all 0.5s ease;
    border-radius: 3px;
}

.popup .popup_item .input>div:last-child:hover::before {
    width: 99.5%;
    color: #fff;
}

.popup .popup_item .input>div:last-child:hover button {
    color: rgb(0, 0, 0);
}

.popup .popup_item .input .close {
    position: absolute;
    right: 0px;
    top: 0px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    font-size: 20px;
    color: rgb(255, 255, 255);
    background-color: #000;
    text-align: right;
    padding: 1px 5px 0 0;
    border-radius: 0 0 0 30px;
}