body {
    background-color: #f8f9fa;
}

.new-container-1 {
    margin: 0 10%;
    padding: 30px 0px 70px 0px;
}

.new-container-1 .new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}


/* 新增卡片样式-1 - 修改为多行布局 */
.card-slider-1 {
    width: 100%;
    margin: 20px 0;
}

.card-wrapper-1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.card-item-1 {
    width: calc(33.333% - 14px); /* 3个卡片每行，考虑间隙 */
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #cccccc;
    position: relative;
    flex-shrink: 0; /* 防止卡片缩小 */
}

.card-icon-1 {
    font-size: 24px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.card-text-1 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    background-color: #d0daeb;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.card-title-1 {
    font-size: 18px;
    color: #2A83FC;
    margin-top: 10px;
}

.card-image-1 {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f0f0f0;
}

.card-desc-1 {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    overflow: hidden;
}

.consult-btn {
    display: inline-block;
    padding: 8px 15px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.consult-btn:hover {
    background-color: #1a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-boxes {
    margin: 15px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.feature-box {
    border: 1px solid #d0daeb;
    border-radius: 6px;
    padding: 8px 2px;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
    text-align: center;
    
    position: relative;
    overflow: hidden;
    width:32.33%;
    margin-right: 1.5%;
}

.feature-box:hover {
    border-color: #2A83FC;
    background-color: #f5f9ff;
}

@media (max-width: 768px) {
    .card-wrapper-1 {
        gap: 15px;
    }
    
    .card-item-1 {
        width: 100%; /* 移动端每行1个卡片 */
    }
}

/* 页码样式 */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.page-numbar {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-numbar:hover {
    background-color: #2A83FC;
    color: white;
}

.page-numbar.current {
    background-color: #2A83FC;
    color: white;
}

.page-num {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-num:hover {
    background-color: #2A83FC;
    color: white;
}

.page-num-current {
    background-color: #2A83FC;
    color: white;
}
.pagination select{
   display: inline-block;
    padding: 8px 16px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .card-container {
        flex-direction: column;
        margin: -30px 5% 20px;
    }
    
    .card {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .new-container-1 {
        margin: 0 5%;
        padding: 30px 0px 40px 0px;
    }
}

.new-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

/* 搜索容器样式-2 */
.search-container-2 {
    height: 488px;
    background-image: url('../image/banner-1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.search-content-2 {
    text-align: center;
    width: 80%;
    max-width: 800px;
}

.search-title-2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 30px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-box-2 {
    display: flex;
    margin-bottom: 15px;
}

.search-input-2 {
    flex: 1;
    padding: 15px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
    outline: none;
}

.search-button-2 {
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: #333;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;	
}

.search-button-2 i {
    margin-right: 5px;
	color: #fff;
}

.hot-search-2 {
    color: #fff;
    font-size: 14px;
}

.hot-search-2 span {
    margin-right: 10px;
}

.hot-search-2 a {
    color: #fff;
    margin: 0 5px;
    text-decoration: none;
    opacity: 0.8;
}

.hot-search-2 a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* 移动端适配-2 */
@media (max-width: 768px) {
    .search-container-2 {
        height: 400px;
    }
    
    .search-content-2 {
        width: 90%;
    }
    
    .search-title-2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .search-box-2 {
        flex-direction: column;
    }
    
    .search-input-2 {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .search-button-2 {
        border-radius: 4px;
        width: 100%;
        padding: 10px;
		color: #fff;
    }
    
    .hot-search-2 {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hot-search-2 span {
        width: 100%;
        margin-bottom: 5px;
    }
}

/* 筛选区域样式-3 */
.filter-container-3 {
    background-color: #ffffff;
    padding: 50px 0;
    margin: -100px 10% 30px;
	border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-content-3 {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.filter-row-3 {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
}

.filter-label-3 {
    width: 100px;
    font-weight: 500;
    color: #333;
    flex-shrink: 0;
    padding-top: 5px;
}

.filter-options-3 {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.filter-option-3 {
    display: inline-block;
    padding: 5px 12px;
    margin: 0 10px 10px 0;
    background-color: #fff;
    /*border: 1px solid #e0e0e0;*/
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #000000;
}

.filter-option-3:hover {
    border-color: #2A83FC;
    color: #2A83FC;
}

.filter-option-3.active {
    background-color: #2A83FC;
    color: #fff;
    border-color: #2A83FC;
}

.selected-filters-3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.selected-title-3 {
    font-weight: 500;
    margin-right: 10px;
    color: #333;
}

.selected-tags-3 {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.selected-tag-3 {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    margin: 0 10px 10px 0;
    background-color: #e6f0ff;
    border-radius: 4px;
    font-size: 14px;
    color: #2A83FC;
}

.selected-tag-3 .close-icon-3 {
    margin-left: 5px;
    cursor: pointer;
    font-size: 12px;
}

.clear-all-3 {
    color: #999;
    cursor: pointer;
    font-size: 14px;
    margin-left: auto;
    padding: 5px 10px;
}

.clear-all-3:hover {
    color: #ff4d4f;
}

/* 移动端适配-3 */
@media (max-width: 768px) {
    .filter-row-3 {
        flex-direction: column;
    }
    
    .filter-label-3 {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .filter-options-3 {
        width: 100%;
    }
    
    .filter-option-3 {
        margin: 0 8px 8px 0;
        padding: 4px 10px;
    }
    
    .selected-filters-3 {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .selected-title-3 {
        margin-bottom: 10px;
    }
    
    .clear-all-3 {
        margin-left: 0;
        margin-top: 10px;
    }
	
	.filter-container-3 {
    background-color: #ffffff;
    padding: 50px 0;
    margin: -100px 5% 30px;
	border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
}



.card-item-2 {
    display: inline-block;
    width: calc(33.333% - 16px);
    min-width: 300px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-right: 20px;
    vertical-align: top;
    white-space: normal;
}

.card-item-2:last-child {
    margin-right: 0;
}

.card-header-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-title-2 {
    font-size: 18px;
    color: #2A83FC;
    font-weight: 600;
}

.card-city-2 {
    background-color: #e0edff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    color: #2A83FC;
}

.card-desc-2 {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
}

.card-divider-2 {
    border: none;
    height: 1px;
    background-color: #f0f0f0;
    margin: 15px 0;
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 60px;
}

.card-footer-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*position: absolute;*/
    left: 20px;
    right: 20px;
    bottom: 20px;
}

.card-item-2 {
    position: relative;
    padding-bottom: 80px;
}

.consult-btn-2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(to right, #2566fd, #6466fe);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s;
}

.consult-btn-2:hover {
    background-color: #1a6fd8;
}

.consult-btn-2 span {
    margin-left: 5px;
}

.card-logo-2 {
    width: 147px;
    height: 40px;
    border-radius: 4px;
    object-fit: contain;
}
/* 微信图标悬停效果 */
.wx-hover-container {
    position: relative;
    display: inline-block;
}

.wx-qrcode {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.wx-hover-container:hover .wx-qrcode {
    opacity: 1;
    visibility: visible;
}

.wx-qrcode img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* 响应式设计 */
@media (max-width: 768px) {
    .card-container-2 {
        overflow-x: auto;
        white-space: nowrap;
        gap: 15px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .card-item-2 {
        display: inline-block;
        width: 100%;
        vertical-align: top;
        white-space: normal;
        margin-right: 15px;
    }
    
    .card-item-2:last-child {
        margin-right: 0;
    }
}
/* 地区筛选下拉菜单样式 */
.filter-options-3.region-select {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
}

.filter-options-3.region-select select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    min-width: 120px;
    flex: 1;
}

/* 移动端样式 */
@media (max-width: 768px) {
    .filter-options-3.region-select {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-options-3.region-select select {
        width: 100%;
    }
}