﻿/* CSS Document */
@charset "utf-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
/**{transition: all 300ms cubic-bezier(.4, 0, .2, 1); -moz-transition: all 300ms cubic-bezier(.4, 0, .2, 1);-webkit-transition: all 300ms cubic-bezier(.4, 0, .2, 1); -o-transition: all 300ms cubic-bezier(.4, 0, .2, 1); -ms-transition: all 300ms cubic-bezier(.4, 0, .2, 1);}*/
body {
    font-family:'微软雅黑', 'YaHei', '黑体', 'Hei', Tahoma, Helvetica, arial, sans-serif;
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* remember to define focus styles! */
:focus {
    outline: 0;
}
a:hover{
    text-decoration: none;

}
/* remember to highlight inserts somehow! */
ins {
    text-decoration: none;
}
del {
    text-decoration: line-through;
}
a{
    text-decoration:none;
    color: #323232;
    font-size: 15px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

ul::after{
    content: '';
    height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

ul li{
    *zoom: 1;
}


/* tables still need 'cellspacing="0"' in the markup */
table {
    border-collapse: collapse;
    border-spacing: 0;}
/* 通用样式 */
.middle{ width:1200px; margin:0 auto;}
.fl{ float:left;}
.fr{ float:right;}
.clear{clear: both;}

.min_img{
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.min_img>img{
    position: absolute;
    overflow: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

.min_img>img:hover{
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.max_over{
    display: inline-block;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*头部开始*/
.header{
    height: 85px;
    padding: 0 5%;
    background: rgba(0,0,0,0.4);
    *zoom: 1;
    top: 25px;
    position: absolute;
    z-index: 99;
    width: 90%;
}

.hd_logo{
    width: 384px;
    height: 36px;
    margin-top: 23px;
}

.hd_nav>ul>li>a{
    font-size: 15px;
    color: #efefee;
    display: block;
}

.hd_nav>ul>li>a>span{
    display: block;
    height: 31px;
    line-height: 31px;
    width: 98px;
}

.hd_nav>ul>li{
    width: 98px;
    height: 60px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.hd_nav>ul>li:hover span{
    background: #d32c2c;


}

.hd_nav{
    margin-top: 25px;
}


.hd_hover{
    position: absolute;
    z-index: -999;
    background: #ffffff;
    width: 180px;
    border: 1px solid #e4eaec;
    /*border-top: #cd2423 3px solid;*/
    opacity: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: 40px;
    display: none;
}

.hd_hover>ul>li {
    padding:0 20px;
    border-bottom: 1px solid #e4eaec;
    line-height: 60px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    text-align: justify;
    position: relative;
}

.hd_hover>ul>li:hover{
    background: #f7f7f6;padding-left: 30px;
}

.hd_hover>ul>li:last-of-type{
    border: none;

}

.hd_hover>ul>li>a{
    display: block;
    color: #858585;
    font-size: 13px;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hd_hover>ul>li:hover>a{
    color: #121212;
}


.hd_nav>ul>li:hover .hd_hover{
    z-index: 99;
    opacity: 1;
    margin-top: 28px;
    display: block;
}


.hd_hover2{
    position: absolute;
    right: -273px;
    background: #ffffff;
    top: 0;
    border-left: 2px solid #d32c2c;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotateY(90deg);
    -moz-transform: rotateY(90deg);
    -ms-transform: rotateY(90deg);
    -o-transform: rotateY(90deg);
    transform: rotateY(90deg);
    width: 270px;
}

.hd_hover2 ul li{
    padding:0 10px ;
    border-bottom: 1px solid #e4eaec;
    line-height: 50px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    text-align: justify;
}

.hd_hover2 ul li a{
    display: block;
    color: #858585;
    font-size: 13px;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hd_hover2 ul li a:hover{
    color: #d32c2c;
}

.hd_hover>ul>li:hover .hd_hover2{
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
}


/*banner开始*/
/* flexslider */
.flexslider {
    position:relative;
    height:941px;
    overflow:hidden;
    zoom:1;

}
.flex-viewport {
    max-height:2000px;
    -webkit-transition:all 1s ease;
    -moz-transition:all 1s ease;
    transition:all 1s ease;
}
.flexslider .slides {
    zoom:1;
}
.flex-direction-nav a {
    width:60px;
    height:90px;
    line-height:99em;
    overflow:hidden;
    margin:-60px 0 0;
    display:block;
    background:url(../images/ad_ctr.png) no-repeat;
    position:absolute;
    top:50%;
    z-index:10;
    cursor:pointer;
    opacity:0;
    filter:alpha(opacity=0);
    -webkit-transition:all .3s ease;
}
.flex-direction-nav .flex-next {
    background-position:0 -90px;
    right:0;
}
.flex-direction-nav .flex-prev {
    left:0;
}
.flexslider:hover .flex-next {
    opacity:0.8;
    filter:alpha(opacity=25);
}
.flexslider:hover .flex-prev {
    opacity:0.8;
    filter:alpha(opacity=25);
}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
    opacity:1;
    filter:alpha(opacity=50);
}
.flex-control-nav {
    width:100%;
    position:absolute;
    bottom:20px;
    text-align:center;
}
.flex-control-nav li {
    margin:0 10px;
    display:inline-block;
    zoom:1;
    *display:inline;
}
.flex-control-paging li a {
    background:url(../images/dot.png) no-repeat 0 -16px;
    display:block;
    height:16px;
    overflow:hidden;
    text-indent:-99em;
    width:19px;
    cursor:pointer;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    -ms-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s;
}
.flex-control-paging li a.flex-active {
    background-position:0 0;
}

.img{
    height: 941px;
}

/*关于我们*/
.abLeft{
    width: 367px;
}

.abHd{
    background:  url(../images/ab_hd.png) 0 0 no-repeat;
    width: 236px;
    height: 69px;
    overflow: hidden;
    *zoom: 1;
}

.abHd h3{
    font-size: 16px;
    color: #323232;
    font-weight: 400;
    margin-top: 52px;
    margin-left: 36px;
}

.abLnr{
    font-size: 15px;
    color: #3a3a3a;
    line-height: 2em;
    margin-top: 65px;
    text-align: justify;
}

.abLeft ul li h3{
    font-size: 18px;
    color: #1f1f1f;
    font-weight: 400;
    background:  url(../images/h3.png) left center no-repeat;
    padding-left: 17px;
}

.abLeft ul li p{
    font-size: 13px;
    color: #626262;
    padding-left: 17px;
    margin-top: 14px;
}

.abLeft ul li{
    margin-top: 55px;
}


.abRight ul li{
    background:  url(../images/ab_li.jpg) 0 0 no-repeat;
    width: 772px;
    height: 275px;

}

.abRight{
    background:  url(../images/cpy.png) center bottom no-repeat;
    padding-bottom: 78px;
}

.ab_min{
    width: 386px;
    height: 275px;
}

.abRnr{
    width: 310px;
    height: 175px;
    padding:50px 38px;
}

.abRnr h3{
    font-size: 23px;
    color: #ffffff;
}

.abRnr h2{
    font-size: 17px;
    color: #ffffff;
    font-weight: 400;
    margin: 18px 0;
}

.abRnr p{
    font-size: 14px;
    color: #b0b0b0;
    text-align: justify;
    line-height: 1.8em;
}

.ab_us{
    padding: 109px 0 70px;
}

.abLeft{
    margin-top: 40px;
}


/*产品展示*/
.product{
    background:  url(../images/pt_bj.jpg) top center no-repeat;
    height: 929px;
    overflow: hidden;
    *zoom: 1;
}

.ptHd{
    background:  url(../images/ptHd.png) top center no-repeat;
    text-align: center;
    height: 78px;
    overflow: hidden;
    *zoom: 1;
    margin: 58px 0 33px;
}

.ptHd h3{
    font-size: 20px;
    font-weight: 400;
    color: #323232;
    margin-top: 58px;
}

.ptNav ul li a{
    width: 117px;
    height: 30px;
    display: block;
    border-radius: 50px;
    border: 1px solid #6f6f6f;
    text-align: center;
    line-height: 30px;
}

.ptNav{
    text-align: center;
}

.ptNav ul{
    display: inline-block;
}

.ptNav ul li{
    margin: 0 15px;
}

.ptNav ul li a:hover{
    background: #d32c2c;
    color: #ffffff;
    border: 1px solid #d32c2c;
}


/*切换*/
.dg-container{
    width: 100%;
    height: 668px;
    position: relative;
    margin-top: 33px;
}
.dg-wrapper{
    width: 431px;
    height: 431px;
    margin: 0 auto;
    position: relative;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -moz-perspective: 1000px;
    -o-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
}
.dg-wrapper a{
    width: 391px;
    height: 391px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: #ffffff;
    /*box-shadow: 0px 10px 20px rgba(0,0,0,0.3);*/
    text-align: center;
    padding: 20px;
}

.dg-center{
  box-shadow:0px 0px 15px rgba(0,0,0,0.3)
}


.dg-wrapper a.dg-transition{
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.dg-wrapper a img{
    max-width: 100%;
    max-height: 100%;
}
.dg-wrapper a div{
    text-align: center;
    width: 100%;
    bottom: -165px;
    display: none;
    position: absolute;
    left:0;
}
.dg-wrapper a.dg-center div{
    display: block;
}
.dg-container nav{
    width: 58px;
    position: absolute;
    z-index: 1000;
    bottom: 0;
    left: 50%;
    margin-left: -29px;
}
.dg-container nav span{
    text-indent: -9000px;
    float: left;
    cursor:pointer;
    width: 24px;
    height: 25px;
    opacity: 0.8;
    background: transparent url(../images/arrows.png) no-repeat top left;
}
.dg-container nav span:hover{
    opacity: 1;
}
.dg-container nav span.dg-next{
    background-position: top right;
    margin-left: 10px;
}

.dg-wrapper a div h3{
    font-size: 25px;
    color: #363636;
}

.dg-wrapper a div span{
    color: #d32c2c;
}

.dg-wrapper a div p{
    font-size: 13px;
    color: #363636;
    line-height: 1.5em;
    margin-top: 1em;
}

.sound{
    margin: 32px 0;
}

/*产品服务*/
.sv_list ul li a{
    width: 389px;
    height: 310px;
}

.sv_list ul li{
    margin-right: 16px;
}


.sv_list ul li:nth-child(3n){
    margin-right: 0;
}


.fw_h{
    width: 389px;
    height:363px;
    background: rgba(0,0,0,0.4);
    z-index: 99;
    position: absolute;
    top: 257px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;

}

.fw_h h2{
    height: 53px;
    color: #ffffff;
    line-height: 53px;
    font-weight: 400;
    padding: 0 20px;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 20px;
}

.sv_list ul li a:hover .fw_h{
    top: -53px;
}

.fw_h h3{
    font-size: 20px;
    color: #ffffff;
    margin-top: 80px;
}

.fw_h span{
    color: #d32c2c;
    display: inline-block;
    margin: 23px 0;
}

.fw_h p{
    font-size: 14px;
    color: #fefefe;
    padding: 0 43px;
    line-height: 1.8em;
}

/*新闻中心开始*/
.news{
    background:  url(../images/news_bj.jpg) top center no-repeat;
    height: 767px;
    overflow: hidden;
    *zoom: 1;
    margin-top: 50px;
}

.newsList{
    margin-top: 130px;
}

.newsList ul li{
    width: 542px;
    padding-left: 26px;
    border-bottom: 1px solid #726f6e;
    height: 150px;
    margin-right: 64px;
    margin-bottom: 80px;
}

.newsList ul li a{
    font-size: 17px;
    color: #ffffff;
    font-weight: bold;
    display: inline-block;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.newsList ul li p{
    font-size: 13px;
    color: #cacaca;
    line-height: 1.5em;
    text-align: justify;
    margin: 27px 0;
    height: 38px;
    overflow: hidden;
}

.newsList ul li div{
    font-size: 13px;
    color: #ffffff;
}

.newsList ul li div span{
    color: #d32c2c;
    padding-right: 15px;
}

.newsList ul li a:hover{
    color: #f93030;
}

.newsList ul li:nth-child(2n){
    margin-right: 0;
}


/*Soundoasis在世界*/

.oasis{
    padding-bottom: 20px;
}

.oaHd{
    text-align: center;
    margin-top: 124px;
}

.oaHd p{
    font-size: 14px;
    color: #636363;
    line-height: 1.5em;
    margin-top: 40px;
}




/**
 * 横向滚动
 * ------------------------------ */
.scroll_horizontal {
    position: relative;
    width: 1200px;
    height: 360px;
    margin-top: 35px;
}

.scroll_horizontal .box {
    overflow: hidden;
    position: relative;
    width: 1200px;
    height: 289px;
    margin: 0 auto;
}

.scroll_horizontal .list {
    overflow: hidden;
    width: 9999px;
}

.scroll_horizontal .list li {
    float: left;
    width: 304px;
}

.scroll_horizontal .list li img{
    width: 287px;
    height: 289px;
}

.scroll_horizontal .prev,
.scroll_horizontal .next {
    position: absolute;
    bottom: 0;
    margin-top: -25px;
    width: 40px;
    height: 50px;
    background-image: url(../img/control.png);
    background-repeat: no-repeat;
    font: 0/0 Arial;
    cursor: pointer;
}

.scroll_horizontal .prev {
    left: 556px;
    background-position: 0 0;
}

.scroll_horizontal .next {
    right: 556px;
    background-position: -40px 0;
}

.scroll_horizontal .prev:hover {
    background-position: 0 -50px;
}

.scroll_horizontal .next:hover {
    background-position: -40px -50px;
}


/*底部开始*/
.footer{
    background: #434343 url(../images/footer.jpg) top center no-repeat;
    /*height: 364px;*/
    overflow: hidden;
    *zoom: 1;
}

.ft_nav ul li a{
    font-size: 15px;
    color: #ffffff;

}

.ft_nav{
    text-align: center;
    margin-top:140px ;
}

.ft_nav ul{
    display: inline-block;
}

.ft_nav ul li{
    padding: 0 22px;
}

.ft_nav ul li a:hover{
    opacity: 0.8;
}

.ft_ct{
    text-align: center;
    font-size: 13px;
    color: #9d9d9d;
    line-height: 2em;
    margin-top: 2em;
}

.ft_ct span{
    padding: 0 30px;
}

.ft_cpy{
    font-size: 13px;
    color: #989898;
    height: 190px;
    line-height: 50px;
    text-align: center;
    margin-top: 48px;
}


/*产品服务-声学助眠*/
.page_banner{
    height: 549px;
}
.page_main{
    background: #f5f5f5;
    padding-bottom: 23px;
}

.footer2{
    background: #f5f5f5 url(../images/footer.png) top center no-repeat;
}

.this_add{
    height: 60px;
    line-height: 60px;
    font-size: 14px;
    color: #717171;
}

.this_add a{
    font-size: 14px;
    color: #717171;
}


.this_add a:nth-last-of-type(1){
    color: #d32c2c;
}

.pt_fw{
    background: #ffffff;
    padding: 35px 25px;
}

.pt_lis{
    background: #ffffff;
    padding: 35px 25px;
}


.pt_fw ul li{
    width: 342px;
    height: 269px;
    background: #f5f5f5;
    padding: 10px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin-right: 30px;
    margin-bottom: 25px;
}

.pt_fw ul li:nth-child(3n){
    margin-right: 0;
}

.ptFw_l{
    margin-left: 10px;
}

.ptR{
    margin-right: 10px;
    text-align: center;
}

.ptR h3{
    font-size: 18px;
    color: #515151;
    margin-top: 5px;
}

.ptR a{
    display: inline-block;
    width: 133px;
    height: 29px;
    background: #d32c2c;
    color: #ffffff;
    text-align: center;
    line-height: 29px;
    margin-top: 20px;
}

.ptR a:hover{
    background: #9f2929;
}

.top{
    margin-top: 30px;
}

.ptfw_js{
    background: #ffffff;
    padding: 25px 15px;
    font-size: 13px;
    color: #646464;
    line-height: 1.8em;
    text-align: justify;
    margin-top:30px;
    cursor: pointer;
}

.pt_fw ul li:hover{
    background: #e6e6e6;
}

/*------------------------------------------新闻中心页面*/
.page_left{
    width: 836px;
    background: #ffffff;
    padding: 35px 25px;

}

.pn_img{
    width: 171px;
    height: 113px;
}

.pn_img img{
    max-width: 171px;
    max-height: 113px;
}

.pn_nr{
    width: 640px;
}

.pn_nr a{
    font-size: 16px;
    color: #232323;
    display: inline-block;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 5px;

}

.pn_nr a:hover{
    color: #d32c2c;

}

.pn_nr p{
    font-size: 13px;
    color: #848e97;
    line-height: 1.6em;
    text-align: justify;
    margin-top: 1em;
    height: 40px;
    overflow: hidden;
}

.pn_nr span{
    font-size: 14px;
    color: #848e97;
    display: inline-block;
    margin-top: 1em;
}

.page_nelist ul li{
    border-bottom: 1px solid #d8d8d8;
    padding: 20px 0 ;
}

.page_right{
    width: 298px;
    height: 607px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
    *zoom: 1;
}

.page_right>img{
    width: 146px;
    height: 146px;
    margin-top: 73px;
}

.ss{
    font-size: 16px;
    color: #656565;
    line-height: 2em;
}

.r_ct p{
    font-size: 16px;
    color: #656565;
    line-height: 2em;
}

.r_ct{
    margin-top: 55px;
}

.r_ct h3{
    font-size: 28px;
    color: #656565;
    margin-top: 45px;
}

/*----------------------产品列表页面------------------*/


.pt_lis ul li{
    width: 362px;
    margin-right: 30px;
    text-align: center;
    margin-bottom: 20px;

}


.pt_lis ul li:nth-child(3n){
    margin-right: 0;
}

.pt_liimg{
    width: 362px;
    height: 362px;
    border: 1px solid #eeeeee;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}


.pt_liimg img{
    max-width: 362px;
    max-height: 362px;
}

.pt_lis ul li h3{
    font-size: 18px;
    color: #363636;
    line-height: 3em;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.pt_lis ul li:hover h3{
    color: #d32c2c;
}

/*.pt_lis ul li:hover .pt_liimg{*/
    /*border: 1px solid #d32c2c;*/
/*}*/


/*----------------------------------产品show-------------------------------*/
.page_top{
    background: #ffffff;
    padding: 60px;
    border-bottom: 5px solid #d9d9d9;
}

/* 垂直居中 */
.small-img{
    display: flex;
    align-items:center;
    justify-content: center;
}
.clearfix:before,
.clearfix:after{
    display: table;
    line-height: 0;
    content: "";
}
.magnifier{
    width: 431px;
    position: relative;
}
.magnifier-container{
    width: 431px;
    height: 431px;
    overflow: hidden;
    position: relative;
    border: 1px solid #ddd;
}
.move-view{
    width: 100px;
    height: 100px;
    position: absolute;
    background-image: url('../images/move-box.png');
}
.images-cover{
    height: 100%;
    width: 100%;
    position: relative;
}
.images-cover img{
    position: absolute;
}
.magnifier-assembly{
    height: 92px;
    overflow: hidden;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}
.magnifier-btn{
    position: absolute;
    font-family: "宋体";
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -40px;
}
.magnifier-btn span{
    line-height: 80px;
    height: 80px;
    width: 20px;
    background-color: #6e6e6e;
    color: #fff;
    display: block;
    z-index: 9998;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    border-radius: 3px;
}
.magnifier-btn .magnifier-btn-left{
    float: left;
}
.magnifier-btn .magnifier-btn-right{
    float: right;
}
.magnifier-line{
    position: relative;
    overflow: hidden;
    height: 92px;
}
.magnifier-line ul{
    display: block;
    font-size: 0;
    width: 10000%;
    position: absolute;
    left: 0;
    z-index: 9997;
}
.magnifier-line li{
    float: left;
    width: 100px;
    cursor: pointer;
}
.magnifier-line ul > .active .small-img{
    border-color: #bbb;
}
.small-img{
    height: 78px;
    padding: 1px;
    margin: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
    text-align: center;
}
.small-img img{
    max-width: 100%;
    max-height: 100%;
}
.magnifier-view{
    width: 100%;
    height: 100%;
    position: absolute;
    right: -105%;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    display: none;
    overflow: hidden;
}
.magnifier-view img{
    display: block;
}
.animation03{
    transition: all 0.3s ease-in 0.1s;
    -ms-transition: all 0.3s ease-in 0.1s;
    -moz-transition: all 0.3s ease-in 0.1s;
    -webkit-transition: all 0.3s ease-in 0.1s;
    -o-transition: all 0.3s ease-in 0.1s;

}

.pg_nrl>h2{
    font-size: 40px;
    color: #3f3f3f;
    font-weight: 400;

}

.pg_nrl{
    width: 608px;
    margin-top:64px;
}

.pg_nrl>h3{
    font-size: 22px;
    color: #d32c2c;
    font-weight: 400;
    margin-top: 45px;
}

.pg_nrl>h3>span{
    font-size: 15px;
    color: #a2a2a2;
}


.pg_nrlist ul li p{
    width: 232px;
    height: 50px;
    background: #f9f9f9;
    text-align: center;
    font-size: 15px;
    color: #666666;
    line-height: 50px;
}

.pg_nrlist ul li:nth-child(2n) p{
    background: #f2f2f2;
}

.pg_nrlist ul li span{
    display: block;
    width: 276px;
    height: 50px;
    background: #f9f9f9;
    padding: 0 40px;
    line-height: 50px;
    font-size: 15px;
    color: #666666;
}

.pg_nrlist ul li:nth-child(2n) span{
    background: #f2f2f2;
}

.pg_nrlist{
    margin-top: 35px;
}

.page_pt{
    background: #ffffff;
    overflow: hidden;
    *zoom: 1;
    margin-top: 15px;
}

.page_pt video{
    margin:60px 187px;
}

/*产品描述*/
.cp_demo{
    background: #ffffff;
    padding: 45px 65px;
    margin-top: 15px;
}


.cpmLeft{
    width: 470px;
    float: left;
}


.cpmImg{
    float: right;
    width: 544px;
    height: 362px;
}

.cpmImg img{
    max-width: 544px;
    max-height: 362px;
}


.cp_dhd{
    font-size: 22px;
    color: #060606;
    font-weight: 400;
    height: 32px;
    line-height: 32px;

}

.cp_dhd h3{
    padding-left: 40px;
    font-weight: 400;
}

.cp_msl ul li h3{
    font-size: 26px;
    color: #232323;
    font-weight: 400;
    line-height: 1.5em;
    margin-top: 50px;
}
.cp_msl ul li {
    overflow: hidden;
    *zoom: 1;
}

.cp_msl ul li span{
    color: #d32c2c;
}

.cpmLeft p{
    font-size: 17px;
    color: #666666;
    line-height: 2em;
    margin-top: 40px;
    text-align: justify;
}


.cp_msl ul li:nth-child(2n) .cpmImg{
    float: left;
}

.cp_msl ul li:nth-child(2n) .cpmLeft{
    float: right;
}


.td ul li {
    font-size: 16px;
    color: #232323 ;
    line-height: 2.5em;
    background:  url(../images/dian.png) left 19px no-repeat;
    padding-left:13px;
}

.td{
    width: 526px;
    margin-top:49px;
}


.td_img{
    width: 473px;
    height: 493px;
}

.td_img img{
    max-width: 473px;
    max-height: 493px;
}


.cp_zs ul li a{
    width: 346px;
    height: 346px;

}


.cp_zs ul li{
    width: 346px;
    height: 346px;
    margin-right: 13px;

}

.cp_zs ul li:nth-child(3n){
    margin-right: 0;
}

.cp_zs ul li a img{
    max-width: 346px;
    max-height: 346px;
}

.cp_zs ul li {
    border: 1px solid #eeeeee;
}

.cp_zs {
    margin-top: 46px;
}

.khpj ul li{
    padding: 30px 22px;
    background: #f5f5f5;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    color: #454545;
    line-height: 1.5em;
    text-align: justify;
    margin-bottom: 12px;
}


.khpj{
    margin-top: 45px;
}

.page_show_title{
    text-align: center;
}

.page_show_content{
    color: #333;
    margin-top: 10px;
    line-height: 24px;
}

.page_show_content img{
    max-width: 100%;
}













