@charset "utf-8";
*{
	margin: 0;
	padding: 0;
}
/* about */
.about{
    width: 100%;
    overflow: hidden;
    padding: 100px 0;
}
.about .w{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.about .w .about_fl{
    width: 55%;
}
.about .w .about_fl img{
    width: 100%;
    box-shadow: 10.231px 13.577px 32px 0px rgba(6, 0, 1, 0.25);
}
.about .w .about_fr{
    width: 38%;
}
.about .w .about_fr h3{
    font-size: 22px;
    font-weight: normal;
    margin: 0;
}
.about .w .about_fr h1,
.wh .w .wh_fl h1{
    font-size: 40px;
    margin: 0;
    font-weight: normal;
}
.about .w .about_fr h1 span{
    color: #ff6b31;
}
.about .w .about_fr p{
    font-size: 17px;
    color: #666;
    margin: 2vw 0;
    line-height: 32px;
}
.about .w .about_fr>a,
.wh .w .wh_fl>a{
    font-size: 16px;
    color: #333;
    transition: all 0.3s;
}
.about .w .about_fr>a:hover,
.wh .w .wh_fl>a:hover{
    letter-spacing: 3px;
}

/* 文化 */
.wh{
    width: 100%;
    overflow: hidden;
}
.wh .w{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.wh .w .wh_fl{
    width: 38%;
}
.wh .w .wh_fl>div{
    margin: 2vw 0;
}
.wh .w .wh_fl p{
    font-size: 17px;
    color: #666;
    margin: 0;
    line-height: 32px;
}
.wh .w .wh_fr{
    width: 55%;
}
.inner {
    width: 100%;
    padding-top: 56%;
    /* 视频高度比例 */
    height: 0;
    position: relative;
}

.inner .cont {
    position: absolute;
    inset: 0;
}

.inner .cont #player-container-id {
    width: 100%;
    height: 100%;
}

/* 产品 */
.product {
    width: 100%;
    margin-top: 100px;
    position: relative;
}
.product .w{
    max-width: 1200px!important;
}
.product .product_bt{
    width: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 7vw;
    z-index: 1;
}
.product .product_bt h1{
    font-size: 40px;
    margin: 0;
    font-weight: normal;
    color: #fff;
}
.product .product_bt h3{
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    color: #fff;
}
.product .product_wz{
    width: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    bottom: 7vw;
    z-index: 1;
}
.product .product_tit {
    width: 100%;
    overflow: hidden;
    display: flex;
    gap: 2px;
}
.product .product_tit li {
    text-align: center;
    font-size: 20px;
    background-color: #fff;
    width: calc((100% - 6px) / 4);
    transition: all .3s ease;
    cursor: pointer;
    padding: 25px 10px;
}
.product .product_tit li.on {
    background-color: #ff6b31;
    color: #fff;
}
.list_wz{
    position: absolute;
    z-index: 2;
    color: #fff;
    text-align: left;
    width: 100%;
    max-width: 1200px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}
.list_wz>div{
    max-width: 650px;
    padding: 0 10px;
}
.list_wz h2{
    font-size: 30px;
    text-align: left;
    margin-bottom: 10px;
    font-weight: bold;
}
.list_wz p{
    font-size: 17px;
    line-height: 32px;
}
.list_wz a{
    display: inline-block;
    width: 180px;
    line-height: 50px;
    text-align: center;
    border: 1px solid #fff;
    color: #fff;
    transition: all 0.5s;
    margin-top: 40px;
}
.list_wz a:hover{
    background: #fff;
    color: #ff6b31;
}
.product_bg{
    display: none;
    position: relative;
}
.product_bg::after{
    position: absolute;
    content: '';
    background-color: #000;
    opacity: 0.72;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.product_bg img{
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}

/* 销售网络 */
.map-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
}
.map-img {
    width: 100%;
    height: auto;
    display: block;
}
.map-point {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #333;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.map-point span {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b31;
    z-index: 2;
}
.map-point span::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b31;
    animation: ring 2s infinite ease-out;
    z-index: 1;
}
.map-point span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff6b31;
    animation: ring 2s infinite ease-out 1s;
    z-index: 1;
}
.map-text{}
@keyframes ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}
.map-text{
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.map-text .map-inner{
    max-width: 630px;
    background: url(/template/images/title_bg.png) no-repeat right center / cover;
    padding:30px 90px 30px 0;
    position: relative;
}
.map-text .map-inner::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    background: #ff6b31;
    opacity: 0.75;
}
.map-text .map-inner h1{
    font-size: 38px;
    margin: 0;
    font-weight: normal;
    color: #fff;
}
.map-text .map-inner p{
    font-size: 18px;
    color: #fff;
    margin-top: 6px;
}
/* 企业新闻 */
.news{
    width: 100%;
    overflow: hidden;
    margin: 100px 0;
}
.news .w>h1{
    font-size: 40px;
    font-weight: normal;
}
.news .w>h3{
    font-size: 20px;
    font-weight: normal;
}
.news .w .news_one{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0 50px;
}
.news .w .news_one>a{
    width: 48%;
    display: block;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
}
.news .w .news_one>a:hover {
    transform: translateY(-20px);
    box-shadow: 10.231px 13.577px 32px 0px rgba(6, 0, 1, 0.25);
}
.news .w .news_one .news_list img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.5s;
}
.news .w .news_one>a:hover .news_list img{
    transform: scale(1.05);
}
.news .w .news_one  .news_wz{
    width: 70%;
    color: #fff;
    padding: 3vw 3vw 3vw 2vw;
    background: url(/template/images/xw_bg.png) no-repeat right center / cover;
    height: 350px;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    box-sizing: border-box; 
}
.news .w .news_one  .news_wz h3{
    font-size: 22px;
    line-height: 1.8;
    margin: 10px 0 20px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news .w .news_one  .news_wz p{
    font-size: 18px;
    font-weight: bold;
}
.news .w .news_two{
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.news .w .news_two li{
    width: calc((100% - 60px) / 3);
    padding-right: 30px;
    border-right: 1px solid #e5e5e5;
    box-sizing: border-box;
}
.news .w .news_two li h3{
    font-size: 18px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    color: #000;
}
.news .w .news_two li:hover h3{
    color: #ff6b31;
}
.news .w .news_two li p{
    font-size: 15px;
    color: #666;
    line-height: 28px;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;/*控制行数*/
    overflow: hidden;
    margin: 10px 0 20px;
}
.news .w .news_two li p.time{
   margin: 0;
}