body{
    background-repeat: no-repeat;
    background-size: 100% 100%;
    /* position: fix; */
    height: 100vh;
    margin: 0;
    /* background: linear-gradient(#f0ecec, #f7f7f7); */
    background: #f7f7f7;
    overflow: auto;
    box-sizing: border-box;
    /* overflow: hidden; */
}
.company_title {
    padding: 10px 20px;
    line-height: 50px;
    font-size: 24px;
    background: #333333;
    display: flex;
    /* justify-content: center; */
}
.company_title .title-logo {
    /* width: 46px;
    line-height: 22px;
    padding: 5px 5px 5px 10px;
    background: #227ff8;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
    text-align: center;
    color: white;
    border-radius: 5px;
    margin-right: 10px; */
    width: 140px;
    height: 65px;
    background-image: url(./statics/imgs/fangshi-logo1.png);
    background-repeat: no-repeat;
    background-size: 80%;
}
.company_title .title-text {
    color: white;
    flex: 1;
    flex-shrink: 0;
}
.company_title .title-extra {
    color: white;
    font-size: 14px;
    /* float: right; */
    line-height: 20px;
    position: relative;
    top: 8px;
    /* height: 24px; */
}
.single_status_page {
    font-size: 30px;
    display: flex;
    justify-content: center;
    line-height: 50px;
    margin-top: 100px;
}
.errPage {
    color: #d11e1e;
}
.errPage .iconBox {
    border-radius: 50%;
    border: 5px solid #d11e1e;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
}
.errPage .iconBox span {
    font-size: 72px;
    font-weight: bold;
    display: inline-block;
    position: relative;
    top: -6px;
    left: -2px;
    /* transform: scaleX(1.2); */
}
.successPage {
    color: rgb(76, 196, 76);
}
.common_table {
    border: 1px solid rgb(194, 194, 194);
    border-collapse: collapse;
    /* border-color: rgb(194, 194, 194);
    border-style: solid; */
}
.common_table thead {
    background: #86b8fa;
}
.common_table thead th {
    padding: 12px;
    border: 0;
    /* border-left: 0;
    border-right: 0; */
    /* background: #86b8fa; */

}
.common_table tbody tr {
    /* border-top: 1px solid red; */
}
.common_table tbody tr:nth-of-type(n+2) {
    border-top: 1px solid rgb(194, 194, 194);;
    /* background: red; */
}
.common_table tbody td {
    padding: 10px;
    text-align: center;
    border: 0;
    /* border-left: 0;
    border-right: 0; */
}
.common_btn {
    padding: 8px 24px;
    text-align: center;
    border-radius: 32px;
    cursor: pointer;
}
.btn_primary {
    background: #227ff8;
    color: white;
    border-color: #227ff8;
}
.btn_primary:hover{
    background: #006eff;
    transform: scale(1.01);
}
.ml_5 {
    margin-left: 5px;
}
.hide {
    display: none;
}