﻿
/*计价页面  线宽线距弹窗*/
 
.help-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 20px;
    text-align: center;
    background: #d5d5d5;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    margin-left: -4px;
    cursor: pointer;
    transition: all 0.3s;
}

    .help-icon:hover {
        background: #40a9ff;
        transform: scale(1.1);
    }

/* 响应式调整 */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
}
