.prolistbanner{
	height: 414px;
	background: url(prolistbanner.jpg) top center no-repeat;
}
.container {
            max-width: 1200px;
            margin: 25px auto;
}
        /* 栏目导航 */
        .category-nav {
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .category-left {
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .category-title {
            font-size: 18px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .category-title i {
            margin-right: 10px;
            color: #e74c3c;
        }

        .category-list {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 20px;
        }

        .category-item {
            padding: 10px 20px;
            border-radius: 30px;
            background: #f1f5f9;
            cursor: pointer;
            transition: all 0.3s;
			font-size: 16px;
        }
		.category-item a{
			color: #000000;
		}
		.category-item a:hover{
			color: white;
		}

        .category-item:hover {
            background: #F04736;
            color: white;
        }

        .category-item.active {
            background: #F04736;
            color: white;
        }
        .category-item.active a {
            color: white;
        }

        /* 搜索框样式 */
        .search-box {
            display: flex;
            align-items: center;
            background: #f8fafc;
            border-radius: 30px;
            padding: 5px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            border: 1px solid #e2e8f0;
            min-width: 220px;
        }

        .search-input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 5px 15px;
            font-size: 15px;
            outline: none;
            color: #2c3e50;
        }

        .search-input::placeholder {
            color: #94a3b8;
        }

        .search-btn {
            background: #f26052;
            color: white;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .search-btn:hover {
            background: #F04736;
            transform: rotate(10deg);
        }
		.search-btn img{
			width: 50%;
			height: 50%;
		}


        /* 高级搜索选项 */
        .advanced-options {
            margin-top: 15px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            display: none;
        }

        .advanced-options.active {
            display: flex;
        }

        .filter-select {
            padding: 8px 15px;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            background: white;
            color: #475569;
            font-size: 14px;
            outline: none;
            cursor: pointer;
        }

        .filter-select:focus {
            border-color: #3498db;
        }

        .toggle-advanced {
            color: #3498db;
            font-size: 14px;
            cursor: pointer;
            margin-top: 10px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* 项目列表 */
        .project-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .project-item {
            display: flex;
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }
        .project-item a{
            width: 100%;
            display: flex;
        }

        .project-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }

        .project-image {
            width: 380px;
            height: 220px;
            flex-shrink: 0;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .project-item:hover .project-image img {
            transform: scale(1.05);
        }

        .project-content {
            flex: 1;
            padding: 10px 20px;
            display: flex;
            flex-direction: column;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 10px;
        }

        .project-title {
            font-size: 20px;
            color: #111111;
            font-weight: 600;
        }
		.project-item:hover .project-title {
            color: #F04736;
        }

        .donate-btn {
            background: #e74c3c;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .donate-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }

        .project-meta {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
			margin-top: 0px;
            color: #7f8c8d;
            font-size: 14px;
        }
		.fa-coins,.fa-clock,.fa-heart{
			width: 15px;
			height: 15px;
		}
        .project-category {
            background: url(project-categorybg.png) top left no-repeat;
            color: #ffffff;
			width: 107px;
			height: 27px;
			line-height: 27px;
			padding-left: 20px;
            margin-right: 15px;
            font-size: 14px;
        }

        .project-info {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #5a6c7d;
        }

        .info-item {
			margin-right: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }


        .project-desc {
            color: #5a6c7d;
            line-height: 1.7;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }

        .progress-bar {
            height: 6px;
            background: #f1f5f9;
            border-radius: 3px;
            overflow: hidden;
            margin-top: 15px;
        }

        .progress {
            height: 100%;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 3px;
        }

        .project-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            font-size: 13px;
            color: #7f8c8d;
        }

        /* 分页样式 */

                .pagination {
                    display: flex;
                    justify-content: center;
                    margin-top: 40px;
        			margin-bottom: 20px;
                    list-style: none;
                }

                .pagination li {
                    margin: 0 4px;
                }

                .pagination a {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 40px;
                    height: 40px;
                    border: 1px solid #e0e0e0;
                    border-radius: 6px;
                    text-decoration: none;
                    color: #7f8c8d;
                    font-weight: 500;
                    transition: all 0.3s;
                }

                .pagination a:hover {
                    background: #f8f9fa;
                    color: #F75446;
                }

                .pagination li.active a {
                    background: #F75446;
                    color: white;
                    border-color: #F75446;
                }

                .pagination li.disabled a {
                    color: #d5dbdb;
                    cursor: not-allowed;
                }

                .pagination .page-prev,
                .pagination .page-next {
                    width: auto;
                    padding: 0 15px;
                }

        /* 响应式设计 */
        @media (max-width: 900px) {
            .category-nav {
                flex-direction: column;
                align-items: stretch;
            }

            .search-box {
                width: 100%;
                margin-top: 15px;
            }

            .project-item {
                flex-direction: column;
            }

            .project-image {
                width: 100%;
                height: 200px;
            }

            .project-header {
                flex-direction: column;
                gap: 10px;
            }

            .donate-btn {
                align-self: flex-end;
            }

            .pagination {
                flex-wrap: wrap;
                gap: 5px;
            }
        }

        @media (max-width: 600px) {
            .category-list {
                flex-direction: column;
                gap: 10px;
            }

            .category-item {
                width: 100%;
                text-align: center;
            }

            .project-info {
                flex-direction: column;
                gap: 8px;
            }

            .pagination-prev,
            .pagination-next {
                padding: 0 10px;
                font-size: 14px;
            }

            .advanced-options {
                flex-direction: column;
            }

            .filter-select {
                width: 100%;
            }
        }
