/*最底部联系人和信息提示*/
.common-page-contact{
    bottom: 0;
    right: 0;
    height: 40px;
    width: 100%;
    z-index: 999;
}
.common-page-contact>div:nth-child(1){
    height: 100%;
}
.common-page-contact>div:nth-child(1)>span{
    background-color: #ff7f00;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    padding: 0 5px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
}
.common-page-contact>div:nth-child(1)>span+div{
    overflow-x: auto;
    max-width: 120px;
}
@media screen and (min-width:410px ){
    .common-page-contact>div:nth-child(1)>span+div{
        max-width:100%;
    }
}
.common-page-contact>div:nth-child(1)>span+div::-webkit-scrollbar{
    height: 0;
}
.common-page-contact>div:nth-child(1)>div>div>div>img{
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
.common-page-contact>div:nth-child(1)>div>div>div>span{
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}
.common-page-contact>div:nth-child(1)>div>div:nth-child(1)>div:nth-child(1){
    background-color: #009ff6;
    justify-content: center;
    width: 40px;
}
.common-page-contact>div:nth-child(1)>div>div:nth-child(2)>div:nth-child(1){
    background-color: #009f49;
    justify-content: center;
    width: 40px;
}
.common-page-contact>div:nth-child(1)>div>div:nth-child(3)>div:nth-child(1){
    background-color: #8dc249;
    justify-content: center;
    width: 40px;
}
.common-page-contact>div:nth-child(2){
    background-color: #006ec6;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    height: 100%;
    overflow: hidden;
}
.common-page-contact>div:nth-child(2)>div{
    background-color: #0062b7;
    height: 100%;
    padding: 0 5px;
}
.common-page-contact>div:nth-child(2)>div>i{
    font-size: 25px;
    color: #fff;
}
.common-page-contact>div:nth-child(2)>span{
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    padding: 0 5px;
    white-space: nowrap;
    /*text-overflow: ellipsis;*/
    /*word-break: break-all;*/
    /*overflow: hidden;*/
    line-height: 40px;
}


/*最底部信息弹框*/
#common-footer-bottom-message{
    overflow: hidden;
    position: absolute;
    z-index:999;
    right: 0;
    bottom: 100%;
    background-color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    width: 278px;
    display: none;
    animation: slide-up 1s ease-out forwards;
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.7);
}
#common-footer-bottom-message>div:nth-child(1){
    font-size: 2rem;
    background: #00a8f2;
    padding: 10px 15px;
    color: #fff;
}
#common-footer-bottom-message>div:nth-child(1)>i{
    font-weight: bolder;
    font-size: 30px;
}
#common-footer-bottom-message>div:nth-child(2){
    font-size: 1.5rem;
    color: #1d1e1c;
    font-weight: 500;;
}
#common-footer-bottom-message>div:nth-child(2){
    padding: 20px 15px;
}
#common-footer-bottom-message>div:nth-child(2)>form>div:nth-child(3)>span{
    font-size:2rem;
}
#common-footer-bottom-message>div:nth-child(2)>form input{
    height: 35px;
    border-radius: 5px;
    font-size: 1.3rem;
    border-color: #ebeae7;
}
#common-footer-bottom-message>div:nth-child(2)>form textarea{
    min-height: 80px;
    border-radius: 5px;
    font-size: 1.3rem;
    border-color: #ebeae7;
}
#common-footer-bottom-message>div:nth-child(2)>form>button{
    width: 100%;
    background-color:#00a8f2;
    color: #fff;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 7px;
}

/*底部联系人点击弹框样式*/
.common-footer-bottom-dialog{
    display: none;
    position: absolute;
    bottom: 42px;
    left: 0;
    z-index:999;
    width: auto;
    word-break: break-all;
    animation: slide-up 1s ease-out forwards;
}
/* 从下往上进入动画 */
@keyframes slide-up {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.common-footer-bottom-dialog>div:first-child{
    background-color: #fff;
    padding: 10px;
    position: relative;
    bottom: 12px;
}
.common-footer-bottom-dialog-triangle-up{
    margin: 0 10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #fff;
    position: absolute;
    bottom: 45px;
    display: none;
    animation: slide-up 1s ease-out forwards;
}
.common-footer-bottom-dialog>div>div:first-child{
    background-color: #fff!important;
    padding: 10px;
}
.common-footer-bottom-dialog>div>div:first-child>img{
    width:50px;
    height: 50px;
}
.common-footer-bottom-dialog>div>div:first-child>img+span{
    color:#000;
    font-weight: 500;
    font-size: 1.3rem;
    margin-top: 5px;
}
.common-footer-bottom-dialog>div>div:nth-child(2){
    margin-left: 5px;
}
.common-footer-bottom-dialog>div>div:nth-child(2) span{
    color:#fff;
    font-size: 1.1em;
    margin-left: 5px;
    font-weight: 500;

}
.common-footer-bottom-dialog>div>div:nth-child(2)>div{
    margin-top: 5px;
}
.common-footer-bottom-dialog>div>div:nth-child(2)>div:first-child{
    margin-top: 0;
}
.common-footer-bottom-dialog>div>div:nth-child(2) img{
    width: 20px;
    height:15px;
    margin-top: 2px;
}