.nav_item>a,
.second_item>a {
    color: inherit;
    /* 清除下划线 */
    text-decoration: none;
    /* 清除点击时的默认轮廓（部分浏览器） */
    outline: none;
    /* 继承父元素的字体样式（可选） */
    font-family: inherit;
    font-size: inherit;}
/* 轮播图容器样式 */
.carsul {
    width: 100%;
    height: 430px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;}

/* 轮播图片列表样式 */
#banner_1 {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;}

#banner_1 li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;}

#banner_1 li.active {
    opacity: 1;
    z-index: 1;}

#banner_1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;}

/* 指示器样式 */
#banner_1_point {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;}

#banner_1_point .num {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;}

#banner_1_point .num.active {
    background-color: #fff;
    transform: scale(1.2);}

/* 前后按钮样式 */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;}

.carsul:hover .prev,
.carsul:hover .next {
    opacity: 1;}

.prev {
    left: 0;}

.next {
    right: 0;}

.prev::before {
    content: '←';}

.next::after {
    content: '→';}

/* 响应式调整 */
@media (max-width: 768px) {
    .carsul {
        height: 300px;}
    
    .prev, .next {
        width: 30px;
        height: 60px;
        font-size: 18px;}
}
/* 轮播图容器样式 */
.notice-bar-left{
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;}

/* 轮播图片列表样式 */
#banner_2 {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    list-style: none;}

#banner_2 li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;}

#banner_2 li.active {
    opacity: 1;
    z-index: 1;}

#banner_2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;}

/* 指示器样式 */
#banner_2_point {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 10px;}

#banner_2_point .num {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;}

#banner_2_point .num.active {
    background-color: #fff;
    transform: scale(1.2);}

/* 前后按钮样式 */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;}

.notice-bar-left:hover .prev,
.notice-bar-left:hover .next {
    opacity: 1;}

.prev {
    left: 0;}

.next {
    right: 0;}

.prev::before {
    content: '←';}

.next::after {
    content: '→';}

/* 响应式调整 */
@media (max-width: 768px) {
    .notice-bar-left{
        height: 300px;}
    
    .prev, .next {
        width: 30px;
        height: 60px;
        font-size: 18px;}
}
        #footerUl>li>a {
             color: inherit;
    /* 清除下划线 */
    text-decoration: none;
    /* 清除点击时的默认轮廓（部分浏览器） */
    outline: none;
    /* 继承父元素的字体样式（可选） */
    font-family: inherit;
    font-size: inherit;}
