/* 中间部分css */
.middlecontent{
    width: 100%;
    background-color: #F5F5F5;
}
.middlecontent .center{
    width: 1200px;
    margin: auto;
}
/* 面包屑 */
 .middlecontent .center .crumbs{
    height: 46px;
    width: 100%;
    background: #FFFFFF;
    margin-bottom: 10px;
}
 .middlecontent .center .crumbs ul{
    display: flex;
    height: 100%;
    align-items: center;
    margin-left: 30px;
}
 .middlecontent .center .crumbs ul li a,
 .middlecontent .center .crumbs ul a{
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}
 .middlecontent .center .crumbs ul li:last-child a{
    color: #B34746;
}
.middlecontent .center .contrast{
    width: 100%;
    background: #FFFFFF;
    padding: 30px 60px;
    box-sizing: border-box;
}
.middlecontent .center .contrast .contrast_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.middlecontent .center .contrast .contrast_top input{
    width: 400px;
    height: 40px;
    background: #F5F5F5;
    border-radius: 4px;
    border: none;
    outline: none;
    padding-left: 20px;
}
.middlecontent .center .contrast .contrast_top p{
    margin: 0 10px;
}
.middlecontent .center .contrast .contrast_top button{
    width: 74px;
    height: 40px;
    background: #FFFFFF;
    border: 1px solid #B34746;
    border-radius: 4px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}
.middlecontent .center .contrast .contrast_top .rapid{
    margin-left: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    background: #B34746;
}
.middlecontent .center .contrast .contrast_top .reset{
    font-size: 14px;
    font-weight: 400;
    color: #B34746;
    background: #FFFFFF;
    border: 1px solid #B34746;
}
.table-container {
    width: 100%;
    overflow: auto;
    margin-top: 30px;
  }
  
  .scrollable-table {
    border-collapse: collapse;
    width: 100%;
  }
  
  .scrollable-table th, .scrollable-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    height: 40px;
    width: 40%;
  }
  
  .scrollable-table th {
    background-color: #f2f2f2;
    width: 210px;
    
  }
.table-container .frame span{
    display: inline-block;
    padding: 2px 7px;
    font-size: 14px;
    font-weight: 400;
    color: #B34746;
    border: 1px solid #B34746;
    border-radius: 4px;
    margin-left: 10px;
}
.select_img{
    display: flex;
}
.flex_width img{
    width: 132px;
    height: 132px;
}


/* 热门工具开始  */
.show_hotTools{
    width: 100%;
    background:#fff;
    box-sizing: border-box;
    padding: 30px 20px;
}
.index_mian_hotTools{
    width: 100%;
    height: 145px;
    background: url(../../img/content/bg_index_NinthBg.png) no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    
}
.index_mian_hotTools>p{
    width: 48px;
    height: 60px;
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 36px;
    margin-left: 45px;
}
.index_mian_hotTools>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 155px;
    margin-top: 28px
}
.index_mian_hotTools>div>div{
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    width: 804px;
    justify-content: space-between;
}
.index_mian_hotTools_toolList{
    display: flex;
    align-items: center;
}
.index_mian_hotTools_toolList>img{
    width: 34px;
    height: 34px;
}
.index_mian_hotTools_toolList>a{
    font-size: 18px;
    font-weight: 400;
    color: #B34746;
    margin-left: 11px;
}
.index_mian_hotTools_toolList>a:hover{
     font-size: 20px;
     transition: all .2s;
     text-decoration: underline;
}
.tool_marginLeft{
    margin-left: -15px;
}
/* 热门工具结束  */

.searchable-select,
.searchable-select1 {  
    position: relative;  
    display: inline-block;  
}  

.dropdown-menu,
.dropdown-menu1 {  
    position: absolute;  
    top: 100%;  
    left: 0;
    width: 100%;
    background-color: #fff;  
    border: 1px solid #ccc;  
    display: none; /* 默认隐藏 */  
    max-height: 200px; /* 根据需要设置 */  
    overflow-y: auto; /* 垂直滚动 */  
}

.options-list,
.options-list1{  
    list-style: none;  
    padding: 0;  
    margin: 0;  
}  

.option,
.option1 {  
    padding: 5px;  
    cursor: pointer;  
}  

.option:hover, 
.option1:hover {  
    background-color: #f0f0f0;  
}  

/* 当输入框有焦点时显示下拉列表 */  
.searchable-select.active .dropdown-menu,
.searchable-select1.active .dropdown-menu1 {  
    display: block;  
    z-index: 9;
}