
/* focus_Box */

#focus_Box {
    position: relative;
    width: 100%;
    height: 490px;
    margin: 0 auto;
}

#focus_Box ul {
    position: relative;
    width: 100%;
    height: 490px;
    text-align: center;
    margin: 0 auto;
}

#focus_Box li {
    z-index: 0;
    position: absolute;
    width: 0px;
    background: #787878;
    height: 0px;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

#focus_Box li img {
    width: 100%;
    height: 100%;
    vertical-align: top;
    object-fit: cover;
}

#focus_Box li p {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
   height: auto;
   overflow: hidden;
    background-color: rgba(0, 0, 0, .5);
    padding: 16px 10px;
    font-size: 13px;
    text-align: left;
    color: #fff;
}


#focus_Box .prev,
#focus_Box .next {
    display: block;
    z-index: 9;
    overflow: hidden;
    cursor: pointer;
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 100%;
    top: 50%;
    transform: translate(0,-50%);
    background-color: #fff;
    text-align: center;
}
#focus_Box .prev{
    left: 0;
}
#focus_Box .prev i{
    display: inline-block;
    width: 12px;
    height: 23px;
    background: url('../images/public/achive_L.png') no-repeat;
    margin-top: 14.5px;
}
#focus_Box .prev:hover i{
    background-image: url('../images/public/achive_LH.png') no-repeat;
}
#focus_Box .next{
    right: 0;
}
#focus_Box .next i{
    display: inline-block;
    width: 12px;
    height: 23px;
    margin-top: 14.5px;
    background: url('../images/public/achive_R.png') no-repeat;
}
#focus_Box .next:hover i{
    background-image: url('../images/public/achive_RH.png') no-repeat;
}


/* #focus_Box .prev {
    background: url('../images/invent/btn.png') left bottom no-repeat;
    left: 0px
}
#focus_Box .next {
    background: url('../images/invent/btn.png') right bottom no-repeat;
    right: 0px
}

#focus_Box .prev:hover {
    background-position: left top;
}

#focus_Box .next:hover {
    background-position: right top;
} */


@media all and (min-width:1280px) {
    #focus_Box{
        display: block;
    }
}
@media all and (max-width:1279px) {
    #focus_Box{
        display: none;
    }
}
