@charset "utf-8";
        /* 基础样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .fr-body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        h2 {
            font-size: 25px;
            margin-bottom: 15px;
            color: #222;
        }

        h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #2c3e50;
        }

        p {
            font-size: 15px;
            margin-bottom: 15px;
            color: #555;
        }

        .fr-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .fr-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .fr-section-title {
            font-size: 32px;
            margin-bottom: 15px;
            color: #0058c6;
            position: relative;
            display: inline-block;
        }

        .fr-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: #0058c6;
        }

        .fr-section-subtitle {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 按钮样式 */
        .fr-btn {
            display: inline-block;
            background-color: #0058c6;
            color: white;
            padding: 12px 25px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 15px;
        }

        .fr-btn:hover {
            background-color: #0044a3;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 88, 198, 0.3);
        }

        .fr-btn-secondary {
            background-color: transparent;
            border: 2px solid #0058c6;
            color: #0058c6;
            margin-left: 15px;
        }

        .fr-btn-secondary:hover {
            background-color: #0058c6;
            color: white;webp
        }

        /* Hero 区域 */
        .fr-hero {
            background: linear-gradient(rgba(0, 40, 85, 0.8), rgba(0, 40, 85, 0.8)), 
                        url(/static/starry/images/banner/banner guide.webp) center/cover no-repeat;
            color: white;
            padding: 120px 0 100px;
            text-align: center;
        }

        .fr-hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .fr-hero h1 {
            font-size: 42px;
            margin-bottom: 25px;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .fr-hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 35px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .fr-hero-btns {
            margin-top: 30px;
        }

        /* 服务区域 */
        .fr-services {
            padding: 80px 0;
            background-color: #fff;
        }

        .fr-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .fr-service-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .fr-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .fr-service-img {
            height: 200px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0058c6;
            font-weight: 700;
            font-size: 18px;
            position: relative;
        }

        .fr-service-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 88, 198, 0.1);
        }

        .fr-service-content {
            padding: 25px;
        }

        .fr-service-content h3 {
            color: #0058c6;
            font-size: 20px;
        }

        /* 能力区域 */
        .fr-capabilities {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .fr-capabilities-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }

        .fr-capabilities-content {
            flex: 1;
            min-width: 300px;
        }

        .fr-capabilities-list {
            margin-top: 25px;
            list-style-type: none;
        }

        .fr-capabilities-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 15px;
        }

        .fr-capabilities-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 10px;
            color: #0058c6;
        }

        .fr-capabilities-image {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #e9ecef;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            font-weight: 700;
            color: #0058c6;
            font-size: 18px;
        }

        /* 材料区域 */
        .fr-materials {
            padding: 80px 0;
            background-color: #fff;
        }

        .fr-materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 25px;
        }

        .fr-material-card {
            background: white;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .fr-material-card:hover {
            transform: translateY(-5px);
        }

        .fr-material-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 88, 198, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: #0058c6;
        }

        /* 行业区域 */
        .fr-industries {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .fr-industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .fr-industry-card {
            background: white;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .fr-industry-card:hover {
            transform: translateY(-5px);
        }

        .fr-industry-icon {
            width: 70px;
            height: 70px;
            background-color: rgba(0, 88, 198, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: #0058c6;
        }

        /* 流程区域 */
        #fr-process {
            padding: 80px 0;
            background-color: #fff;
        }

        .fr-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .fr-step {
            background: #fff;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            width: calc(25% - 20px);
            min-width: 200px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }

        .fr-step::before {
            content: '';
            position: absolute;
            top: 50%;
            right: -20px;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-color: #0058c6;
            clip-path: polygon(0 0, 100% 50%, 0 100%);
            z-index: 2;
        }

        .fr-step:last-child::before {
            display: none;
        }

        .fr-step-number {
            width: 50px;
            height: 50px;
            background-color: #0058c6;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 20px;
            font-weight: bold;
        }

        /* FAQ区域 */
        .fr-faq-section {
            padding: 80px 0;
            background-color: #f1f5f9;
        }

        .fr-faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .fr-faq-item {
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            background: white;
        }

        .fr-faq-question {
            padding: 20px 25px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            transition: background-color 0.3s;
        }

        .fr-faq-question:hover {
            background-color: #f8f9fa;
        }

        .fr-faq-question i {
            transition: transform 0.3s;
        }

        .fr-faq-item.active .fr-faq-question i {
            transform: rotate(180deg);
        }

        .fr-faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .fr-faq-item.active .fr-faq-answer {
            padding: 0 25px 20px;
            max-height: 300px;
        }

        .fr-faq-answer p {
            padding-top: 10px;
        }

        /* CTA区域 */
        .fr-cta {
            padding: 80px 0;
            background: linear-gradient(rgba(0, 40, 85, 0.9), rgba(0, 40, 85, 0.9)), 
                        url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80') center/cover no-repeat;
            color: white;
            text-align: center;
        }

        .fr-cta h2 {
            font-size: 36px;
            color: white;
            margin-bottom: 20px;
        }

        .fr-cta p {
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .fr-hero h1 {
                font-size: 36px;
            }
            
            .fr-step {
                width: calc(50% - 20px);
            }
            
            .fr-step::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .fr-hero {
                padding: 80px 0;
            }
            
            .fr-hero h1 {
                font-size: 32px;
            }
            
            .fr-hero-btns {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            
            .fr-btn-secondary {
                margin-left: 0;
                margin-top: 15px;
            }
            
            .fr-capabilities-container {
                flex-direction: column;
            }
            
            .fr-capabilities-image {
                width: 100%;
            }
            
            .fr-step {
                width: 100%;
            }
        }

        @media (max-width: 480px) {
            .fr-hero h1 {
                font-size: 28px;
            }
            
            .fr-section-title {
                font-size: 28px;
            }
        }