
.telphone{
    display: flex;
    align-items: center;
}
.tel-icon{
    width: 50px;
    height: 50px;
    margin-right: 20px;
}
.tel-info{
    display: flex;
    flex-direction: column;
}
.tel-info-text{
    color: #555;
    font-size: 18px;
}
.tel-info-number{
    color: #01848b;
    font-size: 24px;
    font-weight: bold;
}

.head-nav{
    height: 48px;
    width: 100%;
    position: fixed;
    z-index: 99999999;
    top: 71px;
    background: #01848b;
    padding: 0 14px;
}
.head-nav-list{
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.head-nav-item{
    position: relative;
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 16px;
    transition:.5s all;
}
.head-nav-item:hover{
    background: #00b9c3
    
}
.head-nav-item:hover .head-nav-item-son{
    display: flex;
    flex-direction: column;
}
.head-nav-item.active {
    background: #00b9c3;
}
.head-nav-link{
    color: #fff;
}
.head-nav-link:hover{
    color: #fff;
}
.head-nav-item-son{
    display: none;
    top: 48px;
    width: 100%;
    background: #01848b;
    position: absolute;
    cursor: pointer;
}
.head-nav-item-son a{
    color: #fff;
    transition: all 0.5s ease;
}

.head-nav-item-son .item{
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
}
.head-nav-item-son .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-image: linear-gradient(to right, #00b9c3, #00b9c3);
    transition: width 0.5s ease;
    z-index: 1;
}
.head-nav-item-son .item:hover::before {
    width: 100%;
    
}
.head-nav-item-son .item:hover a{
    transition: padding-left .5s; 
}
.head-nav-item-son .item:hover a{
    padding-left: 20px;
}
.head-nav-item-son .item .a-text{
    width: 100%;
    height: 100%;
    position: absolute;.
    left: 0;
    top: 0;
    z-index: 2;
}










@media (min-width: 992px) {
    .mobile-only {
        display: none !important;
    }
}
@media (max-width: 991.99px) {
    .pc-only {
        display: none !important;
    }
}