

html,body,div{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}
.main-in{
    width: 1360px;
    margin: 0 auto;
}
.bg-white{
    background-color: #fff;
}
.bg-red{
    background-color: #FE230E;
}
/* 字体颜色 */
.white-color{
    color: #fff;
}
.red-color{
    color: #FE230E;
}
.black-color{
    color: #333;
}
/* 字体大小 */
.font-88{
    font-size: 88px;
}
.font-65{
    font-size: 65px; 
}
.font-54{
    font-size: 54px;
}
.font-28{
    font-size: 28px;
}
.font-25{
    font-size: 25px;
}
.font-22{
    font-size: 22px;
}
.font-18{
    font-size: 18px;
}
/* 字体加粗 */
.font-w{
    font-weight: bold;
}
.font-h{
    font-weight: 900;
}
/* 布局 */
.flex{
    display: flex;
}
.align-center{
    display: flex;
    align-items: center;
}
.justify-center{
    display: flex;
    justify-content: center;
}
/* 位置 */
.position-r{
    position: relative;
}
.position-a{
    position: absolute;
}
.w-100{
    width: 100%;
}
.h-100{
    height: 100%;
}

#hdr_mn{display: none;}