
:root {
    --main-color: #1f5f5e;
    --second-color:#f4ebd9;
}
.owl-stage-outer .owl-stage .owl-item .item{
    position: relative; /* 为了确保img元素的高度相对于容器计算 */
    width: 100%; /* 容器宽度占满父元素 */
    /* height: 500px;  */
    /* 固定容器高度 */
}

.owl-stage-outer .owl-stage .owl-item .item a img{
    position: absolute; /* 相对于.container定位 */
    top: 0;
    left: 0;
    /* width: 100%;  */
    /* 图片宽度占满容器宽度 */
    /* height: 100%; */
    /* 图片高度占满容器高度 */
    object-fit: cover; /* 保持图片原始比例，超出部分被裁剪 */
}
/* 轮播图 */

/* 关于我们 开始*/
.aboutus_box {
    margin: 80px 0;
}
.aboutus_box .aboutus_tit{
    margin-bottom: 50px;
}
.aboutus_box .aboutus_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.aboutus_box .aboutus_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.aboutus_box .aboutus_con{
    max-width: 1200px;
    margin: 20px auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.aboutus_leftimg{
    flex: 1;
    text-align: center;
}
.aboutus_leftimg img{
    /* width: 80%; */
    width: 100%;
    max-width: 556px;
}
/* .aboutus_leftimg img{
    width:500px;
    height: 400px;
} */
.aboutus_box .aboutus_con .aboutus_cont{
    flex: 1;
    padding-left: 30px ;
    letter-spacing: 3px;
    text-indent: 2em;
}
.aboutus_box .aboutus_con .aboutus_cont p{
    line-height: 2.5;
}
.aboutus_box .aboutus_bot{
    max-width: 1200px;
    margin: 0 auto 0 auto;
    position: relative;
}
.aboutus_box .aboutus_bot .aboutus_bot_img img{
    /* max-width: 1200px; */
    width: 100%;
    max-height: 300px;
}
.aboutus_bot_con{
    position: absolute;
    width: 100%;
    top: 0;
    left: 70px;
}
.aboutus_bot_top{
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 20px;
}
.aboutus_bot_top .titcon .tit1{
    font-weight: bold;
}
.aboutus_bot_top .titcon .tit1 span{
    color: var(--main-color);
}
.aboutus_bot_top .titcon .tit2{
    font-weight: bold;
    margin: 10px 0 0 0;
}
.aboutus_bot_top .more{
    font-weight: bold;
    color: var(--main-color);
}
.aboutus_bot_cc{
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 50px;
}
.aboutus_botli{
    width: 25%;
}
.aboutus_botli .aboutus_botli_tit{
    /* font-weight: bold; */
    font-size: 50px;
    color: var(--main-color);
}
.aboutus_botli .aboutus_botli_des{

}
/* 关于我们 结束 */

/* 产品专区 开始 */ 
.productbox{
    max-width: 1200px;
    margin: 80px auto;
}
.product_tit{
    margin-bottom: 50px;
}
.product_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.product_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.product_conbox_ulone{
    display: flex;
    justify-content: space-around;
    margin: 30px 0;
}
.product_conbox_li{
    width: 280px;
    text-align: center;
    padding: 5px 0;
    border-radius: 15px;
}
.product_conbox_li:hover{
    background-color: var(--main-color);
    color: white;
    
}
.product_conbox_li img{
    width: 84px;
    height: 84px;
}
.liimgbox{
    text-align: center;
}
.liimgbox img{
    width: 84px;
    height: 84px;
    margin: 0 auto;
}
.liimgbox img:first-child {
    /* 默认显示第一张图片 */
    display: block;
}

.liimgbox img:last-child {
    /* 默认隐藏第二张图片 */
    display: none;
}

.product_conbox_li:hover .liimgbox img:first-child {
    /* 鼠标悬停时隐藏第一张图片 */
    display: none;
}

.product_conbox_li:hover .liimgbox img:last-child {
    /* 鼠标悬停时显示第二张图片 */
    display: block;
}

.product_conbox_li_tit{
    margin: 10px 0;
    font-size: 18px;
    /* font-weight: bold; */
}
.product_conbox_li_con{
    width: 200px;
    margin: 0 auto;
    letter-spacing: 3px;
    line-height: 2;
}

.product_conbox_ultwo{
    position: relative;
    background-repeat: no-repeat;
    height: 720px;
    background-size: cover;
    text-align: center;
    /* aspect-ratio: 5 / 7 */
}
.product_conbox_ultwoimg{
    /* max-width: 1200px; */
    /* position: absolute;
    top: 0;
    left: 0; */
    /* width: 100%; */
    max-width: 594px;

}
.product_conbox_ultwo_con{
    max-width: 1200px;
    display: flex;
    justify-content: center;
    padding-top: 50px;
    /* margin: 50px 0; */
    /* position: absolute;
    top: 0;
    left: 0;
    z-index: 999; */
}
/* 产品专区 结束 */ 

/* 行业解决方案 开始 */
.solution_box{
    max-width: 1200px;
    margin: 80px auto;
}
.solution_tit{
    margin-bottom: 50px;
}
.solution_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.solution_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.solution_dh{
    display: flex;
    align-items: center;
}

.solution_dh_li,.solution_dh_li2{
    margin: 0 10px;
}
.solution_dh_li img:first-child{
    display: block;
}
.solution_dh_li img:last-child{
    display: none;
}
.solution_dh_li:hover img:first-child{
    display: none;
}
.solution_dh_li:hover img:last-child{
    display: block;
}
.solution_lunboli{
    display: flex;
    /* align-items: center; */
}
.solution_lunboli_left_tit{
    color: var(--main-color);
    font-size: 25px;
    margin: 10px;
}
.solution_lunboli_left_con{
    padding: 0 20px;
    letter-spacing: 3px;
    line-height: 2;
    text-indent: 2em;
}
.solution_lunboli_left{
    flex: 1;

}

.solution_lunboli_right{
    flex: 1;
    text-align: center;
}
.solution_lunboli_right img{
    width: 100%;
    max-width: 556px;
}
/* 行业解决方案 结束 */

/* 新闻专区 开始 */
.news_box{
    max-width: 1200px;
    margin: 80px auto;
}
.news_tit{
    margin-bottom: 50px;
}
.news_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.news_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.news_con{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    position: relative;
}
.news_con a {
    background: #f1f1f1;
    width: 32%;
    height: 400px;
}
.news_con a .news_li{
    background: #f1f1f1;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news_con a .news_li .news_litit{
    flex: 2;
    padding: 10px 15px;
    /* font-weight: bold; */
    font-size: 18px;
    color: #333;
   /*  overflow: hidden; /* 隐藏溢出的内容 
    white-space: wrap; /* 文本换行 */
    text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
    margin: 10px 0;
}
.news_con a .news_li .news_litime{
    padding: 0px 15px;
    color: #999;
    flex: 1;
}
.news_con a .news_li .news_licon{
    margin: 15px 0;
    padding: 10px 15px;
    color: #666;
    flex: 4;
    overflow: hidden; /* 隐藏溢出的内容 */
    white-space: wrap; /* 文本换行 */
    text-overflow: ellipsis; /* 使用省略号表示被截断的文本 */
}
.news_con a .news_li .news_lithumb{
    flex: 3;
    width: 100%;
}
.news_con a .news_li .news_lithumb img{
    width: 100%;
}
/* 新闻专区 结束 */

/* 客户合作 开始 */
.customer_box{
    max-width: 1200px;
    margin: 80px auto;
}
.customer_tit{
    margin-bottom: 50px;
}
.customer_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.customer_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.customer_hezuo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}
.customer_name{
    font-size: 18px;
}
.customer_hezuo .customer_img img{
    /* width: 200px;
    height: 120px; */
}
/* 客户合作 结束 */

/* 联系我们 开始 */
.contact_box{
    max-width: 1200px;
    margin: 80px auto;
}
.contact_contit{
    display: flex;
    align-items: center;
    margin-top: 50px;
}
.contact_contit .span1{
    width: 6px;
    height: 30px;
    background: var(--main-color);
}
.contact_contit .span2{
    color: var(--main-color);
    font-size: 25px;
    margin-left: 10px;
}
.contact_tit{
    margin-bottom: 50px;
}
.contact_tit .tit_en{
    text-align: center;
    color: #999;
    font-size: 18px;
}
.contact_tit .tit_cn{
    text-align: center;
    /* font-weight: bold; */
    color: var(--main-color);
    font-size: 30px;
    margin-top: 10px;
}
.contact_contit{

}
.contact_form form{
    
    margin-top: 30px;
}
.contact_form .form-top{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.form-group{
    height: 50px;
    display: flex;
    padding: 0 20px;
}
.form-group .label{
    color: var(--main-color);
    font-size: 18px;
    width: 20%;
    text-align: center;
    margin-right: 15px;
}
.form-group input,textarea{
    height: 50px;
    border: none;
    background: none;
    padding: 5px;
    background: var(--second-color);
    width: 80%;
}
.form-group input::placeholder {
    color: #999;
}
.form-group textarea::placeholder {
    color: #999;
}

.form-group-li1{
    /* width: 200px; */
    align-items: center;
    /* flex: 1; */
    width: calc(50% - 15px);
}
.form-group-li1 input{
    /* width: 200px; */
}
.form-group-li2{
    /* width: 300px; */
    align-items: center;
    /* flex: 1; */
    width: calc(50% - 15px);
}
.form-group-li2 input{
    /* width: 200px; */
}
.form-group-li3{
    /* width: 500px; */
    height: 200px;
    margin-top: 20px;
}
.form-group-li3 .label{ 
    /* width: 10%; */
    width: calc(10% - 4px);
}
.form-group-li3 input{
    /* width: 500px; */
}
.form-group-li3 textarea{
    /* width: 500px; */
    height: 200px;
    width: 90%;
}
.form-button{
    background: var(--main-color);
    color: white;
    width: 250px;
    margin: 30px auto;
}
.form-button input{
    color: white;
    height: 60px;
    width: 250px;
    border: none;
    background: none;
    padding: 5px;
    font-size: 20px;
}
/* 联系我们 结束 */

