/*全局*/
html, body {
    margin:0;
    padding:0;
    width: 100%;
    height:100%;
    color: #292c35;
    background: #fff;
    font-size: 16px;
}
p {
    margin: 0;
    padding: 0;
}
img {
    border:0;
}
ul,li {
    list-style:none;
    margin:0;
    padding:0
}
a {
    color: #292c35;
    text-decoration: none;
}
a:hover {
    color: #008aef;
}

.m_ctr {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.m_ctt {
    margin: 0 auto;
    width: 1200px;
    height: auto;
}

/*loading*/
.loader_ctr {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999999999;
    background: rgba(255,255,255,1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: l2 1s infinite linear;
}
@keyframes l2 {to{transform: rotate(1turn)}}

/*头部导航*/
.header,.header_on {
    position: fixed;
    width: 100%;
    height: 60px;
    background:rgba(0,0,0,0.1);
    left: 0;
    top: 0;
    z-index: 999;
}

.header_on {
    background: #fff;
    display: none;
}

.header_ctr {
    margin: 0 auto;
    width: 1200px;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header_logo {
    margin: 12px auto;
    width: 190px;
    height: 36px;
    display: flex;
    flex-direction: row;
}

.header_logo img {
    width: auto;
    height: 100%;
}

.header_ctt {
    flex: 1;
    display: flex;
    flex-direction: row;
}

.header_nav,.header_nav_on {
    margin: 0 10px;
    width: 88px;
    height: 60px;
    color: #fff;
    transition: transform 0.3s; /* 动画持续时间 */
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.header_nav:hover,.header_nav_on:hover {
    transform: translateY(-2px);
}

.header_nav_on span {
    color: #008aef;
}

.header_nav a {
    color: #fff;
}

.header_nav_on,.header_nav_on a {
    color: #292c35;
}

.header .header_ej_nav_ctr,.header_on .header_ej_nav_ctr {
    position: absolute;
    width: 140px;
    height: auto;
    left: -30px;
    top: 60px;
    z-index: 8;
    background: #fff;
    padding: 0 0 5px;
    display: none;
}

.header .header_ej_nav_ctr {
    top: 61px;
    background:rgba(0,0,0,0.1);
}

.header .header_ej_nav,.header_on .header_ej_nav {
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

.header_right {
    width: 260px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.header_btn,.header_btn_on {
    margin-left: 12px;
    width: auto;
    height: 32px;
    padding: 0 16px;
    line-height: 32px;
    border-radius: 16px;
    background: #fff;
    color: #008aef;
    cursor: pointer;
    font-size: 14px;
}

.header_btn_on {
    background: #008aef;
    color: #fff;
}

.header_btn_on:hover {
    background: #2CA6F2;
}

.header_login_txt,.header_login_txt_on {
    padding-left: 20px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.header_login_txt_on {
    color: #008aef;
}

.header_user_ctr {
    margin-left: 10px;
    width: auto;
    height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    padding: 0 5px;
}

.header_user_pic {
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #f8f8f8;
    cursor: pointer;
}

.header_user_pic img {
    width: 32px;
    height: 32px;
    border-radius: 16px;
}

.header_user_ctt {
    position: absolute;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #fff;
    left: 0;
    top: 60px;
    z-index: 8;
    border-radius: 0 0 10px 10px;
    display: none;
}

.header_user_btn {
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
}

.header_user_btn:hover {
    background: #f6f6f6;
}

.header_wap_nav,.header_wap_nav_on {
    margin-left: 10px;
    display: none;
    color: #fff;
}

.header_wap_nav_on {
    color: #008aef;
}

.header_wap_nav i,.header_wap_nav_on i {
    font-size: 20px;
}

.header_wap_nav_ctr {
    position: fixed;
    left: 0;
    top: 60px;
    width: 100%;
    height: calc(100% - 60px);
    z-index: 999999999;
    background: #fff;
    display: none;
}

.header_wap_btn {
    margin: 0 auto;
    width: 100%;
    height: 52px;
    line-height: 52px;
    border-bottom: 1px #f2f2f2 solid;
    text-align: center;
}

/*底部*/
.footer {
    margin: 0 auto;
    width: 100%;
    height: auto;
    background: #232840;
}

.footer_ctr {
    margin: 0 auto;
    width: 1200px;
    height: auto;
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer_ctt {
    width: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.footer_title {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    border-bottom: 1px #2c3151 solid;
}

.footer_txt {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.footer_txt a {
    color: #bbb;
}

.footer_txt a:hover {
    color: #fff;
}

.footer_tel_ctr {
    width: 270px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.footer_tel {
    width: 100%;
    height: 50px;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    text-align: right;
}

.footer_pic_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer_pic {
    width: 120px;
    height: auto;
}

.footer_pic img {
    width: 100%;
    height: auto;
}

.copyright {
    margin: 0 auto;
    width: 100%;
    height: auto;
    background: #232840;
    border-top: 1px #2c3151 solid;
}

.copyright_ctr {
    margin: 0 auto;
    width: 1200px;
    height: auto;
    line-height: 52px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    color: #aaa;
}

.copyright_ctr a {
    color: #aaa;
}

.copyright_ctr a:hover {
    text-decoration: underline;
}

/*右侧导航*/
.right_ctr {
    width: 70px;
    height: auto;
    border-radius: 35px;
    background: #fff;
    box-shadow: 0 0 1px #bbb;
    position: fixed;
    right: 20px;
    bottom: 50px;
    z-index: 99;
}
.right_ctt {
    width: 100%;
    height: auto;
    border-bottom: 1px #eee solid;
    background: #fff;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #666;
    font-size: 14px;
}

.right_ctt i {
    font-size: 26px;
    color: #008aef;
}

.right_ctt .span {
    margin-top: 2px;
}

.right_ctt:hover {
    background: #008aef;
    border-bottom: 1px #008aef solid;
    color: #fff;
}

.right_ctt:hover i {
    color: #fff;
}

.none_ctr {
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.none_pic {
    margin: 0 auto;
    width: 280px;
    height: 280px;
}

.none_pic img {
    width: 100%;
    height: auto;
}

.none_txt {
    margin-bottom: 20px;
    width: 100%;
    color: #ccc;
    text-align: center;
}

/*首页*/
.slide_ctr {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.slide_ctr img {
    width: 100%;
    height: auto;
}

.swiper-pagination-bullet-active {
    background-color: #fff
}

/*公告*/
.notice_ctr {
    margin: 0 auto;
    width: 100%;
    height: 60px;
    border-bottom: 1px #e2e9fd solid;
    box-shadow: 0 0 8px #ddd;
}

.notice_ctt {
    margin: 0 auto;
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.notice_ico {
    margin: 10px 12px 0 0;
    width: auto;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notice_ico i {
    color: #008aef;
    font-size: 20px;
}

.notice_right {
    margin-top: 10px;
    flex: 1;
    height: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
}

.notice_txt {
    line-height: 40px;
    margin-right: 20px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.notice_txt span {
    padding-left: 12px;
    color: #999;
}

/*首页标题*/
.index_title {
    margin: 0 auto;
    width: 100%;
    font-size: 28px;
    padding-top: 30px;
    text-align: center;
}
.index_title_txt {
    margin: 0 auto;
    width: 100%;
    color: #8691a5;
    text-align: center;
    padding: 10px 0 30px;
}
/*我们的产品*/
.row_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.more_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.more_btn {
    margin-bottom: 30px;
    width: 120px;
    height: 36px;
    line-height: 36px;
    border-radius: 18px;
    border: 2px #008aef solid;
    background: #fff;
    color: #008aef;
    text-align: center;
    box-shadow: 0 0 10px #eee;
    cursor: pointer;
}

.more_btn:hover {
    background: #008aef;
    color: #fff;
}

.index_goods_ctr {
    margin-bottom: 30px;
    width: 48%;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 20px;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateY(0); /* 初始状态，元素在原位置 */
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.index_goods_ctr img {
    width: 80%;
    height: auto;
    border-radius: 20px;
}

.index_goods_ctr:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px #ddd;
}

.index_goods_ctt {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5;
    padding: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.index_goods_pic {
    position: absolute;
    width: 68%;
    height: auto;
    top: 8%;
    right: 10px;
    z-index: 2;
}

.index_goods_pic img {
    width: 100%;
    height: auto;
}

.index_goods_title {
    width: 100%;
    font-size: 28px;
    line-height: 40px;
}

.index_goods_info {
    width: 50%;
    line-height: 22px;
    padding: 12px 0 26px;
    color: #555;
}

.index_goods_btn,.index_goods_btn1 {
    width: 120px;
    height: 36px;
    border-radius: 18px;
    background: #008aef;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.index_goods_btn .span {
    margin: 2px 0 0 2px;
}

.index_goods_btn1 {
    background: #999;
}

.index_goods_btn:hover {
    background: #2CA6F2;
}

/*产品特色*/
.index_ts_ctr {
    margin-bottom: 30px;
    width: 23%;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 12px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: scale(1);
    background: #fff;
    cursor: pointer;
}

.index_ts_ctr:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px #ddd;
}

.index_ts_pic,.product_ts_pic {
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
}

.index_ts_pic img,.product_ts_pic img {
    width: 100%;
    height: auto;
}

.index_ts_title {
    width: 100%;
    line-height: 52px;
    font-size: 18px;
    text-align: center;
    color: #292c35;
}

.index_ts_info {
    width: 100%;
    line-height: 24px;
    color: #8691a5;
}

/*客户*/
.index_case_ctr {
    margin: 10px 0 32px 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.index_case_ctt {
    margin: 0 3.5%;
    width: 10%;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 10px;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateY(0);
    cursor: pointer;
}

.index_case_ctt img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.index_case_ctt:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 10px #ddd;
}

/*特卖插件*/
.index_addons_ctr {
    margin-bottom: 30px;
    width: 18%;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateY(0);
    background: #fff;
    cursor: pointer;
}

.index_addons_ctr:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px #ddd;
}

.index_addons_pic {
    margin: 0 auto;
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.index_addons_pic img {
    width: 100%;
    height: auto;
    border-radius: 12px 12px 0 0;
}

.index_addons_title {
    margin: 10px 0 8px;
    width: 100%;
    display: -webkit-box;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 10px;
    box-sizing: border-box;
    color: #292c35;
}

.index_addons_price_ctr {
    margin: 0 0 10px;
    width: 100%;
    height: auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

.index_addons_price {
    color: #e7462c;
    font-size: 18px;
}

.index_addons_price span {
    font-size: 14px;
    padding-right: 4px;
}

.index_addons_hits {
    font-size: 14px;
    color: #999;
}

/*新闻*/
.index_news_ctr {
    margin-bottom: 30px;
    width: 31%;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
}

.index_news_title {
    width: 100%;
    height: 48px;
    background: #008aef;
    border-radius: 12px 12px 0 0;
    color: #fff;
    font-size: 18px;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.index_news_title .more {
    font-size: 14px;
}

.index_news_title .more a {
    color: #fff;
}

.index_news_title .more a:hover {
    text-decoration: underline;
}

.index_news_ctt {
    width: 100%;
    height: 343px;
    padding: 5px 20px 20px;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.index_news_cell {
    width: 100%;
    height: auto;
    border-bottom: 1px #f6f6f6 solid;
}

.index_news {
    width: 100%;
    height: 52px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateX(0);
}

.index_news:hover {
    transform: translateX(8px);
}

.index_news_ico0,.index_news_ico1,.index_news_ico2,.index_news_ico3,.index_news_ico4,.index_news_ico5,.index_news_ico6,.index_news_ico7,.index_news_ico8,.index_news_ico9,.index_news_ico10 {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background: #ccc;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: #fff;
}

.index_news_ico0 {
    background: #fb7e55;
}

.index_news_ico1 {
    background: #fba642;
}

.index_news_ico2 {
    background: #f9c746;
}

.index_news_txt {
    flex: 1;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*二级页面*/
.ej_banner_ctr {
    margin: 60px 0 0;
    width: 100%;
    height: auto;
    background: #f6f9fe;
    border-bottom: 1px #e2e9fd solid;
}

.ej_banner_ctt {
    margin: 0 auto;
    width: 1200px;
    height: 260px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.ej_banner_left {
    width: 600px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.ej_banner_title {
    width: 100%;
    font-size: 36px;
}

.ej_banner_title span {
    color: #bbb;
    font-size: 26px;
}

.ej_banner_line {
    margin: 20px 0;
    width: 50px;
    height: 6px;
    background: #008aef;
    border-radius: 3px;
}

.ej_banner_txt {
    color: #8691a5;
}

.ej_banner_pic {
    width: 400px;
    height: 180px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.ej_banner_pic img {
    width: auto;
    height: 100%;
}

.ej_nav_ctr {
    width: 100%;
    height: auto;
    border-bottom: 1px #e2e9fd solid;
}

.ej_nav_ctt {
    margin: 0 auto;
    width: 1200px;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ej_nav_ctr1 {
    margin-top: 60px;
    width: 100%;
    height: auto;
    border-top: 1px #e2e9fd solid;
    background: #f3f8fe;
}

.ej_nav_path {
    margin: 0 auto;
    width: 1200px;
    height: 60px;
    line-height: 60px;
    color: #666;
    font-size: 14px;
}

.ej_nav_path a {
    color: #666;
}

.ej_nav_path a:hover {
    color: #008aef;
}

.ej_nav_left {
    flex: 1;
    min-height: 72px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.ej_nav_search {
    width: 300px;
    height: 72px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.ej_nav_search_input {
    width: 190px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px #eee solid;
    padding: 0 40px 0 20px;
    border-radius: 20px;
    color: #555;
}

.ej_nav_search_btn {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #008aef;
    border-radius: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 20px;
    right: 5px;
    z-index: 6;
    cursor: pointer;
}

.ej_nav_search_btn:hover {
    background: #2CA6F2;
}

.ej_nav,.ej_nav_on {
    margin: 5px 10px;
    width: auto;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border: 1px #eee solid;
    padding: 0 20px;
    border-radius: 20px;
    cursor: pointer;
}

.ej_nav_on,.ej_nav:hover {
    background: #008aef;
    border: 1px #008aef solid;
    color: #fff;
}

.ej_ctr {
    margin: 0 auto;
    width: 100%;
    min-height: 200px;
    padding: 30px 0;
}

.page_ctr {
    margin: 0 auto;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

/*新闻*/
.news_ctr {
    margin-bottom: 16px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #fff;
    cursor: pointer;
    padding: 16px;
}

.news_pic {
    margin: 0 20px 0 0;
    width: 28%;
    height: auto;
    overflow: hidden;
    background: #fbfbfb;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.news_pic img {
    width: 100%;
    height: auto;
}

.news_ctt {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news_title {
    width: 100%;
    display: -webkit-box;
    height: 36px;
    line-height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: bold;
    font-size: 18px;
}

.news_info {
    width: 100%;
    display: -webkit-box;
    height: 48px;
    line-height: 24px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 14px;
    color: #888;
}

.news_date {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999;
}

.news_date i {
    margin-right: 6px;
}

/*产品页面*/
.product_banner_ctt {
    margin: 0 auto;
    width: 1200px;
    height: 260px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.product_banner_ico {
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 10px;
    background: #fff;
    top: 120px;
    left: 0;
    z-index: 8;
    box-shadow: 0 0 8px #eee;
    display: none;
}

.product_banner_left {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product_banner_title {
    width: 100%;
    font-size: 36px;
    line-height: 66px;
}

.product_banner_btn_ctr {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product_banner_btn {
    margin: 20px 20px 0 0;
    width: 102px;
    height: 36px;
    border-radius: 18px;
    border: 2px #008aef solid;
    background: #fff;
    color: #008aef;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.product_banner_btn:hover {
    background: #008aef;
    color: #fff;
}

.product_banner_pic {
    width: 400px;
    height: 220px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.product_banner_pic img {
    width: auto;
    height: 100%;
}

.product_title {
    margin: 0 auto;
    width: 100%;
    height: 44px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

.product_title_line {
    margin: 0 auto;
    width: 40px;
    height: 6px;
    border-radius: 3px;
    background: #008aef;
}

.product_ctr,.product_ctr1 {
    margin: 0 auto;
    width: 100%;
    height: auto;
    padding: 30px 0;
}

.product_ctr1 {
    background: #f6f9fe;
}

.product_pic {
    width: 480px;
    height: auto;
}

.product_pic img {
    width: 100%;
    height: auto;
}

.product_js_ctr {
    width: 690px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_js_title {
    width: 100%;
    height: 46px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

.product_js_info {
    width: 100%;
    height: auto;
    line-height: 30px;
    color: #555;
}

.product_ts_pic {
    width: 100px;
    height: 100px;
}

.product_price_ctr {
    margin-top: 30px;
    width: 390px;
    height: auto;
    box-shadow: 0 0 10px #eee;
    border-radius: 20px;
    padding: 20px;
    box-sizing: border-box;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateY(0); /* 初始状态，元素在原位置 */
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product_price_ctr:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 10px #ddd;
}

.product_price_hot {
    position: absolute;
    width: 110px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border-radius: 0 20px 0 20px;
    top: 0;
    right: 0;
    z-index: 8;
    color: #fff;
    background: #f86342;
    font-size: 14px;
}

.product_price_bb {
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 20px;
    background: #fff9f9;
    border: 1px #fedad2 solid;
    color: #f86342;
}

.product_price {
    margin: 10px 0;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    font-size: 36px;
}

.product_price .span {
    margin: 20px 0 0 8px;
    font-size: 16px;
    color: #ccc;
}

.product_info {
    width: 100%;
    height: 40px;
    line-height: 40px;
}

.product_fg {
    margin: 20px 0;
    width: 100%;
    height: 1px;
    background: #f2f2f2;
}

.product_txt {
    width: 100%;
    height: 34px;
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #8691a5;
}

.product_txt .ico i {
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
    color: #f86342;
}

.product_btn {
    margin-top: 15px;
    width: 100%;
    height: 46px;
    line-height: 46px;
    background: #f86342;
    border-radius: 5px;
    box-shadow: 0 0 8px #eee;
    color: #fff;
    text-align: center;
}

.product_btn:hover {
    background: #ed522f;
}

.product_version {
    margin-top: 30px;
    width: 1198px;
    height: auto;
    border: 1px #f3f3f3 solid;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.product_version_head_ctr {
    width: 100%;
    height: auto;
    background: #fff9f9;
    border-radius: 20px 20px 0 0;
    display: flex;
    flex-direction: row;
}

.product_version_head,.product_version_head1 {
    width: 240px;
    height: 60px;
    color: #666;
    border-right: 1px #f3f3f3 solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.product_version_head1 {
    flex: 1;
    font-weight: bold;
    color: #292c35;
}

.product_version_txt_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
}

.product_version_txt,.product_version_txt1 {
    width: 240px;
    height: 56px;
    color: #666;
    border-top: 1px #f3f3f3 solid;
    border-right: 1px #f3f3f3 solid;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 30px;
    box-sizing: border-box;
}

.product_version_txt1 {
    padding-left: 0;
    flex: 1;
    color: #8691a5;
    align-items: center;
}

.product_version_txt1 .yes {
    font-size: 18px;
    color: #00ac5e;
}

.product_version_txt1 .no {
    font-size: 18px;
    color: #ed522f;
}

.product_question_title {
    width: 100%;
    height: 40px;
    color: #ed522f;
}

.product_question_txt {
    width: 100%;
    height: 40px;
}

/*市场列表*/
.store_left,.news_left {
    width: 930px;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.store_left {
    justify-content: flex-start;
}

.store_left .index_addons_ctr {
    margin-right: 1%;
    margin-left: 1%;
    width: 23%
}

.store_right,.news_right {
    width: 240px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
}

.news_left {
    width: 820px;
}

.news_left_ctt {
    width: 100%;
    min-height: 480px;
    border-radius: 12px;
    background: #fff;
    padding: 20px;
    box-sizing: border-box;
}

.news_show_title {
    width: 100%;
    line-height: 34px;
    font-size: 24px;
}

.news_show_info {
    padding-top: 10px;
    width: 100%;
    line-height: 32px;
}

.news_show_info img {
    max-width: 100%;
    height: auto;
}

.news_right {
    width: 350px;
}

.store_right_title {
    margin: 0 auto;
    width: 100%;
    height: 50px;
    border-bottom: 1px #f6f6f6 solid;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
    box-sizing: border-box;
    font-weight: bold;
}

.circle-ring {
    width: 8px;
    height: 8px;
    border: 5px solid #ed522f; /* 设置边框宽度和颜色 */
    border-radius: 50%; /* 圆形 */
    background: #fff;
}

.store_right_txt {
    width: auto;
    padding-left: 10px;
}

.store_right_ctt {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 8px 16px;
    box-sizing: border-box;
}

.store_hot_ctr {
    margin: 8px 0;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: scale(1);
}

.store_hot_ctr:hover {
    transform: scale(1.03);
}

.store_hot_pic {
    margin: 0 auto;
    width: 100%;
    height: auto;
}

.store_hot_pic img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.store_hot_title {
    margin: 10px 0 8px;
    width: 100%;
    display: -webkit-box;
    height: 22px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #292c35;
}

.store_hot_price_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}

/*商品详情*/
.goods_ctr {
    margin-bottom: 20px;
    width: 930px;
    height: auto;
    background: #fff;
    border-radius: 10px;
}

.goods_ctt {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
}

.goods_pic {
    width: 300px;
    height: 300px;
}

.goods_pic img {
    width: 100%;
    height: 100%;
}

.goods_right {
    margin-left: 30px;
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: column;
}

.goods_title {
    width: 100%;
    line-height: 30px;
    font-size: 20px;
    padding: 5px 0 10px 0;
}

.goods_subtitle {
    width: 100%;
    font-size: 14px;
    color: #999;
}

.goods_subtitle span {
    color: #f86342;
}

.goods_price {
    margin: 16px 0 10px;
    width: 100%;
    height: 50px;
    background: #f8f8f8;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    box-sizing: border-box;
    color: #ed522f;
    font-size: 26px;
}

.goods_price span {
    font-size: 20px;
}

.goods_price_txt {
    font-size: 14px;
    color: #ed522f;
}

.goods_cell_ctr,.goods_cell_ctr1 {
    width: 100%;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.goods_cell_ctr1 {
    height: 30px;
}

.goods_cell_txt {
    margin-right: 10px;
    width: auto;
    height: 30px;
    line-height: 30px;
    color: #f86342;
    font-size: 14px;
    cursor: pointer;
}

.goods_cell_title {
    width: 42px;
    font-size: 14px;
    color: #999;
    overflow: hidden;
}

.goods_cell_btn,.goods_cell_btn_on {
    margin-right: 10px;
    width: auto;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
    cursor: pointer;
    border: 1px #ddd solid;
    background: #fff;
    border-radius: 5px;
    padding: 0 12px;
    color: #555;
}

.goods_cell_btn_on {
    border: 1px #f86342 solid;
    color: #f86342;
}

.goods_amount_ctr {
    width: auto;
    height: 32px;
    line-height: 32px;
    cursor: pointer;
    border: 1px #ddd solid;
    border-radius: 5px;
    color: #555;
    display: flex;
    flex-direction: row;
}

.goods_amount_btn,.goods_amount_btn_on {
    width: 40px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
}

.goods_amount_btn {
    color: #999;
}

.goods_amount_input {
    border: 0;
    border-left: 1px #ddd solid;
    border-right: 1px #ddd solid;
    width: 52px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    color: #555;
}

.goods_buy {
    margin-left: 42px;
    margin-top: 5px;
    width: 100px;
    height: 36px;
    line-height: 36px;
    background: #f86342;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    cursor: pointer;
}

.goods_buy:hover {
    background: #ed522f;
}

.goods_nav_ctr {
    width: 100%;
    height: 52px;
    background: #fbfbfb;
    border-bottom: 1px #f1f1f1 solid;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.goods_nav_ctt {
    position: absolute;
    width: 100%;
    height: 53px;
    left: 0;
    top: 0;
    z-index: 5;
    display: flex;
    flex-direction: row;
}

.goods_nav,.goods_nav_on {
    width: 110px;
    height: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.goods_nav_on {
    height: 50px;
    background: #fff;
    border-bottom: 1px #fff solid;
    border-top: 2px #ed522f solid;
    border-radius: 4px 4px 0 0;
    color: #ed522f;
    font-weight: bold;
}

.goods_info {
    width: 100%;
    min-height: 280px;
    padding: 20px;
    box-sizing: border-box;
}

.goods_info img {
    width: 100%;
}

.goods_right_pic {
    margin: 20px 0 16px 86px;
    width: 68px;
    height: 68px;
    border-radius: 34px;
}

.goods_right_pic img {
    width: 68px;
    height: 68px;
    border-radius: 34px;
}

.goods_right_title {
    width: 100%;
    height: 34px;
    border-bottom: 1px #f6f6f6 solid;
    text-align: center;
    font-weight: bold;
}

.goods_right_ctt {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    box-sizing: border-box;
    line-height: 36px;
    color: #555;
}

.goods_right_ctt span {
    color: #555;
}

/*收款方式*/
.contact_pay_ctr {
    width: 380px;
    height: 500px;
    box-shadow: 0 0 10px #eee;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.5s; /* 动画持续时间 */
    transform: translateY(0);
    background: #fff;
    cursor: pointer;
    position: relative;
}

.contact_pay_ctr:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 10px #ddd;
}

.contact_pay_ctr img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.contact_pay_txt {
    position: absolute;
    width: 300px;
    height: auto;
    left: 38px;
    top: 20px;
    z-index: 5;
    color: #fff;
    line-height: 30px;
}

.contact_pay_txt span {
    font-size: 28px;
    line-height: 60px;
}

.contact_bank_ctr {
    width: 100%;
    height: auto;
    border-bottom: 1px #f6f6f6 solid;
    padding: 18px 20px;
    box-sizing: border-box;
    line-height: 32px;
    font-size: 18px;
    font-weight: bold;
}

.contact_bank_ctr span {
    line-height: 28px;
    font-size: 16px;
    color: #555;
    font-weight: normal;
}

/*授权查询*/
.cx_ctr {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.cx_input {
    width: 40%;
    height: 56px;
    border: 1px #eee solid;
    border-radius: 10px 0 0 10px;
    padding: 0 12px;
}
.cx_btn {
    width: 100px;
    height: 58px;
    line-height: 58px;
    background: #008aef;
    border-radius: 0 10px 10px 0;
    color: #fff;
    text-align: center;
    border: 0;
    cursor: pointer;
}
.cx_btn:hover {
    background: #2CA6F2;
}
.cx_txt {
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #999;
}

/*友情链接*/
.link_ctr {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.link_title {
    width: auto;
    line-height: 40px;
}

.link_ctt {
    flex: 1;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.link_txt {
    margin: 5px;
    width: auto;
    height: 32px;
    line-height: 32px;
    border: 1px #eee solid;
    border-radius: 5px;
    padding: 0 10px;
}

.link_txt:hover {
    border: 1px #008aef solid;
}

/* 适配屏幕宽度在1020像素到1240像素之间的设备 */
@media (min-width: 1020px) and (max-width: 1240px) {
    .m_ctt,.header_ctr,.footer_ctr,.copyright_ctr,.notice_ctt,.ej_banner_ctt,.ej_nav_ctt,.ej_nav_path,.product_banner_ctt {
        width: 90%;
    }
    .header_nav,.header_nav_on {
        margin: 0 2%;
    }
}

/* 适配屏幕宽度在800像素到1020像素之间的设备 */
@media (min-width: 800px) and (max-width: 1020px) {
    .m_ctt,.header_ctr,.footer_ctr,.copyright_ctr,.notice_ctt,.ej_banner_ctt,.ej_nav_ctt,.ej_nav_path,.product_banner_ctt {
        width: 95%;
    }
    .header_nav,.header_nav_on {
        margin: 0 1%;
    }
    .header_btn,.header_btn_on {
        display: none;
    }
    /*产品特色*/
    .index_ts_ctr {
        width: 48%;
    }
}

/* 适配屏幕宽度小于800的设备 */
@media (max-width: 800px) {
    .m_ctt,.header_ctr,.footer_ctr,.copyright_ctr,.notice_ctt,.ej_banner_ctt,.ej_nav_ctt,.ej_nav_path,.product_banner_ctt {
        width: 90%;
    }
    .header_ctt {
        display: none;
    }
    .header_right {
        flex: 1;
    }
    .header_btn,.header_btn_on {
        display: none;
    }
    .header_wap_nav,.header_wap_nav_on {
        display: block;
    }
    .index_goods_ctr {
        width: 100%;
    }
    /*产品特色*/
    .index_ts_ctr {
        width: 100%;
    }
    .footer {
        display: none;
    }
    .copyright_ctr {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        line-height: 22px;
        padding: 15px 0;
        text-align: center;
    }
    /*客户*/
    .index_case_ctr {
        margin: 0 0 20px 0;
    }
    .index_case_ctt {
        width: 14%;
    }
    /*特卖插件*/
    .index_addons_ctr,.store_left .index_addons_ctr {
        width: 48%;
    }
    /*新闻*/
    .index_news_ctr {
        width: 100%;
    }
    /*二级页面*/
    .ej_banner_left {
        width: 100%;
    }
    .ej_banner_pic,.ej_nav_search {
        display: none;
    }

    .ej_nav_left {
        padding: 5px 0;
    }

    .store_left,.news_left {
        width: 100%;
    }

    .store_left {
        justify-content: space-between;
    }

    .store_right_ctt {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 8px 16px;
        box-sizing: border-box;
    }

    .store_hot_ctr {
        margin: 8px 0;
        width: 48%;
    }

    .store_right,.news_right {
        width: 100%;
        margin-top: 30px;
    }

    .news_info {
        height: 24px;
        -webkit-line-clamp: 1;
    }

    .cx_input {
        width: 60%;
    }

    .cx_txt {
        padding-top: 20px;
        line-height: 30px;
    }

    /*产品介绍*/
    .product_banner_pic {
        display: none;
    }

    .product_banner_title {
        font-size: 30px;
        line-height: 60px;
    }

    .product_pic,.product_js_ctr,.product_price_ctr {
        width: 100%
    }

    .product_js_ctr {
        padding: 30px 0 10px;
    }

    #qb {
        display: none;
    }

    .product_question_txt {
        padding: 5px 0 15px;
        height: auto;
    }

    /*收款方式*/
    .contact_pay_ctr {
        width: 100%;
        margin-bottom: 30px;
        height: auto;
    }

    .link_ctr {
        display: none;
    }
}


