
/* 弹框容器 */
#popover {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: opacity 0.2s, transform 0.2s;
}

/* 倒三角形 */
#popover::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent white;
    filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.1));
}

/* 输入框样式 */
.popover-text {
    color: #666;
    font-size: 14px;
    margin: 0 0 12px 0;
    line-height: 1.5;
    /* 文字与输入框间距 */
    padding-bottom: 8px;
}

/* 输入框样式 */
.popover-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: #f84f38;;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#popover-kefu {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 300px;
    transition: opacity 0.2s, transform 0.2s;
}

/* 倒三角形 */
#popover-kefu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent white;
    filter: drop-shadow(0 -2px 1px rgba(0,0,0,0.1));
}

/* 输入框样式 */
.popover-input-kefu {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn-kefu {
    width: 100%;
    padding: 10px;
    background: #f84f38;;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}











