.popup-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(160, 160, 160, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.popup-trigger {
    color: inherit !important;
    text-decoration: underline;
}
.popup-trigger-title {
    padding: 10px;
    margin: 0 10px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #ccc;
}
.popup-modal {
    display: flex;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--theme-front-main-color);
    z-index: 1000;
    box-shadow: 0px 4px 8px var(--theme-pre);
    border-radius: 10px;
    max-width: 50%;
    min-width: 20%;
    max-height: 80%;
    overflow: hidden;
    flex-direction: column;
}
.popup-content img{
    max-width: 100% !important;
}
.popup-content {
    margin: 10px 2px 10px 20px; /* 外边距 上、右、下、左*/
    padding: 0px 18px 0px 0px; /* 内边距 上、右、下、左*/
    overflow-y: auto;
    flex-grow: 1;
}
.popup-footer {
    text-align: center;
	margin: 0px 10px 0px 10px; /* 外边距 上、右、下、左*/
    padding: 10px;
    border-top: 1px solid #ddd;
}
.popup-close {
    color: var(--theme-color);
    background: none;        /* 去掉背景 */
    border: none;            /* 去掉边框 */
    text-decoration: none;   /* 去掉下划线 */
    cursor: pointer;
    transition: all 0.3s ease; /* 添加过渡效果 */
    display: inline-block; /* 或 block */
    
}
.popup-close:hover {
    transform: scale(1.2);       /* 标准属性 */
}
