        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            max-width: 100%;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Noto Sans SC', sans-serif;
            color: #333333;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        :root {
            --primary-color: #0F3460;
            --secondary-color: #F37121;
            --light-gray: #E9EDF2;
            --white: #FFFFFF;
            --dark-gray: #333333;
            --text-gray: #999999;
        }
        
        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            font-size: 16px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: #e06015;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(243, 113, 33, 0.3);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 25px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 32px;
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .section-title p {
            color: var(--text-gray);
            font-size: 16px;
        }
        
        .top-bar {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }
        
        .top-bar-left {
            display: flex;
            gap: 20px;
        }
        
        .top-bar-right {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .svg-icon {
            width: 16px;
            height: 16px;
            margin-right: 5px;
            vertical-align: middle;
        }
        
        .advantage-card .icon {
            width: 64px;
            height: 64px;
            margin-bottom: 20px;
        }
        
        .faculty-card .avatar svg {
            width: 50px;
            height: 50px;
        }
        
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .navbar-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo img {
            width: 50px;
            height: 50px;
        }
        
        .logo-text h3 {
            color: var(--primary-color);
            font-size: 18px;
            font-weight: 700;
        }
        
        .logo-text p {
            color: var(--text-gray);
            font-size: 12px;
        }
        
        .logo-link,
        .logo-link:hover,
        .logo-link:active,
        .logo-link:visited {
            text-decoration: none !important;
            color: inherit !important;
        }
        
        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--dark-gray);
            font-size: 15px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        
        .nav-links a.active {
            color: var(--secondary-color);
        }
        
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .dropdown-toggle .caret {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .dropdown:hover .caret {
            transform: rotate(180deg);
        }
        
        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            list-style: none;
            padding: 10px 0;
            min-width: 180px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            z-index: 1000;
            margin-top: 5px;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        .dropdown-menu li {
            padding: 0;
        }
        
        .dropdown-menu li a {
            display: block;
            padding: 12px 20px;
            color: var(--dark-gray);
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .dropdown-menu li a:hover {
            background-color: var(--bg-light);
            color: var(--secondary-color);
            padding-left: 25px;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .banner {
            position: relative;
            height: 600px;
            overflow: hidden;
        }
        
        .banner-slides {
            display: flex;
            transition: transform 0.5s ease;
        }
        
        .banner-slide {
            min-width: 100%;
            height: 600px;
            position: relative;
        }
        
        .banner-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(rgba(15, 52, 96, 0.6), rgba(15, 52, 96, 0.4));
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .banner-content {
            text-align: center;
            color: var(--white);
            max-width: 800px;
            padding: 0 20px;
        }
        
        .banner-content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .banner-content p {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .banner-indicators {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 15px;
        }
        
        .banner-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .banner-indicator.active {
            background-color: var(--secondary-color);
            width: 30px;
            border-radius: 6px;
        }
        
        .advantages {
            padding: 80px 20px;
            background-color: var(--white);
        }
        
        .advantages-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .advantage-card {
            background-color: var(--light-gray);
            padding: 40px 30px;
            border-radius: 10px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .advantage-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background-color: var(--white);
            border: 1px solid var(--secondary-color);
        }
        
        .advantage-card .icon {
            font-size: 48px;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .advantage-card h3 {
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .advantage-card p {
            color: var(--text-gray);
            font-size: 14px;
        }
        
        .training {
            padding: 80px 20px;
            background-color: var(--light-gray);
        }
        
        .training-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .training-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
        }
        
        .training-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .training-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .training-card-content {
            padding: 25px;
        }
        
        .training-card-content h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .training-card-content ul {
            list-style: none;
            margin-bottom: 20px;
        }
        
        .training-card-content li {
            padding: 8px 0;
            color: var(--dark-gray);
            font-size: 14px;
            border-bottom: 1px dashed var(--light-gray);
        }
        
        .training-card-content li:last-child {
            border-bottom: none;
        }
        
        .training-card-content .btn-wrapper {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        .hardware {
            padding: 80px 20px;
            background-color: var(--white);
        }
        
        .hardware-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .hardware-card {
            display: flex;
            background-color: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .hardware-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .hardware-card img {
            width: 50%;
            object-fit: cover;
        }
        
        .hardware-card-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hardware-card-content h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        .hardware-card-content p {
            color: var(--text-gray);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        .hardware-card-content .equipment-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }
        
        .equipment-tag {
            background-color: var(--white);
            color: var(--primary-color);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
        }
        
        .faculty {
            padding: 80px 20px;
            background-color: var(--primary-color);
        }
        
        .faculty .section-title h2 {
            color: var(--white);
        }
        
        .faculty .section-title p {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .faculty-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .faculty-card {
            background-color: var(--white);
            border-radius: 10px;
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .faculty-card:hover {
            transform: translateY(-10px);
        }
        
        .faculty-card .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background-color: var(--light-gray);
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: var(--secondary-color);
        }
        
        .faculty-card h3 {
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .faculty-card .title {
            color: var(--secondary-color);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 10px;
        }
        
        .faculty-card p {
            color: var(--text-gray);
            font-size: 13px;
        }
        
        .stats {
            padding: 60px 20px;
            background-color: var(--secondary-color);
        }
        
        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .stat-item {
            text-align: center;
            color: var(--white);
        }
        
        .stat-item .number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .stat-item p {
            font-size: 16px;
            opacity: 0.9;
        }
        
        .cooperation {
            padding: 80px 20px;
            background-color: var(--white);
        }
        
        .cooperation-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .partners {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }
        
        .partner-logo {
            background-color: var(--light-gray);
            border-radius: 10px;
            padding: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: var(--text-gray);
            transition: all 0.3s ease;
        }
        
        .partner-logo:hover {
            background-color: var(--secondary-color);
            color: var(--white);
            transform: scale(1.05);
        }
        
        .news {
            padding: 80px 20px;
            background-color: var(--light-gray);
        }
        
        .news-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        
        .news-list {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
        }
        
        .news-list h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .news-items {
            list-style: none;
        }
        
        .news-items li {
            padding: 15px 0;
            border-bottom: 1px dashed var(--light-gray);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .news-items li:hover {
            padding-left: 10px;
        }
        
        .news-items li:last-child {
            border-bottom: none;
        }
        
        .news-items a {
            text-decoration: none;
            color: var(--dark-gray);
            font-size: 14px;
            flex: 1;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        
        .news-items a:hover {
            color: var(--secondary-color);
        }
        
        .news-items span {
            color: var(--text-gray);
            font-size: 12px;
            margin-left: 15px;
        }
        
        .contact-form {
            background-color: var(--white);
            border-radius: 10px;
            padding: 30px;
        }
        
        .contact-form h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--secondary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            color: var(--dark-gray);
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 5px;
            font-size: 14px;
            font-family: 'Noto Sans SC', sans-serif;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 60px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--secondary-color);
        }
        
        .footer-section-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }
        
        .footer-section-header h3 {
            margin: 0;
            font-size: 18px;
            color: var(--secondary-color);
        }
        
        .footer-section-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--secondary-color);
            cursor: pointer;
            padding: 5px;
        }
        
        .toggle-icon {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }
        
        .footer-section-toggle.active .toggle-icon {
            transform: rotate(180deg);
        }
        
        .footer-section-content {
            margin-top: 0;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            padding: 8px 0;
        }
        
        .footer-section a {
            text-decoration: none;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--secondary-color);
        }
        
        .footer-section p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            line-height: 2;
        }
        
        .footer-bottom {
            max-width: 1200px;
            margin: 30px auto 0;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 13px;
        }
        
        .float-bar {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }
        
        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(243, 113, 33, 0.4);
            transition: all 0.3s ease;
        }
        
        .float-btn:hover {
            transform: scale(1.1);
            background-color: #e06015;
        }
        
        .float-btn.phone {
            background-color: #10B981;
        }
        
        .float-btn.wechat {
            background-color: #07C160;
        }
        
        @media (max-width: 1024px) {
            .advantages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .hardware-grid {
                grid-template-columns: 1fr;
            }
            
            .faculty-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .partners {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .dropdown-menu {
                position: static;
                display: none;
                background-color: rgba(243, 113, 33, 0.05);
                padding: 0;
                margin: 5px 0;
                border-radius: 4px;
                box-shadow: none;
            }
            
            .dropdown-menu.active {
                display: block;
            }
            
            .dropdown-menu li a {
                padding: 10px 20px;
                font-size: 14px;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .banner {
                height: 400px;
            }
            
            .banner-slide {
                height: 400px;
            }
            
            .banner-content h1 {
                font-size: 32px;
            }
            
            .banner-content p {
                font-size: 16px;
            }
            
            .advantages-grid {
                grid-template-columns: 1fr;
            }
            
            .training-grid {
                grid-template-columns: 1fr;
            }

            .plc-highlight {
                transform: scale(1);
                margin-bottom: 10px;
            }

            .plc-highlight:hover {
                transform: translateY(-8px);
            }
            
            .hardware-card {
                flex-direction: column;
            }
            
            .hardware-card img {
                width: 100%;
                height: 200px;
            }
            
            .faculty-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .partners {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .news-content {
                grid-template-columns: 1fr;
                padding: 0;
            }
            
            .news {
                padding: 40px 10px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer {
                padding: 40px 10px;
            }
            
            .footer-section-toggle {
                display: flex;
            }
            
            .footer-section-content {
                display: none;
            }
            
            .footer-section-content.show {
                display: block;
            }
            
            .float-bar {
                right: 15px;
                bottom: 15px;
            }
            
            .float-btn {
                width: 45px;
                height: 45px;
            }
        }
        
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .partners {
                grid-template-columns: 1fr;
            }
            
            .banner-content h1 {
                font-size: 24px;
            }
            
            .banner-content p {
                font-size: 14px;
            }
            
            .section-title h2 {
                font-size: 24px;
            }
            
            .news {
                padding: 40px 10px;
            }
            
            .news-content {
                gap: 20px;
            }
            
            .news-list {
                padding: 20px 15px;
            }
            
            .news-list h3 {
                font-size: 18px;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }
            
            .news-items li {
                padding: 12px 0;
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }
            
            .news-items a {
                font-size: 13px;
            }
            
            .news-items span {
                font-size: 12px;
                margin-left: 0;
            }
            
            .contact-form {
                padding: 20px 15px;
            }
            
            .contact-form h3 {
                font-size: 18px;
                margin-bottom: 15px;
                padding-bottom: 10px;
            }
            
            .contact-form-guarantee {
                padding: 12px 15px;
                margin-bottom: 15px;
            }
            
            .contact-form-guarantee p {
                font-size: 13px;
            }
            
            .form-group {
                margin-bottom: 15px;
            }
            
            .form-group label {
                font-size: 13px;
                margin-bottom: 6px;
            }
            
            .form-group input,
            .form-group select,
            .form-group textarea {
                padding: 10px 12px;
                font-size: 13px;
            }
            
            .form-group textarea {
                min-height: 80px;
            }
        }
        
        .employment-guarantee {
            background: linear-gradient(135deg, #0F3460 0%, #1a4a7a 100%);
            padding: 60px 20px;
        }
        
        .employment-guarantee .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .employment-guarantee .section-title h2 {
            color: var(--secondary-color);
            font-size: 32px;
            margin-bottom: 10px;
        }
        
        .employment-guarantee .section-title p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
        }
        
        .employment-stats {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }
        
        .employment-stat-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .employment-stat-card:hover {
            background-color: rgba(255, 255, 255, 0.15);
            border-color: var(--secondary-color);
            transform: translateY(-5px);
        }
        
        .employment-stat-card .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        
        .employment-stat-card .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }
        
        .guarantee-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 10;
        }

        .feature-badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--white);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 10;
        }

        .plc-highlight {
            border: 2px solid var(--secondary-color);
            transform: scale(1.02);
            box-shadow: 0 10px 30px rgba(243, 113, 33, 0.2);
        }

        .plc-highlight:hover {
            transform: scale(1.02) translateY(-8px);
            box-shadow: 0 15px 40px rgba(243, 113, 33, 0.3);
        }

        .plc-highlight .training-card-content h3 {
            color: var(--secondary-color);
        }
        
        .guarantee-highlight {
            border: 2px solid var(--secondary-color) !important;
            background: linear-gradient(135deg, rgba(243, 113, 33, 0.1) 0%, transparent 100%) !important;
        }
        
        .guarantee-highlight .icon {
            color: var(--secondary-color) !important;
        }
        
        .guarantee-highlight h3 {
            color: var(--secondary-color) !important;
        }
        
        .employment-btn {
            background-color: var(--secondary-color);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .employment-btn:hover {
            background-color: #e0651f;
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(243, 113, 33, 0.4);
        }
        
        .contact-form-guarantee {
            background-color: rgba(243, 113, 33, 0.1);
            border-left: 4px solid var(--secondary-color);
            padding: 15px 20px;
            margin-bottom: 20px;
            border-radius: 0 5px 5px 0;
        }
        
        .contact-form-guarantee p {
            margin: 0;
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 14px;
        }
        
        @media (max-width: 992px) {
            .employment-stats {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .employment-stats {
                grid-template-columns: 1fr;
            }
            
            .employment-guarantee .section-title h2 {
                font-size: 24px;
            }
            
            .employment-stat-card .stat-number {
                font-size: 36px;
            }
        }





           /* 移动端底部快捷菜单 */	
	.m_foot{
    background-color: #fff;
    position: fixed;
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    z-index: 999999;
    box-sizing: border-box;
    overflow: hidden;
}
.m_foot ul{
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.m_foot li{
    float: left;
    width: 25%;
    list-style: none;
    box-sizing: border-box;
}
.m_foot li a{
    display: block;
    padding: 5px 0;
    text-align: center;
    box-sizing: border-box;
}
.m_foot li a span{
    font-size: 14px;
    color: #333;
}
.m_foot li i{
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto 5px;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: 25px 25px;
}
.m_foot li:nth-of-type(1) i{
    background-image: url("img/fixed_01.png"); 
}
.m_foot li:nth-of-type(2) i{
    background-image: url("img/fixed_02.png");
    position: relative;
}
.m_foot li:nth-of-type(3) i{
    background-image: url("img/fixed_03.png");
}
.m_foot li:nth-of-type(4) i{
    background-image: url("img/fixed_04.png");
}
.m_foot li:nth-of-type(2) i::after{
    content: "";
    position: absolute;
    right: 5px;
    top: 5px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #f00;
}
@media screen and (max-width:768px){
.m_foot{display: block;}
}

 /* 分页样式*/	
.Meisoft-page {
  padding: 0.375rem 0;
  margin-right: 0.375rem;
  text-align: center;
}

.Meisoft-page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  height: 2rem;
  line-height: 1;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  padding: 0 0.75rem;
  margin-left: 0.1875rem;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}

.Meisoft-page a:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--foreground));
  text-decoration: none;
  border-color: hsl(var(--ring));
}

.Meisoft-page span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  padding: 0 0.75rem;
  line-height: 1;
  background: hsl(var(--primary));
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  text-align: center;
  margin-left: 0.1875rem;
  border-radius: var(--radius);
  font-weight: 500;
}
