/* 锟斤拷锟斤拷页锟斤拷锟斤拷式 */
.news-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.news-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    margin: 0 10px;
    border: none;
    background: none;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: all 0.3s ease;
}

.filter-btn.active {
    color: #007bff;
}

.filter-btn.active::after {
    width: 80%;
}

.news-list {
    max-width: 1200px;
    margin: 0 auto;
}

.news-item {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    flex: 0 0 300px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-info {
    flex: 1;
    padding: 25px;
}

.news-date {
    color: #666;
    font-size: 14px;
}

.news-info h3 {
    margin: 10px 0;
    font-size: 20px;
    color: #333;
}

.news-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.read-more::after {
    content: '锟斤拷';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(5px);
}

.pagination {
    text-align: center;
    margin-top: 40px;
}

.page-link {
    display: inline-block;
    padding: 8px 15px;
    margin: 0 5px;
    color: #666;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.page-link.active {
    background-color: #007bff;
    color: #fff;
}

.page-link:hover:not(.active) {
    background-color: #f0f0f0;
}

.page-dots {
    color: #666;
    margin: 0 5px;
}

/* 锟斤拷应式锟斤拷锟� */
@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }
    .news-item {
        flex-direction: column;
    }

    .news-image {
        flex: 0 0 200px;
    }

    .filter-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* 锟斤拷锟斤拷锟斤拷锟斤拷页锟斤拷锟斤拷式 */
.join-content {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.join-intro {
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
}

.job-positions {
    margin-top: 60px;
}

.position-list {
    margin-top: 40px;
}

.position-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.position-item h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 20px;
}

.position-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.requirements {
    flex: 1;
    color: #666;
    line-height: 1.8;
}

.apply-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.apply-btn:hover {
    background-color: #0056b3;
}

/* 锟斤拷应式锟斤拷锟� */
@media (max-width: 768px) {
    .position-info {
        flex-direction: column;
    }

    .apply-btn {
        margin-top: 20px;
    }

    .reason-item {
        padding: 20px;
    }
}

/* 锟斤拷锟斤拷锟斤拷式 */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* 为锟教讹拷锟斤拷锟斤拷锟斤拷预锟斤拷锟秸硷拷 */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微锟斤拷锟脚猴拷", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头锟斤拷锟斤拷锟斤拷锟斤拷式 */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #007bff;
}

/* 页锟斤拷锟斤拷锟斤拷式 */
.page-banner {
    background: linear-gradient(135deg, #0062cc, #007bff);
    color: #fff;
    padding: 100px 0 60px;
    text-align: center;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2em;
    opacity: 0.9;
}

/* 锟斤拷页英锟斤拷锟斤拷锟斤拷式 */
.hero {
    background: linear-gradient(135deg, #0062cc, #007bff);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #fff;
    color: #007bff;
}

.btn.primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #fff;
    color: #007bff;
    transform: translateY(-2px);
}

/* 锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷式 */
.features {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
}

/* 锟斤拷品预锟斤拷锟斤拷锟斤拷锟斤拷式 */
.products-preview {
    padding: 80px 0;
}

.products-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4em;
}

.product-card p {
    padding: 0 20px;
    color: #666;
    margin-bottom: 20px;
}

.learn-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

/* 锟斤拷锟铰讹拷态锟斤拷锟斤拷锟斤拷式 */
.latest-news {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.latest-news h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.date {
    color: #666;
    font-size: 0.9em;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.news-content p {
    color: #666;
    margin-bottom: 15px;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

/* 页锟斤拷锟斤拷式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer a:hover {
    opacity: 1;
}

.business-scope {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}

.business-scope p {
    margin: 5px 0;
    opacity: 0.8;
}

/* 锟斤拷应式锟斤拷锟� */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        padding: 15px;
    }

    .nav-links {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1.1em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .feature-item,
    .product-card,
    .news-card {
        margin: 0 10px;
    }
}

/* 全锟斤拷锟斤拷式 */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f5f6fa;
    --dark-gray: #2c3e50;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "微锟斤拷锟脚猴拷", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

/* 锟斤拷锟斤拷锟斤拷锟斤拷式 */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--secondary-color);
    background-color: var(--light-gray);
}

/* 锟斤拷锟斤拷锟绞� */
.page-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 8rem 2rem 4rem;
    text-align: center;
    margin-bottom: 4rem;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* 锟斤拷锟斤拷锟斤拷式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* 锟斤拷片锟斤拷式 */
.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* 锟斤拷钮锟斤拷式 */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn.primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn.primary:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn.secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* 锟斤拷锟今布撅拷 */
.grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* 锟斤拷锟皆诧拷锟斤拷 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 锟斤拷锟脚诧拷锟斤拷 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.news-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateY(-5px);
}

.news-image {
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-item:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* 页锟斤拷锟斤拷式 */
.footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* 锟斤拷应式锟斤拷锟� */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        width: 100%;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .page-banner {
        padding: 6rem 1rem 3rem;
    }

    .banner-content h1 {
        font-size: 2rem;
    }
}

/* 锟斤拷锟斤拷效锟斤拷 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

/* 锟斤拷品展示锟斤拷锟斤拷 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
}

/* 锟斤拷锟斤拷锟斤拷锟斤拷锟斤拷锟� */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-item {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.solution-item:hover {
    transform: translateY(-5px);
}

.solution-image {
    height: 250px;
    overflow: hidden;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-info {
    padding: 1.5rem;
}

/* 业锟斤拷围锟斤拷式 */
.business-scope {
    background-color: var(--light-gray);
    padding: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

.business-scope p {
    margin: 0.5rem 0;
    color: var(--dark-gray);
}

/* 鎶€鏈�鑳藉姏灞曠ず閮ㄥ垎鐨勫�炲己鏍峰紡 */
.tech-showcase {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #0066cc, #00ccff);
}

.showcase-category {
    margin-bottom: 60px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.showcase-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.category-title span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #0066cc;
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
    font-weight: 700;
}

.showcase-image {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.image-container {
    overflow: hidden;
    border-radius: 8px;
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
    display: block;
}

.image-container:hover img {
    transform: scale(1.03);
}

/* Hardware Slideshow styles */
.hardware-slideshow {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.slideshow-container {
    position: relative;
    background: #f8f8f8;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    height: 500px; /* Fixed height for consistent display */
}

/* Hide the images by default */
.hw-slide {
    display: none;
    text-align: center;
    padding: 20px;
    width: 100%;
    height: 100%;
}

.hw-slide img {
    max-width: 100%;
    max-height: 460px; /* Allowing space for padding */
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    margin: 0 auto;
    display: block;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s ease;
    border-radius: 0 5px 5px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* On hover, add a darker background */
.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

/* The dots/bullets/indicators */
.dots-container {
    text-align: center;
    margin: 15px 0;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.active, .dot:hover {
    background-color: #0066cc;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: .6}
    to {opacity: 1}
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slideshow-container {
        height: 350px;
    }
    
    .hw-slide img {
        max-height: 310px;
    }
    
    .prev, .next {
        padding: 10px;
        font-size: 18px;
        margin-top: -20px;
    }
}

@media (max-width: 480px) {
    .slideshow-container {
        height: 300px;
    }
    
    .hw-slide img {
        max-height: 260px;
    }
}

/* 纭�浠惰�捐�″浘鐗囩壒娈婃牱寮� */
.hardware-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.hardware-images .image-container {
    height: 240px;
}

/* 杞�浠跺紑鍙戝浘鐗囩壒娈婃牱寮� */
.software-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.software-images .image-container {
    height: 500px;
}

/* 鍝嶅簲寮忚皟鏁� */
@media (max-width: 992px) {
    .showcase-category {
        padding: 20px;
    }
    
    .hardware-images, .software-images {
        grid-template-columns: 1fr;
    }
    
    .hardware-images .image-container,
    .software-images .image-container {
        height: auto;
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .category-title span {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
    
    .showcase-category {
        margin-bottom: 30px;
    }
    
    .image-container {
        min-width: 100%;
    }
}

/* 移动端导航样式 */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1e293b;
    margin: 5px 0;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav {
        position: relative;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .nav-links.active {
        display: flex !important;
    }

    .nav-links li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px;
    }

    /* 汉堡菜单动画 */
    .mobile-nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
} 