* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}
html,
body {
    font-family:'Microsoft Yahei', 'Microsoft Yahei Light',PingFang SC, STXihei, sans-serif;
    transition:.5s;
    -webkit-transition:.5s;
    -moz-transition:.5s;
    -ms-transition:.5s;
    /*background: #f7f7f9;*/
}
input {
    font-family: 'Microsoft YaHei', 'Microsoft Yahei Light',PingFang SC, STXihei, sans-serif;
    outline: none;
}
.overflow {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
a {
    text-decoration: none;
    line-height: normal;
    color: #333;
}
a:hover {text-decoration: none;}
li {list-style: none}
input {outline: none}
img {max-width: 100%;}
p{margin: 0}
.cls {
    display:block;
    clear:both;
}
.cls:after {
    content:'';
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
    line-height: 0;
}
.hidden {visibility:hidden;}
.none {display:none;}
section {
    width: 100%;
    overflow: hidden;
    float: left;
}
.left {float: left}
.right {float: right}
body, div, dl, dt, dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote，th,td,.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{margin:0;padding:0;line-height:normal;}
.v_center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.btn{padding: 0}
.swiper-container {
    width: 100%;
    height: 100%;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    width: 100%;
    height: 100%;
}
.animated {
    visibility: visible !important;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-timing-function: linear;
}
.animated.infinite {
    animation-iteration-count: infinite;
}
@keyframes fadeIn-left1 {
    0% {
        transform: translate(-10px, 0);
    }
    50%{
        transform: translate(10px, 0);
    }
    100% {
        transform: translate(-10px, 0);
    }
}
.fadeIn-left1 {
    animation-name: fadeIn-left1;
}
.laiyuan {display: none}

/*正方形图形*/
.square_item{
    display: inline-block;
    border: 1px solid #e4e4e4;
    margin-bottom: 14px;
    width: 100%;
}
.square_item .img{
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%;
    background: #e6e7e9;
    position: relative;
    overflow: hidden;
}
.square_item .img img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%,-50%,0);
    max-width: 100%;
    max-height: 100%;
    z-index: 2;
}
.square_item .text{
    display: block;
    width: 100%;
    padding: 5px 10px 15px;
    color: #333;
    text-align: left;
    font-size: 14px;
    background: #fff;
}
/*4:3图形*/
.square_item .img.four{
    padding-top: 75%;
}