/*----------------------------------back2back------------------------------------*/
#myModal{
    display: none;
    width: 100%;
    height:120px;
    position: fixed;
    background: rgb(55,61,64,0.96);
    /* opacity: .98;
    filter: opacity(98%); */
    z-index: 1000;
    text-align: center;
    font-size: 16px;
    color: #64819C;
}
#myModal #site{
    position: relative;
    border-collapse: collapse;
    margin: auto;
    margin-top: 40px;
}
#myModal #site #ts{
    /* margin-top: 30px; */
    /* line-height: 50px; */
    color: #fff;
    font-size: 26px;
    display: inline-block;
}
#myModal #site input{
    width: 390px;
    height: 35px;
    outline: none;
    border: 2px solid #1967d2;
    margin-left: 30px;
    border-radius: 10px 0px 0px 10px;
    padding-left: 10px;
}
#myModal #site button{
    background-color: #1967d2;
    color: #fff;
    border: none;
    outline: none;
    height: 35px;
    line-height: 35px;
    /* padding: 2px 5px; */
    width: 164px;
    font-size: 22px;
    border-radius: 0px 10px 10px 0px;

}
#myModal #callclose{
    position: absolute;
    right: 20%;
    top: 10px;
    cursor: pointer;
    color: #fff;
}
@media screen and (max-width: 800px) {
    #myModal #site #ts {
        font-size: 0.28rem;
    }
    #myModal #site input {
        width: 2.5rem;
        margin-left: 0.2rem;
    }
    #myModal #site button {
        width: 1.5rem;
        font-size: 0.3rem;
    }
}

/*------------------------------------back2back----------------------------------*/