/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

[v-cloak] {
    display: none !important;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow-y: hidden !important;
}

/* 导航栏样式 */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100vw;
    clear: both;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    width: 100%;
    overflow-y: hidden;
}

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

.logo .logo-text {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
}

.logo .logo-image {
    display: inline-block;
}

.logo .logo-image img {
    height: 40px;
    /* 调整 logo 图片高度 */
    width: auto;
    vertical-align: middle;
    margin-right: 15px;
}

.nav-links1 {
    display: none !important;
}

.el-dropdown-menu {
    list-style: none;

    li {

        a {
            text-decoration: none;
            color: #333;
            position: relative;
            padding: 5px 0;
        }

        a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #007bff;
            transition: width 0.3s ease;
        }
    }

}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    overflow: hidden;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    position: relative;
    padding: 5px 0;
    display: inline-block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #007bff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* 首页横幅样式 */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    min-height: 600px;
    position: relative;
    background-color: transparent;
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}

#articlecontent {
    height: 100%;
    display: flex;
    min-height: 600px;
    position: relative;
    background-color: rgba(174, 171, 171, 0.1);
    padding: 80px 30px 60px;
    text-align: center;
    justify-content: center;
    color: #666;
    line-height: 1.8;
    overflow-y: hidden;

    .title {
        margin-top: 15px;
    }

    h3 {
        font-size: 24px;
        color: rgb(0, 0, 0);
        text-align: left;
        letter-spacing: 1px;
    }

    .articlecontentIn {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        justify-content: center;

        h1 {
            word-break: break-all;
        }

        h3 {
            word-break: break-all;
        }
    }

    .auth {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 5px;
        border-bottom: 1px dashed rgba(33, 147, 241, .5);
        color: #272727;
    }

    .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow-y: hidden;
        align-items: left;
        text-align: left;
    }

    .content img {
        display: block;
        align-items: center;
        overflow-y: hidden;
    }

    .content .image-slot {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        background: rgba(224, 224, 224, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content p {
        /* 允许单词换行断字 */
        text-indent: 2em;
        display: flex;
        letter-spacing: 1px;
        justify-content: left;
        text-align: justify;
        text-align-last: left;
        /* 最后一行左对齐，避免过度拉伸 */
        word-spacing: 0.1em;
        /* 缩小单词间距 */
        hyphens: inter-national;
        word-break: break-all;
        /* 允许单词内断行（如 "inter-national"） */
        -webkit-hyphens: inter-national;
        /* 兼容 Safari */
        margin: 5px 0 0px 0;
        color: rgb(0, 0, 0);
        /* 2个字符宽度 */
        -webkit-text-indent: 2em;
        /* Safari/Chrome兼容 */
        -moz-text-indent: 2em;
        /* Firefox兼容 */
    }



    .questionContent {
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow-y: hidden;
        align-items: left;
        text-align: left;

        p {
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;
            /* 兼容 Safari */
        }

        .q_title {
            display: block;
            text-align: justify;
            display: flex;
            letter-spacing: 1px;
            justify-content: left;
            line-height: 30px;
            color: rgb(0, 0, 0);
            /* 2个字符宽度 */
            -webkit-text-indent: 2em;
            /* Safari/Chrome兼容 */
            -moz-text-indent: 2em;
            /* Firefox兼容 */
            background: linear-gradient(to right, rgb(164, 211, 253), rgba(164, 211, 253, 0));
            padding-left: 5px;
            margin: 10px 0;
            font-weight: 900;
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;
            /* 兼容 Safari */
        }

        .q_content {
            letter-spacing: 1px;
            justify-content: left;
            line-height: 30px;
            display: block;
            text-align: justify;
            text-indent: 1em;
            color: rgb(0, 0, 0);
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;

            /* 兼容 Safari */
            .q {
                color: rgb(0, 0, 0);
                font-weight: 900;
            }

            .r {
                color: rgb(49, 49, 49);
                text-indent: 2em;
            }
        }
    }


}

#productLinescontent {
    height: 100%;
    display: flex;
    min-height: 550px;
    position: relative;
    background-color: rgba(174, 171, 171, 0.1);
    padding: 70px 30px 60px;
    text-align: center;
    justify-content: center;
    color: #666;
    line-height: 1.8;
    overflow-y: hidden;

    .title {
        /* margin-top: 15px; */
    }

    h3 {
        font-size: 24px;
        color: rgb(0, 0, 0);
        text-align: left;
        letter-spacing: 1px;
    }

    .articlecontentIn {
        display: flex;
        flex-direction: column;
        overflow: hidden;
        justify-content: center;

        h1 {
            word-break: break-all;
        }

        h3 {
            word-break: break-all;
        }
    }

    .auth {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 5px;
        border-bottom: 1px dashed rgba(33, 147, 241, .5);
        color: #272727;
    }

    .content {
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow-y: hidden;
        align-items: left;
        text-align: left;
    }

    .content img {
        display: block;
        align-items: center;
        overflow-y: hidden;
    }

    .content .image-slot {
        width: 100%;
        height: 200px;
        border-radius: 10px;
        background: rgba(224, 224, 224, 0.1);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content p {
        /* 允许单词换行断字 */
        text-indent: 2em;
        display: flex;
        letter-spacing: 1px;
        justify-content: left;
        text-align: justify;
        text-align-last: left;
        /* 最后一行左对齐，避免过度拉伸 */
        word-spacing: 0.1em;
        /* 缩小单词间距 */
        hyphens: inter-national;
        word-break: break-all;
        /* 允许单词内断行（如 "inter-national"） */
        -webkit-hyphens: inter-national;
        /* 兼容 Safari */
        margin: 5px 0 0px 0;
        color: rgb(0, 0, 0);
        /* 2个字符宽度 */
        -webkit-text-indent: 2em;
        /* Safari/Chrome兼容 */
        -moz-text-indent: 2em;
        /* Firefox兼容 */
    }



    .questionContent {
        display: flex;
        justify-content: center;
        flex-direction: column;
        overflow-y: hidden;
        align-items: left;
        text-align: left;

        p {
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;
            /* 兼容 Safari */
        }

        .q_title {
            display: block;
            text-align: justify;
            display: flex;
            letter-spacing: 1px;
            justify-content: left;
            line-height: 30px;
            color: rgb(0, 0, 0);
            /* 2个字符宽度 */
            -webkit-text-indent: 2em;
            /* Safari/Chrome兼容 */
            -moz-text-indent: 2em;
            /* Firefox兼容 */
            background: linear-gradient(to right, rgb(164, 211, 253), rgba(164, 211, 253, 0));
            padding-left: 5px;
            margin: 10px 0;
            font-weight: 900;
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;
            /* 兼容 Safari */
        }

        .q_content {
            letter-spacing: 1px;
            justify-content: left;
            line-height: 30px;
            display: block;
            text-align: justify;
            text-indent: 1em;
            color: rgb(0, 0, 0);
            text-align: justify;
            text-align-last: left;
            /* 最后一行左对齐，避免过度拉伸 */
            word-spacing: 0.1em;
            /* 缩小单词间距 */
            hyphens: inter-national;
            word-break: break-all;
            /* 允许单词内断行（如 "inter-national"） */
            -webkit-hyphens: inter-national;

            /* 兼容 Safari */
            .q {
                color: rgb(0, 0, 0);
                font-weight: 900;
            }

            .r {
                color: rgb(49, 49, 49);
                text-indent: 2em;
            }
        }
    }


}

.contentEnd {
    letter-spacing: 1px;
    justify-content: left;
    line-height: 30px;
    display: block;
    text-align: justify;
    text-indent: 1em;
    color: rgb(0, 0, 0);
    font-weight: 900;
    word-break: break-all;
}

.hero-bg {
    position: absolute;
    /* background: linear-gradient(to right, rgb(164, 211, 253), rgba(164, 211, 253, 0)); */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-image: url('images/hero-bg.jpg'); */
    background-image: url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.8;
    z-index: -1;
    filter: brightness(0.7);
}

.article_hero {
    height: 30vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 60px;
    text-align: center;
    color: #fff;
}

.article_content {
    height: 100px;

}

.article_content_title {
    height: 100%;
    width: 300px;
    margin-left: 30px;
    border-left: 5px solid #fff;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    padding-left: 15px;

}

.article_content_title .topTitle {
    font-size: 36px;
    color: "#fff";
    overflow-y: hidden;
    font-family: "微软雅黑";
    text-align: left;
    letter-spacing: 1px;
    width: 300px;
    height: 80px;
}

.article_content_title .topdesc {
    font-size: 20px;
    color: "#fff";
    overflow-y: hidden;
    text-align: left;
    letter-spacing: 1px;
    font-family: "微软雅黑";
}

.hero-bg1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/news.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero-bg2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/products.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    clear: both;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    position: relative;
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* 产品区域样式 */
.products {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    overflow: hidden;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    overflow: hidden;

    p {
        word-break: break-all;
    }
}

.product-card1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #e7f2fe;
    border: 1px solid #c9e3ff;

    p {
        word-break: break-all;
    }
}

.product-card1:hover h3 {
    color: rgb(73, 156, 244);
}

.product-card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card h3 {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #2c3e50;
}

.product-image {
    overflow: hidden;
    border-radius: 5px;
    margin: -20px -20px 20px -20px;
}

.learn-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    margin-top: 15px;
    font-weight: 500;
}

.learn-more i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* 关于我们样式 */
.about {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* 联系方式样式 */
.contact {
    padding: 80px 0;
}

.contact-info {
    margin-top: 30px;
}

/* 页脚样式 */
.footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links1 {
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    .nav-links1 .moreIcon {
        font-size: 30px;
        color: #88898b;
    }

    .hero h1 {
        font-size: 32px;
        font-weight: 600;
    }

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

    .logo-image img {
        width: 32px;
        height: 32px;
        /* 移动端稍微缩小 logo */
    }

    .logo .logo-text {
        font-size: 20px;
        font-weight: bold;
        color: #2c3e50;
    }

    #newsmessageContentss {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-y: hidden;
    }

    #newsmessageContentss .informationMessageItem .leftDate .days {
        font-family: "微软雅黑,Microsoft YaHei";
        font-size: 18px;
        color: #4ba4ee;
        line-height: 30px;
        overflow: hidden;
    }

    #newsmessageContentss .informationMessageItem .leftDate .yearAndMonth {
        font-family: "微软雅黑,Microsoft YaHei";
        font-size: 12px;
        color: #4ba4ee;
    }

    #newsmessageContentss .informationMessageItem .leftDate {
        width: 60px;
        height: 60px;
        border: 2px solid #4ba4ee;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
    }

    #newsmessageContentss .informationMessageItem .rightContent .title {
        font-family: "微软雅黑,Microsoft YaHei";
        font-size: 18px;
        line-height: 30px;
        color: #333;
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
    }


    #newsmessageContentss .informationMessageItem .rightContent .discription {
        word-break: break-all;
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        color: #666;
        font-family: "微软雅黑,Microsoft YaHei";
        font-size: 12px;
        line-height: 22px;
    }

    #newsmessageContentss .informationMessageItem .rightContent {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        width: calc(100% - 60px);
    }

    #newsmessageContentss .informationMessageItem {
        width: 95%;
        height: 115px;
        padding: 12px 0;
        border-bottom: 1px dashed #e5e5e5;
        margin-bottom: 12px;
        display: flex;
    }

    #newsmessageContentss .paging {
        height: 100px;
        display: flex;
        justify-items: center;
        align-items: center;
        overflow-y: hidden;
    }
}

/* 更新其他部分样式 */
section {
    padding: 100px 0;
}

h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

/* 关于我们样式更新 */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    word-break: break-all;
}

.about-text p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.8;
    word-break: break-all;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 5px;
}

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

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 联系我们样式更新 */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #007bff;
    margin-right: 20px;
    margin-top: 5px;
}

.info-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #2c3e50;
}

.info-content p {
    color: #666;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #007bff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* 响应式设计补充 */
@media (max-width: 768px) {

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

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

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .social-links {
        justify-content: center;
    }
}

/* 表单提交状态样式 */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.success-message,
.error-message {
    display: none;
    color: #155724;
    font-size: 14px;
}

.success-message i,
.error-message i {
    margin-right: 5px;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.btn-loading {
    color: #fff;
}

.btn-loading i {
    margin-right: 5px;
}

/* 禁用状态的提交按钮 */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* 文章模块 */
.navigationBars {
    width: 100%;
    height: 40px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;

    .n-content {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        color: rgb(39, 38, 38);

        .el-icon-location-outline {
            font-size: 18px;
            color: rgb(89, 153, 231);
            margin-right: 2px;
        }

        .n-bar-parent,
        .arrow,
        .n-bar-child {
            font-size: 15px;
            color: rgb(132, 130, 130);
            cursor: pointer;
        }

        .arrow {
            padding: 0 8px;
        }
    }
}

.contentCommon {
    width: 100%;
    display: flex;
    justify-content: center;

    .contents {
        width: 100%;

        .c_title {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px 0;
            overflow-y: hidden;

            .leftTitle {
                font-family: Microsoft YaHei;
                font-size: 30px;
                color: #009ce1;
                padding-right: 15px;
                border-right: 1px solid #ccc;
            }

            .rightTitle {
                padding-left: 15px;

                .topChinese {
                    font-family: "Microsoft YaHei";
                    color: #aaaaaa;
                    font-size: 14px;
                    line-height: 1.5;
                }

                .bottomEnglish {
                    font-family: Arial, Helvetica, sans-serif;
                    color: #bbbbbb;
                    font-size: 11px;
                    line-height: 1.5;
                }
            }
        }

        .c_content {
            width: 100%;
        }
    }
}

.newsmessageContents {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: hidden;

    .informationMessageItem {
        width: 85%;
        height: 115px;
        padding: 12px 0;
        border-bottom: 1px dashed #e5e5e5;
        margin-bottom: 12px;
        display: flex;

        .leftDate {
            width: 90px;
            height: 90px;
            border: 2px solid #4ba4ee;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-right: 30px;

            .days {
                font-family: "微软雅黑,Microsoft YaHei";
                font-size: 28px;
                color: #4ba4ee;
                line-height: 37px;
                overflow: hidden;
            }

            .yearAndMonth {
                font-family: "微软雅黑,Microsoft YaHei";
                font-size: 14px;
                color: #4ba4ee;
            }
        }

        .rightContent {
            display: flex;
            flex-direction: column;
            cursor: pointer;
            width: calc(100% - 120px);

            .title {
                font-family: "微软雅黑,Microsoft YaHei";
                font-size: 22px;
                line-height: 40px;
                color: #333;
                word-break: break-all;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 1;
                display: -webkit-box;
                -webkit-box-orient: vertical;
            }

            .title:hover {
                color: #4ba4ee;
            }

            .discription {
                word-break: break-all;
                overflow: hidden;
                text-overflow: ellipsis;
                -webkit-line-clamp: 2;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                color: #666;
                font-family: "微软雅黑,Microsoft YaHei";
                font-size: 14px;
                line-height: 22px;
            }
        }
    }

    .paging {
        height: 100px;
        display: flex;
        justify-items: center;
        align-items: center;
        overflow-y: hidden;
    }
}

/* 产品线模块 */
.productLines .productLines-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/productLines/2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}