@charset "utf-8";
/**
 * Zhang Jian reset css
 * 2017-now
 */

*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{
    display: block;
}
ol, ul, li{
    list-style: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

/* custom */
a{
    color: #666;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
::-webkit-scrollbar{
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track-piece{
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:vertical{
    height: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
::-webkit-scrollbar-thumb:horizontal{
    width: 5px;
    background-color: rgba(125, 125, 125, 0.7);
    -webkit-border-radius: 6px;
}
html, body{
    width: 100%;
    font-family: "Arial", "Microsoft YaHei", "微软雅黑", "宋体", sans-serif;
    color: #666;
}
body{
    line-height: 1.7;
    -webkit-text-size-adjust: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-size: 12px;
}
img{
    max-width: 100%;
}
/*浮动*/

.left{
    float: left;
}
.right{
    float: right;
}

/*弹性布局*/
.flex{
    display: flex;
}
.flex_wrap{
    flex-wrap: wrap;
}

/*定位*/
.pr{
    position: relative;
}
.pa{
    position: absolute;
}


/*清除浮动*/
.clearfix:after{
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

/*页面宽度*/
.wrapper{
    width:1140px;
    margin:0 auto;
}

/*隐藏*/
.dn{
    display: none;
}

/*按钮*/

.more1{
    width: 176px;
    height: 46px;
    display: block;
    border: 1px solid #c9307b;
    font-size: 16px;
    line-height: 46px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    text-align: center;
}
.more1 span{
    position: absolute;
    left: -60px;
    top: 0;
    color: #fff;
    width: 40px;
    float: left;
    background-color: #c9307b;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
.more1 a{
    color: #c9307b;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    display: block;
}
.more1:hover{
    width: 206px;
}
.more1:hover span{
    left: 0;
}
.more1:hover a{
    margin-left: 40px;
}
.ptb30{
    padding:30px 0;
}
.mtb40{
    margin:40px 0;
}
.mt40{
    margin-top:40px;
}