
/* banner 在common.css中 */
/* 面包屑 在common.css中 */


.line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 应用领域.html */
/* 应用列表 */
.app_list {
    width: 100%;
    margin-top: 0.5rem;
}
.app_list .li {
    position: relative;
    width: 100%;
    margin-top: 0.4rem;
    padding: 0.4rem;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}
.app_list .info {
    width: 4.3rem;
    z-index: 2;
}
.app_list .info .name {
    font-size: 0.28rem;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #333333;
}
.app_list .info .explain {
    margin-top: 0.2rem;
    font-size: 0.16rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.app_list .info .more {
    display: block;
    width: 1.28rem;
    height: 0.4rem;
    margin-top: 0.8rem;
    border: 0.01rem solid #666666;
    font-size: 0.16rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
    line-height: 0.4rem;
}
.app_list .pics {
    position: relative;
    display: block;
    /*width: 8.5rem;*/
    height: 2.91rem;
    display: flex;
    z-index: 2;
    overflow: hidden;
}
/*.app_list .pics .pic {*/
/*    position: relative;*/
/*    display: block;*/
/*    flex: 1;*/
/*    height: 2.2rem;*/
/*    margin-right: 0.2rem;*/
/*}*/
/*.app_list .pics .mask {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background-color: rgba(0,0,0,0.1);*/
/*    font-size: 0.16rem;*/
/*    color: #FFFFFF;*/
/*    text-align: center;*/
/*    line-height: 2.4rem;*/
/*    opacity: 0;*/
/*    transition: all 0.3s;*/
/*}*/
/*.app_list .pics .pic:hover .mask {*/
/*    line-height: 2.2rem;*/
/*    opacity: 1;*/
/*}*/
.app_list .pics .pic_img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.app_list .pics .fonts {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}
.app_list .pics .t1 {
    width: 4rem;
    font-size: 0.28rem;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #ff0000;
}
.app_list .pics .t2 {
    width: 4rem;
    margin-top: 0.1rem;
    font-size: 0.18rem;
    font-family: Source Han Sans CN-Medium, Source Han Sans CN;
    font-weight: 500;
    color: #333333;
}

/* 定位背景图 */
.app_list .star_bgc {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s;
    opacity: 0;
    z-index: 1;
}
.app_list .li:hover {
    background: #167BD4;
}
.app_list .li:hover .name {
    color: #FFFFFF;
}
.app_list .li:hover .explain {
    color: #FFFFFF;
}
.app_list .li:hover .more {
    color: #167BD4;
    background-color: #fff;
    border-color: #FFFFFF;
}
.app_list .li:hover .star_bgc {
    opacity: 1;
}



/* 应用领域-子页.html */
.case_list {
    width: 100%;
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.case_list .li {
    display: block;
    width: 4.45rem;
    height: fit-content;
    margin-top: 0.3rem;
    /*margin-right: 0.25rem;*/
    background: #FFFFFF;
    border-radius: 0.1rem 0.1rem 0.1rem 0.1rem;
    border: 0.01rem solid #CFCFCF;
    transition: all 0.3s;
}
.case_list .li:nth-child(3n) {
    margin-right: 0;
}
.case_list .pics {
    width: 100%;
    height: 3.3rem;
}
.case_list .info {
    padding: 0.2rem 0.3rem 0.4rem;
}
.case_list .info .name {
    font-size: 0.2rem;
    font-weight: 500;
    color: #333333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.case_list .info .name::after {
    content: "";
    display: block;
    width: 100%;
    height: 0.01rem;
    margin-top: 0.15rem;
    background-color: #167BD4;
}
.case_list .info .explain {
    margin-top: 0.18rem;
    font-size: 0.16rem;
    font-weight: 400;
    color: #666666;
    line-height: 0.3rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
/* hover状态 */
.case_list .li:hover {
    margin-top: 0.15rem;
    background: linear-gradient(174deg, #FFFFFF 65%, rgba(22,123,212, 0.3) );
    box-shadow: 0rem 0rem 0.08rem 0.01rem rgba(43,45,48,0.15);
}
.case_list .li:hover .name {
    color: #167BD4;
}


.textExplain {
    width: 100%;
    margin-top: 0.5rem;
    /*padding: 0.3rem;*/
    /*background: rgba(236,240,241,1);*/
    border-radius: 0.05rem;
}




