/* 详情页 */
.prodetailbanner{
	height: 414px;
	background: url(prodetailbanner.jpg) top center no-repeat;
}
.container {
            max-width: 1200px;
            margin: 20px auto;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
        }

        .content {
            padding: 30px;
        }

        /* 项目情况 */
        .project-overview {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }

        .project-image {
            flex: 0 0 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .project-image img {
            width: 100%;
            height: 305px;
            object-fit: cover;
            display: block;
        }

        .project-info {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .project-title {
            font-size: 28px;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }

/*        .project-category {
            display: inline-block;
            background: #e6f7ff;
            color: #3498db;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 14px;
            margin-bottom: 20px;
        } */
		.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;
			margin-bottom: 25px;
			margin-top: 10px;
		    font-size: 14px;
		}

/*        .project-meta {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        } */
        .project-meta {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        	margin-top: 0px;
            color: #7f8c8d;
            font-size: 14px;
        }
        .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #5a6c7d;
			margin-right: 50px;
        }
        .fa-coins,.fa-clock{
        	width: 15px;
        	height: 15px;
        }
        .meta-icon {
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3498db;
        }

        .project-description {
            color: #5a6c7d;
            line-height: 1.8;
            margin-bottom: 25px;
            flex: 1;
        }

        .donate-btn {
            align-self: flex-start;
            background: #e74c3c;
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }

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

        .progress-section {
            margin-top: 20px;
        }

        .progress-stats {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            color: #5a6c7d;
            font-size: 14px;
        }

        .progress-bar {
            height: 8px;
            background: #f1f5f9;
            border-radius: 4px;
            overflow: hidden;
        }

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

        /* 分割带 */
        .divider {
            position: relative;
            text-align: center;
            margin: 40px 0;
            padding: 20px 0;
        }

        .divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
            z-index: 1;
        }

        .divider-text {
            display: inline-block;
            background: #fff;
            position: relative;
            z-index: 2;
            padding: 0 20px;
            font-size: 22px;
            color: #2c3e50;
            font-weight: 600;
        }

        /* 项目详情 */
        .project-detail {
            line-height: 30px;
            font-size: 16px;
            color: #34495e;
        }
        .project-detail img {
            width: 100%;
            margin: 20px auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .detail-section {
            margin-bottom: 30px;
        }

        .detail-title {
            font-size: 20px;
            color: #2c3e50;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e6f7ff;
            font-weight: 600;
        }

        .detail-content {
            margin-bottom: 20px;
        }

        .detail-content p {
            margin-bottom: 15px;
            text-align: justify;
        }

        .detail-image {
            margin: 20px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .detail-image img {
            width: 100%;
            display: block;
        }

        .image-caption {
            text-align: center;
            color: #7f8c8d;
            font-size: 14px;
            margin-top: 8px;
            padding: 0 10px;
        }

        .highlight-box {
            background: #f9fbfd;
            border-left: 4px solid #3498db;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }

        /* 响应式设计 */
        @media (max-width: 900px) {
            .project-overview {
                flex-direction: column;
            }

            .project-image {
                flex: none;
                width: 100%;
            }
        }

        @media (max-width: 600px) {
            .content {
                padding: 20px;
            }

            .project-title {
                font-size: 24px;
            }

            .donate-btn {
                width: 100%;
                justify-content: center;
            }

            .meta-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
        }
