
.list-content {
    padding: 20px 10px;
    min-height: 600px;
    background-color: #fdf5e2;
}

.breadcrumb {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    border-radius: 4px;
}

.search-box {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 10px;
}

.search-input {
    width: 400px;
    height: 45px;
    border: 2px solid #ddd;
    padding: 0 15px;
    border-radius: 4px;
    outline: none;
    font-size: 14px;
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--mainColor);
}

.search-btn-link {
    display: inline-block;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    background: var(--mainColor);
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.search-btn-link:hover {
    background: #a00004;
    color: #fff;
}

.breadcrumb-icon {
    width: 25px;
    height: 31px;
    margin-right: 10px;
    background: url('../images/icon_18.png') no-repeat center / 100% 100%;
}

.breadcrumb a {
    color: #666;
    margin: 0 5px;
}

.breadcrumb a:hover {
    color: var(--mainColor);
}

.breadcrumb span {
    margin: 0 5px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    background: transparent;
}

.sidebar {
    width: 230px;
    flex-shrink: 0;
}

.sidebar-header {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    background: #e06933;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding-left: 40px;
}

.sidebar-header-icon {
    width: 20px;
    height: 20px;
    background: url('../images/icon_16.png') no-repeat center / 100% 100%;
    margin-right: 10px;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}

.sidebar-item {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    padding-left: 50px;
    background: #f4f4f4;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s;
    color: #333;
    margin-bottom: -1px;
    font-size: 15px;
}

.sidebar-item.active,
.sidebar-item:hover {
    color: var(--mainColor);
    z-index: 1;
}

.sidebar-icon {
    width: 17px;
    height: 17px;
    margin-right: 10px;
    background: url('../images/icon_19.png') no-repeat center / 100% 100%;
    flex-shrink: 0;
}

.main-list-area {
    flex: 1;
    padding: 0;
    border: 1px solid var(--mainColor);
}

.list-header {
    height: 50px;
    background: #f6c3b0;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.list-header-icon {
    width: 20px;
    height: 22px;
    background: url('../images/icon_17.png') no-repeat center / 100% 100%;
    margin-right: 10px;
}

.list-header h2 {
    color: var(--mainColor);
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}

.news-list {
    padding: 20px;
    list-style: none;
}

.news-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px dashed #ddd;
    font-size: 14px;
}

.news-item:last-child {
    border-bottom: none;
}

.news-link {
    display: flex;
    align-items: center;
    flex: 1;
    margin-right: 20px;
    overflow: hidden;
    color: #333;
    text-decoration: none;
}

.news-link:hover {
    color: var(--mainColor);
}

.news-icon {
    width: 3px;
    height: 5px;
    background: url('../images/icon_20.png') no-repeat center / 100% 100%;
    margin-right: 10px;
    flex-shrink: 0;
}

.news-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.news-date {
    color: #999;
    font-size: 12px;
    flex-shrink: 0;
    font-family: Arial, sans-serif;
}

.image-grid {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background-color: #fff;
}

.image-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    overflow: hidden;
}

.image-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.image-title {
    display: block;
    padding: 10px 12px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
