 .contact_way {
     position: fixed;
     right: 0;
     top: 50%;
     transform: translateY(-50%);
     list-style: none;
 }

 .tel_consult {
     background-color: #fff;
     width: 58px;
     height: 58px;
     padding: 12px;
     border-radius: 8px;
     box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
     position: relative;
 }

 .tel_consult .icon {
     width: 36px;
     height: 36px;
     display: block;
     margin: auto;
 }

 .tel_content {
     position: absolute;
     width: 170px;
     height: 58px;
     top: 0;
     right: 58px;
     background-color: #fff;
     line-height: 50px;
     padding: 4px;
     text-align: center;
     border-radius: 8px 0 0 8px;
     opacity: 0;
     box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
     color: #004CF9;
     z-index: -1;
     text-decoration: none;
 }

 .icon_tel {
     background-image: url(../images/icon_tel.png);
     background-size: 100%;
 }

 .tel_consult:hover {
     box-shadow: none;
     border-radius: 0 8px 8px 0;
 }

 .tel_consult:hover .icon_tel {
     background-image: url(../images/icon_tel_select.png);
 }

 .tel_consult:hover .tel_content {
     opacity: 1;
 }