@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;
}
img{
    display: block;
}
/* custom */
a{
    color: #666;
    text-decoration: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition:all 0.3s ease 0s;
    -o-transition:all 0.3s ease 0s;
    transition:all 0.3s ease 0s;
}
a:hover{
    text-decoration: none;
    color:var(--theme-color);
}
::-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: "PingFang SC", "Hiragino Sans GB", "Heiti SC", "Microsoft YaHei", "WenQuanYi Micro Hei";
    color: #666;
    overflow-x: hidden;
}
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%;
}

:root{
    --theme-color:#4db5d7;
    --secondary-color:#ffae27;
    --third-color:#ffd800;
    --color-fixedright:#4db5d7;
    --theme-font-family:'PingFang SC'
}


/*浮动*/

.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{
    
    margin:0 auto;
}
.wrapper{
    width:1200px;
}
@media screen and (min-width: 1441px) {
    
}
/*@media screen and (max-width: 1440px) {*/
/*    .wrapper{*/
/*        width:1200px;*/
/*    }*/
/*}*/
/*隐藏*/
.dn{
    display: none;
}

/*按钮*/


.jy_morebtn{ 
    position: relative; 
    z-index: 1; 
    margin-top: 50px;
    display: inline-block;
    height:54px;
    width: 173px;
}

.jy_morebtn::before{ 
    content: ""; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    z-index: -1; 
    box-sizing: border-box;
    left: 0; 
    top: 0; 
    border: 3px solid #dcdddf; 
    transition: .5s; 
    border-radius: 2.5rem;
}

.jy_morebtn a{ 
    display: flex; 
    align-items: center;
    justify-content: center; 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    left: 0;
    top: 0; 
    font-size: 16px; 
    color: #5d5e60;
}
.jy_morebtn svg path{
    fill: none; 
    box-sizing:border-box;
	stroke-width: 3;
	stroke: #0046a6;
    stroke-dasharray: 44 , 153;
    stroke-dashoffset: 57;
	transition: all .3s linear 0s;	
}
.jy_morebtn:hover svg path{ 
    stroke-dasharray: 200 , 0;
    stroke-dashoffset: 140;
}
.jy_morebtn.jy_whitebtn a{
    color: #fff;
}

.jy_morebtn.jy_whitebtn:before{ 
    border-color: rgba(255, 255, 255, .4);
}
.jy_morebtn.jy_whitebtn svg path{
    stroke: #fff;
}
.jy_morebtn:hover:before{ 
    opacity: 0;
}
.jy_morebtn.jy_bluebtn:before{
    border-color: #b6c9e1;
}

.jy_morebtn.jy_skybluebtn:before{
    border-color: #dbf0f7;
}
.jy_morebtn.jy_skybluebtn svg path{
    stroke: var(--theme-color);
}


/* text-overflow */

.text-overflow{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}
.text-overflow-line2{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-overflow-line3{
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}




/*鼠标经过图片放大*/


.img_scale .img{
    overflow: hidden;
}
.img_scale .img img{
    transition: all .8s;
}
.img_scale:hover .img img{
    transform: scale(1.1);
}

.ptb30{
    padding:30px 0;
}
.mtb40{
    margin:40px 0;
}
.mt40{
    margin-top:40px;
}

.mtpc100mo40{
    margin-top:100px;
}
.mtpc90mo35{
    margin-top:90px;
}
.ptbpc100mo40{
    padding:100px 0;
}
@media screen and ( max-width: 1200px){
    .mtpc100mo40{
        margin-top:35px;
    }
    .mtpc90mo35{
        margin-top: 35px;
    }
    .ptbpc100mo40{
        padding:40px 0;
    }
}
