/********右左图文**********/
.comp-tabList {
}

.comp-tabList .tab-body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
} 

/*左侧大图*/
.comp-tabList .big-img {
    padding: 0;
    height: 600px;
    width: 800px; /*要固定宽度，否则图片“网络慢还没有加载出来”之前，右边的list会到左边来*/
    display:flex;
    justify-content:center;
    align-items:center;
}

.comp-tabList .big-img img {
    width: auto;
    max-width: 800px;
    max-height:600px; 
    display: none; /*不显示*/
    transition: opacity .15s linear; /*效果*/
    opacity: 0; /*透明*/
}

.comp-tabList .big-img .on {
    display: block;
}

.comp-tabList .big-img .fadein {
    opacity: 1; /*必须先block后，过15ms后在执行opacity=1，才会有动画效果*/
}
/*end*/


/*****右侧图标集*****/

.comp-tabList .items {
    padding-left: 50px;
    width: 400px;
}

.comp-tabList ul {
    border: 1px solid #E7E5EB;
    border-radius: 5px;
}

.comp-tabList ul li{
    background: #fff;
    padding: 20px;
    position: relative; 
    border-bottom: 1px solid #E7E5EB;
}

.comp-tabList ul li:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.comp-tabList ul li:last-child {
    border-bottom: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.comp-tabList  ul li .title {
    display: flex;
    align-items: center;
}

.comp-tabList  ul li .title h2 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
}

.comp-tabList  ul li .icon1 {
    max-width: 30px;
    margin-right: 10px;
    display: block;
}

.comp-tabList  ul li .icon2 {
    max-width: 30px;
    margin-right: 10px;
    display: none;
}


.comp-tabList ul li p {
    font-size: 13px;
    color: #333;
    text-align: left;
    margin-top: 10px;
    color: #888;
}

/*on相关*/
.comp-tabList ul li.on {
    background: linear-gradient(to right,#fd4146, #fd8e8e);
    margin-left: -1px; /*把外面的border线条覆盖掉*/
    margin-right: -1px;
}

.comp-tabList  ul li.on .icon1 {
    display: none;
}

.comp-tabList  ul li.on .icon2 {
    display: block;
}

.comp-tabList  ul li.on h2,
.comp-tabList  ul li.on p {
    color: #fff;
}

.comp-tabList ul li.on:before {
    content: '';
    position: absolute;
    top: 40%;
    left: -18px;
    padding: 0;
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid #fd4146;
    display: block;
}
/*end*/
