/* 优化移动端底部按钮 - 大厂规格 */

/* 按钮容器布局 - 两个按钮平分空间 */
#piaofua .footera UL {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 0 !important;
    margin: 0 !important;
}

#piaofua .footera UL LI {
    flex: 1 !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

#piaofua .footera UL LI a {
    display: block !important;
    width: 100% !important;
}

/* 在线咨询按钮 - 使用品牌主色（紫蓝渐变） */
#piaofua .footera UL LI .a2 { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4) !important;
    transition: all 0.3s ease !important;
}

#piaofua .footera UL LI .a2:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5) !important;
}

/* 软件下载按钮 - 使用微信绿（更现代） */
#piaofua .footera UL LI .a3 { 
    background: linear-gradient(135deg, #07c160 0%, #05a052 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(7, 193, 96, 0.4) !important;
    transition: all 0.3s ease !important;
}

#piaofua .footera UL LI .a3:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(7, 193, 96, 0.5) !important;
}

/* 确保两个按钮大小一致、平衡 */
#piaofua .footera UL LI .a2,
#piaofua .footera UL LI .a3 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 14px 20px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    border-radius: 12px !important;
    border: none !important;
    width: 100% !important;
}

/* 图标和文字间距 */
#piaofua .footera UL LI .a2 i,
#piaofua .footera UL LI .a3 i {
    margin-right: 6px !important;
}
