:root {
    --primary-color: #05A0FF;
    --secondary-color: #0078D7;
    --text-color: #333;
    --text-light: #666;
    --white: #FFFFFF;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f7fa;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 0 160px;
    background-image: url("../image/2/1/banner.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.hero-mt {
    padding: 200px 260px 0px;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.4;
    color: #16145e;
}

.hero-md {
    padding: 0px 260px 40px;
    font-size: 24px;
    line-height: 2;
    color: #16145e;
}

.hero-btn {
    margin-left: 260px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 200px;
    background: linear-gradient(89.32deg, rgba(75, 87, 253, 1) 0.48%, rgba(5, 160, 255, 1) 99.71%);
    border-radius: 10px;
    padding: 6px 24px;
    text-decoration: none;
}

.hero-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Main Content */
.main-content {}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-blue-strong {
    background-color: #F2F6FF;
}

.section-blue {
    background-color: #F9FCFF;
}

.section-white {
    background-color: #FFFFFF;
}

/* UI Showcase Section */
.ui-showcase {
    padding: 60px 0;
}

.ui-showcase-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    color: #101010;
}

.ui-showcase-info {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: #101010;
}

.system-showcase,
.system-showcase2 {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

.system-showcase-content {
    flex: 1;
}

.system-showcase-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #101010;
}

.system-showcase-info {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #101010;
}

.system-showcase-description {
    font-size: 16px;
    line-height: 2;
    color: #101010;
}

.system-showcase-image {
    max-width: 680px;
}

.system-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Feature Highlights */
.feature-highlights {
    padding: 60px 0;
}

.feature-highlight-item {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-highlight-image {
    max-width: 692px;
}

.feature-highlight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.feature-highlight-content {
    flex: 1;
}

.feature-highlight-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #101010;
}

.feature-highlight-description {
    font-size: 16px;
    color: #101010;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .hero-mt {
        padding: 200px 40px 0px;
    }

    .hero-md {
        padding: 0px 40px 40px;
    }

    .hero-btn {
        margin-left: 40px;
    }
}

/* Responsive Design */

@media (max-width: 1200px) {

    .system-showcase,
    .system-showcase2 {
        flex-direction: column;
        text-align: center;
    }

    .system-showcase-image {
        max-width: 100%;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {

    .hero-mt {
        padding: 60px 30px 0px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.4;
        color: #16145e;
    }

    .hero-md {
        padding: 0px 30px 40px;
        font-size: 16px;
        line-height: 2;
        color: #16145e;
    }

    .hero-btn {
        margin-left: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 200px;
        background: linear-gradient(89.32deg, rgba(75, 87, 253, 1) 0.48%, rgba(5, 160, 255, 1) 99.71%);
        border-radius: 10px;
        padding: 6px 24px;
        text-decoration: none;
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 40px;
    }

    .hero-content img {
        height: 210px;
        width: auto;
    }

    .ui-showcase-title {
        font-size: 20px;
    }

    .ui-showcase-info {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .system-showcase {
        flex-direction: column-reverse;
        text-align: left;
        gap: 0px;
    }

    .system-showcase2 {
        text-align: left;
        gap: 0px;
    }

    .system-showcase-title {
        font-size: 16px;
    }

    .system-showcase-info {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .system-showcase-description {
        font-size: 12px;
    }

    .system-showcase-content {
        width: 100%;
    }

    .feature-highlight-title {
        font-size: 16px;
    }

    .feature-highlight-description {
        font-size: 12px;
    }

    .feature-highlight-item {
        flex-direction: column;
        margin-bottom: 0px;
    }

    .feature-highlights {
        padding: 40px 0 20px;
    }

    .ui-showcase {
        padding: 40px 0;
    }
}