@charset "UTF-8";

/*************************************************
*                                                *
*                 组件                            *
*                                                *
*************************************************/
/*
* 页签组件
* c-tabs
* tab-header   头部
*   如果不采用现有的结构格式也是可以的，
*   则tab－header子标签添加item
* tab-content  tab-content-item内容部分
*--------状态css------------
* active       激活
*/
.c-tabs a {
    text-decoration: none;
    font-size: 14px;
    color: $gray;
}

.c-tabs a em {
    font-size: 12px;
    color: $grayLight;
}

.c-tabs a:hover {
    color: $highRad;
}

.c-tabs .tab-header {
    width: 100%;
    height: 32px;
    border-bottom: 1px solid $gray;
}

/* 子标签选择起 采用标准结构 */
.c-tabs .tab-header li,
.c-tabs .tab-header .item {
    float: left;
    padding: 0 15px;
    height: 32px;
    line-height: 32px;
    border: 1px solid #ddd;
    border-bottom: 0;
    margin: -1px -1px -1px 0px;
    position: relative;
}

/** 被选中页签 **/
.c-tabs .tab-header .active {
    border: 1px solid $gray;
    border-bottom: 2px solid #fff;
    position: relative;
    z-index: 1;
    height: 31px;
}

.c-tabs .tab-header .active a {
    color: #fd4d00;
}

.c-tabs .tab-header .disabled {}

.c-tabs .tab-content .tab-content-item {
    display: none;
}

/** 被选中页签 显示对应的内容 **/
.c-tabs .tab-content .active {
    display: block;
}

/* 左页签 */
.c-tabs-left .tab-header,
.c-tabs-left .tab-content {
    float: left;
}

.c-tabs-left a {
    text-decoration: none;
    color: #999;
    display: inline-block;
    width: 100%;
}

.c-tabs-left a:hover {
    text-decoration: underline;
}

.c-tabs-left .tab-header li,
.c-tabs-left .tab-header .item {
    padding: 0 10px;
    height: 32px;
    width: 120px;
    line-height: 32px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin: 0px -2px -2px 0px;
    position: relative;
}

.c-tabs-left .tab-header .active {
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    border-right: 1px solid #fff;
    font-size: 16px;
}

.c-tabs-left .tab-content .tab-content-item {
    display: none;
}

/**被选中页签 显示对应的内容**/
.c-tabs-left .tab-content .active {
    display: block;
}

/***页签end***/

/****** 面包屑导航*****/
.c-crumbs {
    color: $grayLight;
    width: 100%;
    height: 20px;
    text-align: left;

    a {
        color: $grayLight;

        &:hover {
            text-decoration: underline;
        }
    }
}