.Home {
    padding-top: 10px;
    background-color: #f2f2f2;
    padding-bottom: 20px;
}

.Home div {
    box-sizing: border-box;


}

.redo {
    color: red;
}

.glv {
    color: green;
}

/* 1. 下拉容器：hover时控制子元素显示，新增disabled状态屏蔽hover */
.dropdowna {
    position: relative;
    display: inline-block;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 101;
    /* 确保容器不被其他元素遮挡 */
}

/* 2. 触发按钮：修复垂直对齐（之前flex-end会导致错位） */
.dropdown-triggera {
    padding: 6px 12px 6px 20px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: flex-end;
    /* 文字和图标垂直居中 */
    gap: 4px;
    color: #000;
    border: 1px solid #fbfbfb;
    box-sizing: border-box;
}

.dropdown-triggera i {
    font-size: 17px;
}

/* 3. 下拉内容：默认隐藏（仅靠hover控制，无额外类） */
.dropdown-contenta {
    display: none;
    /* 默认隐藏，只有hover时显示 */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-width: 81px;
    z-index: 102;
    /* 比父容器高，避免被遮挡 */
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdowna:hover .dropdown-triggera {
    border: 1px solid #ccc;
    border-bottom: none;
    background-color: #fff;
}

/* 4. 核心：父容器hover时，显示下拉框（天然高优先级） */
.dropdowna:hover .dropdown-contenta {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* 5. 点击后临时加的状态：屏蔽hover（点击后暂时不显示） */
.dropdowna.dropdown-disabled:hover .dropdown-contenta {
    display: none;
    /* 加了这个类，即使hover也不显示 */
}

/* 6. 下拉项样式 */
.dropdown-contenta .flicker {
    display: block;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.dropdown-contenta .flicker:hover {
    background-color: #f3f4f6;
    color: #2f92e6;
}


.Home .home {
    width: 1200px;
    margin: auto;
    /* background-color: aqua; */
    /* height: 300px; */
}

.Home .homeact {
    width: 1200px;
    margin: auto;
    /* background-color: aqua; */
    /* height: 300px; */
}

.Home .home .fl_x {
    display: flex;
    align-items: center;
}

.tb_nav {
    border: 1px solid #dddddd;

    font-size: 14px;
    background-color: #fbfbfb;
}

.tb_nav th {
    font-weight: normal;
    padding: 10px 0;
}

.Home .home .tab_time {
    width: 100%;
    height: 33px;
    border-bottom: 1px solid #bfdafc;
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
    background-color: #fff;
}

.Home .home .tab_time .icon {
    width: 30px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e9f3ff;
}

.Home .home .tab_time .icon>i {
    color: #2f7edc;
    font-size: 20px;
}

.Home .home .tab_time .tb-time {
    font-size: 14px;
    margin: 0 10px;
    color: #666666;
    display: flex;

}

.fl_x .fl_sub {
    width: 30%;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.fl_x .fl_sub1 {
    width: 40%;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.fl_x .fl_sub2 {
    width: 30%;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.fl_x .fl_sub3 {
    width: 50%;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.fl_x .fl_sub4 {
    width: 20%;
    font-size: 14px;
    text-align: center;
    color: #000;
}

.fl_x .fl_two {
    font-size: 13px;
    background-color: #2f7edc;
    padding: 4px 5px;
    color: #ffffff;
}

.tr_itmeven {
    background-color: #f4f9fe !important;
}

.tb_Ttem {
    border-left: 1px solid #dddddd;
    border-right: 1px solid #dddddd;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}


.tr_itm {
    height: 40px;
    cursor: pointer;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.tr_itm>td {
    box-sizing: border-box;
}

.tr_itm:hover {
    background-color: #fff1e7;
}

.tr_itm .zhu {
    display: flex;
    height: 100%;
    width: 440px;
    box-sizing: border-box;

}

.tr_itm .zhus {
    display: flex;
    /* 继承 .zhu 的 flex 布局（如果需要），避免布局错乱 */
    height: 100%;
    /* 继承高度，保持一致 */
    width: 100% !important;
    /* 强制覆盖，确保生效 */
    box-sizing: border-box;
    /* 可选：如果父元素是 inline，强制转为 block 级（确保 100% 宽度生效） */
    /* display: block; */

}





.tr_itm .zhuafter {
    position: relative;
    border: 1px solid #136eb4;
}

/* .td_test {
    border: 1px solid #136eb4;
} */

.tr_itm .zhuafter .danguan {
    position: absolute;
    width: 76px;
    font-size: 14px;
    height: 20px;
    top: -10px;
    left: calc(50% - 38px);
    background-color: #2f7edc;
    color: #ffffff;
    border-radius: 2px 2px 6px 6px;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* 胜平负停售的样式 */
.tr_itm .zhu .tr_zhu_ting {
    flex: 5;
    background-color: #fff;
    border: 1px solid #bfdafc;
    display: flex;
    align-items: center;
    height: 40px;

    font-size: 14px;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .zhu .tr_zhu_ting .one {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .zhu .tr_zhu_ting .san {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

/* 胜平负在售的 */
.tr_itm .zhu .tr_zhu {
    flex: 5;
    background-color: #e0f2ff;
    display: flex;
    align-items: center;
    height: 40px;
    border: 1px solid #bfdafc;

    font-size: 14px;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .zhu .zhuitm {
    width: 100%;
}

.tr_itm .zhu .zhuitm .tr_null {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 30px;
    height: 42px;
    border: 1px solid #bfdafc;
    color: #acacac;

}



.tr_itm .ke .zhuitm {
    width: 100%;
}

.tr_itm .ke .zhuitm .tr_null {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    box-sizing: border-box;
    padding: 0 20px;
    height: 40px;
    border: 1px solid #bfdafc;
    color: #acacac;

}



.tr_itm .zhu .tr_zhu .one {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .zhu .tr_zhu .san {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
}

.support {
    width: 100%;
    height: 100%;
    display: flex;

}

.support .zhu_nam {
    display: flex;
    padding: 5px 20px;
    align-items: center;
    border: 1px solid #BFDAFC;
    font-size: 14px;
    color: #CCA45E;
}

.support .sup_one {
    flex: 5;
    justify-content: flex-end;
}

.support .sup_two {
    flex: 2;
    padding-left: 6px;
    padding-right: 10px;
    justify-content: center;
}

.support .sup_twos {
    flex: 3;
    padding-left: 14px;
    padding-right: 10px;
    justify-content: center;
}

.support .sup_san {
    flex: 5;
    justify-content: flex-start;
}


.tr_itm .tr_zhu .th_col:hover {
    background-color: #fff1e7;
    border: 1px solid rgb(220, 164, 164);
}

.tr_itm .tr_ping .th_col:hover {
    background-color: #fff1e7;
    border: 1px solid rgb(220, 164, 164);
}


s .tr_item_div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr_item_div_game {

    display: flex;
}

.tr_item_div_game .item_game {
    flex: 1;
    background-color: #e0f2ff;
    border: 1px solid #bfdafc;
    height: 40px;
    font-size: 14px;
    color: #004b91;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr_item_div_game .item_game:hover {
    border: 1px solid #bf8323;
    background-color: #fff1e7;
}

.tr_item_div_game .item_game_ting {
    background-color: #fff;
    flex: 1;
    border: 1px solid #bfdafc;
    height: 40px;
    font-size: 14px;
    color: #004b91;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr_item_div_game .item_game_ting:hover {
    border: 1px solid #e51c24;

}

/* 胜平负停售的样式 */
.tr_itm .zhu .tr_zhu_ting .zhu_name {
    font-size: 14px;
    color: #000;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;

}

.tr_itm .zhu .tr_ping_ting .zhu_name {
    font-size: 14px;
    color: #000;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;
}

.tr_itm .zhu .tr_zhu_ting .zhu_pl {
    font-size: 14px;
    color: #000;

}

.tr_itm .zhu .tr_zhu_ting .zhu_pl {
    font-size: 14px;
    color: #000;
}

.tr_itm .zhu .tr_zhu_ting .biaoredo {
    color: #e51c24;
    font-weight: 600;

}

.tr_itm .zhu .tr_ping_ting .biaoredo {
    color: #e51c24;
    font-weight: 600;

}

/* 主队名字 */
.tr_itm .zhu .th_col_ting .zhu_name {
    font-size: 14px;
    color: #000;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;

}

/* 客队名字 */
.tr_itm .zhu .th_col_ting .ke_name {
    font-size: 14px;
    color: #000;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;
    text-align: right;

}

/* 客队名字 */
.tr_itm .zhu .th_col_ting .ke_name {
    font-size: 14px;
    color: #000;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;
    text-align: right;
}

/* 客队名字 */
.tr_itm .zhu .th_col .ke_name {
    font-size: 14px;
    color: #004b91;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;
    text-align: right;
}


.tr_itm .zhu .th_col_ting .zhu_pl {
    font-size: 14px;
    color: #000;
}

/* 主队名字 */
.tr_itm .zhu .th_col .zhu_name {
    font-size: 14px;
    color: #004b91;
    /* 设置容器宽度（根据需要调整） */
    width: 100px;
    /* 确保文本不换行 */
    white-space: nowrap;
    /* 溢出部分隐藏 */
    overflow: hidden;
    /* 溢出时显示省略号 */
    text-overflow: ellipsis;

}

.tr_itm .zhu .th_col .zhu_pl {
    font-size: 14px;
    color: #333;
}

.tr_itm .th_colActs {
    background-color: #e55551;
    color: #fff;
}

.tr_itm .th_colActs:hover {
    background-color: #e55551 !important;
    color: #fff !important;
}

.tr_itm .th_colActs .redo {
    color: #FFF !important;
}

.tr_itm .th_colActs .zhu_pl {
    color: #FFF !important;
}

.tr_itm .th_colActs .zhu_name {
    color: #FFF !important;
}


.tr_itm .th_colActs .redo :hover {
    color: #fff !important;
}

.tr_itm .th_colActs .glv {
    color: #FFF !important;
}

.tr_itm .th_colActs .glv:hover {
    color: #fff !important;
}

/* 胜平负停售的样式 */
.tr_itm .zhu .tr_ping_ting {
    font-size: 14px;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: #fff;
    border: 1px solid #bfdafc;
    height: 40px;

    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .zhu .tr_ping {
    font-size: 14px;
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border: 1px solid #bfdafc;
    border-top: none;
    border-bottom: none;
    background-color: #e0f2ff;
    height: 40px;

    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .zhu .tr_zhu_ting:hover {
    border: 1px solid #ee6c71;
}

.tr_itm .zhu .tr_ping_ting:hover {
    border: 1px solid #ee6c71;
}

.tr_itm .zhu .two {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #bfdafc;
    border-left: none;
    border-right: none;

}

.tr_itm .ke .two {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tr_itm .ke {
    display: flex;
    height: 100%;
    width: 330px;
    box-sizing: border-box;

}

.tr_itm .ke .tr_zhu {
    flex: 5;
    background-color: #e0f2ff;
    display: flex;
    align-items: center;
    height: 40px;
    border: 1px solid #bfdafc;
    font-size: 14px;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

/* 让球胜平负停售的样式 */
.tr_itm .ke .tr_zhu_ting {
    flex: 5;
    background-color: #fff;
    border: 1px solid #bfdafc;
    display: flex;
    align-items: center;
    height: 40px;

    font-size: 14px;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .ke .tr_zhu_ting .one {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .ke .tr_zhu_ting .san {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 30px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .ke .tr_ping_ting {
    font-size: 14px;
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: #fff;
    border: 1px solid #bfdafc;
    height: 40px;

    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .ke .tr_zhu_ting .zhu_name {
    font-size: 14px;
    color: #000 !important;


}

.tr_itm .ke .tr_ping_ting .zhu_name {
    font-size: 14px;
    color: #000 !important;

}

.tr_itm .ke .tr_zhu_ting .zhu_pl {
    font-size: 14px;
    color: #000 !important;


}

.tr_itm .ke .tr_ping_ting .zhu_pl {
    font-size: 14px;
    color: #000 !important;

}

.tr_itm .ke .tr_zhu_ting .zhu_pl {
    font-size: 14px;
    color: #000 !important;
}

.tr_itm .ke .tr_zhu_ting .biaoredo {
    color: #e51c24;
    font-weight: 600;

}

.tr_itm .ke .tr_ping_ting .biaoredo {
    color: #e51c24;
    font-weight: 600;

}

.tr_itm .ke .tr_zhu .one {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .ke .tr_zhu .san {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}

.tr_itm .ke .tr_ping_ting:hover {
    border: 1px solid #ee6c71;
}


.tr_itm .ke .tr_zhu_ting:hover {
    border: 1px solid #ee6c71;
}


.tr_itm .ke .th_col .zhu_name {
    font-size: 14px;
    color: #004b91;


}

.tr_itm .ke .th_col .zhu_pl {
    font-size: 14px;
    color: #333;


}

.tr_itm .ke .tr_ping {
    font-size: 14px;
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    border: 1px solid #bfdafc;
    background-color: #e0f2ff;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */

}

.tr_itm .updown_ting {
    width: 37px;
    background-color: #fff;
    border: 1px solid #bfdafc;
    height: 60px;
    font-size: 14px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tr_itm .updown_ting .inds {
    color: #e51c24;
    font-size: 12px;
    font-weight: 600;
}

.tr_itm .updown {
    width: 37px;
    background-color: #e0f2ff;
    border: 1px solid #bfdafc;
    height: 40px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
}

.tr_itm .updownText {
    width: 37px;
    background-color: #e0f2ff;
    border: 1px solid #bfdafc;
    height: 72px;
    font-size: 14px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tr_itm .updownact {

    border: 1px solid #bf8323;

}

.tr_itm .updown .inds {
    position: absolute;
    width: 20px;
    top: 0px;
    left: calc(50% - 10px);
    display: flex;
    justify-content: center;
    color: #ed7e2b;
    font-weight: 600;
}

.tr_itm .updown:hover {
    background-color: #fff1e7;
    border: 1px solid rgb(220, 164, 164);
}

.tr_itm .sixTd {
    background-color: #fffcf7;
    border: 1px solid #bf8323;
    padding: 30px 100px;
}

.tr_itm .sixTd .tb_head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-weight: normal; */
    font-size: 14px;
    color: #7b4f10;
    width: 150px;
    border: 1px solid #bfdafc;
    height: 123px;

}

.tr_itm .sixTd .jinqiu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-weight: normal; */
    font-size: 14px;
    color: #7b4f10;
    width: 150px;
    height: 40px;
    border: 1px solid #bfdafc;
    border-top: none;
    border-bottom: none;
}

.tr_itm .sixTd .jinqius {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-weight: normal; */
    font-size: 14px;
    color: #7b4f10;
    width: 150px;
    height: 82px;
    border: 1px solid #bfdafc;
    border-top: none;
    border-bottom: none;
}

.tr_itm .sixTd .quan {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-weight: normal; */
    font-size: 14px;
    color: #7b4f10;
    width: 150px;
    height: 40px;
    border: 1px solid #bfdafc;
}

.tr_itm .sixTd .quans {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* font-weight: normal; */
    font-size: 14px;
    color: #7b4f10;
    width: 150px;
    height: 82px;
    border: 1px solid #bfdafc;
}

.tr_itm .sixTd .kedan {
    color: #fff;
    font-size: 12px;
    padding: 3px 5px;
    background-color: #136eb4;
    font-weight: normal;
}


.tr_itm .sixTd .bet-more-tb .sbetbtn {
    /* background-image: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
    width: 60px;
    height: 40px;
    background-color: #e0f2ff;
    border: 1px solid #bfdafc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.grid-text-sup {
    width: 60px;
    height: 40px;
    color: #CCA45E;
    border: 1px solid #bfdafc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* 停售的样式 */
.tr_itm .sixTd .bet-more-tb .sbetbtn_ting {
    /* background-image: url('/web/image/bg_toum.png') repeat-x 0 -353px; */
    width: 60px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #bfdafc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;

}

.tr_itm .sixTd .bet-more-tb .sbetbtn:hover {
    background-color: #fff1e7;
    border: 1px solid rgb(220, 164, 164);
}

.tr_itm .sixTd .bet-more-tb .sbetbtn .tp {
    color: #004B91;
}

.tr_itm .sixTd .bet-more-tb .sbetbtn .btm {
    color: #666;
}

.Home .home .home_btm {
    margin-bottom: 20px;
    /* min-height: 700px; */
}



.tableBox {
    border-bottom: 1px solid#ccc;
}

.Home .home .tr_itm .sbetbtnAct {

    width: 60px;
    height: 40px;
    background-color: #e55551;
    border: 1px solid #bfdafc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* 停售的样式 */
.Home .home .tr_itm .sbetbtnAct_ting {
    width: 60px;
    height: 40px;
    background-color: #eae9e9;
    border: 1px solid #bfdafc;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #000;
}

.Home .home .tr_itm .rede_ting {
    color: #e51c24;
    font-weight: 600;
}

.Home .home .th_colAct {
    background-color: #e55551;
    color: #fff;
}

.Home .home .th_colAct .redo {
    color: #FFF;
}

.Home .home .th_colAct .glv {
    color: #FFF;
}

/* 停售的样式 */
.Home .home .tr_zhu_ting .th_colAct_ting {
    background-color: #eae9e9;

}

.Home .home .tr_ping_ting .th_colAct_ting {
    background-color: #eae9e9;

}




.Home .home .fixid {
    width: 1200px;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    height: 60px;
    background-color: #fff;
    /* margin-bottom: 20px; */
    border: 1px solid #ccc;

}

.Home .home .fixid .look {
    width: 130px;
    height: 100%;
    cursor: pointer;
    padding: 10px;
    border-right: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
    position: relative;
}

.Home .home .fixid .look .look_check {
    position: absolute;
    left: 0;
    bottom: calc(100% + 10px);
    width: 510px;
    border: 1px solid #ccc;

}

.Home .home .fixid .look .look_check .look_check_t {
    height: 30px;
    background-color: #e9f3ff;
    font-size: 12px;
    display: flex;
    align-items: center;
}

.Home .home .fixid .look .look_check .look_check_t .zhen {
    width: 130px;
    text-align: center;

}

.Home .home .fixid .look .look_check .look_check_t .xuan {
    width: 300px;
    text-align: center;
}

.Home .home .fixid .look .look_check .shedanrows {
    height: 200px;
    overflow: hidden auto;
    background-color: rgb(255, 255, 255);
    font-size: 12px;
    padding: 5px;
}

.Home .home .fixid .look .look_check .shedanrows .she_left {
    display: flex;
}

.Home .home .fixid .look .look_check .shedanrows .she_left .riqi {
    margin-right: 5px;
    color: #000;

}


.Home .home .fixid .look .look_check .shedanrows .she_left .dui {
    margin-right: 10px;
    width: 70px;
}

.Home .home .fixid .look .look_check .shedanrows .she_left .peilv {
    display: flex;
    flex-wrap: wrap;
    width: 300px;
}

.Home .home .fixid .look .look_check .shedanrows .she_left .peilv .peilv_itm {
    width: 90px;
    margin: 0 10px 10px 0;
    display: flex;
    padding: 5px 10px;
    box-sizing: border-box;
    background-color: #ed7e2b;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.Home .home .fixid .look .look_check .shedanrows .she_left .peilv .peilv_itm>div:nth-of-type(1) {
    margin-right: 5px;
}

.look_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

}

.look_top .look_top_r {}

.look_btm {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.look_btm .look_btm_r {
    color: #2f92e6;
}

.Home .home .fixid .mode {
    display: flex;
    align-items: center;
    width: 400px;
    margin-left: 10px;
    margin-right: 10px;
}

.Home .home .fixid .mode .guo {
    width: 70px;
    font-size: 14px;
}

.totalspan {
    width: 100%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff6d00;
    font-weight: 600;
}

.el-checkbox__label {
    font-size: 12px;
}

.Home .home .fixid .mode .check {
    display: flex;
    flex-wrap: wrap;
    flex: 1;
}

.Home .home .fixid .mode .check .checkbox {
    display: flex;
    flex-wrap: wrap;

}

.Home .home .fixid .mode .check .checkbox img {
    width: 15px;
    height: 15px;
    margin-right: 5px;
}

.Home .home .fixid .mode .check .checkbox .checkbox_itm {
    display: flex;
    align-items: center;
    margin-right: 10px;
    font-size: 14px;
    cursor: pointer;
}

.multiple {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 20px;
    width: 400px;
}

.multiple .bujin {
    margin: 0 10px;
}

.multiple .price .price_t {
    margin-bottom: 10px;
}

.share {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-right: 20px;
    color: #fff;
    flex: 1;
    cursor: pointer;
    justify-content: center;
}

.share_l {
    padding: 5px 10px;
    /* background-color: #e7544d; */
    color: #136eb4;
    margin-right: 20px;
    border-radius: 4px;
}

.share_r {
    padding: 5px 10px;
    background-color: #2f7edc;
    border-radius: 4px;

}

.el-dropdown-link {
    cursor: pointer;
    color: #409EFF;
}

.el-icon-arrow-down {
    font-size: 12px;
}

.demonstration {
    display: block;
    color: #8492a6;
    font-size: 14px;
    margin-bottom: 20px;
}

.el-checkbox-group {
    padding-right: 0;
}

.Home .homeact .home_btm2 {
    /* margin-bottom: 20px; */
    min-height: 700px !important;
    display: flex;
    justify-content: space-between;
}

.Home .homeact .home_btm2 .btm_left {
    width: 75%;
    background-color: #fff;
    /* background-color: #65a0c8; */
    border-radius: 8px;
    padding: 20px 20px 50px 20px;
    box-sizing: border-box;

}

.Home .homeact .home_btm2 .btm_left .qi {
    font-size: 12px;
    color: #000;
    margin-bottom: 10px;
}

.Home .homeact .home_btm2 .btm_left .zong {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.Home .homeact .home_btm2 .btm_left .zong .one {
    font-size: 24px;
    font-weight: 600;
}

.Home .homeact .home_btm2 .btm_left .zong .two {
    font-size: 14px;
    margin-top: 20px;
    color: #000;
}

.Home .homeact .home_btm2 .btm_left .fang {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0;
}

.Home .homeact .home_btm2 .btm_left .fang .an {
    background-color: #e7544d;
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    border-radius: 6px;
    cursor: pointer;
}

.Home .homeact .home_btm2 .btm_left .detail {
    padding: 10px;
    background-color: #e9eff6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #000;
    border-radius: 4px;

}

.Home .homeact .home_btm2 .btm_left .detail .one {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.Home .homeact .home_btm2 .btm_left .detail .qing {
    cursor: pointer;
}



.Home .homeact .home_btm2 .btm_left .none .biao {
    font-size: 12px;
    color: #666;
    cursor: pointer;
    border: 1px solid #ccc;
    padding: 10px 15px;
    position: relative;
}


.Home .homeact .home_btm2 .btm_left .none .lie {
    margin: 10px 0;
    border: 1px solid #ccc;
    border-bottom: none;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 12px;
    border-bottom: 1px solid #ccc;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;

}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left {
    display: flex;
    align-items: center;
    margin-right: 100px;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .team {
    display: flex;
    align-items: center;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .team>div:nth-of-type(1) {
    font-size: 15px;
    color: #333;
    width: 70px;
    display: flex;
    justify-content: flex-end;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .team>div:nth-of-type(3) {
    font-size: 15px;
    color: #333;
    width: 70px;
    display: flex;
    justify-content: flex-start;
}


.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .team>div:nth-of-type(2) {
    margin: 0 30px;
    color: #000;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .riqi {
    color: #000;
    width: 50px;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left .time {
    margin: 0 40px;
    color: #000;
    width: 80px;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 {
    display: flex;
    align-items: center;
    margin-right: 50px;
    width: 60%;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .team14 {
    display: flex;
    align-items: center;
    flex: 1;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .team14>div:nth-of-type(1) {
    font-size: 15px;
    color: #333;
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .team14>div:nth-of-type(3) {
    font-size: 15px;
    color: #333;
    flex: 1;
    display: flex;
    justify-content: flex-start;
}


.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .team14>div:nth-of-type(2) {
    margin: 0 30px;
    color: #000;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .riqi14 {
    color: #000;
    width: 10px;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_left14 .time14 {
    margin: 0 40px;
    color: #000;
    width: 80px;
}


.Home .homeact .home_btm2 .btm_left .none .biao>i {
    color: #333;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right {
    flex: 1;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 5px 0 5px 30px;
    border-bottom: 1px solid #eeeeee;
    box-sizing: border-box;
    position: relative;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm .bao {
    position: absolute;
    background-color: #eeeeee;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    left: -10px;
    top: calc(50% - 11px);
    font-size: 12px;

}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm .itmBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    background-color: #e55551;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 4px;


}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm .itemBox1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    /* background-color: #e55551; */
    color: #bdaca3;
    margin-right: 10px;
    margin-bottom: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;


}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm .itmBox .bottom {
    color: #f7d6d5;
}

.Home .homeact .home_btm2 .btm_left .none .lie .lie_item .item_right .right_itm .itemBox1 .bottom {
    color: #bdaca3;
}

.Home .homeact .home_btm2 .expert_right {
    width: 24%;
    background-color: #fff;
    /* background-color: #65a0c8; */
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    box-sizing: border-box;
    height: 100%;
}

.Home .homeact .home_btm2 .expert_right .titel {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 18px;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head {
    display: flex;
    flex-direction: column;
    padding: 20px 0px;
    border-top: 1px solid rgb(243, 242, 242);
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;

}

.Home .homeact .home_btm2 .expert_right .plan_time .head .top .left {
    padding: 2px 4px;

    /* background-color: rgb(239, 216, 216); */
    background-color: #ffe6ea;
    color: rgb(218, 122, 122);
    margin-right: 10px;
    border-radius: 4px;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .top .right {
    padding: 2px 4px;
    /* background-color: rgb(198, 212, 220); */
    background-color: #bbdef9;
    color: #fff;
    margin-left: 10px;
    border-radius: 4px;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom .left {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    flex: 1;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom .left>img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(166, 226, 184);
    margin-bottom: 10px;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom .center {
    font-size: 20px;
    color: rgb(120, 117, 117);
    margin: 0 5px;
}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom .right {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    font-size: 14px;

}

.Home .homeact .home_btm2 .expert_right .plan_time .head .bottom .right>img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgb(234, 234, 150);
    margin-bottom: 10px;

}

#myDiv {
    position: absolute;
    width: 500px;
    left: 0;
    bottom: 50px;
    background-color: #fff;
    border: 1px solid #dddddd;
    padding: 10px;
}

.biao_nav tr {
    border: 1px solid #ccc;
}

.biao_nav th {
    background-color: #f7f7f7;
    padding: 10px;
}

.biao_nav td {
    padding: 10px;
}

.xuhao {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;


}

.pagination a.active {
    background-color: dodgerblue;
    color: white;
}

.pagination a:hover:not(.active) {
    background-color: #ddd;
}

.biaoBox {
    height: 300px;
    overflow-y: scroll;
    /* 启用y轴滚动条 */
    overflow: auto;
    /* 使内容可以滚动 */
    /* scrollbar-width: none; */
    /* 对于Firefox */
}

/* 针对所有浏览器的滚动条隐藏 */
/* .biaoBox::-webkit-scrollbar {
    display: none;
} */

.xiyao {
    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 14px;
}


.xiyao .xi_itm {
    margin-right: 7px;
}

.xi_itm1 {
    color: #a49e9e !important;
}

.xi_itm2 {
    margin-right: 0 15px;
}

.xiyao .xi_itm1:hover {
    color: #004b91 !important;
}