 .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        /* 通用样式 */
        h1, h2, h3 {
            color: #007acc;
        }

        .section-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .section-title::before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 20px;
            background: linear-gradient(45deg, #007acc, #00aaff);
            margin-right: 10px;
            border-radius: 3px;
        }

        .subtitle {
            font-size: 18px;
            font-weight: normal;
            color: #333;
            margin-top: 5px;
        }

        .sub-subtitle {
            font-size: 16px;
            color: #666;
            margin-top: 5px;
        }

        /* 使命部分 */
        .mission-section {
            text-align: center;
            padding: 30px 20px;
        }

        .mission-section h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .mission-section p {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .images-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }

        .image-item {
            width: 25%;
            min-width: 200px;
            position: relative;
            overflow: hidden;
        }

        .image-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .product-card {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .product-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .product-card p {
            margin: 0;text-align: left;
        }

        /* 愿景部分 */
        .vision-section {
            /*text-align: center;*/
            padding: 50px 20px;
            /*background-color: #fafafa;*/
        }

        .vision-logo {
            font-size: 36px;
            font-weight: bold;
            color: #007acc;
            letter-spacing: 2px;
            margin-bottom: 10px;
        }

        .vision-logo span {
            font-size: 18px;
            font-weight: normal;
            color: #333;
            display: block;
        }

        .vision-text {
            font-size: 40px;
            font-weight: bold;
            color: #007acc;
            margin: 30px 0;
			letter-spacing: 4px;
        }

        .vision-text-eng {
            font-size: 18px;
            color: #007acc;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* 质量政策部分 */
        .quality-section {
            padding: 30px 20px;
        }

        .quality-policy {
            background: #f0f8ff;
            padding: 25px;
            border-left: 5px solid #007acc;
            margin: 20px 0;
            border-radius: 5px;
        }

        .quality-policy p {
            margin: 10px 0;
            font-size: 16px;
        }

        .highlight {
            /*color: #007acc;*/
            font-weight: bold;line-height: 32px;
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .images-container {
                flex-direction: column;
                align-items: center;
            }

            .image-item {
                width: 100%;
                max-width: 300px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .mission-section h1 {
                font-size: 28px;
            }

            .vision-text {
                font-size: 24px;
            }
        }