*{
    margin: 0;padding: 0;
}
ul,ol{
    list-style: none;
}
a,p,span,li,input,textarea{
    font-size: 16px;color: #333333;
}
a{
    text-decoration: unset;
}
input:focus-visible{
    outline: linen;
}
body,html{
    font-family: "微软雅黑", sans-serif;
}

/* 公共css */
.block{
    display: block;
}
.container{
    width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
}
.wrapHeight{
    min-height: calc(100vh - 80px - 350px);
}

/* flex布局 */
.flex{
    display: -webkit-box;  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
    display: -moz-box;     /* 老版本语法: Firefox (buggy) */
    display: -ms-flexbox;  /* 混合版本语法: IE 10 */
    display: -webkit-flex; /* 新版本语法: Chrome 21+ */
    display: flex;         /* 新版本语法: Opera 12.1, Firefox 22+ */
}
.justify-center{
    justify-content: center;
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.justify-end{
    justify-content: flex-end;
}
.justify-start{
    justify-content: flex-start;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}
.flex-shrink{
    flex-shrink: 0;
}
.flex-wrap{
    flex-wrap: wrap;
}

/* font - 字体 */
.bold{
    font-weight: bold;
}
.f500{
    font-weight: 500;
}

/* color - 字体颜色 */
.white{
    color: #fff;
}
.black{
    color: #000;
}
.c3{
    color: #333;
}
.c6{
    color: #666;
}
.c9{
    color: #999;
}

/* 背景色 */
.bgwhite{
    background-color: #fff;
}

/* 边距 */
.border-box{
    box-sizing: border-box;
}

/* 单行文字省略 */
.text-overflow{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* 多行文字省略 */
.text-overflow2{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.text-overflow3{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.text-center{
    text-align: center;
}

/* 宽100% */
.w100{
    width: 100%;
}







