.sidebar {
    position: fixed;
    top: 70%;
    right: 0;
    height: 336px;
    transform: translateY(-50%);
    background-color: transparent;
    padding: 20px;
    z-index: 99999;
    color: #f16010;
    font-weight: 600;
}

.sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 10px;
    cursor: pointer;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar-item img.icon {
    width: 24px; /* 图标的宽度，可以根据需要调整 */
    height: 24px; /* 图标的高度，可以根据需要调整 */
    margin-bottom: 5px; /* 图标和文字之间的间距 */
}

.sidebar-item span {
    font-size: 12px;
}

.sidebar-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #f16010;
}

#backtotop {
    display: none; /* 默认隐藏回到顶部按钮 */
}


/* 新增：电话咨询信息框样式 */
.phone-info {
    display: none; /* 默认隐藏 */
    position: absolute;
    left: -125px; /* 在电话咨询按钮的左侧 */
    top: 20px;
    width: 140px;
    height: 64px;
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    padding: 10px;
    text-align: left;
    font-size: 14px;
    color: #f16010;
}


.contactUs-info {
    display: none; /* 默认隐藏 */
    position: absolute;
    left: -125px; /* 在联系我们按钮的左侧 */
    top: 168px;
    width: 140px;
    height: 140px;
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.3);
    padding: 10px;
    text-align: left;
    font-size: 14px;
    color: #f16010;
}

.contactUs-info p {
    margin: 0 0 5px;
}

.contactUs-info img {
    width: 100px; 
    height: 100px;
}
