.famous {
    /* margin: 15px 0; */

    h1 {
        font-size: 16px;
        font-weight: bold;
        color: #666;
        border-left: 5px solid #0e79cc;
        line-height: 16px;
        padding: 5px 15px;
        margin: 5px 0;
    }


    .famBox {
        overflow: hidden;

        span {
            float: left;
            width: 35px;
            background-color: #0e79cc;
            color: #fff;
            font-size: 14px;
            text-align: center;
            padding: 4px;
            height: 71px;
            line-height: 15px;
        }

        .famInBox {
            float: right;
            overflow: hidden;
            font-size: 0;
            flex-grow: 1;
            /* border-bottom:1px solid #ddd; */
            .famItem {
                width: calc(100% / 6);
                height: 70px;
                /* border-left: 1px solid #ddd; */
                border-bottom: 1px solid #ddd;
                border-top: 1px solid #ddd;
                border-right: 1px solid #ddd;
                display: inline-block;
                float: left;
                text-align: center;
                position: relative;
                overflow: hidden;

                a {
                    display: block;
                }

                img {
                    object-fit: contain;
                    height: 100%;
                    max-width: 90%;
                }

                .famCover {
                    padding: 5px 5px;
                    background-color: rgba(0, 0, 0, .7);
                    display: inline-block;
                    height: 70px;
                    width: 100%;
                    position: absolute;
                    bottom: -81px;
                    left: 0;
                    z-index: 5;

                    h3 {
                        font-size: 13px;
                        margin: 10px 0 5px 0;
                        color: #fff;
                        font-weight: normal;
                    }

                    p {
                        font-size: 12px;
                        margin: 5px 0;
                        color: #fff;
                    }

                    a {
                        color: #fff;
                        background-color: #f0ad4e;
                        border-color: #eea236;
                        font-size: 12px;
                        width: 100px;
                        border-radius: 3px;
                        line-height: 20px;
                        display: inline-block;
                    }
                }

                &:hover .famCover {
                    animation: famcover .2s ease forwards;
                    -moz-animation: famcover .2s ease forwards;
                    -webkit-animation: famcover .2s ease forwards;
                    -o-animation: famcover .2s ease forwards;
                }
            }
        }
    }
}
@keyframes famcover {
    from {
        bottom: -80px;
    }

    to {
        bottom: 0px;
    }
}
.part-title{
    font-size: 18px;
    font-weight: bold;
    padding-left: 15px;
    border-left: 5px solid #0e79cc;
}

/*其他栏目入口*/
.otherIn {
    margin-top: 10px;
    margin-bottom: 5px;
    display: flex;
    gap: 20px;

    .col-lg-4 {
        width: calc(100% / 3);
        /*height: 100px;*/
        overflow: hidden;

        img {
            width:100%;
            transition: all .2s linear 0s;
            &:hover {
                transform: scale(1.06, 1.06);
            }
        }
    }
}

.promoteProducts{
    &:hover{
        box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    }
    .product-img{
        width: 6rem;
        height: 6rem;
        box-shadow: 0 1px 6px 0 rgba(0, 55, 95, 0.28);
        img{
            width:100%;
            height: 100%;
        }
    }
    .product-info{
        flex-grow: 1;
        width: 2rem;
    }
}

.iPro {
    border: 1px solid #ddd;
    border-top: 2px solid #0e79cc;
    height: 486px;
    background-color: #fff;
    margin-bottom: 10px;
    overflow: hidden;

    .proMenu {
        background-color: #fff;
        height: 50px;
        border-bottom: 1px solid #ddd;
        display: flex;
        .proM_btn {
            width: 378px;
            width: calc(100% / 2);
            display: inline-block;
            text-align: center;
            position: relative;
            .proMore {
                position: absolute;
                top: 0;
                right: 60px;
                line-height: 25px;
                width: 30px;
                height: 30px;
                cursor: pointer;

                image {
                    width: 100%;
                    display: block;
                }
            }

            span {
                font-size: 16px;
                color: #222;
                line-height: 50px;
                width: 200px;
                cursor: default;
            }

            &.active {
                background: #ebf7ff;
                span {
                    text-decoration: none;
                    color: #0e79cc;
                    border-bottom: 2px solid #0e79cc;
                    padding: 12px 50px;
                }
            }
        }
    }

    .pro_Con {
        width: 100%;
        height: 460px;
        padding: 5px;
        .tables{
            width: 100%;
            height: 95%;
            overflow: auto;
            &.separate-col{
                th:nth-child(3n),td:nth-child(3n) {
                    border-right:1px solid rgb(228, 231, 237);
                }
            }
        }
        .pro_box {
            float: left;
            position: relative;
            display: inline-block;
            overflow: hidden;
            padding: 5px 8px;
            margin: 5px;
            /*width: calc((100% - 5px * 2 * 3)/ 3);*/
            width: calc((100% - 5px * 2 * 2)/ 2);
            border: 1px solid #f5f5f5;

            .proImg {
                line-height: 60px;
                width: 60px;
                height: 60px;
                float: left;
                text-align: center;
                overflow: hidden;

                img {
                    max-height: 60px;
                    max-width: 60px;
                }
            }

            .pro_info {
                float: left;
                padding-left: 15px;
                width: 200px;

                a {
                    color: #333;
                    font-size: 15px;
                    line-height: 24px;
                    display: block;

                    img {
                        width: 16px;
                    }
                }

                p {
                    color: #0e79cc;
                    margin: 5px 0 0 0;
                    font-size: 13px;
                }
            }
        }
        table{
            width: 100%;
            border: 1px solid rgb(228, 231, 237);
            &#supplyList{
                table-layout: fixed;
                    th,td{
                        width: calc(100% / 6);
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }
            }
            tr {
                height: 40px;
                line-height: 40px;
                th{
                    font-size: 0.875rem;
                    color: #303133;
                    font-weight: bold;
                    background-color: #f5f6f8;
                    text-align: center;
                    padding: 5px 3px;
                    border-bottom: 1px solid rgb(228, 231, 237);
                }
                td{
                    text-align: center;
                    font-size: 14px;
                    padding: 5px 3px;
                    border-bottom: 1px solid rgb(228, 231, 237);
                }
                button {
                    margin: 0 20px;
                    height: 32px;
                    line-height: 32px;
                    width: -webkit-fill-available;
                    background: #1894e3;
                    color: #fff;
                    border-radius: 5px;
                    padding: 0 12px;
                    font-size: 14px;
                    &.red{
                        background: #f56c6c;
                    }
                }
            }
        }

    }
}

.bg-light-blue{
    background: #eff8ff;

}

.inMore {
    position: absolute;
    top: 0;
    right: 10px;
    width:32px;
    cursor: pointer;
    image{
        width:100%;
    }
}

.technology{
    .iPuzzle{
        border: 1px solid #ddd;
        border-top: 2px solid #0e79cc;
        /*padding: 10px;*/
        position: relative;
        background-color: #fff;
        h3 {
            text-align: center;
            font-size: 18px;
            margin: 10px 0 15px 0;
            color: #0e79cc;
        }
        .iPuz_box{
            &.swi_puz{
                height: 420px;
                .swiper-container{
                    height:420px;
                }
            }
            .iPuz_panel {
                background-color:#f4faff;
                border-radius: 3px;
                padding: 10px;
            }
            .iPuz_tit {
                overflow: hidden;
                display: flex;
                align-items: center;
                margin-bottom: 5px;
                .iPuz_al {
                    background-color: #0e79cc;
                }
                .iPuz_un {
                    background-color: #999;
                }
                .tec_sell {
                    background-color: #ff0000;
                }
                .tec_buy {
                    background-color: #008000;
                }
                span {
                    width: 270px;
                    display: inline-block;
                    padding-left: 5px;
                    a{
                        color: #333;
                        display: block;
                        &:hover {
                            color: #0e79cc;
                        }
                    }
                }
            }
            .iPuz_info {
                overflow: hidden;
                color: #999;
                font-size: 13px;
                span {
                    display: inline-block;
                    float: left;
                    width: 30%;
                }
            }
        }
        .swi_syn{
            .swiper-container{
                height:420px;
            }
            .iSyn_pic {
                width: 80px;
                float: left;
                text-align: center;
                line-height: 80px;
                background-color: #fff;
                image {
                    max-height: 80px;
                    max-width: 80px;
                }
            }
            .iSyn_info {
                width: 250px;
                float: left;
                padding-left: 10px;
                a {
                    font-size: 14px;
                    color: #333;
                    display: block;
                    line-height: 24px;
                }
                p {
                    margin: 0;
                    color: #999;
                    font-size: 12px;
                    line-height: 20px;
                }
            }
        }
    }
}

.h-120{
    height: 30rem;
}
.h-80{
    height: 20rem;
}