/*!*如果设备的屏幕宽度大于或等于1024像素，则条件满足。*!1024*/
@media screen and (min-width:1024px){
    .menuList{
            display: flex;
           justify-content: flex-start;
    }
    /*.authentication{*/
    /*    display: flex;*/
    /*    flex-wrap: wrap;*/
    /*    justify-content: center;*/
    /*    padding: 0px 10%;*/
    /*    margin: 1% 0 !important;*/
    /*}*/
    /*.authentication a{*/
    /*    margin-top: 10px;*/
    /*}*/

}
@media screen and (max-width:1440px){
    .nbimglist li .img{
        width: 80px !important;
        height: 60px !important;
    }
}
/*@media screen and (max-width: 768px) {*/
/*    .contactRight{*/
/*        display: none;*/
/*    }*/
/*}*/
@media screen and (max-width: 1024px) {
    .contactRight{
        display: none;
    }
}
.nbimglist li .img {
    width: 110px;
    height: 82.45px;
    position: relative;
    overflow: hidden;
}
/*侧边二维码 css*/
.contactRight {
    position: fixed;
    right: 10px;
    bottom: 10%;
    background: #f9f9f9;
    padding: 10px 5px;
    z-index: 1000;
}

.contactRight .itemT {
    padding: 10px 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 50px;
}
.contactRight .itemT:hover::before{
    content: "";
    display: block;
    position: absolute;
    left: -24px;
    top: 20px;
    border-width: 10px;
    border-style: dashed  solid  dashed  dashed;
    border-color:transparent #ece9e9 transparent transparent;
}
.contactRight .itemT:nth-child(1)::before{
    display: none;
}
.contactRight .itemT .iconContact{
    display: inline-block;
    width: 32px;
    height: 32px;
    /*opacity: 1.0;*/
}
.contactRight span {
    display: block;
    font-size: 10px;
    color: #707070;
}

 /*悬停效果*/
.itemT:hover span {
    color: #ff6700;
}
.contactRight .itemT:nth-child(1) .iconContact{
    background: url("../../picture/联系我们 (1).png") center/cover;
}
.contactRight .itemT:nth-child(1):hover .iconContact{
    background: url("../../picture/联系我们.png") center/cover;
}
.contactRight .itemT:nth-child(2) .iconContact{
    background: url("../../picture/网站 (1).png") center/cover;
}
.contactRight .itemT:nth-child(2):hover .iconContact{
    background: url("../../picture/网站.png") center/cover;
}
.contactRight .itemT:nth-child(3) .iconContact{
    background: url("../../picture/小程序.png") center/cover;
}
.contactRight .itemT:nth-child(3):hover .iconContact{
    background: url("../../picture/小程序 (1).png") center/cover;
}
.contactRight .itemT:nth-child(4) .iconContact{
    background: url("../../picture/公众号.png") center/cover;
}
.contactRight .itemT:nth-child(4):hover .iconContact{
    background: url("../../picture/公众号 (1).png") center/cover;
}

/* 弹出层样式 */
.popovers {
    display: none;
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 15px;
    padding: 5px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.itemT:hover .popovers {
    display: block;
}

.popovers img {
    width: 125px;
    height: 125px;
    display: block;
}