/********卡片组**********/
.comp-tabIcons {
    color: #fff;
}
.comp-tabIcons .section-title h2,
.comp-tabIcons .section-title p {
    color: #fff !important;
}
.comp-tabIcons .tab-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
}

/*左侧大图*/
.comp-tabIcons .big-img {
    padding: 0;
    height: 545px;
    width: 280px; /*要固定宽度，否则图片“网络慢还没有加载出来”之前，右边的list会到左边来*/ 
    display: flex;
    justify-content: center;
}

.comp-tabIcons .big-img img {
    width: auto;
    height: 100%;
    display: none; /*不显示*/
    transition: opacity .15s linear; /*效果*/
    opacity: 0; /*透明*/
}

.comp-tabIcons .big-img .on {
    display: block;
}

.comp-tabIcons .big-img .fadein {
    opacity: 1; /*必须先block后，过15ms后在执行opacity=1，才会有动画效果*/
}
/*end*/

/*****右侧图标集*****/
.comp-tabIcons .items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;/*上下空25px，使小图标上下之间更紧凑点，左边大图往上超出了没关系*/
    width: 700px;
}

.comp-tabIcons .item {
    padding: 0 25px;
    width: 25%;
    height: 165px; /*545-50/3=165*/
    display: flex;
    align-items: center; /*高度165px，里面的wrap上下居中，跟左边的图片相比对，则上下间距一样*/
}

.comp-tabIcons .item .item-wrap {
    display: flex;
    flex-direction: column; 
    align-items: center;
    padding: 15px 5px;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
}

.comp-tabIcons .item .icon1 {
    width: 45px; 
    display: block;
}

.comp-tabIcons .item .icon2 {
    width: 45px;
    display: none;
}

.comp-tabIcons .item h2 {
    font-size: 16px; 
    margin-top: 15px;
    color: #fff;
}
/*****end*****/

 

/*on相关*/
.comp-tabIcons .item.on .item-wrap {
    background: #fff;
}

.comp-tabIcons .item.on .icon1 {
    display: none;
}

.comp-tabIcons .item.on .icon2 {
    display: block;
}

.comp-tabIcons .item.on h2,
.comp-tabIcons .item.on .text {
    color: #f92829;
}
/*end*/
