* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-family: "Microsoft Yahei";
}
body{
    overflow-x: hidden;
    min-width: 1200px;
    width: 100%;
}
a{
    color: #333;
}
a:hover{
    color: #0550ab;
}
.w-100 {
    width: 100%;
}

.w-1200 {
    width: 1200px;
}

.marginAuto {
    margin: 0 auto;
}
.block{
    display: block;
}

/*height*/

.h-100 {
    height: 100%;
}

.pointer {
    cursor: pointer;
}

.txt-r {
    text-align: right;
}

.txt-l {
    text-align: left;
}

.txt-c {
    text-align: center;
}

.t-hide1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.t-hide2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}

.t-hide3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

img {
    vertical-align: middle;
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
    transition: all 0.2s linear;
}

.posi-r {
    position: relative;
}

.posi-a {
    position: absolute;
}

.inline-block {
    display: inline-block;
}

.clear:after {
    display: block;
    content: '';
    clear: both;
}

.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
}

.flex-between {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex-around {
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.flex-center {
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-align {
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.shrink {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
}

.flex1 {
    -webkit-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
    -webkit-flex-direction: column
}

.flex-direction-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.fw-600 {
    font-weight: 600;
}

.c-999 {
    color: #999;
}

.align-center {
    align-items: center;
}

.f-24 {
    font-size: 24px;
}

.f-22 {
    font-size: 22px;
}

.f-26 {
    font-size: 26px;
}

.f-16 {
    font-size: 16px;
}

.f-14 {
    font-size: 14px;
}

.f-18 {
    font-size: 18px;
}

.f-30 {
    font-size: 30px;
}

.f-40 {
    font-size: 40px;
}

.circleArrow {
    border: 1px solid #333333;
    text-align: center;
    line-height: 25px;
    width: 25px;
    border-radius: 100%;
    height: 25px;
    cursor: pointer;
    display: inline-block;
}
.circleArrow:hover{
    background: #0550ab;
    color: white;
}

.numberBox {
    background: #0550ab;
    color: white;
    font-weight: 600;
    font-size: 26px;
    padding: 3px;
}

.c-main {
    color: #0550ab;
}