.product {
    padding: 40px 0;
    background-color: #f4f4f4;
}

.product .section-header {
    padding-top: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section-header {
    padding-top: 0;
    padding-bottom: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.section-header .view-all {
    font-size: 16px;
    background-color: #ffffff;
    padding: 12px 24px;
    border-radius: 32px;
    text-decoration: none;
}

.section-header .view-all .layui-icon {
    font-size: 16px;
    margin-left: 16px;
}

.video {
    padding: 40px 0;
    background-color: #ffffff;
}

.video .section-header {
    padding-top: 0;
    padding-bottom: 40px;
}

.video .section-header .view-all {
    background-color: #f8f8f8;
}



/* 公司介绍样式 - 全屏宽度 */
.company-section {
    background-color: #f4f4f4;
    /* background-color: #ffffff; */
    padding: 60px 0  32px 0;
    /* padding: 80px 0; */
    position: relative;
    overflow: hidden;
}

.company-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.company-image {
    flex: 1;
    /* height: 350px; */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.company-image img,
.company-image video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.company-image:hover img {
    transform: scale(1.05);
}

.company-info {
    flex: 1;
    padding: 20px;
}

.company-title {
    font-size: 32px;
    font-weight: bold;
    color: #1D2088;
    margin-bottom: 24px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.company-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: #1D2088;
    border-radius: 2px;
}

.company-desc {
    font-size: 16px;
    color: #333;
    line-height: 2;
    text-indent: 2em;
    /* margin-bottom: 20px; */
}

@media (max-width: 992px) {
    .company-content {
        flex-direction: column;
        gap: 30px;
    }

    .company-image {
        width: 100%;
        height: 250px;
    }

    .company-info {
        text-align: center;
    }

    .company-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .company-section {
        padding: 40px 0;
        margin: 40px 0;
    }

    .company-content {
        padding: 0 16px;
        gap: 20px;
    }

    .company-image {
        height: 200px;
        border-radius: 8px;
    }

    .company-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .company-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }
}

.contact{
    /* padding: 40px 0; */
    background-color: #ffffff;
}
.contact .section-header {
    padding-top: 0;
    padding-bottom: 40px;
}

@media (max-width: 768px) {
  .layui-col-space32 {
    margin: -8px;
  }
  .layui-col-space32 > * {
    padding: 8px;
  }
}