@font-face {
    font-family: 'Poppins';
    /*自定义修改*/
    src: url('../fonts/Poppins.ttf');
}

@font-face {
    font-family: 'montserrat';
    /*自定义修改*/
    /*src: url(..'/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/montserrat.ttf');

}

@font-face {
    font-family: 'GOTHAM-BOLD';
    /*自定义修改*/
    src: url('../fonts/GOTHAM-BOLD.woff');
}

@font-face {
    font-family: 'GOTHAM-XLIGHT';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/GOTHAM-XLIGHT.woff');

}

@font-face {
    font-family: 'FUTURA-MD-BT-MEDIUM';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/FUTURA-MD-BT-MEDIUM.TTF');

}

@font-face {
    font-family: 'EBRIMA';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/EBRIMA.TTF');

}

@font-face {
    font-family: 'EBRIMABD';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/EBRIMABD.TTF');

}

@font-face {
    font-family: 'helvetica';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/HELVETI1.TTF');

}

@font-face {
    font-family: 'Helvetica-Neue-Condensed-Black';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/Helvetica-Neue-Condensed-Black.ttf');

}

@font-face {
    font-family: 'Aeonik-Medium';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/Aeonik-Medium.ttf');

}
@font-face {
    font-family: 'MI';
    /*自定义修改*/
    /*src: url('/Montserrat/Montserrat-Regular-8.otf');*/
    src: url('../fonts/MiSans-VF.ttf');

}



body {
    margin: 0px;
    padding: 0px;
    font-family: MI, "微软雅黑", Poppins, "宋体";
}

.page_width {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

img {
    border-top-width: 0px;
    border-right-width: 0px;
    border-bottom-width: 0px;
    border-left-width: 0px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
}

.clear_div {
    clear: both;
}

form {
    padding: 0px;
    margin: 0px;
}


/* 核心：让背后内容模糊，blur(8px) 数值越大越模糊 */
/* backdrop-filter: blur(4px); */
/* 兼容 Safari 浏览器 */
/*-webkit-backdrop-filter: blur(4px);*/
/* 可选：优化视觉，避免边缘锯齿 */
/*backdrop-filter: blur(4px) saturate(100%);*/
/*box-shadow: 0 8px 12px 2px rgba(0, 0, 0, 0.2);*/

/* 顶部导航栏 */
.topnavbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* 根据需要调整高度 rgb(0, 107, 165) */
    background: rgba(0, 52, 165, 0.5);
    /* 半透明背景色 */
    backdrop-filter: blur(10px);
    /* 模糊效果 */
    -webkit-backdrop-filter: blur(10px);
    /* 兼容 Safari */
    z-index: 1000;
    /* 确保在最上层 */
}


.mainlogo {
    background-image: url(/webpic/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 220px;
    height: 80px;
    margin-top: 20px;
    margin-left: 0px;
}

/* 父容器：核心是display: flex */
.main-nav {
    display: flex;
    /* 开启Flex布局，子元素默认横向排列 */
    justify-content: space-between;
    /* 子元素两端对齐（可选，常用值还有center/space-around） */
    align-items: center;
    /* 子元素垂直居中（可选） */
    gap: 10px;
    /* 子元素之间的间距（替代margin，更简洁） */
    width: 80%;
    /* 父容器宽度，可自定义 */
    padding: 10px;
    box-sizing: border-box;
    float: right;
    font-size: 16px;
}

/* 子div样式 */
.item-nav {
    width: 100px;
    /* 自定义宽度 */
    height: 80px;
    /* 自定义高度 */

    color: white;
    text-align: center;
    line-height: 80px;
}

.item-nav a {
    color: white;
    text-decoration: none;
    letter-spacing: 5px;
}

.item-nav a:hover {
    color: #ef8201;
    transition: color 0.5s ease;
}

.main-nav-logo {
    padding: 10px;
    height: 80px;
    color: white;
    text-align: center;
    line-height: 80px;
}

.main-nav-logo i {
    margin-left: 20px;
    font-size: 20px;
}

/* 顶部次导航 产品主目录 */
.topnavsbox {
    position: fixed;
    top: 100;
    left: 0;
    width: 100%;
    height: 50px;
    /* 根据需要调整高度 */
    background: rgba(255, 255, 255, 0.5);
    /* 半透明背景色 */
    backdrop-filter: blur(10px);
    /* 模糊效果 */
    -webkit-backdrop-filter: blur(10px);
    /* 兼容 Safari */
    z-index: 1000;
    /* 确保在最上层 */
    text-align: center;
}

.topnavsbox a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    line-height: 50px;
    /* 使文字垂直居中 */
    margin: 0 15px;
}

.topnavsbox-page {
    position: fixed;
    top: 100;
    left: 0;
    width: 100%;
    height: 50px;
    /* 根据需要调整高度 */
    background: rgba(255, 255, 255, 0.5);
    /* 半透明背景色 */
    backdrop-filter: blur(10px);
    /* 模糊效果 */
    -webkit-backdrop-filter: blur(10px);
    /* 兼容 Safari */
    z-index: 1000;
    /* 确保在最上层 */
    text-align: left;
}

.topnavsbox-page a {
    color: black;
    text-decoration: none;
    font-size: 14px;
    line-height: 50px;
    /* 使文字垂直居中 */
}

/* 第一个banner 视频 */
.banner-bg {
    /* background-image: url(../webpic/banner0.jpg); */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    /* height: 780px; */
    height: 100%;
}

.banner-bg .swiper-wrapper {
    height: 100%
}

.banner-bg .swiper-slide img {
    width: 100%
}



/* 第二个banner 图片 */
.banner-leftbox {
    background-image: url(/webpic/bannerimg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    /* height: 350px; */
    margin-top: 0px;
    margin-left: 0px;
    padding-top: 100px;
    height: 280px;
}

.banner-leftbox .titlebox {
    margin-left: 200px;
    color: #fff;
}

.banner-leftbox .titlebox p {
    font-size: 22px;
    margin: 0;
    /* font-weight: lighter; */
    color: rgba(255, 255, 255, 1);
}

.banner-leftbox .titlebox h1 {
    font-size: 40px;
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
}

.banner-rightbox {
    background-image: url(/webpic/bannerimg2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 380px;
    margin-top: 0px;
    margin-left: 0px;
    /* padding-top: 150px; */
}

/* 每个页面模块的标题 一个大标题 +  小文字*/
.page-title-box {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.page-title-box .page-title-info {
    width: 600px;
    margin: 0 auto;
}

.page-title-box .page-title-info h1 {
    font-size: 36px;
    margin: 0;
    font-weight: normal;
    color: #008cd7;
}

.page-title-box .page-title-info p {
    font-size: 14px;
    margin: 10px 0 0 0;
    color: #666666;
}

/* 首页 关于 box */
.home-about-box {
    width: 100%;
    background-image: url(/webpic/about.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    border-top: #d0dde3 1px solid;
    border-bottom: #d0dde3 1px solid;
}

.home-about-box .about-left-box h2 {
    font-size: 30px;
    margin: 0;
    font-weight: normal;
    color: #008cd7;
    margin-bottom: 10px;
}

.home-about-box .about-left-box p {
    font-size: 16px;
    margin: 0;
    color: #333;
    margin-bottom: 10px;
    line-height: 30px;
    text-indent: 2em;
}

.home-about-box .about-right-picbox {
    text-align: center;
    margin-top: 60px;
}

.home-about-box .about-right-picbox .about-right-pic img {
    width: 80%;
    border-radius: 10px;
}

.home-about-box .about-right-picbox h3 {
    font-size: 36px;
    font-family: 'helvetica';
    margin: 0;
    color: #EF8201;
    margin-bottom: 10px;
}

.home-about-box .about-right-picbox p {
    font-size: 16px;
    margin: 0;
    color: #666;
    line-height: 30px;
    text-indent: 0em;
}

.home-about-box .about-button-boxs {
    display: flex;
    /* 开启Flex布局，子元素默认横向排列 */
    justify-content: space-between;
    /* 子元素两端对齐（可选，常用值还有center/space-around） */
    align-items: center;
    /* 子元素垂直居中（可选） */
    gap: 80px;
    /* 子元素之间的间距（替代margin，更简洁） */
    width: 100%;
    /* 父容器宽度，可自定义 */
    padding: 10px;
    box-sizing: border-box;
}

.home-about-box .about-button-boxs .about-button-box {
    width: 100%;
    /* 自定义宽度 */
    height: 280px;
    /* 自定义高度 */

    color: white;
    text-align: center;
    line-height: 80px;
    background-color: #fff;
    border-radius: 10px;
}

.home-about-box .about-button-boxs .about-button-box1 {
    background-image: url(/webpic/img_01.png);
    background-size: auto 220px;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.home-about-box .about-button-boxs .about-button-box2 {
    background-image: url(/webpic/img_03.png);
    background-size: auto 220px;
    ;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.home-about-box .about-button-boxs .about-button-box3 {
    background-image: url(/webpic/img_04.png);
    background-size: auto 220px;
    ;
    background-repeat: no-repeat;
    background-position: right bottom;
}

.home-about-box .about-button-boxs .about-button-info {
    width: 35%;
    color: #333;
    margin: 20px;
    text-align: left;
}

.home-about-box .about-button-boxs .about-button-info h3 {
    font-size: 30px;
    text-align: left;
    margin: 0;
    padding: 0;
    font-weight: normal;
}

.home-about-box .about-button-boxs .about-button-info img {
    width: 80px;
    margin-top: 40px;
    margin-left: 20px;
}


/* 轮播图 */
.lunbo-box {
    width: 100%;
    height: 500px;
    background-image: url(/webpic/banner.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 80px;
}


/* 首页 关于 box2 */
.home-about2-box {
    width: 100%;
    background-image: url(/webpic/6878c4e088643.jpg);
    background-color: rgba(255, 255, 255, 0.9);
    /* 新增：半透明白色背景 */
    background-blend-mode: lighten;
    /* 新增：混合模式，让图片变淡 */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    padding-bottom: 80px;
    border-top: #d0dde3 1px solid;
    border-bottom: #d0dde3 1px solid;
    text-align: center;
}

.home-about2-box img {
    width: 80px;
}

.home-about2-box h3 {
    font-size: 26px;
    text-align: center;
    margin: 20px 0;
    padding: 0;
    line-height: normal;
}

.home-about2-box p {
    font-size: 16px;
    margin: 0;
    color: #666;
    line-height: 30px;
    text-indent: 0em;
}


/* 首页 新闻 */
.home-news-box {
    width: 100%;
    background-image: url(/webpic/ad_bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0;
    padding-bottom: 80px;
    border-top: #d0dde3 1px solid;
    border-bottom: #d0dde3 1px solid;
    text-align: center;
}

.home-news-box .news-box {
    text-align: left;
}

.home-news-box .news-box .news-item {
    background-color: #fff;
    padding: 20px;
}

.home-news-box .news-box .news-item-left {
    height: auto;
}

.home-news-box .news-box .news-item-left img {
    width: 100%;
    height: 230px;
}

.home-news-box .news-box .news-item-left .news-title {
    font-size: 20px;
    margin: 10px 0;
    /* font-weight: lighter; */
    color: #008cd7;
    margin-bottom: 10px;
}

.home-news-box .news-box .news-item-right .news-title {
    font-size: 20px;
    margin-bottom: 10px;
    /* font-weight: lighter; */
    color: #000000;
    margin-bottom: 10px;
}

.home-news-box .news-box .news-item-left .news-date {
    font-size: 20px;
    color: #999;
}

.home-news-box .news-box .news-item-right .news-date {
    text-align: center;
    color: #008cd7;
}

.home-news-box .news-box .news-item-right .news-date-day {
    font-size: 40px;
    font-weight: bold;
    font-family: 'FUTURA-MD-BT-MEDIUM';
    padding: 0;
    margin: 0;
}

.home-news-box .news-box .news-item-right .news-date-month {
    font-size: 12px;
    font-family: 'FUTURA-MD-BT-MEDIUM';
}

.home-news-box .news-box .news-item-left .news-summary {
    font-size: 14px;
    line-height: 22px;
    color: #333;
}

.home-news-box .news-box .news-item-right .news-summary {
    font-size: 14px;
    line-height: 22px;
    color: #888888;
}



/* 热销产品 */
.hot-pro-box {
    width: 100%;
    height: 400px;
    margin-bottom: 80px;
    margin-top: 40px;
    display: flex;
    /* 开启Flex布局，子元素默认横向排列 */
    justify-content: space-between;
    /* 子元素两端对齐（可选，常用值还有center/space-around） */
    align-items: center;
    /* 子元素垂直居中（可选） */
    width: 100%;
    /* 父容器宽度，可自定义 */
    box-sizing: border-box;

}

.hot-pro-item {
    width: 300px;
    height: 100%;
    text-align: center;
}

.hot-pro-item .hot-pro-img {
    width: 100%;
    height: 260px;
    background-color: #f2f3f7;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;    
}


.hot-pro-item h3 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: normal;
    color: #008cd7;
    margin-bottom: 10px;
}

.hot-pro-item p {
    font-size: 14px;
    margin: auto;
    margin-bottom: 20px;
    color: #666;
    line-height: 20px;
    text-indent: 0em;
    width: 200px;

}


/* 底部 */
.footer {
    background-color: #006ba5;
    padding: 40px 0;
}

.footer-top-content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.footer-top-email {
    text-align: right;
    font-family: 'Aeonik-Medium';
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-content {
    color: #fff;
    font-size: 14px;
}

.footer-left {
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-left h1 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: normal;
}

.footer-left-item {
    width: 25%;
    color: rgba(255, 255, 255, 0.8);
    line-height: 30px;
}

.footer-left-item a{
    color: rgba(255, 255, 255, 0.8);
}
.footer-left-item a:hover{
    color: rgba(255, 255, 255, 1);
}

.footer-right {
    color: rgba(255, 255, 255, 0.8);
    line-height: 30px;
}

.footer-right h1 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: normal;
}



.partner-section {
    margin-bottom: 80px;
}

#swiper3 {
    text-align: center;
}

.copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
    padding: 10px 0;
    background-color: #616669;
}
.copyright a{
    color: rgba(255, 255, 255, 0.8);
}
.copyright a:hover{
    color: rgba(255, 255, 255, 1);
}


/* 二级页面的banner */
.page-banner-bg {
    /* background-image: url(../webpic/6878c4e088643.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    height: 360px; */
    height: 150px;
}

/* 二级页面  联系方式 */
.page-contact-box {
    background: #f0f0f0;
    border: 1px solid #ddd;
    padding: 50px;
}

.page-contact-box .contact-img {
    text-align: center;
}

.page-contact-box .contact-img img {
    width: 60px;
}

.page-contact-box .contact-title {
    text-align: center;
    font-size: 22px;
    color: #008cd7;
    margin: 20px 0;
    font-weight: normal;
}

.page-contact-box .contact-title2 {
    text-align: center;
    font-size: 22px;
    color: #008cd7;
    margin: 20px 0;
}

.page-contact-box .contact-info {
    text-align: center;
    font-size: 16px;
    color: #333;
    line-height: 30px;
}

.map-box {
    width: 100%;
    margin: 0px auto;
    text-align: center;
}

.map-bgimg {
    width: 100%;
    height: 600px;
    background-image: url(/webpic/about_syn_bg.jpg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    padding: 80px 0 0 0;
}

.map-bgimg img {
    width: 120px;
    border-radius: 10px;
}

.map-bgimg h3 {
    font-size: 36px;
    font-family: 'helvetica';
    margin: 0;
    color: #EF8201;
    margin-bottom: 10px;
}

.map-bgimg p {
    font-size: 16px;
    margin: 0;
    color: #666;
    line-height: 30px;
    text-indent: 0em;
}


/* 内页 关于 box */
.page-about-box {
    width: 100%;
    background-image: url(/webpic/main-bg-3.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0;
    border-top: #d0dde3 1px solid;
    border-bottom: #d0dde3 1px solid;
}

.page-about-box .bgs {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 20px;
}

.page-about-box .bgs h2 {
    font-size: 30px;
    margin: 0;
    font-weight: normal;
    color: #008cd7;
    margin-bottom: 10px;
    text-align: center;
}

.page-about-box .bgs p {
    font-size: 16px;
    margin: 0;
    color: #333;
    margin-bottom: 10px;
    line-height: 30px;
    text-indent: 2em;
}

.about-pic1 {
    background-image: url(/webpic/hxld.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    line-height: auto;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}

.about-pic2 {
    background-image: url(/webpic/hxjzg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    line-height: auto;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}

.about-pic3 {
    background-image: url(/webpic/jyln.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    padding: 20px;
    border-radius: 10px;
    text-align: right;
    line-height: auto;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}

.about-pic4 {
    background-image: url(/webpic/jsypz.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    line-height: auto;
    color: #fff;
    font-size: 30px;
    font-weight: normal;
}

.about-textbox {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    height: auto;
}

.about-textbox h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
    font-weight: normal;
    color: #008cd7;
}

.about-textbox p {
    font-size: 16px;
    margin: 0;
    color: #333;
    line-height: 30px;
}




/* 产品页面 */
.prolist-bg {
    background: #f5f5f5;
}

.prolist-box {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    box-sizing: border-box;
}

.prolist-nav-box {
    position: relative;
    width: 300px;
    border-left: 1px solid #e2e2e2;
    padding: 50px 30px;    
}


.prolist-nav-fixed {
    position: fixed;
    width: 300px;
    top: 200px;
    box-sizing: border-box;
}
.prolist-nav-fixed-bottom {
    position: absolute;
    width: 300px;
    bottom: 80px;
    box-sizing: border-box;
}

.prolist-nav p {
    display: block;
    font-size: 18px;
    line-height: 50px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 30px;
    padding: 0px 20px;
}

.prolist-nav p a {
    color: #333;
    text-decoration: none;
    display: block;
}

.prolist-nav p a:hover {
    color: #ffffff;
}

.prolist-nav p:hover {
    color: #ffffff;
    text-decoration: none;
    display: block;
    background-color: #ef8201;

}

/* 插入过渡效果：平滑颜色与背景色变化 */
.prolist-nav p a,
.prolist-nav p {
    -webkit-transition: color .25s ease, background-color .25s ease;
    -moz-transition: color .25s ease, background-color .25s ease;
    transition: color .25s ease, background-color .25s ease;
}

.prolist-nav p.selected {
    color: #ffffff;

    display: block;
    background-color: #ef8201;
}

.prolist-spro {
    padding: 50px 0;
    padding-right: 50px;
    width: 100%;
    box-sizing: border-box;
}

.product-item-box {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
    width: 100%;
    box-sizing: border-box;
}

.product-item-box-left {
    padding: 30px;
    position: relative;
    height: 240px;
}
.product-item-box-left .product-item-btn-box {
    position: absolute;
    left: 30px;
    bottom: 0px;
}

.product-item-box-left h1 {
    font-size: 24px;
    margin: 0 0 0px 0;
    font-weight: normal;
    color: #000;
}

.product-item-box-left p {
    font-size: 14px;
    margin: 10px 0;
    font-weight: normal;
    color: #666;
    text-align: justify;
    text-justify: inter-ideograph;
}

.product-item-box-right {
    background-color: #f1f3f5;
    width: 100%;
    height: 300px;
    box-sizing: border-box;
    border-radius: 10px;
}
.product-item-box-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-banner-box {
    background-image: url(/webpic/product-main-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 400px;
    padding: 0;
    padding-top: 200px;
    padding-bottom: 5px;
}
.product-banner-box-left {
    padding-left: 50px;
}
.product-banner-box-right {
    padding-left: 50px;
}
.product-banner-box-right h2 span {
    font-size: 20px;
    color: #000000;
    line-height: 20px;
    padding: 0;
    height: 20px;
    font-weight: normal;
}
.product-banner-box-right h1 {
    font-size: 40px;
    color: #000;
    line-height: 36px;
    padding: 0;
    height: 36px;
    display: block;
    margin: 20px 0;
    font-weight: normal;
}
.product-banner-box-right ul li {
    font-size: 14px;
    line-height: 24px;   
}

.pro-detail-box {
    margin: 50px 0;
}
.pro-detail-box h1 {
    font-size: 30px;
    margin: 0 0 10px 0;
    font-weight: 500;
    color: #000;
    display: block;
    text-align: center;
}
.pro-detail-box p {
    font-size: 16px;
    margin: 0 0 10px 0;
    font-weight: normal;
    color: #666;
    display: block;
    padding: 0 30px;
    /* text-indent: 2em; */
}
.pro-detail-imgs {
    text-align: center; 
}
.pro-detail-imgs img{
    width: 100%;
    height:auto;
    object-fit: contain;
    border-radius: 20px;
}
.prodataimg img {
    max-width: 800px;

    border-radius: 20px;
}

/* 新闻页面 */
.page-news-box {
    margin-bottom: 50px;
}

.page-news-box-img {
    text-align: right;
}
.page-news-box-img img {
    width: 100%;
    height: 120px;
}
.news-title {
    font-size: 18px;
    margin-bottom: 10px;
}
.news-title a{
    color: rgb(0, 0, 0)
}
.news-title a:hover{
    color: rgba(239, 130, 1, 1);
}
.news-summary {
    font-size: 15px;
    margin-bottom: 10px;
    color: #999;
}
.news-year {
    font-size: 30px;
    color: #999;
}
.news-month {
    font-size: 15px;
    color: #c0c0c0;
}
.news-line {
    width: auto;
}
.news-line hr {
    border: none;
    height: 2px;
    background-color: #e9e9e9;
}