  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', 'Microsoft YaHei', sans-serif;
        }

        body {
            background-color: #fff9f9;
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo {
            height: 40px;
            margin-right: 10px;
        }

        .brand-name {
            font-size: 22px;
            font-weight: bold;
            color: #ff6b81;
            text-decoration: none;
        }

        nav {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin: 0 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links a:hover {
            color: #ff6b81;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #ff6b81;
            bottom: -5px;
            left: 0;
            transition: width 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu {
            display: none;
            cursor: pointer;
        }

        .mobile-menu div {
            width: 25px;
            height: 3px;
            background-color: #333;
            margin: 5px 0;
            transition: 0.3s;
        }

        .hero {
            height: 500px;
            position: relative;
            overflow: hidden;
            margin-top: 70px;
        }

        .carousel {
            height: 100%;
        }

        .carousel-item {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .carousel-item.active {
            opacity: 1;
        }

        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 2;
            width: 90%;
            max-width: 800px;
        }

        .hero h1 {
            font-size: 42px;
            margin-bottom: 20px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff6b81;
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 16px;
            animation: fadeInUp 1s ease 0.6s forwards;
            opacity: 0;
        }

        .cta-button:hover {
            background-color: #ff5268;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 107, 129, 0.4);
        }

        .carousel-controls {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .carousel-controls button {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.7);
            border: none;
            border-radius: 50%;
            margin: 0 10px;
            cursor: pointer;
            font-size: 18px;
            color: #333;
            transition: all 0.3s;
        }

        .carousel-controls button:hover {
            background-color: #fff;
        }

        .about-section {
            padding: 100px 0;
            background-color: #fff;
        }

        .about-container {
            display: flex;
            align-items: center;
            margin-top: 50px;
        }

        .about-image {
            flex: 1;
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text {
            flex: 1;
            padding: 0 40px;
        }

        .about-text h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #ff6b81;
            bottom: 0;
            left: 0;
        }

        .about-text p {
            margin-bottom: 15px;
            color: #666;
            font-size: 16px;
            line-height: 1.8;
        }

        .core-system {
            padding: 100px 0;
            background-color: #fff5f7;
            text-align: center;
        }

        .core-system h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            display: inline-block;
        }

        .core-system h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #ff6b81;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .system-items {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
        }

        .system-item {
            flex: 1 1 300px;
            margin: 20px;
            padding: 30px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: left;
        }

        .system-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .system-item h3 {
            color: #ff6b81;
            margin-bottom: 15px;
            font-size: 22px;
            display: flex;
            align-items: center;
        }

        .system-item h3 span {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-color: #ff6b81;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 10px;
            font-size: 14px;
        }

        .system-item p {
            color: #666;
            font-size: 16px;
        }

        .advantages {
            padding: 100px 0;
            background-color: #fff;
            text-align: center;
        }

        .advantages h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            display: inline-block;
        }

        .advantages h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #ff6b81;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        .advantages-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-top: 50px;
        }

        .advantage {
            flex: 1 1 250px;
            margin: 20px;
            padding: 30px;
            background-color: #fff5f7;
            border-radius: 10px;
            transition: transform 0.3s;
        }

        .advantage:hover {
            transform: translateY(-10px);
        }

        .advantage-icon {
            font-size: 40px;
            color: #ff6b81;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }

        .advantage h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 22px;
        }

        .advantage p {
            color: #666;
            font-size: 16px;
        }

        footer {
            background-color: #333;
            color: #fff;
            padding: 50px 0 20px;
            text-align: center;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer-section {
            flex: 1 1 300px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            color: #ff6b81;
            margin-bottom: 20px;
            font-size: 20px;
        }

        .footer-section p, .footer-section a {
            color: #ccc;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
        }

        .footer-section a:hover {
            color: #ff6b81;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .social-icons a {
            margin: 0 10px;
            color: #fff;
            font-size: 20px;
        }

        .copyright {
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #999;
            font-size: 14px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }

        @media screen and (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            .about-image, .about-text {
                width: 100%;
                padding: 20px 0;
            }
        }

        @media screen and (max-width: 768px) {
            .nav-links {
                position: absolute;
                right: 0;
                top: 70px;
                background-color: #fff;
                width: 100%;
                flex-direction: column;
                align-items: center;
                transform: translateY(-150%);
                transition: transform 0.5s ease-in;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
                padding: 20px 0;
                z-index: 999;
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 15px 0;
            }

            .mobile-menu {
                display: block;
                position: absolute;
                right: 20px;
                top: 20px;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }

            .about-text h2 {
                font-size: 28px;
            }
        }
		
		
		
		
		
		
	/* 公司概况部分 */
.gsgk-company-profile {
    padding: 80px 0;
    background-color: #fff;
}

.gsgk-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.gsgk-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #ff6b81;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gsgk-history-content {
    max-width: 1200px;
    margin: 0 auto;
}

.gsgk-history-item {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gsgk-history-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.gsgk-history-year {
    color: #ff6b81;
    margin-bottom: 10px;
    font-size: 18px;
}

.gsgk-history-text {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

.gsgk-brand-story {
    margin-top: 60px;
}

.gsgk-story-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ff6b81;
}

.gsgk-story-content {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
}

/* 团队介绍部分 */
.gsgk-team-intro {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.gsgk-section-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.gsgk-section-title:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #ff6b81;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.gsgk-team-member {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gsgk-team-member.visible {
    opacity: 1;
    transform: translateY(0);
}

.gsgk-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.gsgk-team-img {
    flex: 0 0 300px;
    height: 300px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.gsgk-team-text {
    flex: 1;
    padding: 30px;
}

.gsgk-member-name {
    font-size: 24px;
    margin-bottom: 5px;
    color: #333;
}

.gsgk-member-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ff6b81;
    font-weight: normal;
}

.gsgk-member-desc {
    line-height: 1.8;
    color: #666;
    font-size: 16px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .gsgk-team-member {
        flex-direction: column;
    }
    
    .gsgk-team-img {
        width: 100%;
        flex: none;
    }
}

/* 动画效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gsgk-animation-element {
    animation-fill-mode: both;
    animation-duration: 1s;
}

.gsgk-animation-element.hidden {
    animation-name: fadeIn;
}


      /* 关于我们样式 */
        .gywm-about {
            padding: 80px 0;
            background-color: #fff;
        }

        .gywm-title {
            font-size: 32px;
            margin-bottom: 40px;
            text-align: center;
            color: #333;
            position: relative;
            padding-bottom: 15px;
        }

        .gywm-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: #ff6b81;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .gywm-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
        }

        .gywm-text {
            flex: 1;
            min-width: 300px;
            padding-right: 40px;
        }

        .gywm-text h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            padding-bottom: 10px;
        }

        .gywm-text h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: #ff6b81;
            bottom: 0;
            left: 0;
        }

        .gywm-text p {
            line-height: 1.8;
            color: #666;
            font-size: 16px;
            margin-bottom: 15px;
        }

        .gywm-contact-form {
            flex: 1;
            min-width: 300px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
        }

        .gywm-contact-info {
            margin-bottom: 30px;
        }

        .gywm-contact-info h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #333;
        }

        .gywm-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .gywm-contact-icon {
            width: 40px;
            height: 40px;
            background-color: #ff6b81;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
        }

        .gywm-contact-text {
            line-height: 1.5;
            color: #666;
        }

        .gywm-form-group {
            margin-bottom: 20px;
        }

        .gywm-form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #333;
        }

        .gywm-form-group input,
        .gywm-form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .gywm-form-group input:focus,
        .gywm-form-group textarea:focus {
            outline: none;
            border-color: #ff6b81;
        }

        .gywm-form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .gywm-submit-btn {
            background-color: #ff6b81;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .gywm-submit-btn:hover {
            background-color: #ff5268;
        }

        /* 动画效果 */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gsgk-animation-element {
            animation-fill-mode: both;
            animation-duration: 1s;
        }

        .gsgk-animation-element.hidden {
            animation-name: fadeIn;
        }