/* 联系我们组件样式 */
.connection-container {
    position: fixed;
    right: 8px;
    bottom: 40px;
    z-index: 9999;
}

.connection {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.connection .code {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.connection .code:last-child {
    border-bottom: none;
}

.connection img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.connection .phone {
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    margin-top: 5px;
}

.connection div:not(.phone) {
    font-size: 12px;
    color: #666666;
}

/* 响应式样式 */
@media (max-width: 767px) {
    .connection-container {
        left: 10px;
    }
    
    .connection {
        padding: 10px;
        gap: 15px;
    }
    
    .connection img {
        width: 50px;
        height: 50px;
    }
    
    .connection .phone {
        font-size: 12px;
    }
    
    .connection div:not(.phone) {
        font-size: 10px;
    }
}