html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
form,
fieldset,
input,
textarea,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    /*text-decoration: underline;*/
    cursor: pointer;
}

input {
    border: 0;
}

input:focus {
    outline: none;
    border: 0;
}

ul li {
    list-style: none;
}

address {
    font-style: normal;
}

body {
    font-family: "Microsoft YaHei", "PingFangSC-Medium", "sans-serif";
    font-size: 16px;
    font-size: .16rem;
}

/*分割线*/
p.line {
    height: 1px;
    background-color: #ddd;
}


main {
    display: block;
}

img {
    border: 0;
    vertical-align: middle;
}

.centerWidth {
    width: 1200px;
    margin: 0 auto;
    width: 12rem;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
    line-height: 0;
}

.clearfix:after {
    clear: both;
}

.lf {
    float: left;
}

.rt {
    float: right;
}

.ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ellipsis2 {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.flex-between-alignC{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

