/* 通用样式 */
.white_bg {
    background: #ffffff;
}

.gray_bg {
    background: #f8f8f8;
}

.pad_top {
    padding-top: 20px;
}

.new_pad_top {
    padding-top: 80px;
}

.pad_bot {
    padding-bottom: 20px;
}

.w {
    width: 760px;
    margin: 0 auto;
}

.lm {
    width: 100%;
    padding: 20px 0;
}

.lm p,.lm h1,.lm h2 {
    text-align: center;
}

.lm p.title, .lm h1.title, .lm h2.title {
    font-size: 24px;
    color: #3b3b3c;
    margin-bottom: 13px;
    font-weight: bold ;
}

.lm p.desc,.lm h2.desc {
    font-size: 14px;
    color: #666666;
}

/* header */
.header {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0);
}
.header .menu_icon, .header .open, .header .close, .header .menu_bg {
    display: none;
}

.header .w {
    display: flex;
    align-items: center;
}

.header .logo {
    display: block;
    width: 90px;
}

.header .logo img {
    width: 100%;
}

.header .menu {
    margin-left: 60px;
    flex: 1;
    height: 60px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .menu li {}
.header .menu li a {
    font-size: 12px;
    font-weight: bold;
    color: #3b3b3c;
    text-decoration: none
}
.header .menu li a:hover {
    color: #000;
}

/* banner */
.swiper-container {
    width: 100%;
    height: 386px;
}

.swiper-slide {
    height: 386px;
    background-position: center;
    background-size: cover;
}

.swiper-slide .swiper-info {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 25px 20px;
}

.swiper-slide .zong {
    background: rgba(0,0,0,.3);
}

.swiper-slide .blue {
    background: rgba(95,120,155,.7);
}

.swiper-slide .green {
    background: rgba(111,145,134,.7);
}

.swiper-slide .swiper-info .title {
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    line-height: 30px;
}
.swiper-slide .swiper-info .desc {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    margin: 10px 0;
}
.swiper-slide .swiper-info .more {
    text-align: right;
}

.swiper-slide .swiper-info .more a {
    color: #fff;
    font-size: 12px;
}

.swiper-pagination {
    text-align: right;
}

/* .left-icon {
    background: url('./../img/left_icon.png') no-repeat;
    width: 55px;
    height: 55px;
}

.right-icon {
    background: url('./../img/right_icon.png') no-repeat;
    width: 55px;
    height: 55px;
} */


/* 主体内容 */
.d_flex {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    justify-content: space-between;
}

.d_flex_flow {
    flex-flow: row-reverse;
    /* flex-flow: column; */
}

.d_flex .d_flex_img,
.d_flex .d_flex_info {
    flex: 1;
    /* max-width: 365px;
    overflow: hidden; */
}

.d_flex .d_flex_img {
    margin-right: 20px;
}

.d_flex .d_flex_img img {
    display: block;
    width: 100%;
}

.d_flex .d_flex_info p {
    font-size: 14px;
    line-height: 28px;
}

.d_flex .d_flex_info p.more {
    text-align: right;
    margin-top: 20px;
}

.d_flex .d_flex_info p.more a {
    display: inline-block;
    font-size: 12px;
    padding: 8px 20px;
    background: #dddddd;
    color: #3b3b3c;
    border-radius: 20px;
    text-decoration: none;
}

.d_flex .d_flex_info p.more a:hover {
    background: #688C9C;
    color: #fff;
}

.d_flex_flow .d_flex_info p.more {
    text-align: left;
}


/* TAB切换 */
.product {
    width: 100%;
}

.product .tab {
    width: 100%;
    height: 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product .tab .tab-item {
    margin: 0 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product .tab .tab-item span {
    display: block;
    border: 1px solid #ddd;
    padding: 0 15px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
}

.product .tab .tab-item.active {
    color: #fff;
}

.product .tab .tab-item.active span {
    display: block;
    border: 1px solid #688C9C;
    background: #688C9C;
    padding: 0 15px;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
}

.product-xx {}

.product-xx .mainCont {
    display: none;
    width: 100%;
}

.product-xx .mainCont.selected {
    display: block;
}

.product_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    height: 690px;
    overflow: hidden;
}

.product_list li {
    width: 240px;
    margin-bottom: 13px;
    margin-right: 20px;
}

.product_list li:nth-child(3n+3) {
    margin-right: 0;
}

.product_list li img {
    display: block;
    width: 240px;
    height: 240px;
}

.product_list li p {
    font-size: 14px;
    line-height: 24px;
    padding: 10px 0;
}

.product a.more {
    display: inline-block;
    font-size: 12px;
    padding: 8px 20px;
    background: #dddddd;
    color: #3b3b3c;
    border-radius: 20px;
    text-decoration: none;
}

.product a.more:hover {
    background: #688C9C;
    color: #fff;
}

/* 新闻资讯 */
.news_list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.news_list li {
    width: 365px;
    margin-right: 30px;
    margin-bottom: 13px;
}

.news_list li:nth-child(2n+2) {
    margin-right: 0;
}

.news_list li p.time {
    font-size: 12px;
    color: #9a681f;
    line-height: 24px;
}

.news_list li p.title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 26px;
    height: 56px;
    margin-bottom: 6px;
}

.news_list li p.title a {
    color: #3b3b3c;
    text-decoration: none;
}

.news_list li p.desc {
    color: #868686;
    font-size: 12px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


/* 页脚信息 */
.footer {
    background: #f8f8f8;
}

.f_link {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.f_link li {}

.f_link li .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.f_link li .desc {
    display: flex;
    flex-direction: column
}

.f_link li .desc p {
    color: #868686;
    font-size: 12px;
    line-height: 24px;
}

.f_link li .desc a {
    color: #868686;
    text-decoration: none;
}

.f_link li .desc a:hover {
    color: #688C9C;
}

.f_link li .desc img {
    display: block;
    width: 90%;
}

.copyright {
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #fff;
    padding: 20px 0;
}


/* =============================== */
/* 内页banner */
.ny-banner {
    width: 100%;
    height: 300px;
    background-position: top center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ny-banner .bt {
    font-weight: bold;
    font-size: 24px;
    /* color: #fff; */
    /* line-height: 50px; */
}

/* Denps愿景 */
.d_flex .d_flex_full {
    max-width: 760px;
}

.d_flex_text {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.d_flex_text .full_text {
    width: 240px;
    margin-right: 20px;
}
.d_flex_text .full_text:last-child {
    margin-right: 0;
}

.d_flex_text .full_text .bt {
    margin-top: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 36px;
}
.d_flex_text .full_text .desc {
    font-size: 14px;
    line-height: 28px;
}

/* 合作品牌 */
.brand_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.brand_wrap .brand_box {
    width: 240px;
    margin-right: 20px;
}
.brand_wrap .brand_box:last-child {
    margin-right: 0;
}

.brand_wrap .brand_box .img {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.brand_wrap .brand_box .bt {
    font-size: 14px;
    line-height: 26px;
}
.brand_wrap .brand_box .desc {
    color: #666666;
    font-size: 12px;
    line-height: 20px;
}

/* 产品中心 */
.product_h {
    height: 335px;
}
a.more {
    display: inline-block;
    font-size: 12px;
    padding: 8px 20px;
    background: #dddddd;
    color: #3b3b3c;
    border-radius: 20px;
    text-decoration: none;
}

a.more:hover {
    background: #688C9C;
    color: #fff;
}


/* 长高高 视频 */
.d_mp4 {
    width: 536px;
    height: 300px;
    margin: 0 auto;
    margin-top: 20px;
}

/* 新闻资讯 */
.news_box {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.news_box li {
    width: 240px;
    margin-bottom: 15px;
    margin-right: 20px;
}

.news_box li:nth-child(3n+3) {
    margin-right: 0;
}

.news_box li .img {
    display: block;
}
.news_box li .img img {
    display: block;
    width: 100%;
}

.news_box li .info {
    background: #F8F8F8;
    padding: 10px;
}

.news_box li .info .time {
    font-size: 12px;
    color: #9a681f;
    line-height: 24px;
}
.news_box li .info .bt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 6px;
}
.news_box li .info .bt a {
    color: #3b3b3c;
    text-decoration: none;
}
.news_box li .info .desc {
    color: #868686;
    font-size: 12px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.d_flex_info p img {
    display: block;
	margin: 0 auto;
}

/* 联系 */
.lx-box {
    width: 760px;
    margin: 0 auto;
}

.lx-box .bt {
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    border-bottom: 1px solid #ddd;
}

.lx-box .desc {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
    border-bottom: 1px solid #ddd;
}

.lx-box .desc span {
    width: 150px;
    color: #666;
}


.d_flex_img .d_lx {
    margin-top:15px;
}

.d_flex_img .d_lx p {
    font-size: 14px;
    line-height: 28px;
}

img.map {
    border: 1px solid #ddd;
}


/* 产品详情 */
.d_flex_start {
    align-items: flex-start;
}
.pro_info {
    padding: 20px 0;
}
.pro_info .pro_bt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
.pro_info .pro_ms {
    font-size: 14px;
    font-weight: bold;
}
.pro_info .pro_xx {
    display: flex;
    flex-wrap: wrap;
}

.pro_info .pro_xx span {
    font-size:14px;
    width: 50%;
}

.pro_info .pro_tm {
    text-align: left;
    margin-top: 20px;
}

.pro_info .pro_tm a.buy_btn {
    display: inline-block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #F40130;
    border-radius: 5px;
}

.pro_detail {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
}


.d_flex_pro {
    flex: 1;
    max-width: 365px;
}

.d_flex_pro .swiper-container {
    width: 100%;
}

.d_flex_pro .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-top {
    height: 386px;
    width: 100%;
}
.gallery-thumbs {
    background: #eee;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    box-sizing: border-box;    
    /* opacity: 0.4; */
}
.gallery-thumbs .swiper-slide-active {
    /* opacity: 1; */
    border: 2px solid #F40130;
}

.pop_wrap {
    display: none;
}

.pop_wrap .pop_bg {
    background-color: #000;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .8;
    position: fixed;
}

.pop_wrap .pop_box {
    z-index: 1000;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -250px;
    margin-top: -250px;
    width: 500px;
    height: 500px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.pop_wrap .pop_box img {
    display: block;
    width: 100%;
}


/* 产品详情 */
.d_flex_start {
    align-items: flex-start;
}
.pro_info {
    padding: 20px 0;
}
.pro_info .pro_bt {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}
.pro_info .pro_ms {
    font-size: 16px;
    font-weight: bold;
}
.pro_info .pro_xx {
    display: flex;
    flex-wrap: wrap;
}

.pro_info .pro_xx span {
    font-size:16px;
    width: 50%;
}

.pro_info .pro_tm {
    text-align: left;
    margin-top: 30px;
}

.pro_info .pro_tm a.buy_btn {
    display: inline-block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #F40130;
    border-radius: 5px;
}

.pro_detail {
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-top: 20px;
}


.d_flex_pro {
    flex: 1;
    max-width: 475px;
}

.d_flex_pro .swiper-container {
    width: 100%;
}

.d_flex_pro .swiper-slide {
    background-size: cover;
    background-position: center;
}

.gallery-top {
    height: 500px;
    width: 100%;
}
.gallery-thumbs {
    background: #eee;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}
.gallery-thumbs .swiper-slide {
    width: 25%;
    height: 100%;
    box-sizing: border-box;    
    /* opacity: 0.4; */
}
.gallery-thumbs .swiper-slide-active {
    /* opacity: 1; */
    border: 2px solid #F40130;
}

.pop_wrap {
    display: none;
}

.pop_wrap .pop_bg {
    background-color: #000;
    z-index: 1000;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: .8;
    position: fixed;
}

.pop_wrap .pop_box {
    z-index: 1000;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -300px;
    margin-top: -300px;
    width: 600px;
    height: 600px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.pop_wrap .pop_box img {
    display: block;
    width: 100%;
}


/* 产品介绍 */
.pd_box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.pd_box .pd_img {
    width: 420px;
    margin-right: 40px;
    background: #f8f8f8;
}

#tsShopContainer{position:relative;}
#tsShopContainer li,#tsShopContainer img{vertical-align:top;}
#tsShopContainer #tsImgS {text-align:center;width:100%;position:relative;}
#tsShopContainer #tsImgS a{display:block;text-align:center;margin:0px auto;}
#tsShopContainer #tsImgS img{border:0px;}
#tsShopContainer #tsPicContainer{width:100%;height:72px;position:relative; margin-top: 10px;}
#tsShopContainer #tsPicContainer #tsImgSArrL{width:5px;height:100%;background:url(../img/gotop.gif) no-repeat left center;position:absolute;top:0px;left:0;cursor:pointer;}
#tsShopContainer #tsPicContainer #tsImgSArrL:hover { background:url(../img/gotop2.gif) no-repeat left center}
#tsShopContainer #tsPicContainer #tsImgSArrR{width:5px;height:100%;background:url(../img/gobottom.gif) no-repeat right center;position:absolute;top:0px;right:0;cursor:pointer;}
#tsShopContainer #tsPicContainer #tsImgSArrR:hover { background:url(../img/gobottom2.gif) no-repeat right center;}
#tsShopContainer #tsPicContainer #tsImgSCon{position:absolute;top:0;left:10px;width:1px;height:72px;overflow:hidden;}
#tsShopContainer #tsPicContainer #tsImgSCon ul{width:100%;overflow:hidden;}
#tsShopContainer #tsPicContainer #tsImgSCon li{width:82px;float:left;cursor:pointer; }
#tsShopContainer #tsPicContainer #tsImgSCon li img{padding:0px;border:1px solid #f8f8f8;display:block;width:70px;height:70px;}
#tsShopContainer #tsPicContainer #tsImgSCon li.tsSelectImg img{border:1px solid #F00;margin:0px;}

.pd_box .pd_info {
    flex: 1;
}

.pd_info .pro_bt {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 20px;
}
.pd_info .pro_ms {
    font-size: 14px;
    line-height: 32px;
    font-weight: bold;
}
.pd_info .pro_xx {
    display: flex;
    flex-wrap: wrap;
}

.pd_info .pro_xx p {
    font-size:14px;
    line-height: 32px;
    width: 100%;
}

.pd_info .pro_tm {
    text-align: left;
    margin-top: 20px;
}

.pd_info .pro_tm a.buy_btn {
    display: inline-block;
    width: 180px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background: #F40130;
    border-radius: 5px;
}

/* 首页新闻 */
.gdNews {
    /* height: 234px; */
    height: 345px;
}

/* 二级菜单20201205 */
.header .menu li {
    height: 60px;
    position: relative;
}

.header .menu li a {
    display: block;
    height: 60px;
    line-height: 60px;
}

.header .menu li.have {
    display: flex;
    align-items: center;
}

.header .menu li.have .arrow {
    margin-left: 4px;
    width: 10px;
    height: 10px;
    background: url('./../img/arrow-down.png') no-repeat center right;
    background-size: cover;
}

.header .menu li.have:hover .arrow {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.header .menu li.have .sonMenu {
    display: none;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 50%;
    width: 100px;
    padding: 0;
    margin-left: -50px;
}

.header .menu li.have .sonMenu li {
    height: 32px;
}

.header .menu li.have .sonMenu li a {
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}

.header .menu li.have .sonMenu li:hover {
    background: #688C9C;
}

.header .menu li.have .sonMenu li:hover a {
    color: #fff;
}
