.dir-left-nowrap {
    /* 主轴 排列方式从左侧开始 不换行*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
}

.dir-left-wrap {
    /* 主轴 排列方式从左侧开始 换行*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}

.dis-huanhang {
    display: flex;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;
}

.dis-bottom {
    align-content: flex-end;
}

.dis-cja {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dir-left-wrap-reverse {
    /* 主轴 排列方式从左侧开始 换行 第一行在下方*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}

.dir-right-nowrap {
    /* 主轴 排列方式从 右侧开始 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
}

.dir-right-wrap {
    /* 主轴 排列方式从 右侧开始 换行*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}

.dir-right-wrap-reverse {
    /* 主轴 排列方式从 右侧开始 换行 第一行在下方*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap-reverse;
}

.dir-top-nowrap {
    /* 主轴 排列方式从顶部开始 不换行 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
}

.dir-top-wrap {
    /* 主轴 排列方式从顶部开始  换行*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
}

.dir-top-wrap-reverse {
    /* 主轴 排列方式从顶部开始 不换行换行 第一行在下方*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap-reverse;
}

.dir-bottom-nowrap {
    /* 主轴 排列方式从底部开始 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    flex-wrap: nowrap;
}

.dir-bottom-wrap {
    /* 主轴 排列方式从底部开始 不换行 换行*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap;
}

.dir-bottom-wrap-reverse {
    /* 主轴 排列方式从底部开始 不换行换行 第一行在下方*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    flex-direction: column;
    flex-wrap: wrap-reverse;
}

.main-left {
    /* 主轴 左对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

.main-right {
    /* 主轴 右对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.main-between {
    /* 主轴 两端对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.main-center {
    /* 主轴 居中对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.main-center2 {
    /* 主轴 居中对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-evenly;
    justify-content: space-evenly;
}

.main-around {
    /* 主轴 项目位于各行之前、之间、之后都留有空白的容器内*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.cross-top {
    /* 交叉轴 起点对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.cross-bottom {
    /* 交叉轴 终点对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -ms-grid-row-align: flex-end;
    align-items: flex-end;
}

.cross-baseline {
    /* 交叉轴 第一行文字基线对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: baseline;
    align-items: baseline;
}

.cross-center {
    /* 交叉轴 居中对齐 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.cross-stretch {
    /* 交叉轴 高度并排铺满 高度不固定*/
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
}

.flex-wrap {
    /* 流模式 第一行在上方 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    /* 流模式 第一行在下方 */
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

.box-grow-0 {
    /* flex 子元素固定宽度*/
    min-width: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.box-grow-1 {
    /* flex 子元素等分 */
    min-width: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-flex-shrink: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
}

.flex1 {
    flex: 1
}

.inline-flex {
    display: -webkit-inline-flex;
    display: inline-flex;
}

.cup {
    cursor: pointer;
}

.center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.cursor {
    cursor: pointer;
}

.bold {
    font-weight: bold;
}

.gfs12 {
    font-size: 12px;
}

.gfs14 {
    font-size: 14px;
}

.gfs16 {
    font-size: 16px;
}

.gfs19 {
    font-size: 19px;
}

.gfs20 {
    font-size: 20px;
}

.gfs26 {
    font-size: 26px;
}

.gfs21 {
    font-size: 21px;
}

.gfs22 {
    font-size: 22px;
}

.gfs18 {
    font-size: 18px;
}

.gfs24 {
    font-size: 24px;
}

.gfs28 {
    font-size: 28px;
}

.gfs30 {
    font-size: 30px;
}

.gfs32 {
    font-size: 32px;
}

.gfs33 {
    font-size: 33px;
}

.gfs34 {
    font-size: 34px;
}

.gfs38 {
    font-size: 38px;
}

.gfs40 {
    font-size: 40px;
}

.gfs48 {
    font-size: 48px;
}

.gfs50 {
    font-size: 50px;
}



.gmb5 {
    margin-bottom: 5px;
}

.gmb10 {
    margin-bottom: 10px;
}

.gmb15 {
    margin-bottom: 15px;
}

.gmb20 {
    margin-bottom: 20px;
}

.gmb25 {
    margin-bottom: 25px;
}

.gmb30 {
    margin-bottom: 30px;
}

.gmb35 {
    margin-bottom: 35px;
}

.gmb40 {
    margin-bottom: 40px;
}

.gmb45 {
    margin-bottom: 45px;
}
.gmb55 {
    margin-bottom: 55px;
}
.gmb60 {
    margin-bottom: 60px;
}



.gmb30 {
    margin-bottom: 30px;
}

.gmb40 {
    margin-bottom: 40px;
}

.gmb50 {
    margin-bottom: 50px;
}

.gbm55 {
    margin-bottom: 55px;
}

.gmb60 {
    margin-bottom: 60px;
}



.gmb80 {
    margin-bottom: 80px;
}



.gmt10 {
    margin-top: 10px;
}

.gmt30 {
    margin-top: 30px;
}


.gmr5 {
    margin-right: 5px;
}

.gmr10 {
    margin-right: 10px;
}

.gmr15 {
    margin-right: 15px;
}

.gmr20 {
    margin-right: 20px;
}

.gmr25 {
    margin-right: 25px;
}

.gmr30 {
    margin-right: 30px;
}

.gmr40 {
    margin-right: 40px;
}

.gmr45 {
    margin-right: 45px;
}

.gmr50 {
    margin-right: 50px;
}

.gmr60 {
    margin-right: 60px;
}

.gmr75 {
    margin-right: 75px;

}
.gmr100 {
    margin-right: 100px;
}

.gmt20 {
    margin-top: 20px;
}


.gmb15 {
    margin-bottom: 15px;
}

.gmt60 {
    margin-top: 60px;
}

.gbule {
    color: #1a90fb;
}

.gguree {
    color: #43c56e;
}

.gcen {
    color: #f96a22;
}

.col666666 {
    color: #666666;
}

.col1294ff {
    color: #1294ff;
}

.col2fbf5f {
    color: #2fbf5f;
}

.col000 {
    color: #000000;
}

.col0063ce {
    color: #0063ce;
}

.col198ffd {
    color: #198ffd;
}

.col2ebf5f {
    color: #2ebf5f;
}

.colff894a {
    color: #ff894a;
}

.col2094D8 {
    color: #2094D8;
}

.col6f88f8 {
    color: #6f88f8;
}

.col313030 {
    color: #313030;
}

.col1492ff {
    color: #1492ff;
}

.colfff {
    color: #fff;
}

.colf5c000 {
    color: #f5c000;
}

.col6dffef {
    color: #6dffef;
}

.colffb508 {
    color: #ffb508;
}

.col12e9f7 {
    color: #12e9f7;
}

.col0dde79 {
    color: #0dde79;
}

.col00ffff {
    color: #00ffff;
}

.col6eaae6 {
    color: #6eaae6;
}

.col22e8e9 {
    color: #22e8e9;
}

.col479ffe {
    color: #479ffe;
}

.col00ffff {
    color: #00ffff;
}

.col999999 {
    color: #999999;
}

.col525252 {
    color: #525252;
}

.col333333 {
    color: #333333;
}

.colcdcdcd {
    color: #cdcdcd;
}

.col025AFF {
    color: #025AFF;
}

.colred {
    color: red;
}

.text-center {
    text-align: center;
}

.tslh {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
}

.slh2 {
    word-break: break-all;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 超出几行省略 */
    overflow: hidden;

}

.italic {
    font-style: italic;
}

.marauto {
    margin: 0 auto;
}

.w10 {
    width: 10%;
}

.w20 {
    width: 20%;
}

.w25 {
    width: 25%;
}

.w30 {
    width: 30%;
}

.w33 {
    width: 33%;
}

.w40 {
    width: 40%;
}

.w50 {
    width: 50%;
}

.w60 {
    width: 60%;
}

.w70 {
    width: 70%;
}

.w80 {
    width: 80%;
}

.w90 {
    width: 90%;
}

.w100 {
    width: 100%;
}

.w1440px {
    width: 1440px;
}
.h10{
    height: 10%;
}

.h100{
    height: 100%;
}

.h140px {
    height: 140px;
}

.opacity82 {
    opacity: .82;
}
.iframeMain {
    height: 160px;
    overflow: hidden;
    width: 100%;
}

 iframe {
    width: 100%;
    height: 100%;
    border: none;
}
/* .iframeNav{
    height:auto;
} */

.animation-delay-2{
    -webkit-animation-delay:0.01s;
    animation-delay:0.01s;
}
.animation-delay-5{
    -webkit-animation-delay:0.5s;
    animation-delay:0.5s;
}
.lh30{
    line-height: 30px;
}
.text-indent2{
    text-indent: 2em;
}
@media screen and (min-width:1921px) and (max-width:2560px) {
    .iframeMain{
        height: 160px;
    }
  
}

.iframeNav {
    position: fixed !important;
    z-index: 99999 !important;
}