		/*popup*/
        
        .popup-container {
            position: relative;
            display: inline-block;
            
        }
        
        .popup {
            display: none;
            position: absolute;
            background: #f9f9f9;
            border: 1px solid #eee;  /*#ccc*/
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            
            /*
            
            padding: 15px;
            
            
            */
            z-index: 100000;
            min-width: 1px; /*200px;*/
            top: 100%; /* 按钮底部 */
            left: 100%; /* 按钮右边缘 */
            transform: translate(10px, 20px); /* 微调位置-20,10 */
            width: 100%;
            height: 100%;
            
        }
        
        
        
        .show {
            display: block;
        }
        
        
        /*dialog*/
        .trigger-btn {
            background: #4CAF50;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 30px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
        }

        .trigger-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        }

        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            border-radius: 15px;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal-content {
            background: #eee;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(10,10,10,0.3);
            transform: scale(0.7);
            transition: transform 0.3s ease;
            /*max-width: 700px;*/
            width: 90%;
        }

        .modal-overlay.active .modal-content {
            transform: scale(1);
        }

        .modal-title {
            color: #333;
            margin-top: 0;
            margin-bottom: 25px;
            font-size: 24px;
            border-radius: 15px;
        }

        .radio-container {
            display: flex;
            justify-content: space-between;
            margin: 20px 0;
            gap: 20px;
            border-radius: 15px;
        }

        .radio-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
        }

        .radio-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            width: 100%;
        }

        .radio-item input[type="checkbox"] {
            margin: 0;
            margin-right: 10px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }

        .radio-item label {
            margin: 0;
            cursor: pointer;
            font-size: 16px;
            color: #555;
            flex: 1;
            text-align: left;
        }

        .radio-item:hover label {
            color: #333;
        }

        .button-group {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .modal-btn {
            padding: 12px 25px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 100px;
        }

        .confirm-btn {
            background: #4CAF50;
            color: white;
        }

        .confirm-btn:hover {
            background: #45a049;
            transform: translateY(-2px);
        }

        .cancel-btn {
            background: #f44336;
            color: white;
        }

        .cancel-btn:hover {
            background: #da190b;
            transform: translateY(-2px);
        }