/* 咨询弹窗全局样式 自适应居中 */
.dialog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
}
.dialog-box {
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}
.dialog-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    color: #666;
    cursor: pointer;
    line-height: 1;
}
.dialog-close:hover {
    color: #000;
}
.dialog-top {
    margin-bottom: 20px;
}
.dialog-top h3 {
    font-size: 20px;
    color: #222;
    margin: 0 0 8px;
}
.dialog-top p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.aside-form__item {
    margin-bottom: 14px;
}
.aside-form__item input {
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    box-sizing: border-box;
}
.aside-form__btn {
    margin-top: 10px;
}
.dialog-submit {
    width: 100%;
    height: 46px;
    background: #73c990;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}
.dialog-submit:hover {
    background: #1d4ed8;
}
/* 按钮样式优化：贴合文字、圆角、卡片居中、手机自适应 */
.openDialogBtn {
    display: block;
    width: 50%; /* 强制保留50%宽度 */
     margin: 18px auto 10px; /* 上下外边距10px，左右auto实现水平居中 */
    padding: 6px 16px;
    border: 1px solid #73c990;
    color: #73c990;
    border-radius: 99px;
    text-decoration: none;
    line-height: 1.4;
}
.openDialogBtn:hover {
    background: #369256;
    color: #fff;
}
/* 清除模板自带浮动干扰 */
.more.openDialogBtn {
    float: none !important;
}
/* 父容器li，让按钮在卡片内水平居中（PC+手机全部生效） */
.productList li {
    text-align: center;
}
/* 覆盖模板自带.more浮动，防止按钮跑偏 */
.more.openDialogBtn {
    float: none !important;
}