/*flexbox*/
.flex-row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    flex-direction: row;
}
.flex-col {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}
.flex-center {
    align-items: center;
}
.center-content {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}
.justify-content {
    justify-content: center;
}
.space-between {
    justify-content: space-between;
}
.stretch {
    align-items: stretch;
}
.flexShrink {
    flex-shrink: 0;
}
.flex-end {
    justify-content: flex-end;
}
.col-a0 {
    -ms-flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
    -moz-flex: 0 0 auto;
    flex: 0 0 auto;
}
.col-a1 {
    -ms-flex: 1 1 0%;
    -webkit-flex: 1 1 0%;
    -moz-flex: 1 1 0%;
    flex: 1 1 0%;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-grow1 {
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
}
.flex-grow2 {
    -webkit-flex-grow: 2;
    -ms-flex-grow: 2;
    flex-grow: 2;
}
.flex-grow3 {
    -webkit-flex-grow: 3;
    -ms-flex-grow: 3;
    flex-grow: 3;
}
.flex-grow4 {
    -webkit-flex-grow: 4;
    -ms-flex-grow: 4;
    flex-grow: 4;
}
.flex-column {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}
.flex-center {
    align-items: center;
}

.flex-shrink {
    flex-shrink: 0;
}

/*头像*/
.round-photo {
    display: inline-block;
    border-radius: 50%;
    position: relative;
    background: #c9c9c9;
    padding: 1px;
    color: #555;
    text-align: center;
    overflow: hidden;
}
.round-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.round-photo50 {
    width: 50px;
    height: 50px;
}
.round-photo40 {
    width: 40px;
    height: 40px;
}
.round-photo36 {
    width: 36px;
    height: 36px;
    line-height: 36px;
}
.round-photo32 {
    width: 32px;
    height: 32px;
    line-height: 32px;
}
.round-photo28 {
    width: 28px;
    height: 28px;
    line-height: 28px;
}
.round-photo24 {
    width: 24px;
    height: 24px;
    line-height: 24px;
}
.round-photo20 {
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.avatar-img {
    width: 100%;
    height: 100%;
}

/* 位置 */
.fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 999;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.clearfix:before,
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.ml-10 {
    margin-left: 10px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-15 {
    margin-right: 15px;
}
.mr-5 {
    margin-right: 5px;
}
.ml-5 {
    margin-left: 5px;
}

.mb-5 {
    margin-bottom: 5px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-48 {
    margin-bottom: 48px;
}
.pd10 {
    padding: 10px;
}

.pd-10 {
    padding-left: 10px;
    padding-right: 10px;
}
.pd-15 {
    padding-left: 15px;
    padding-right: 15px;
}
.pd-25 {
    padding-left: 25px;
    padding-right: 25px;
}
.pr-32 {
    padding-right: 32px;
}

.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.t-left {
    text-align: left;
}
.t-center {
    text-align: center;
}
.t-right {
    text-align: right;
}
.relative {
    position: relative;
}

.divider-top {
    border-top: 1px solid #e5e5e5;
}
.divider-btm {
    border-bottom: 1px solid #e5e5e5;
}
.divider-right {
    max-width: 150px;
    border-right: 1px solid #e5e5e5;
}

.popup-form-hint {
    padding: 0 10px;
    color: #f60;
}
.bg-red {
    background-color: #ff4f3e;
    color: #fff;
}
.bg-blue {
    background-color: #3da8f5;
    color: #fff;
}

#root{
    height:100%;
    overflow: auto;
    background-color: #292C2F;
}

.agile-tag-tooltip-topRight.ant-tooltip-placement-topRight .ant-tooltip-arrow {
    right: 8px;
}

.zIndex501 {
    z-index: 501;
}
.zIndex1001 {
    z-index: 1001;
}

.dropdownSetHeight > div > ul > li {
    height: 30px;
 }