/* --------- 7-25修改-------- */

.newTabSlide {
    width: 100%;
}

.newTabSlide .hd1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-bottom: 2px solid #eaeaea;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.newTabSlide .hd1 ul {
    display: flex;
    align-items: center;
}

.newTabSlide .hd1 ul li {
    font-size: 16px;
    color: #141414;
    display: block;
    margin-right: 40px;
    position: relative;
    cursor: pointer;
}

.newTabSlide .hd1 ul li::before {
    content: '';
    width: 100%;
    height: 0;
    display: inline-block;
    border-bottom: 2px solid #45916b;
    position: absolute;
    left: 0;
    bottom: -14px;
    opacity: 0;
}

.newTabSlide .hd1 ul li.on {
    font-size: 20px;
    font-weight: bold;
}

.newTabSlide .hd1 ul li.on::before {
    opacity: 1;
}

.newTabSlide .hd1 ul li::after {
    content: '';
    width: 1px;
    height: 10px;
    display: inline-block;
    background: url(../img/24.png) center no-repeat;
    position: absolute;
    right: -19px;
    top: 7px;
}

.newTabSlide .hd1 ul li:last-of-type::after {
    display: none;
}


.newTabSlide .slideBox .sPrev,
.newTabSlide .slideBox .sNext {
    position: absolute;
    left: 0;
    top: 130px;
    display: block;
    width: 30px;
    height: 50px;
    background: url(../img/23.png) no-repeat center #45916b;
    opacity: 0.4;
}

.newTabSlide .slideBox .sPrev:hover {
    opacity: 1;
}

.newTabSlide .slideBox .sNext {
    left: auto;
    right: 0;
    background: url(../img/22.png) no-repeat center #45916b;
}

.newTabSlide .slideBox .sNext:hover {
    opacity: 1;
}