
/* 主要内容区域 */
.main-content {
    min-height: calc(100vh - 200px - 200px); /* 减去头部和底部高度 */
    padding: 20px;
    padding-bottom: 0px;
}

.content-placeholder {
    text-align: center;
    color: #666;
}

.content-placeholder h2 {
    margin-bottom: 15px;
    color: #333;
}



/* 搜索按钮组样式 */
.flfg-search {
    margin-top: 15px;
    position: relative;
}

.flfg-search::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    height: 97px;
    background-color: #e0e0e000;
    border: 1px solid #80808045;
    border-radius: 5px;
}

.flfg-search-btn {
    display: flex;
    gap: 0;
    justify-content: center;
    flex-wrap: nowrap;
}

.flfg-tab-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 10px 10px 10px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    height: 120px;
}

.flfg-tab-btn .flfg-tab-icon {
    margin-bottom: 8px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.flfg-tab-btn span {
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    width: 85%;
    line-height: 1.2;
    max-height: 2.4em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 0;
}

.flfg-tab-btn.active {
    background-image: url('../images/flfg-list-tab-bg.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.flfg-tab-btn.active .flfg-tab-default-icon {
    display: none !important;
}

.flfg-tab-btn.active .flfg-tab-active-icon {
    display: block !important;
}

.flfg-tab-btn:not(.active) .flfg-tab-default-icon {
    display: block !important;
}

.flfg-tab-btn:not(.active) .flfg-tab-active-icon {
    display: none !important;
}

.flfg-tab-btn.active span {
    color: #ffffff;
    font-weight: 500;
}

.flfg-tab-btn:hover:not(.active) {
    background-color: #f5f5f5;
}

/* 搜索结果列表样式 */


.flfg-list-item {
    background: #F5F9FC;
   /** margin-bottom: 15px;
    padding: 20px;*/
    margin-bottom: 5px;
    padding: 10px 20px;
    transition: box-shadow 0.3s ease;
}

.flfg-list-item-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.flfg-list-item:nth-child(even) {
    background: #FFFFFF;
}

.flfg-list-item:nth-child(odd) {
    background: #F5F9FC;
}

.flfg-list-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flfg-list-item-top {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
}

.flfg-list-item-top div:first-child {
    font-family: Source Han Sans;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: none;
    max-width: 75%;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.flfg-list-item-top div:last-child {
    background-image: url('../images/flfg-xxyx-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #0063F9;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    width: 72px;
    flex: none;
    text-align: center;
}

.flfg-list-item-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
}

.flfg-list-item-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
    color: #666;
    align-items: center;
    width: 85%;
}

.flfg-list-item-bottom div {
    display: flex;
    align-items: center;
    font-size: 11px;
}

.flfg-list-item-bottom span {
    color: #666;
}

.flfg-list-item-bottom-btn {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    font-size: 11px;
}

.flfg-list-item-btn {
    background-color: #d1e9ff;
    color: #4c94fb;
    border: none;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #126ef9;
}

.flfg-list-item-btn:hover {
    background-color: #0052cc;
}


/* flfg-list-header 样式 */
.flfg-list-header {
    background-color: #EDF4F9;
    display: flex;
    padding: 10px 20px;
    gap: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.flfg-list-header-item {
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
		position: relative;
}

.flfg-list-header-item.active {
    color: #0063F9;
}

/* 激活状态下方横线样式 */
.flfg-list-header-item.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #0d6efd;
}

