/*basic*/
* {
    margin: 0;
    padding: 0;
    font-style: normal;
    /* user-select: none; */
}

body {
    font-size: 14px;
    font-family: PingFangSC, PingFang SC, Arial, Helvetica, sans-serif,serif;
    color: #333;
}

a {
    text-decoration: none !important;
    color: inherit;
}

img {
    border: none;
    object-fit: cover;
}

ul {
    list-style: none;
}

.center {
    text-align: center;
}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.border-box{
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
}
/* margin样式 */
.noMargin{
    margin: 0 !important;
}
.m0-auto{
    margin:0 auto;
}
.m0-20{
    margin: 0 20px;
}
.mb10{
    margin-bottom: 10px;
}
.mb16{
    margin-bottom: 16px;
}
.mb20{
    margin-bottom: 20px;
}
.mb24{
    margin-bottom: 24px;
}
.mb30{
    margin-bottom: 30px;
}
.mb32{
    margin-bottom: 32px;
}
.mb45{
    margin-bottom: 45px;
}
.mb50{
    margin-bottom: 50px;
}
.mb83{
    margin-bottom: 83px;
}
.mt10{
    margin-top: 10px;
}
.mt14{
    margin-top: 14px;
}
.mt20{
    margin-top: 20px;
}
.mt24{
    margin-top: 24px;
}
.mt30{
    margin-top: 30px;
}
.mt40{
    margin-top: 40px;
}
.mt144{
    margin-top: 144px;
}
.ml6{
    margin-left: 6px;
}
.ml34{
    margin-left: 34px;
}
.ml10{
    margin-left: 10px;
}
.mr9{
    margin-right: 9px;
}
.mr10{
    margin-right: 10px;
}
.mr20{
    margin-right: 20px;
}
.mr30{
    margin-right: 30px;
}
/* padding样式 */
.plr20{
    padding-left: 20px;
    padding-right: 20px;
}
.ptb14{
    padding: 14px;
}
.pt30{
    padding-top: 30px;
}
.pt40{
    padding-top: 40px;
}
.p30{
    padding: 30px;
}
.ph30{
    padding: 0 30px;
}
.pl30{
    padding-left: 30px;
}
.pl50{
    padding-left: 50px;
}
.pb30{
    padding-bottom: 30px;
}
.pr17{
    padding-right: 17px;
}

/* 线条样式 */
.gray-line{
    background-color: #E5E5E5;
    width: 100%;
    height: 1px;
}
/* 基础标题样式 */
.textBlue{
    color: #005EC7;
    font-family: PingFangSC, PingFang SC, Arial, Helvetica, sans-serif,serif;;
    font-weight: 400;
    font-size: 16px;
    font-style: normal;
}

.text-blue{
    color: #005EC7;
}

/* 首行缩进 */
.textIndent1{
    text-indent: 1em;
}
.textIndent2{
    text-indent: 2em;
}
/* 背景颜色 */
.bgWhite{
    background: #fff;
}
.bg-gray{
    background-color: #eee;
}
.grayLine{
    height: 1px ;
    background: #ECEDF0;
}
.bg-red-1{
    background-color: #C70000;
}
.bg-blue-1{
    background-color: #005EC7;
}
.bg-yellow-1{
    background-color: #C77C00;
}

/* 边框 */
.border-left-white{
    border-left: 1px solid #fff;
}
.border-right-white{
    border-right: 1px solid #fff;
}
/* flex布局 */
.flex{
    display: flex;
}
.flex-wrap{
    flex-wrap: wrap;
}
.flex-1{
    flex:1
}
.flex-shrink{
    flex-shrink: 0;
}
.flex-column{
    flex-direction: column;
}
.justify-center{
    justify-content: center;
}
.justify-between{
    justify-content: space-between;
}
.justify-around{
    justify-content: space-around;
}
.align-center{
    align-items: center;
}
.align-start{
    align-items: flex-start;
}
.align-end{
    align-items: flex-end;
}

/* 三行文本省略 */
.text-three-ellipsis{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* 两行文本省略 */
.text-two-ellipsis{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/* 单行文本省略 */
.text-ellipsis{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}
/* 字体颜色 */
.black{
    color: #353535;
}
.gray{
    color: #666666;
}
.white{
    color: #fff;
}
a.white{
    color: #fff;
}
/* 首行缩进 */
.text-indent-1{
    text-indent: 1em;
}
.text-indent-2{
    text-indent: 2em;
}
/* 文本打断 */
.text-break{
    word-break: break-all;
    word-wrap: break-word;
}
/* 行高 */
.line-height-22{
    line-height: 22px;
}
.line-height-25{
    line-height: 25px;
}
.line-height-28{
    line-height: 28px;
}
.line-height-36{
    line-height: 36px;
}
/* 特殊字体样式 */
a.blue{
    color: #005EC7;
}
a.gray{
    color: #666666;
}
.font-bold{
    font-weight: bold;
}
/* 字体大小 */
.f14{
    font-size: 14px;
}
.f16{
    font-size: 16px;
}
.f18{
    font-size: 18px;
}
.f20{
    font-size: 20px;
}
.f26{
    font-size: 26px;
}
.f28{
    font-size: 28px;
}
.f32{
    font-size: 32px;
}
/* 标题特殊字体样式 */
.t-black{
    color: #353535;
}
/* 宽度 */
.w-full{
    width: 100%;
}
.w110{
    width: 110px;
}
.w220{
    width: 220px;
}
.w248{
    width: 248px;
}
.h-full{
    height: 100%;
}
.w327{
    width: 327px;
}
/* 高度 */
.h20{
    height: 20px;
}
.h44{
    height: 44px;
}
.h45{
    height: 45px;
}
.h50{
    height: 50px;
}
.h54{
    height:54px;
}
.h56{
    height: 56px;
}
.h173{
    height: 173px;
}
.mh594{
    min-height: 594px;
}
.h700{
    height: 700px;
}
/* 蓝色竖条 */
.blue-bar{
    width: 5px;
    height: 24px;
    background-color: #005EC7;
    border-radius: 3px;
    margin-top: 0.25em;
}
/* 输入框样式 */
.input{
    border:none;
    outline: none;
    background: none;
    border:1px solid #E5E5E5;
    border-radius: 6px;
    padding: 12px;
    font-family:PingFangSC, PingFang SC, Arial, Helvetica, sans-serif,serif;
}
.input::placeholder{
    color: #CCCCCC;
    font-size: 14px;
    line-height: 20px;
}
.input-label{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 64px;
    height: 44px;
    font-size: 14px;
    color: #353535;
    font-weight: bold;
    margin-right: 20px;
}
.input-label .required{
    color: #FF6666;
}
/* 按钮 */
.submit-btn{
    border: none;
    outline: none;
    width: 262px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
    background-color: #005EC7;
    border-radius: 6px;
    cursor: pointer;
}
button:active{
    transform: translate(1px,1px);
}

/* 右箭头 */
.right-arrow{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right:2px solid #E8E8E8;
    border-bottom:2px solid #E8E8E8;
    transform: rotate(-45deg);
}
.bottom-arrow,.active.right-arrow.active{
    border-color: #fff;
}
/* 下箭头 */
.bottom-arrow{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right:2px solid #E8E8E8;
    border-bottom:2px solid #E8E8E8;
    transform: rotate(45deg);
}
.navItemLinkArrow{
    display: flex;
    justify-content: center;
    align-items: center;
}

.navItem:hover .right-arrow,.navItem:hover .bottom-arrow{
    border-color: #fff;
}
.navItemLinkText{
    flex:1;
}

/* 特殊内嵌线条样式 */
.left-line{
    position: relative;
}
.left-line::before{
    content:"";
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background-color:#C70000;
}
.left-line-yellow{
    position: relative;
}
.left-line-yellow::before{
    content:"";
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background-color:#C77C00;
}
.left-line-blue{
    position: relative;
}
.left-line-blue::before{
    content:"";
    position: absolute;
    left: 0;
    width: 5px;
    height: 100%;
    background-color:#005EC7;
}
/* 阴影 */
.shadow1{
    box-shadow: 0px 0px 30px 0px rgba(0,94,199,0.16);
}
/* 表格 */
.table{
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%;
}
.table td{
    border: 1px solid #E8E8E8;
}
/* 无序列表 */
.ul-1 li{
    padding-left: 15px;
    position: relative;
}
.ul-1 li::before{
    position: absolute;
    left: 0;
    top: 10px;
    content:"";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #005EC7;
}
.ul-2 li{
    padding-left: 15px;
    margin-left: 15px;
    position: relative;
}
.ul-2 li::before{
    position: absolute;
    left: 0;
    top: 10px;
    content:"";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border:2px solid #bbb;
    background: none;
}

ul .no-circle::before{
    display: none;
}

/* border-box */
.border-box{
    box-sizing: border-box;
}
.article-content p{
    padding: 10px 0;
}

.maxwidth940{
    max-width: 940px;
}