.my-loading {
    position: relative;
}

.msg-loading-icon, .my-loading:before {
    display: block;
    width: 34px;
    height: 34px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -26px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAiCAYAAAA6RwvCAAABlElEQVRYR+2WsUoDQRCGvxHFwiZN4gkWNvaCBtRKfAURtBWxsAg5AoqVsRa9O8FSS0ULC19AEVR8AwvBQsjFJL5BvJGVnASJnKJmm7vqYIb5P/6Z3R3hF5/j6QjCBZADGsAL8KARZ1GTy/qaVL9bXr6b2CmvDWTkizrnAjthUa6SdH4FEhcf3NYB6SWLkAXywDwwE8dFCSRip1KSp6+A/gSko1u+5lVZFmGlFX9U2Hguykmn/H8DicWGAh1XZb3lEqKUQld2P8P8O0gs6Ph6+gHTw1xYkLN2mK6BGFHH0zLCpvmPlOmaK7cfc5Q0zX8ddwI9QFlCuG9GzDZcCY1GVx0xghlPM/3ChcAYylbVlbIVECM6GOiCKMdApalMGFe67kjb8BqQhdgVayA5T6d6hBvgrlqUSWsg76fIV3PTDr/2MWoVZMjXI4VFFQpWQRxfV4F9hEO7IJ7OmDVC4douyJ5miaiZXcYqSGtgzWJVtw5i7a3p+mL008cybY21DS2pVWlr0takM5LkQDojSQ6l98hnh94AjEVzlg1mjQ8AAAAASUVORK5CYII=);
    color: #2196f3;
    content: "";
    position: absolute;
    z-index: 100000000;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-animation: my-loading 0.8s infinite linear;
    animation: my-loading 0.8s infinite linear;
}

.my-loading.sm:before {
    width: 22px;
    height: 22px;
    background-size: 22px 22px;
}

.my-loading:after {
    content: '';
    display: block;
    z-index: 99999999;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    clear: both;
}

@-webkit-keyframes my-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    35% {
        -webkit-transform: rotate(179deg);
        transform: rotate(179deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes my-loading {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    35% {
        -webkit-transform: rotate(179deg);
        transform: rotate(179deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}


.loading-msg-div {
    position: absolute;
    z-index: 9999999999;
    background-color: hsla(0, 0%, 100%, .85);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity .3s;
}

html.loading-msg-parent .loading-msg-div {
    position: fixed;
}

.loading-msg-body {
    width: 100%;
    height: 100%;
    position: relative;
}

.loading-msg-body.no-text .msg-loading-text {
    display: none;
}

.loading-msg-body.no-text .msg-loading-icon {
    margin-top: 0;
}

.msg-loading-spinner {
    top: 50%;
    margin-top: -31px;
    width: 100%;
    text-align: center;
    position: absolute;
}

.msg-loading-text {
    margin: 3px 0;
    padding-top: 35px;
    font-size: 14px;
    color: #5e6d82;
    line-height: 1.5em;
}

.loading-msg-parent {
    position: relative !important;
    min-height: 80px;

}

html.loading-msg-parent, html.loading-msg-parent body {
    height: auto;
}

.loading-msg-parent {
    overflow: hidden;
}

#msgs-box {
    position: fixed;
    z-index: 99999999999;
    top: 24px;
    left: calc(50vw - 175px);
}

.msg-item {
    padding: 15px;
    border: 1px solid #c8cad0;
    border-radius: 4px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .15);
    transition: opacity .3s, transform .3s, left .3s, right .3s, top .4s, bottom .3s;
    overflow: hidden;
    background-color: #fff;
    width: 350px;
    margin: 8px;
}

#msgs-box.hover .msg-item {
    border-color: #8d8f97;
}

#msgs-box.hover .msg-data-div {
    color: #000;
}

.msg-item-info {
    display: flex;
    align-items: center;
}

.msg-data-div {
    flex: 1;
}

.msg-item h3 {
    font-weight: 700;
    font-size: 16px;
    color: #303133;
}

.msg-data-div p {
    font-size: 15px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    color: rgba(0, 0, 0, .78);
}

.msg-data-div > h3 + p {
    font-size: 14px;
    text-shadow: none;
    color: rgba(0, 0, 0, .65);
}

.msg-item .msg-item-doging {
    text-align: right;
}

.icon-div svg {
    margin-right: 15px;
    font-size: 24px;
}

.msg-item.info .icon-div svg {
    color: #ccc;
}

.msg-item.success .icon-div svg {
    color: #07c160;
}

.msg-item.primary .icon-div svg {
    color: #1890ff;
}

.msg-item.warning .icon-div svg {
    color: #ff976a;
}

.msg-item.error .icon-div svg {
    color: #ee0a24;
}

.msg-item.info .layui-btn.layui-btn-sm.read-msg-btn {
    background-color: #fff;
    color: #aaa;
    padding: 0 5px;
    border-color: #ebedf0;
}

.msg-item.info .layui-btn.layui-btn-sm.read-msg-btn:hover {
    color: #666;
    border-color: #d8d8db;
}

.msg-item.warning .layui-btn.layui-btn-sm.read-msg-btn {
    background-color: #fff;
    color: rgba(255, 151, 106, 0.6);
    padding: 0 5px;
    border-color: rgba(255, 151, 106, 0.4);
}

.msg-item.warning .layui-btn.layui-btn-sm.read-msg-btn:hover {
    color: #ff976a;
    border-color: #ff976a;
}

.msg-item.primary .layui-btn.layui-btn-sm.read-msg-btn {
    background-color: #fff;
    color: rgba(24, 144, 255, 0.6);
    padding: 0 5px;
    border-color: rgba(24, 144, 255, 0.4);
}

.msg-item.primary .layui-btn.layui-btn-sm.read-msg-btn:hover {
    color: #1890ff;
    border-color: #1890ff;
}

.msg-item.success .layui-btn.layui-btn-sm.read-msg-btn {
    background-color: #fff;
    color: rgba(7, 193, 96, 0.6);
    padding: 0 5px;
    border-color: rgba(7, 193, 96, 0.4);
}

.msg-item.success .layui-btn.layui-btn-sm.read-msg-btn:hover {
    color: #07c160;
    border-color: #07c160;
}

.msg-item.error .layui-btn.layui-btn-sm.read-msg-btn {
    background-color: #fff;
    color: rgba(238, 10, 36, 0.4);
    padding: 0 5px;
    border-color: rgba(238, 10, 36, 0.4);
}

.msg-item.error .layui-btn.layui-btn-sm.read-msg-btn:hover {
    color: #ee0a24;
    border-color: #ee0a24;
}

.msg-item .layui-btn.layui-btn-sm.read-msg-btn, .msg-item .layui-btn.layui-btn-sm.read-msg-btn * {
    transition: all .3s;
    opacity: 1 !important;
}

svg.icon {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    overflow: hidden;
}

@keyframes my-opacity {
    0% {
        opacity: 0;
        transform: rotateX(75deg);
    }
    35% {
        opacity: 0.5;
        transform: rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.td-show-info-span {
    position: absolute;
    margin-top: 10px;
    margin-right: 5px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    border-radius: 2px;
    background-color: #FFFFFF;
    color: #464646;
    z-index: 999999;
    animation: my-opacity 0.18s linear;
}

/***********************************************************地图选中*********************************************************************/

#map-select-box-bg {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 52, 56, .5);
    animation-fill-mode: forwards !important;
}

#map-select-box-content {
    box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
    background-color: #fff;
    position: fixed;
    animation-fill-mode: forwards !important;
    display: flex;
    flex-direction:column;
    animation-timing-function:cubic-bezier(.645, .045, .355, 1);
}
#map-select-box-content-body{
    flex: 1;
}
#map-select-box-content-map{
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
#map-select-box-content-top{
    padding: 24px;
    box-sizing: border-box;
}
#map-select-search-input{
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    transition: border-color .2s cubic-bezier(.645,.045,.355,1);
    color: #606266;
    border: 1px solid #DCDFE6;
    background-color: #FFF;
    background-image: none;
    border-radius: 4px;
}
#map-select-search-input:focus{
    border-color: #1989FA;
}
.tangram-suggestion-main{
    transform-origin: center top 0;
    animation: map-show-h .25s linear;
}
.tangram-suggestion-main .tangram-suggestion{
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, .1);
}
.tangram-suggestion-main .tangram-suggestion td{
    padding: 6px 10px;
    color: #606266;
}

.tangram-suggestion-main .tangram-suggestion-current{
    background-color: #F2F6FC;

}
.tangram-suggestion-main .tangram-suggestion-current td{
    color: #303133;
}
.tangram-suggestion-main .tangram-suggestion .tangram-suggestion-grey{
    color: #C0C4CC;
}
.map-select-input-div{
    display: flex;
    box-sizing: border-box;
    align-items:stretch;
}
.map-select-input-div .map-select-input{
    flex: 1;
}
.map-select-input-div .map-select-open-btn,#map-selected-btn{
    background-color: #1890ff;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #dcdfe6;
    padding-left: 12px;
    padding-right: 12px;
    margin-left: 1px;
}
.map-select-open-btn.disabled{
    opacity: .6;
}
.map-select-input-div .map-select-open-btn:hover{
    opacity: .7;
}
.map-select-input-div .map-select-open-btn:active{
    opacity: .4;
}
.map-checked-address-box{
    display: flex;
    padding: 24px;
    align-items: center;
}
.map-checked-address-box.hide{
    display: none;
}
.map-checked-address-box-l{
    flex: 1;
    color: #303133;
}
.map-address-lng-lat-span{
    color: #909399;
}
.map-checked-address-box-l-l{
    color: #909399;
    font-weight: bold;
}
#map-selected-btn{
    line-height: 36px;
}
#map-select-box-content *{
    transition: none;
}
#map-select-box-content .BMap_Marker{
    transition: all .3s cubic-bezier(.645, .045, .355, 1);
}

@keyframes map-show-w {
    from {
        transform: scaleX(0);
        opacity: 0
    }
    to {
        transform: scaleX(1);
        opacity: 1
    }
}

@keyframes map-show-h {
    from {
        transform: scaleY(0);
        opacity: 0
    }
    to {
        transform: scaleY(1);
        opacity: 1
    }
}

@keyframes map-hide-w {
    from {
        transform: scaleX(1);
        opacity: 1
    }
    to {
        transform: scaleX(0);
        opacity: 0
    }
}

@keyframes map-hide-h {
    from {
        transform: scaleY(1);
        opacity: 1
    }
    to {
        transform: scaleY(0);
        opacity: 0
    }
}
@keyframes map-bg-show {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
        pointer-events: auto;
    }
}
@keyframes map-bg-hide {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        pointer-events: none;
    }
}
/************************************************************************************************************************/