/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: url('./image/bg.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
}

/* Grid Pattern Background - Removed */

/* Header Styles */
.header {
    position: relative;
    z-index: 100;
    padding: 20px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background: transparent;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.logo-name {
    font-size: 10px;
    font-weight: 400;
    color: white;
    display: flex;
    gap: 10px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    transition: opacity 0.3s ease;
    position: relative;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    background: transparent;
}

.phone-number {
    font-size: 18px;
    font-weight: 500;
}

/* Main Content */
.main {
    padding: 60px 0;
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
    opacity: 0.9;
}

.hero-title-span {
    color: #5CA4FF;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.hero-subtitle {
    font-size: 36px;
    font-weight: 400;
    color: white;
    opacity: 0.9;
    margin: 0;
}

.cta-button {
    background: white;
    color: #1A2B6B;
    border: none;
    padding: 7px 56px;
    font-size: 28px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Isometric Structures */
.structure {
    position: absolute;
    transform-style: preserve-3d;
}

.structure-1 {
    left: 20%;
    top: 20%;
    z-index: 3;
}

.structure-2 {
    right: 15%;
    top: 10%;
    z-index: 2;
}

.structure-3 {
    right: 5%;
    bottom: 20%;
    z-index: 1;
}

/* Buildings */
.building {
    width: 80px;
    height: 120px;
    background: #1A2B6B;
    position: relative;
    transform: rotateX(60deg) rotateY(-15deg);
    transform-style: preserve-3d;
}

.building::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2A3B7B;
    transform: translateZ(-20px);
}

.building::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: #0A1B5B;
    transform: rotateY(90deg) translateZ(80px);
}

.building-grid {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 15px 15px;
}

/* Characters */
.character {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.person {
    width: 20px;
    height: 30px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
}

.person-female {
    background: #87CEEB;
}

.person-male {
    background: #FF6B6B;
}

.person-male:nth-of-type(2) {
    background: #9B59B6;
}

.person::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: #D4AF37;
    border-radius: 50%;
}

.person::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 20px;
    background: #1A2B6B;
    border-radius: 0 0 8px 8px;
}

/* Screens */
.screen {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.screen-content {
    padding: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.user-icon {
    width: 12px;
    height: 12px;
    background: #1A2B6B;
    border-radius: 50%;
}

.interface-lines {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.line {
    height: 2px;
    background: #1A2B6B;
    border-radius: 1px;
}

/* Laptop */
.laptop {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background: #333;
    border-radius: 4px;
}

.laptop-screen {
    width: 100%;
    height: 20px;
    background: white;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-lines .line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #87CEEB, transparent);
    height: 2px;
    animation: pulse 2s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 30%;
    width: 40%;
    animation-delay: 0s;
}

.line-2 {
    top: 50%;
    right: 20%;
    width: 30%;
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 30%;
    left: 40%;
    width: 35%;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Pagination */
.pagination {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-illustration {
        height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-list {
        gap: 20px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-illustration {
        height: 300px;
    }

    .structure-1 {
        left: 10%;
    }

    .structure-2 {
        right: 10%;
    }

    .structure-3 {
        right: 0%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-button {
        align-self: center;
    }
}

/* Industry Leading Systems Section */
.systems-section {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.systems-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1A2B6B;
    margin-bottom: 60px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.platform-card {
    text-align: center;
    padding: 0;
    border-radius: 0;
    background: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 400px;
    height: auto;
    margin: 0 auto;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(26, 43, 107, 0.15);
}

.platform-illustration {
    height: 120px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-title {
    font-size: 28px;
    font-weight: 400;
    color: black;
    margin: 0;
    width: 400px;
    background: white;
    padding: 20px 0;
    text-align: center;
}

.card-icon {
    width: 400px;
    height: 316px;
    object-fit: cover;
    margin-bottom: 0;
}

/* Platform illustrations removed - now using images */

/* Statistics Section */
.statistics-section {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.statistics-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.map-container {
    position: relative;
    max-width: 1000px;
    height: 779px;
    margin: 0 auto;
    background-image: url('./image/ly01.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.map-item {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-item.map-item01 {
    top: 116px;
    left: -214px;
}

.map-item.map-item02 {
    top: 183px;
    right: -199px;
}

.map-item.map-item03 {
    bottom: 214px;
    left: -106px;
}

.map-item.map-item04 {
    bottom: 167px;
    right: -96px;
}

.item-icon {
    width: 64px;
    height: 64px;
}

.item-left {
    width: 270px;
    margin-right: 20px;
    border-bottom: 1px dashed #C6C6C6;
    padding-bottom: 10px;
    text-align: right;
}

.item-right {
    width: 270px;
    margin-left: 20px;
    border-bottom: 1px dashed #C6C6C6;
    padding-bottom: 10px;
}

.item-text01 {
    font-size: 32px;
    color: #000000;
}

.item-text02 {
    font-size: 18px;
    color: #6E6E6E;
}

/* .china-map {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-svg {
    width: 100%;
    height: 100%;
} */

/* .data-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-point {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-left {
    top: 10%;
    left: 5%;
}

.bottom-left {
    bottom: 20%;
    left: 10%;
}

.top-right {
    top: 15%;
    right: 15%;
}

.middle-right {
    top: 50%;
    right: 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.bottom-right {
    bottom: 15%;
    right: 20%;
}

.building-icon {
    font-size: 20px;
}

.data-text {
    font-size: 14px;
    font-weight: 500;
    color: #1A2B6B;
}

.number-box {
    background: #FF4444;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
}

.large-number {
    font-size: 24px;
    font-weight: 700;
    color: #1A2B6B;
}

.data-label {
    font-size: 14px;
    color: #666;
}

.dimension-box {
    background: #87CEEB;
    color: white;
    padding: 4px 8px;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 500;
} */

/* .bottom-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 24px;
    opacity: 0.7;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1A2B6B;
}

.stat-label {
    font-size: 16px;
    color: #666;
} */

/* Platform animations removed - now using static images */

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .systems-title,
    .statistics-title {
        font-size: 28px;
    }

    .bottom-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .systems-title,
    .statistics-title {
        font-size: 24px;
    }

    .map-container {
        height: 300px;
    }

    .bottom-stats {
        flex-direction: column;
        gap: 30px;
    }

    .data-point {
        font-size: 12px;
    }

    .large-number {
        font-size: 20px;
    }

    .stat-number {
        font-size: 24px;
    }
}

/* Coverage Scenarios Section */
.coverage-section {
    background: white;
    padding: 80px 0;
    color: #333;
}

.coverage-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1A2B6B;
    margin-bottom: 60px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto;
}

.scenario-card {
    position: relative;
    height: 278px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* .scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
} */

.card-overlay {
    position: absolute;
    top: 100px;
    left: 30px;
    right: 0;
    bottom: 0;
    font-size: 32px;
    color: white;
}

/* .scenario-card:hover .card-overlay {
    opacity: 0.9;
} */

.scenario-title {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 0;
    bottom: 0;
    color: white;
    font-size: 48px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scenario Card Backgrounds */
.campus-card {
    grid-column-start: 1;
    grid-column-end: 3;
    background-image: url('./image/fgcj01.png');
}

.office-card {
    background-image: url('./image/fgcj02.png');
}

.government-card {
    background-image: url('./image/fgcj03.png');
}

.community-card {
    background-image: url('./image/fgcj04.png');
}

.commercial-card {
    background-image: url('./image/fgcj05.png');
}

.school-card {
    background-image: url('./image/fgcj06.png');
}

.enterprise-card {
    background-image: url('./image/fgcj07.png');
}

.industrial-card {
    background-image: url('./image/fgcj08.png');
}

/* After-Sales Service Section */
.service-section {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.service-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
}

.service-content {
    /* text-align: center; */
    max-width: 800px;
    margin: 0 auto;
    padding-left: 65px;
}

.service-content:after {
    content: '';
    display: block;
    clear: both;
}

.service-description {
    font-size: 24px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 10px;
}

.consult-button {
    width: 132px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    border-radius: 25px;
    background: #578EF2;
    color: white;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    float: right;
}

/* .consult-button:hover {
    background: #2A3B7B;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 43, 107, 0.3);
} */

/* Why Platform Section */
.why-platform-section {
    background: white;
    padding: 80px 0;
    color: #333;
}

.why-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.feature-item {
    height: 460px;
    padding: 30px 60px;
}

.feature-item01 {
    background: #2559C9;
    color: #ffffff;
}

.feature-item01>.feature-title {
    border-bottom-color: #FFFFFF;
}

.feature-item01>.feature-title:before {
    background: #ffffff;
}

.feature-item02 {
    background: #F1F6FF;
    color: #000000;
}

.feature-item02>.feature-title {
    border-bottom-color: #AFACAC;
}

.feature-item02>.feature-title:before {
    background: #2559C9;
}

.feature-title {
    font-size: 36px;
    font-weight: 600;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}

.feature-title:before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 31px;
    margin-right: 20px;
}

.feature-description {
    font-size: 28px;
    line-height: 1.6;
}

.highlight-text {
    color: #1A2B6B;
    font-weight: 600;
}

/* Our Advantages Section */
.advantages-section {
    position: relative;
    background: #ffffff;
    padding: 80px 0;
    color: #333;
    position: relative;
    overflow: hidden;
}

.advantages-section::before {
    content: '优势';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 700;
    color: rgba(26, 43, 107, 0.05);
    z-index: 0;
}

.advantages-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.advantages-description {
    font-size: 28px;
    line-height: 1.6;
    color: #000000;
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 87px;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.advantage-card {
    height: 470px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    /* transition: all 0.3s ease; */
    box-shadow: 0px -2px 4px 0px #85858526;
    box-shadow: 0px 2px 4px 0px #85858540;
}

/* .advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} */

.advantage-icon {
    display: block;
    width: auto;
    height: 137px;
    margin: 0 auto;
}

.advantage-title {
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 40px;
    text-align: center;
}

.advantage-title:after {
    position: relative;
    bottom: -4px;
    z-index: -999;
    content: '';
    display: inline-block;
    width: 59px;
    height: 16px;
    border-radius: 2px;
    transform: skew(-20deg);
    background: linear-gradient(180deg, #F9FAFF 0%, #FFD4CA 100%);
    margin-left: -26px;
}

.advantage-description {
    font-size: 24px;
    line-height: 1.6;
    color: #000000;
}

.advantage-center {
    position: absolute;
    top: calc(50% - 109px);
    left: calc(50% - 109px);
    right: calc(50% - 109px);
    width: 218px;
    height: 218px;
    background: #FFFFFF;
    line-height: 218px;
    text-align: center;
    font-size: 48px;
    color: #888888;
    border: 1px solid #EDEDED;
    border-radius: 50%;
}

/* Typical Clients Section */
.clients-section {
    background: #f8f9fa;
    padding: 80px 0;
    color: #333;
}

.clients-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1500px;
    margin: 0 auto;
}

.client-logo {
    width: 100%;
    height: auto;
}

.logo-placeholder {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* News Center Section */
.news-section {
    background: #ffffff;
    padding: 80px 0;
    color: #333;
}

.news-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 60px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
}

.news-card {
    width: 100%;
    height: 403px;
    border-radius: 16px;
    background-image: url('./image/xwzx.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    font-size: 34px;
    text-align: center;
    padding: 120px 105px;
    margin-bottom: 30px;
}

/* .news-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
} */

.news-content {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #0F0F0F;
}

.news-date {
    font-size: 18px;
    opacity: 0.9;
    color: #6F6F6F;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .coverage-title,
    .service-title,
    .why-title,
    .advantages-title,
    .clients-title,
    .news-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .scenarios-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .coverage-title,
    .service-title,
    .why-title,
    .advantages-title,
    .clients-title,
    .news-title {
        font-size: 24px;
    }

    .scenario-card {
        height: 150px;
    }

    .scenario-title {
        font-size: 20px;
    }

    .feature-item {
        flex-direction: column;
        gap: 15px;
    }

    .feature-bar {
        width: 100%;
        height: 4px;
    }

    .advantages-section::before {
        font-size: 120px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .scenario-card {
        height: 120px;
    }

    .scenario-title {
        font-size: 18px;
    }

    .news-content {
        font-size: 16px;
    }
}

.footer {
    background: #f8f9fa;
    padding: 80px 0 120px;
}

.warrant {
    display: flex;
    justify-content: center;
    align-items: center;
}

.warrant-left {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 30px;
    column-gap: 110px;
    max-width: 700px;
    font-size: 32px;
    font-weight: 500;
    color: #000000;
}

.warrant-right {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 200px;
}

.warrant-infor {
    color: #0F0F0F;
    font-size: 28px;
    font-weight: 400;
    margin-left: 30px;
    padding-left: 30px;
    border-left: 1px solid #000000;
}

.record-number {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #0F0F0F;
    margin-top: 120px;
}

.record-number-left {
    margin-right: 60px;
}

.record-number-right {
    color: inherit;
    text-decoration: none;
}