@charset "utf-8";
/**
 * @Author: Jxx
 * @Time: 2019-01-22
 * @Description: 托管选项卡切换样式
 */

.dis-none {
    display: none;
}

/* tab */
.tab-wrapper {
    margin-bottom: 15px;
    background: #FAFAFA;
    text-align: left;
}
.tab-group {
    font-size: 0;
}
.tab-item1 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 4px;
    padding-left: 14px;
    font-size: 0;
    background: #e5f5fc;
    cursor: pointer;
}
.tab-ceil1 {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    margin-right: 8px;
    font-size: 14px;
    color: #aaa;
    line-height: 34px;
    vertical-align: top;
}
.i-delete {
    display: inline-block;
    *display: inline;
    *zoom: 1;
    width: 28px;
    height: 34px;
    background: url(../images/delete_unselected.png) no-repeat center center;
    cursor: pointer;
}
/* 选中状态 */
.tab-item1.active {
    background: #00a3e8;
}
.tab-item1.active .tab-ceil1 {
    color: #FFF;
}
.tab-item1.active .i-delete {
    background-image: url(../images/delete_selected.png);
}