@charset "utf-8";

/* 这个css是初始化的css，在任何项目里面都可以使用 */

/* 禁用iphone中safari的字号自动调整 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* 解决ios默认滑动很卡的情况 */
    -webkit-overflow-scrolling: touch;

    font-size: 0;
}

/* 禁止缩放表单 */
input[type="submit"],
input[type="reset"],
input[type="button"],
input {
    resize: none;
    border: none;
}

button {
    /* border: none; */
}

/* 取消链接高亮  */
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* 设置html5元素为块 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* 图片自适应 */
img {
    max-width: 100%;
    height: auto;
    width: auto\9;
    /* ie8 */

    -ms-interpolation-mode: bicubic;
    /*为了照顾ie图片缩放失真*/
}

/* 初始化 */
body,
div,
ul,
li,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
select,
p,
dl,
dt,
dd,
a,
img,
button,
form,
table,
th,
tr,
td,
tbody,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    margin: 0;
    padding: 0;
}

body {
    font-family: "pingfang sc ";
    color: #555;
    background-color: #fff;
    overflow-x: hidden;

}

button:focus {
    outline: none;
}

em,
i {
    font-style: normal;
}

ul,
li {
    list-style-type: none;
}

.w100 {
    width: 100%;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
}

a:hover,
a:link,
a:visited {
    text-decoration: none;
}

.clearfix {
    zoom: 1;
}

input:focus,
textarea:focus {
    outline: none;
}

.overh {
    overflow: hidden;
}


/* body {
  font-size: 0 !important;
} */

.er_ul li:hover .cl {
    clear: both;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.ta {
    text-align: center;
}

.tr {
    text-align: right;
}

.tl {
    text-align: left;
}

.displaynone {
    display: none;
}

.swiper-button-prev:focus,
.swiper-button-next:focus {

    outline: none;
}

.wen_hied {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

@media (min-width: 1450px) {
    .container {
        width: 1440px;
    }
}