/*页面公共样式*/
@charset "utf-8";
/* 基础样式 */
body {
    font-family: Noto Sans SC,"Helvetica Neue", Helvetica, Arial,'Inter', system-ui, sans-serif;
}
/* 滚动条美化 */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

*{
    padding: 0;
    margin: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
}
html,body{
    height: 100%;
}
html{
    color: #333;
}
img{
    width: 100%;
    display: block;
}
input::placeholder {
    color: #C9C5C5;
}

input:focus-visible {
    outline:none;
}

input {
    outline: none;
}
.bg-white{
    background: #fff;
}
.height100p{
    height: 100%;
}
.flex{
    display: flex;
}

.flex1 {
    flex: 1;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-between {
    display: flex;
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.content-center {
    justify-content: center;
}

.content-between {
    justify-content: space-between;
}
.content-end{
    justify-content: flex-end;
}

.scroll-x {
    overflow-x: auto;
}

.scroll-y {
    overflow-y: auto;
}

.leaveWidth {
    flex-grow: 1;
    width: 10vh;
}

.autoHeight {
    flex-grow: 1;
    height: 5vh;
}

.text-overflow{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.loading{
    align-items: center;
    justify-content: center;
    color: #1e95f5;
    font-size: 16px;
    padding: 10vh 0;
}
.loading p{
    margin-top: 20px;
    line-height: 1.5;
}

.noData{
    width: 50%;
    height: 100%;
    margin:0 auto 50px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.noData p{
    font-size: 16px;
    color: #888;
    margin-top: 2rem;
    text-align: center;
}

.disabled{
    opacity: .6;
    pointer-events: none;
}

.line-height-1-8{
    line-height: 1.8;
}

.steps{
    padding-bottom: 1rem;
    display:flex;
    justify-content: space-between;
}
.steps .step-primary:first-child:before,.steps .step-gray:first-child:before{
    opacity: 0;
    display: none;
}
.steps .step-primary,.steps .step-gray{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.steps .step-primary{
    color:#0a5eac;
}
.steps .step-gray{
    color: #1d2129;
}

.steps .step-primary:before,.steps .step-gray:before{
    position: absolute;
    right:calc(50% + 0.5rem);
    top: 1rem;
    height: 0.25rem;
    width: calc(100% - 0.5rem);
    content: '';
}
.steps .step-primary:before{
    background: #0a5fad;

}
.steps .step-gray:before{
    background: #ccc;

}
.step-num{
    position:relative;
    z-index:10;
    width:2rem;
    height:2rem;
    border-radius: 2rem;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:0.5rem;
    font-weight: 600;
}
.steps .step-primary .step-num{
    background:#0a5eac;
    color:white;
}
.steps .step-gray .step-num{
    background:#e5e7eb;
    color:#1d2129;
}

/*已完成*/
.finished{
    position: absolute;
    right: 3rem;
    top: 1rem;
    background: #eaf5ff80;
    border-radius: 100px;
    transform: rotate(-45deg);
    border: 1px dashed #92b5d4;
    /* border-left-style: dashed; */
    /* border-right-style: dashed; */
    width: 3.5rem;
    height: 3.5rem;
    text-align: center;
    line-height: 3.5rem;
    font-size: 0.75rem;
    color: #0a5eac;
    opacity: 0.6;
    z-index: 0;
}
.finished.red{
    background: #ffe7e7;
    border-color: #ffc4c4;
    color: #ff1517;
}

    /*分页*/
.positionPage{
    position: relative;
    padding-bottom: 6rem;
}
.positionPage .navigatePages{
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
.navigatePages{
    width:100%;
    text-align:center;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#666;
    margin-top: 2rem;
    padding:0 0.6rem;
    line-height:2rem;
    margin-bottom: 2rem;
}
.navigatePages span,.navigatePages a{
    font-size:0.75rem;
    /*font-family:Arial, Helvetica, sans-serif;*/
    margin:0 0.5rem;
}
.navigatePages a{
    text-decoration:none;
    line-height:2rem;
    height: 2rem;
    display: inline-block;
    border: 1px solid #ccc;
    background: #fcfdfd;
    color: #666;
    border-radius:2px;
    width: 3rem;
    cursor: pointer;
}
.navigatePages a.disabled{
    opacity: .6;
    pointer-events: none;
}
.navigatePages .navigatePages_num a:hover,.navigatePages .navigatePages_num a.currentPage{
    background:#379cfa;
    border-color:#379cfa;
    color:#fff;
}
