/* 查询订单记录通用按钮样式 */
.btn-secondary {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: #fff;
    color: #1890ff;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #1890ff;
    border-radius: 22px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    -webkit-tap-highlight-color: transparent;
}
.btn-secondary:hover { background: #f0f7ff; }
.btn-secondary:active { transform: scale(0.98); opacity: 0.9; }
/* 紧凑居中变体，用于首页等不需要通宽的页面 */
.btn-secondary.btn-inline {
    display: inline-block;
    width: auto;
    min-width: 160px;
    padding: 0 32px;
}
