body{
    padding-bottom:5rem;
}
.topNavbar {
    box-shadow: none;
}
.CalSel {
  width: 100%;
  height: 12rem;
  background: #dbdbdb;
  margin: 3rem auto 0.625rem;
  border-top-left-radius: 0.875rem;
  border-top-right-radius: 0.875rem;
  position: relative;
  background-repeat: no-repeat; /* 禁止重复铺排 */
  background-size: cover; /* 图片覆盖容器，可能裁剪边缘 */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  padding: 0.625rem;
}

.CalSel::before {
  content: '';
  width: 100%;
  height: 3rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1000;
  background: linear-gradient(0deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.CalSelBtn {
  border-radius: 0.5rem;
  background: #ffffff44;
  text-align: center;
  display:inline-block;
}

.CalSelBtn:first-of-type {
  padding: 0.625rem 0.75rem 0.625rem 0.5rem;
}

.CalSelBtn:last-of-type {
  padding: 0.625rem 0.5rem 0.625rem 0.75rem;
}

.CalSelBtn div {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #009fe9;
  font-size: 0.875rem;
}

.CalSelBtn img {
  width: 1rem;
  height: 1rem;
}

.CalSelBtn p {
  font-size: 0.8125rem;
  color: #333;
}

.CalSelSele {
  width: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.CalSelSele img {
  width: 10rem;
}

.CalSelSele > div:first-of-type {
  width: 100%;
  text-align: right;
}

.CalSelSele > div:first-of-type img {
  width: 6rem;
}

.CalSelSeleText {
    margin: 0.3rem 0;
    width: 8rem;
    display: flex;
    padding: 0.15rem 0.5rem;
    justify-content: center;
    align-items: center;
    background: #3aa0ff;
    border-radius: 0.5rem;
    color: #ffffff;
}

    .CalSelSeleText input {
        text-align: right;
        font-size: 1.1rem;
        font-weight: bold;
        width: 6.5rem;
        background-color: transparent;
        border: none;
        color: #ffffff;
    }

.CalSelSeleText span {
  font-size: 1.1rem;
  font-weight: bold;
  display: -webkit-box; /* 旧版 WebKit 兼容 */
  -webkit-box-orient: vertical; /* 文本方向为垂直排列 */
  -webkit-line-clamp: 1; /* 限制显示的行数 */
  overflow: hidden; /* 隐藏溢出内容 */
}

.CalSelSeleText img {
  width: 1rem;
  height: 1rem;
}
/* 弹窗样式 */
.filter-popup {
    position: absolute;
    background: white;
    border: 0.0625rem solid #ebeef5;
    border-radius: 0.625rem;
    box-shadow: 0 0.125rem 0.75rem rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 200000;
    display: none;
}

/* 弹窗头部 */
.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-bottom: 0.0625rem solid #ebeef5;
}

.clear-btn {
    border: none;
    width: 100%;
    font-weight: 600;
    background: #fff;
    font-size: 1.2rem;
}

.popup-close {
    font-size: 1.2rem;
    color: #909399;
    cursor: pointer;
}

/* 弹窗内容区 */
.popup-content {
    display: flex;
    height: 50vh;
}

.single-row {
    flex: 1;
    padding: 0.3125rem 0;
    overflow-y: auto;
}

.filter-Solsmn {
    flex: 1;
    background-color: #f0f0f0;
    /* padding: 0.3125rem 0; */
    overflow-y: auto;
}

    .filter-Solsmn .filter-option.active {
        background-color: #fff;
    }

/* 双栏布局 */
.filter-column {
    flex: 1;
    /* padding: 0.3125rem 0; */
    height: 100%;
    overflow-y: auto;
    display: none;
}

    .filter-column.active {
        display: block;
    }

    .filter-column:first-child {
        border-right: 0.0625rem solid #ebeef5;
    }

/* 选项样式 */
.filter-option {
    padding: 0.625rem 1.25rem;
    color: #606266;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    display:block;
}
    /* .filter-option:hover {
  background: #f5f7fa;
} */
    .filter-option.active {
        color: #409eff;
    }
/* .filter-option.active::after {
  content: '';
  position: absolute;
  right: 10.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem;
  height: 0.375rem;
  background: #409eff;
  border-radius: 50%;
} */

/* 新增样式 */
.filter-column {
    display: none;
}
.bravidInfoNav {
    width: 95%;
    height: 3rem;
    margin: 0 auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
    top: 1rem;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    box-shadow: 0 0 0.5rem rgb(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

    .bravidInfoNav img {
        width: 1rem;
        height: 1rem;
    }

.bravidInfoNavList {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    overflow-y: auto;
    -ms-overflow-style: none; /* IE 和 Edge */
    scrollbar-width: none; /* 火狐 */
    border-radius: 0.25rem;
}

.bravidInfoNavItem {
    flex-shrink: 0;
    border-radius: 0.25rem;
    background: #f2f2f2;
    padding: 0.35rem 0.5rem;
    color: #333;
    display:inline-block;
}

    .bravidInfoNavItem.active {
        background: #3aa0ff;
        font-weight: bold;
        color: #ffffff;
    }
.DatRouList {
    width: 95%;
    margin: 0.625rem auto;
}
.nodatas{
    line-height:5rem;
    text-align:center;
    color:#999;
}
.DatRouItem {
    width: 100%;
    padding: 0.625rem;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 0.5rem rgb(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    margin: 0.625rem 0;
}

    .DatRouItem .DatRouTerm {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 0.0625rem dashed #e1e1e1;
        margin-bottom: 0.625rem;
        padding-bottom: 0.625rem;
    }

        .DatRouItem a.DatRouTerm:last-of-type {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

.DatRouTermDate {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    padding: 0.25rem;
    border-radius: 0.25rem;
    background: #f5f5f5;
}

.DatRouTermDay {
    text-align: center;
}

    .DatRouTermDay p:first-of-type {
        color: #333;
        font-size: 1.1rem;
    }

    .DatRouTermDay p:last-of-type {
        color: #666;
        font-size: 0.8rem;
    }

.DatRouTermVerLin {
    width: 0.1rem;
    margin: 0 0.5rem;
    height: 2.5rem;
    background: #ff4d4d;
    transform: rotateZ(14deg);
}

.DatRouTermYear {
    text-align: center;
}

    .DatRouTermYear span {
        padding: 0 0.25rem;
        border-radius: 0.25rem;
        background: #ff4d4d;
        color: #fff;
        font-size: 0.75rem;
    }

    .DatRouTermYear p {
        font-weight: bold;
        color: #333;
    }

.DatRouTermTxt {
    width: 80%;
}

    .DatRouTermTxt p {
        display: -webkit-box; /* 旧版 WebKit 兼容 */
        -webkit-box-orient: vertical; /* 文本方向为垂直排列 */
        -webkit-line-clamp: 1; /* 限制显示的行数 */
        overflow: hidden; /* 隐藏溢出内容 */
    }

        .DatRouTermTxt p:first-of-type {
            color: #999;
        }

        .DatRouTermTxt p:last-of-type {
            color: #333;
            font-size: 1.015rem;
        }

.DatRouTermPrice {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex: 1;
}

    .DatRouTermPrice div {
        font-size: 0.625rem;
        color: #999;
    }

        .DatRouTermPrice div span {
            color: #ff5454;
            font-size: 1rem;
        }
