.banner-news {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-bottom: 6px;
}

.banner-wrapper {
    width: 82%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.news-top {
    width: 18%;
    height: 464px;
    background: linear-gradient(135deg, #fff7e6 0%, #fff 100%);
    border-radius: 12px;
}

.news-top ul {
    width: 85%;
    height: 100%;
    max-height: 72%;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-item {
    font-size: 16px;
    display: flex;
    align-items: center;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.banner-title {
    color: #fff;
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 指示器样式调整 */
.carousel-indicators {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 2;
}

.carousel-indicators button {
    width: 30px;
    height: 3px;
    margin: 0 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 0;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-indicators button.active {
    background-color: #fff;
}

/* 轮播图切换动画 */
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
    z-index: 1;
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* 标题动画效果 */
.carousel-item .banner-caption {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

.carousel-item.active .banner-caption {
    opacity: 1;
    transform: translateY(0);
}

/* 确保轮播容器有正确的样式 */
.carousel-inner {
    position: relative;
    width: 100%;
    height: 464px;
    overflow: hidden;
}


.banner-title {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.beian-info {
    width: 100%;
    color: #333;
    font-size: 12px;
    font-family: '????';
    text-align: center;
    clear: both;
    margin: 0 auto;
}

.beian-info a:link {
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.beian-info a:visited {
    font-size: 12px;
    color: #333;
    text-decoration: none;
}

.beian-info a:hover {
    font-size: 12px;
    color: #ff6600;
    text-decoration: underline;
}

.beian-info .song {
    line-height: 20px;
}

.beian-info .verdana {
    line-height: 20px;
    font-family: Verdana;
}

.beian-info .verdana a {
    color: #333;
    font-family: '????';
    padding: 2px 7px;
    text-decoration: none;
}

.beian-info .verdana a:hover {
    color: #ff6600;
    text-decoration: underline;
}

.beian-info em {
    font-style: normal;
    font-family: Verdana;
}

.beian-info .spacing {
    line-height: 23px;
    letter-spacing: 3px;
    font-family: Verdana;
    margin-top: 5px;
}

.beian-info td a {
    display: block
}

.beian-info td a:hover {
    color: #ff6600;
    text-decoration: none;
}

.beian-info ul {
    width: 830px !important;
    width: 870px;
    height: 20px;
    margin: 0 auto;
}

.beian-info ul li {
    float: left;
    height: 20px;
    line-height: 20px;
    font-family: Verdana;
}

.beian-info ul li a {
    padding: 0 8px;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: block;
}

h2 {
    font-weight: normal;
}

.search-wrapper {
    display: flex;
    gap: 20px;
}

.back {
    position: fixed;
    bottom: 50px;
    right: 32px;
    border-radius: 50%;
    background: url("/svg/toTop.svg") center no-repeat dodgerblue;
    background-size: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    opacity: 0;
    /* 默认隐藏 */
    visibility: hidden;
    /* 默认隐藏 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    /* 初始位置略低 */
}

.back:hover {
    background-color: #1E90FF;
    transform: translateY(-3px) scale(1.05);
    /* 悬停时上浮并略微放大 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.back.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* 显示时回到原位 */
}

/* 点击效果 */
.back:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

.segment-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.segment-card {
    width: 32.26%;
    max-width: 550px;
    min-width: 400px;
    border-radius: 8px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) -2px 4px 8px -2px;
}

.segment-card .card-list {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px 15px 20px;
    background: #fff;
    border-radius: 12px;
    flex-direction: column;
    gap: 8px;
}

.segment-card .card-list .title {
    width: 93%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
    background: #fff7e6;
    border-radius: 5px;
    padding: 8px 13px;
}

.segment-card .card-list .title h3 {
    font-size: 20px;
    color: #ff6000;
    font-weight: bold;
}

.segment-card .card-list .title a {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #666;
    cursor: pointer;
}

.segment-card .card-list .list-item {
    overflow: hidden;
    height: 120px;
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.segment-card .card-list .list-item:hover {
    background: rgb(145, 213, 255, 0.15);
    box-shadow: -1px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.segment-card .card-list .list-item:hover a img {
    transform: scale(1.03);
}

.segment-card .card-list .list-item a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
}

.segment-card .card-list .list-item a .logo {
    height: 90px;
    border-radius: 8px;
    width: 35%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.segment-card .card-list .list-item a .info {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    height: 85%;
    width: 55%;
    max-width: 55%;
    gap: 5px;
    justify-content: center;
}

.segment-card .card-list .list-item a .info p {
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: -1.1px;
    float: left;
    color: #333;
    word-break: break-all;
}

.news-title {
    margin: 20px auto;
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-title h2 {
    display: flex;
    height: 35px;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.news-title h2 span {
    height: 23px;
    display: block;
    line-height: 23px;
    width: 42px;
    text-align: center;
    background: #ff6000;
    color: #fff;
    border-radius: 6px;
    font-weight: bold;
    margin-right: 3px;
}

.news-title span {
    color: #8c8c8c;
}

.mult_from_box {
    width: 24%;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 6px;
    -webkit-box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06), 0 1px 4px 0 rgba(0, 0, 0, .08);
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, .06), 0 1px 4px 0 rgba(0, 0, 0, .08);
    margin-bottom: 20px;

}

.mult_from_box .box_header {
    height: 50px;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
}

.mult_from_box .route_box {
    background-color: #ffffff;
    position: relative;
    margin-top: -10px;
    border-radius: 6px;
    padding: 18px 12px;
    display: flex;
    flex-wrap: wrap;
}

.mult_from_box .address_box {
    background-color: #ffffff;
    position: relative;
    margin-top: -10px;
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
}

.mult_from_box .address_box .box_item {
    font-size: 14px;
    line-height: 22px;
    cursor: pointer;
}

.mult_from_box .route_box .box_item {
    font-size: 14px;
    line-height: 40px;
    cursor: pointer;
    width: 50%;
}

.box_item:hover {
    color: #0086f6 !important;
}

.mult_from_box .box_header img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.mult_from_box .box_header .box_header_info {
    display: flex;
    position: absolute;
    width: 100%;
    height: 45px;
    align-items: center;
    top: 0;
    left: 0;
    justify-content: space-between;
}

.mult_from_box .box_header .box_header_info i {
    margin-right: 20px;
    color: #fff;
    font-weight: bold;
}

.mult_from_box .box_header .box_header_info span {
    padding-left: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-right: 8px;
}

.hot-search-box {
    display: flex;
    flex-direction: column;
}

.hot-search-box .hot-search-card {
    display: flex;
    width: 100%;
    min-width: 1255px;
    margin: 20px 0;
    justify-content: space-between;
    gap: 15px;
}

@media (max-width: 1679.98px) {
    .common-hot {
        display: flex;
        width: 100%;
        gap: 15px;
    }

    .common-hot .mult_from_box {
        width: 49%;
    }
}

/* 当视口宽度大于1680px时的样式 */
@media screen and (min-width: 1680px) {
    .elastic-box {
        display: flex;
        gap: 20px;
        width: 100%;
    }

    .segment-card {
        width: 32%;
        min-width: 368px;
    }

    .hot-search-box {
        max-width: 305px !important;
        min-width: 305px !important;
    }

    .hot-search-box .hot-search-card {
        flex-direction: column;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .mult_from_box {
        width: 100%;
    }

    .common-hot {
        top: 150px;
        z-index: 100;
        width: 305px;
    }

    .bottom-hot {
        bottom: 200px;
        z-index: 100;
        width: 305px;
    }

    .fiexd {
        position: fixed;
    }
}

.segment-route {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
}

.segment-route .segment-left {
    width: 25%;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    padding: 15px 20px 15px 20px;
    background: #fff;
    border-radius: 12px;
    gap: 8px;
}

.segment-route .segment-left .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff7e6;
    border-radius: 5px;
    padding: 8px 13px;
}

.segment-route .segment-left .title h2 {
    font-size: 20px;
    color: #ff6000;
    font-weight: bold;
}

.segment-route .segment-left .title a {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #666;
    cursor: pointer;
}

.segment-route .segment-left .list-item {
    overflow: hidden;
    height: 120px;
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.segment-route .segment-left .list-item:hover {
    background: rgb(145, 213, 255, 0.15);
    box-shadow: -1px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.segment-route .segment-left .list-item:hover a .logo,
.segment-route .segment-left .list-item:hover a .video-play-icon-box .play-cover {
    transform: scale(1.03);
}

.segment-route .segment-left .list-item a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0 10px;
    cursor: pointer;
}

.segment-route .segment-left .list-item a .video-play-icon-box {
    position: relative;
    height: 90px;
    width: 35%;
    object-fit: cover;
}

.segment-route .segment-left .list-item a .video-play-icon-box .video-play-icon {
    position: absolute;
    background: url(../svg/play_icon_30.svg);
    width: 30px;
    height: 30px;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.segment-route .segment-left .list-item a .video-play-icon-box .play-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    transition: transform 0.8s ease;
}

.segment-route .segment-left .list-item a .logo {
    height: 90px;
    border-radius: 8px;
    width: 35%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.segment-route .segment-left .list-item a .info {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
    height: 85%;
    width: 55%;
    max-width: 55%;
    gap: 5px;
    justify-content: center;
}

.segment-route .segment-left .list-item a .info strong {
    height: 20px;
    margin: 0 auto;
    font-size: 15px;
    font-weight: bold;
}

.segment-route .segment-left .list-item a .info p {
    height: 70px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: -1.1px;
    float: left;
    color: #333;
    word-break: break-all;
}

.segment-route .segment-left .list-item a .info .user-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.segment-route .segment-left .list-item a .info .user-info img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.segment-route .segment-left .list-item a .info .user-info strong {
    height: 20px;
    margin: 0;
    font-size: 15px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.segment-route .segment-right {
    width: 50%;
    background: #fff;
    padding: 15px 20px 15px 20px;
    border-radius: 8px;
}

.route-tabs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 98%;
    margin-bottom: 5px;
}

.route-tabs-title {
    display: flex;
    align-items: center;
    background: #fff7e6;
    border-radius: 6px;
    width: 50%;
    justify-content: space-between;
}

.route-tabs-title h2 {
    font-size: 20px;
    padding: 8px 12px;
    color: #ff6000;
    font-weight: bold;
}

.route-tabs-title a {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #666;
    cursor: pointer;
    margin-right: 10px;
}

.update-time {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

/* 顶部tab样式 */
.route-tabs {
    display: flex;
    align-items: center;
    width: fit-content;
    background: #f0f0f0;
    border-radius: 8px 8px 0 0;
}

.route-tab-item {
    position: relative;
    padding: 14px 36px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    background: #f0f0f0;
    transition: color 0.3s;
    border-radius: 0 8px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.route-tab-item.active {
    color: #ff6000;
    background: #fff;
    border-radius: 8px 8px 0 0;
}

.route-tab-item-number {
    width: 27px;
    height: 27px;
    color: #fff;
    background: #d9d9d9;
    text-align: center;
    border-radius: 50%;
}

.route-tab-item-number.active {
    background: #ff6000;
}

/* 线路卡片样式 */
.route-card-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0 auto;
}

.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    transition: box-shadow 0.3s;
    border-bottom: 1px solid #f3f3f3;
    gap: 20px;
    border-radius: 8px;
}

.route-card-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.route-card:hover {
    background: rgb(145, 213, 255, 0.15);
    box-shadow: -1px 0px 10px 2px rgba(0, 0, 0, 0.1);
}

.route-card-main {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.route-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.route-card-info {
    display: flex;
    gap: 32px;
    margin-top: 6px;
}

.route-card-info-item {
    font-size: 15px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* 大于1680时，显示第一个和第三个 */
@media (max-width: 1680px) {

    .route-card-info-item.item2,
    .route-card-info-item.item3 {
        display: none;
    }
}

/* 大于1880时，三个都显示 */
@media (max-width: 1880px) {
    .route-card-info-item.item2 {
        display: none;
    }
}

.route-card-info-item i {
    color: #ff6000;
    font-size: 18px;
}

.route-card-prices {
    display: flex;
    gap: 40px;
}

.route-card-price-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px;
}

.route-card-price-label {
    font-size: 13px;
    color: #999;
}

.route-card-price {
    font-size: 18px;
    color: #ff6000;
    font-weight: bold;
}

.route-card-price-sub {
    font-size: 15px;
    color: #666;
}

.route-list-tip {
    display: flex;
    margin-top: 10px;
    font-size: 12px;
    justify-content: flex-start;
    padding: 0 12px;
}

.note-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.note-box .note-title {
    display: flex;
    justify-content: space-between;
}

.note-box .note-title h2 {
    font-size: 20px;
    color: #fa541c;
    font-weight: bold;
}

.note-box .note-title a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #434343;
}

.note-box .note-list {
    display: flex;
    gap: 13px;
}

.note-box .note-list .note-item {
    display: flex;
    flex-direction: column;
    width: 130px;
}

.note-box .note-list .note-item .note-cover {
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.8s ease;
    margin-bottom: 4px;
}

.note-box .note-list .note-item .note-cover:hover {
    transform: scale(1.03);
    opacity: 0.95;
}

.note-box .note-list .note-item .note-title {
    height: 49px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 13px;
    line-height: 22px;
    letter-spacing: -1.1px;
    float: left;
    color: #434343;
    word-break: break-all;
}

.note-box .note-list .note-item .user-info {
    display: flex;
    gap: 6px;
    align-items: center;
}

.note-box .note-list .note-item .user-info img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.note-box .note-list .note-item .user-info strong {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media (max-width: 1500px) {
    .note-box .note-list .note-item:nth-child(n+9) {
        display: none;
    }
}

@media (max-width: 1650px) {
    .note-box .note-list .note-item:nth-child(n+10) {
        display: none;
    }
}

@media (max-width: 1790px) {
    .note-box .note-list .note-item:nth-child(n+11) {
        display: none;
    }
}

@media (max-width: 1920px) {
    .note-box .note-list .note-item:nth-child(n+12) {
        display: none;
    }
}