html,body{
    width: 100%;
    height: 100%;
    font-family: '微软雅黑';
    overflow-x: hidden;
}
*{ 
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    color: #000000;
    font-family: '微软雅黑'
}
.clearfix:after{
    content:".";        
    display:block;         
    height:0;         
    clear:both;        
    visibility:hidden;        

}
.pc {

    display: block;

}

.mo {

    display: none;

}
.iconfont{
    font-family:"iconfont" !important;
    font-style:normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.icon_seach::before{
    content: '\e603';
}
.icon_contact::before{
    content: '\e629';
}
.icon_jtLeft::before{
    content: '\e632';
}
.icon_jtRight::before{
    content: '\e631';
}
.icon_order::before{
    content: '\e618';
}
.icon_down::before{
    content: '\e61f';
}
.icon_add::before{
    content: '\e615';
}
.icon_dec::before{
    content: '\e60c';
}
.icon_left::before{
    content: '\e68c';
}
.icon_right::before{
    content: '\e63e';
}
.head{
    position: fixed;
    top: 0;
    left: 0; 
    width: 100%;
    z-index: 5;
    background: #bd2065;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.head .head_top{
    padding: 3px 10%;
    display: -ms-flex;
    display: -moz-flex;
    display: -o-flex;
    display: -webkit-flex;
    display: flex;
    -o-justify-content: space-between;
    -ms-justify-content: space-between;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-align-items: center;
    -moz-align-items: center;
    -o-align-items: center;
    -webkit-align-items: center;
    align-items: center;
}
.head .head_top .logo{
    width: 442px;
}
.head .head_top .logo img{
    width: 100%;
    display: block;
}
.head .head_top .ht_right{

}
.head .head_top .ht_right form{
    display: inline-block;
    vertical-align: middle;
    border-radius: 50px;
    border: 1px solid #bfbfbf;
    padding: 0 5px;
}
.head .head_top .ht_right form .inp{
    font-size: 14px;
    outline: none;
    border: 0;
    padding: 8px 0;
    margin-left: 5px;
    width: 120px;
    background-color: transparent;
}
.head .head_top .ht_right form .but{
    font-size: 14px;
    outline: none;
    border: 0;
    border-radius: 20px;
    padding: 5px 15px;
    background: #0072a1;
    color: #fff;
    cursor: pointer;
}
.head .head_top .ht_right form .but span{
    color: #fff;
    font-size: 14px;
}
.head .head_top .ht_right .ht_contact{
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}
.head .head_top .ht_right .ht_contact .p1{
    font-size: 12px;
    text-align: right;
    color: #8b8b8b;
}
.head .head_top .ht_right .ht_contact .p2{
    font-size: 16px;
    color: #bfbfbf;
}
.head .head_top .ht_right .ht_contact .p2 .icon_contact{
    color: #8b8b8b;
}
.head .head_top .ht_right .ht_contact .p2 .num{
    color: #646464;
}
.head .head_bot{
    text-align: center;
    /*border-top: 1px solid #bfbfbf;*/
}
.head .head_bot a{
    display: inline-block;
    padding: 15px 20px;
    margin: 0 10px;
    font-size: 16px;
    position: relative;
    color: #fff;
}
.head .head_bot a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0%;
    height: 3px;
    background: #0072a1;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    -moz-transition: all .5s;
    -webkit-transition: all .5s;
    transition: all .5s;
}
.head .head_bot a:hover{
    color: #0072a1;
}
.head .head_bot a:hover::before{
    width: 100%;
}
.head .caidan{
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 2rem;
    display: none;
}
.head .caidan img{
    width: 100%;
}

/*新移动导航*/
.m_nav{
	position: fixed;
	top: 0px;
	box-shadow: 0 15px 27px 0 rgba(167,165,165,0.38);
	width: 100%;
    height: 100%;
    background: #fff;
    transition: all ease 0.5s;
    -webkit-transition: all ease 0.5s;
	z-index: 1000;
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    overflow-y: auto;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    top: 0;
    transform: translateX(100%);
}
.m_nav.open{
    transform: translateX(0);
}
.m_nav .top{
	height: 60px;
	padding: 20px;
	box-sizing: border-box;
}
.m_nav .top .closed{
	width: 30px;
	height: 30px;
	vertical-align: middle;
	float:right;
	cursor: pointer;
}
.m_nav .logo{
	width: 100%;
	margin:0 auto;
}
.m_nav .logo img{
	height: 50px;
	display: block;
	margin:30px auto;
}
.m_nav .ul{
	margin-top: 20px;
}
.m_nav .ul li{
	padding: 0 20px;
	border-bottom: 1px solid #f5f5f5;
	transform: translateY(0);
	-webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    opacity: 0;
}
.m_nav.open .ul li{
	opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.m_nav .ul li:nth-child(1) {
    -webkit-transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(2) {
    -webkit-transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .4s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(3) {
    -webkit-transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .6s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(4) {
    -webkit-transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all .8s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(5) {
    -webkit-transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.0s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li:nth-child(6) {
    -webkit-transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
    transition: all 1.2s cubic-bezier(.77, 0, .175, 1) 0ms;
}
.m_nav .ul li a{
	display: block;
	text-decoration: none;
	color: #333;
	font-size: 16px;
	height: 50px;
	line-height: 50px;
	width: 100%;
}
.m_nav .ul li .dropdown_menu{
	display: none;
}
.m_nav .ul li.dropdown.active .dropdown_menu{
	display: block;
}
.m_nav .ul li .dropdown_menu a{
	display: block;
	height: 50px;
	line-height: 50px;
	padding: 0 40px;
	box-sizing: border-box;
	border-bottom: 1px solid #f5f5f5;
}
.m_nav .ul li .dropdown_menu a:last-child{
	border: none;
}
.m_nav form{
    display: block;
    margin-top: 20px;
    text-align: center;
}
.m_nav .search{
    display: inline-block;
    width: 50%;
    padding: 2px 10px;
    height: 33px;
    border: 1px solid #525252;
    border-radius: 50px;
}
.m_nav .search .parbox{
	width: 100%;
	height: 100%;
	display: -o-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -webkit-flex;
	display: flex;
	align-items: -o-center;
	align-items: -ms-center;
	align-items: -moz-center;
	align-items: -webkit-center;
	align-items: center;
}
.m_nav .search .icon{
    width: 18px;
    height: 18px;
    display: inline-block;
    border: 0;
    background: transparent;
    background-size: 80%;
    outline: none;
}
.m_nav .search .inp{
    display: inline-block;
    width: 78%;
    margin-left: 1%;
    border: 0;
    font-size: 15px;
    background: transparent;
    outline: none;
}

.footor_tomter{
    background: #ed3188;
    padding: 20px 5%;
    text-align: center;
}
.footor_tomter span{
    color: #fff;
    font-size: 14px;
}


@media screen and (max-width: 1440px){
   .pc {

    display: block;

}

.mo {

    display: none;

}
}
@media screen and (max-width: 1200px){
    .head  form{
    	position: static;
    }
    .pc {

    display: block;

}

.mo {

    display: none;

}
}
@media screen and (max-width: 1000px){
    .pc {

    display: block;

}

.mo {

    display: none;

}
    .head .head_top{
        padding: 20px 5%;
    }
    .head .head_bot a{
        font-size: 14px;
    }
    .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
        bottom: 2% !important;
    }
    .footor_tomter span{
        font-size: 14px;
    }
}
@media screen and (max-width: 1470px){
    .pc {

    display: block;

}

.mo {

    display: none;

}
    .head .head_top .logo{
        width: 346px;
    }
}
@media screen and (max-width: 1334px){
    .pc {

    display: block;

}

.mo {

    display: none;

}
    .head .head_top .logo{
        width: 260px;
    }
}
@media screen and (max-width: 768px){
    .pc {

    display: none;

}

.mo {

    display: block;

}
    .head{
        height: 4rem;
        display: -o-flex;
        display: -ms-flex;
        display: -moz-flex;
        display: -webkit-flex;
        display: flex;
        -o-justify-content: center;
        -ms-justify-content: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
        -ms-align-items: center;
        -moz-align-items: center;
        -o-align-items: center;
        -webkit-align-items: center;
        align-items: center;
    }
    .head .head_top{
        padding: 0;
    }
    .head .head_top .logo{
        width: 16rem;
    }
    .head .head_top .ht_right{
        display: none;
    }
    .head .head_bot{
        display: none;
    }
    .head .caidan{
        display: block;
    }
    .footor_tomter{
        padding: 10px 5%;
    }
    .footor_tomter span{
        display: block;
        font-size: .8rem;
    }
   
}