/* banner */
.banner_box {
    width: 1200px;
    margin: 30px auto;
}

.banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
    border-radius: 96px 0 96px 0;
    box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.3);
}

.banner-container {
    height: 350px;
    display: flex;
    transition: transform 0.6s ease-in-out;
    -ms-transition: -ms-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
}

.banner-container>a,
.banner-container2>a {
    flex-shrink: 1;
}

.banner-item,
.banner-item2 {
    flex: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.banner-item.active,
.banner-item2.active {
    opacity: 1;
    filter: none;
}

.border {
    width: 1200px;
    margin: 0 auto;
    background-color: #b20406;
    height: 8px;
    border-radius: 4px;
}

.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 74px;
    height: 74px;
    background-color: rgba(31, 45, 61, .11);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev-btn:hover,
.next-btn:hover {
    background-color: rgba(31, 45, 61, .23)
}

.prev-btn i {
    transform: rotate(180deg);
    background: url(../images/next-btn.png) no-repeat center;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;

}

.next-btn i {
    transform: rotate(0deg);
    background: url(../images/next-btn.png) no-repeat center;
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: cover;

}

.prev-btn {
    left: 16px;
}

.next-btn {
    right: 16px;
}


.banner .indicator-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.banner .indicator,
.banner2 .indicator {
    width: 10px;
    height: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50%;
    border: 1px solid #fff;
}

.banner .indicator.active,
.banner2 .indicator.active {
    background: #fff;
}

.zhuangshi {
    width: 1200px;
    margin: 30px auto;
    height: 8px;
    border-radius: 4px;
    background-color: #c40100;
}

/* new_banner */
.new_banner {
    width: 1200px;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.banner2_box {
    width: 586px;
}

.banner2 {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.banner-container2 {
    height: 400px;
    display: flex;
    transition: transform 0.6s ease-in-out;
    -ms-transition: -ms-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
}

.banner-container2>a {
    position: relative;
}

.banner-container2>a>div {
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: rgba(175, 1, 0, 0.6);
    color: #FFF;
    padding: 10px 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.banner2 .indicator-container2 {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.new_dongt {
    flex: 1;
    overflow: hidden;
}

.new_title {
    background: url(../images/title_bg1.png) no-repeat center;
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    background-size: cover;
    padding: 0 20px;
    color: #666;
}

.new_title>div {
    font-size: 20px;
    color: #fff;
    line-height: 40px;
}

.new_title>a>i {
    background: url(../images/more.png) no-repeat center;
    display: inline-block;
    width: 14px;
    height: 14px;
    background-size: cover;
    margin-left: 5px;
}

.new_list {
    padding: 0 20px;
}

.new_list li {
    /* margin-top: 10px; */
    font-size: 16px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-bottom: 1px dashed #cecece;
    padding: 10px 0;
}

.new_list li:hover {
    color: #c40100;
    border-bottom: 1px dashed #c40100;
}

.new_list li i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #c40100;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
}

/* news */
.news {
    display: flex;
    gap: 30px;
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.new_box {
    flex: 1;
    overflow: hidden;
}

.new_box .new_title {
    background: url(../images/title_bg2.png) no-repeat center;
    display: flex;
    justify-content: space-between;
    height: 40px;
    align-items: center;
    background-size: cover;
    padding: 0 20px;
    color: #666;
}

.new_box .new_list {
    padding: 0 15px;
}