@charset "utf-8";
/* CSS Document */

        :root {
            --primary-dark: #070D1D;
            --accent-green: #10B981;
            --accent-green-hover: #059669;
            --text-main: #1E293B;
            --text-muted: #64748B;
            --bg-light: #F8FAFC;
            --border-color: #E2E8F0;
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            --card-hover-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* Hero Banner */
        .projects-banner {
            width: 100%;
            background: linear-gradient(135deg, #070D1D 0%, #0F172A 100%);
            color: #fff;
            padding: 70px 4% 60px 4%;
            position: relative;
            overflow: hidden;
        }
        .projects-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(7, 13, 29, 0.92);
        }
        .banner-content {
            max-width: 1320px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        .banner-content h1 {
            font-size: 3rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        .banner-content p {
            font-size: 1.1rem;
            color: #94A3B8;
            max-width: 650px;
            font-weight: 300;
            line-height: 1.6;
        }

        /* Main Container */
        .projects-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 40px 4% 80px 4%;
        }

        /* Category Filter Tabs */
        .filter-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
            border-bottom: 1px solid var(--border-color);
            padding-bottom: 20px;
        }
        .tab-item {
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            text-decoration: none;
            color: var(--text-muted);
            background: #fff;
            border: 1px solid var(--border-color);
            transition: all 0.25s ease;
        }
        .tab-item:hover, .tab-item.active {
            background-color: var(--accent-green);
            color: #fff;
            border-color: var(--accent-green);
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
        }

        /* Projects Grid (3 columns) */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 50px;
        }
        .project-card {
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 14px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--card-shadow);
        }
        .project-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--card-hover-shadow);
            border-color: #CBD5E1;
        }
        .project-img-box {
            width: 100%;
            height: 220px;
            overflow: hidden;
            position: relative;
            background: #E2E8F0;
        }
        .project-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .project-card:hover .project-img-box img {
            transform: scale(1.05);
        }

        .project-info {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .project-meta {
            display: flex;
            align-items: center;
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 12px;
            gap: 10px;
        }
        .meta-location, .meta-category {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .meta-divider {
            color: #CBD5E1;
        }
        .project-title-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: auto;
        }
        .project-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--primary-dark);
            letter-spacing: -0.01em;
        }
        .project-arrow {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #F1F5F9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-main);
            font-size: 0.9rem;
            transition: all 0.25s ease;
        }
        .project-card:hover .project-arrow {
            background: var(--accent-green);
            color: #fff;
            transform: translateX(3px);
        }

        /* Pagination Style */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 50px;
        }
        .pagination a, .pagination span {
            padding: 8px 16px;
            background: #fff;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-main);
            text-decoration: none;
            transition: all 0.2s ease;
        }
        .pagination a:hover {
            border-color: var(--accent-green);
            color: var(--accent-green);
        }
        .pagination .active {
            background-color: var(--accent-green);
            color: #fff;
            border-color: var(--accent-green);
        }
        .pagination .disabled {
            color: #CBD5E1;
            background: #F8FAFC;
            cursor: not-allowed;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .projects-grid { grid-template-columns: repeat(2, 1fr); }
            .banner-content h1 { font-size: 2.4rem; }
        }
        @media (max-width: 768px) {
            .projects-grid { grid-template-columns: 1fr; }
            .banner-content h1 { font-size: 2rem; }
            .filter-tabs { gap: 8px; }
            .tab-item { padding: 8px 16px; font-size: 0.85rem; }
            .projects-container { padding: 25px 4% 50px 4%; }
        }

/*-------------------------------------------*/

 /* Back Button */
        .back-link-wrapper {
            position: absolute;
            top: 30px;
            left: 5%;
            z-index: 10;
        }
        .back-link {
            display: inline-flex;
            align-items: center;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-dark);
            transition: color 0.3s;
        }
        .back-link:hover { color: var(--primary-color); }
        .back-link svg { margin-right: 8px; width: 16px; height: 16px; }

        /* Hero Section */
        .project-hero {
            position: relative;
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
            min-height: 640px;
            overflow: hidden;
			margin-top: 50px;
        }
        .hero-image-box {
            position: absolute;
            left: 0;
            top: 0;
            width: 55%;
            height: 100%;
        }
        /* Gradient overlay to blend image into the background color */
        .hero-image-box::after {
            content: '';
            position: absolute;
            top: 0; right: -1px; bottom: 0; width: 35%;
            background: linear-gradient(to right, rgba(248,249,250,0) 0%, rgba(248,249,250,1) 100%);
        }
        .hero-image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        .hero-content {
            position: relative;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            z-index: 2;
        }
        .hero-info-card {
            width: 45%;
            padding: 60px 0 40px 60px;
        }
        .hero-info-card h1 {
            font-size: 46px;
            line-height: 1.2;
            margin: 0 0 45px 0;
            font-weight: 700;
            letter-spacing: -0.5px;
        }
        .spec-list { list-style: none; padding: 0; margin: 0; }
        .spec-list li {
            display: flex;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #E5E7EB;
        }
        .spec-icon {
            width: 24px; height: 24px;
            margin-right: 20px;
            fill: none; stroke: var(--primary-color); stroke-width: 2;
        }
        .spec-label { font-weight: 600; width: 180px; font-size: 16px; }
        .spec-value { color: var(--text-gray); flex: 1; font-size: 16px; }
        .spec-link { color: var(--primary-color); font-weight: 600; display: inline-flex; align-items: center; }
        .spec-link svg { width: 16px; height: 16px; margin-left: 5px; fill: currentColor; }
        .spec-link:hover { text-decoration: underline; }

        /* Project Overview */
        .project-overview { padding: 90px 0; }
        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 40px;
            position: relative;
            letter-spacing: -0.5px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            left: 0; bottom: -16px;
            width: 40px; height: 3px;
            background-color: var(--primary-color);
        }
        .overview-text { color: var(--text-gray); font-size: 17px; line-height: 1.8; }
        .overview-text p { margin-bottom: 24px; }
        .overview-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }
        .overview-image img {
            display: block;
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        /* Related Products */
        .related-products { padding: 0 0 100px 0; }
        .related-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
        }
        .view-all {
            color: var(--primary-color);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            font-size: 16px;
        }
        .view-all svg { width: 18px; height: 18px; margin-left: 6px; fill: currentColor; }
        .view-all:hover { text-decoration: underline; }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .product-card {
            background-color: var(--bg-card);
            border-radius: 16px;
            padding: 40px 24px;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
        }
        .product-card:hover { 
            transform: translateY(-8px); 
            box-shadow: 0 15px 30px rgba(0,0,0,0.06);
            background-color: #FFFFFF;
        }
        .product-card img {
            width: 100%;
            height: 180px;
            object-fit: contain;
            margin-bottom: 25px;
            mix-blend-mode: multiply; /* Helps white background images blend with the card */
        }
        .product-name {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        .product-capacity {
            color: var(--danger-red);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 25px;
        }
        .btn-view {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
        }
        .btn-view svg { width: 16px; height: 16px; margin-left: 5px; fill: currentColor; }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-info-card h1 { font-size: 38px; }
            .overview-grid { gap: 40px; }
        }

        @media (max-width: 992px) {
            .hero-image-box { width: 100%; height: 50%; position: relative; }
            .hero-image-box::after { 
                background: linear-gradient(to bottom, rgba(248,249,250,0) 0%, rgba(248,249,250,1) 100%); 
                width: 100%; height: 40%; top: auto; bottom: 0; 
            }
            .project-hero { flex-direction: column; min-height: auto; padding-bottom: 60px; }
            .hero-content { justify-content: flex-start; }
            .hero-info-card { width: 100%; padding: 30px 20px 0 20px; }
            
            .overview-grid { grid-template-columns: 1fr; }
            .overview-image img { height: 350px; }
            .products-grid { grid-template-columns: repeat(2, 1fr); }
            .back-link-wrapper { top: 20px; }
        }

        @media (max-width: 576px) {
            .products-grid { grid-template-columns: 1fr; }
            .spec-label { width: 130px; }
            .hero-info-card h1 { font-size: 32px; }
            .related-header { flex-direction: column; align-items: flex-start; gap: 20px; }
            .section-title { font-size: 28px; }
        }

    .slide{ float:left;width:600px; height:400px;}

	.yx-rotaion{width:600px;height:400px;}
	.yx-rotaion-btn,.yx-rotaion-title,.yx-rotation-focus,.yx-rotation-t,.yx-rotaion-btn{position:absolute}
	.yx-rotation-title{position:absolute;width:100%;height:40px;line-height:40px;background:#000;filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4;left:0;bottom:0;_bottom:-1px;z-index:1}
	.yx-rotation-t{color:#fff;font-size:16px;font-family:microsoft yahei;z-index:2;bottom:0;left:10px;line-height:40px}
	.yx-rotation-focus span,.yx-rotaion-btn span{background:url(../images/ico.png) no-repeat;display:block;}
	.yx-rotation-focus{height:40px;line-height:40px;right:20px;bottom:0;z-index:2}
	.yx-rotation-focus span{width:12px;height:12px;line-height:12px;float:left;margin-left:5px;position:relative;top:14px;cursor:pointer;background-position:-24px -126px;text-indent:-9999px}
	.yx-rotaion-btn{width:100%;height:41px;top:50%;margin-top:-20px;}
	.yx-rotaion-btn span{width:41px;height:41px;cursor:pointer;filter:alpha(opacity=30);-moz-opacity:0.3;-khtml-opacity:0.3;opacity:0.3;position:relative}
	.yx-rotaion-btn .left_btn{background-position:-2px -2px;float:left;left:10px}
	.yx-rotaion-btn .right_btn{background-position:-2px -49px;float:right;right:10px}
	.yx-rotaion-btn span.hover{filter:alpha(opacity=80);-moz-opacity:0.8;-khtml-opacity:0.8;opacity:0.8}
	.yx-rotation-focus span.hover{background-position:-10px -126px}
	.rotaion_list{width:600px;height:400px;overflow:hidden;}
	.rotaion_list li,.rotaion_list li img{width:600px;height:400px;overflow:hidden;}

