/* 容器整体样式 */
.exhibitor-search-container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* 搜索表单样式 */
.exhibitor-search-container form {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.exhibitor-search-container form input[type="text"] {
    flex: 1 1 auto;
    max-width: 365px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin: 0!important;
}
.exhibitor-search-container form button {
    background: #1F2383;
    color: #fff;
    padding: 6px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 40px;
}
.exhibitor-search-container form button:hover {
    background: black;
}

/* 展商列表外层，背景和内边距 */
.exhibitor-list {
    background: white;
    padding: 0px;
    border-radius: 4px;
}

/* 网格布局：2列 */
.exhibitor-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* 卡片项样式 */
.exhibitor-item {
    background: #efefef;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 16px;
    cursor: pointer;
    transition: all linear 200ms;
}
.exhibitor-item:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.exhibitor-summary h3 {
    margin: 0 0 6px;
    font-size: 16px;
    line-height: 1.4;
    color: black;
    font-weight: 200;
}
.exhibitor-summary p {
    margin: 0;
    color: #807f80;
    font-size: 14px;
    font-weight: 200;
}
.exhibitor-item:hover .exhibitor-summary h3 {
    color: #1F2383;
    font-weight: 400;
}

/* 隐藏详细信息容器（点击后弹窗展示） */
.exhibitor-detail {
    display: none;
}

/* 分页样式 */
.exhibitor-pagination {
    margin-top: 20px;
    text-align: center;
}
.exhibitor-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    color: #007cba;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}
.exhibitor-pagination .page-numbers:hover {
    background: #f2f2f2;
}
.exhibitor-pagination .page-numbers.current {
    background: #007cba;
    color: #fff;
    border: 1px solid #007cba;
}
.exhibitor-pagination p {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

/* 模态窗口 - 控制显示/隐藏及动画效果 */
#exhibitor-modal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
#exhibitor-modal.active {
    opacity: 1;
    pointer-events: auto;
}

/* 弹窗内容区域 */
.exhibitor-modal-content {
    background: #fff;
    padding: 30px;
    max-width: 80%;
    max-height: 80%;
    overflow: auto;
    position: relative;
    border-radius: 4px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.exhibitor-modal-close {
    position: absolute;
    top: 0px;
    right: 0px;
    cursor: pointer;
    font-size: 1.5em;
	padding: 10px;
    height: 22.5px;
    background: #1F2383;
    color: white;
}
.exhibitor-modal-body {
    font-size: 14px;
    color: #333;
}
.exhibitor-modal-body .exhibitor-logo img {
    width: auto;
    max-height: 200px;
    height: auto;
    display: block;
	margin: 0 auto 10px;
}
.exhibitor-modal-body h3 {
    margin: 10px 0 6px;
    font-size: 18px;
    font-weight: 400;
}
.exhibitor-modal-body p {
    margin: 6px 0;
}
.exhibitor-website-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 16px;
    background: white;
    color: #1F2383;
    text-decoration: none;
    border-radius: 4px;
	border: 1px solid #1F2383;
}
.exhibitor-website-btn:hover {
    background: #1F2383;
	color: white;
}
.exhibitor-modal-body .einfogroup {
	text-align: center;
}
.exhibitor-modal-body .esubinfo {
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
	font-size: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e5e5e5;
	font-weight: 200;
}
.exhibitor-modal-body .einfogroup .exhibitor-intro {
	margin: 10px auto;
	max-width: 700px;
	font-weight: 200;
	min-width: 600px;
}
.exhibitor-modal-body .esubinfo .boothnum span,.exhibitor-modal-body .esubinfo .telnum span{
	color:#1F2383;
	font-weight: 400;
}