/* 全局样式 */
/* @media screen and (max-width:1000px) {
    html{
        font-size: 16px;
    }
}
@media screen and (min-width:1000px){
    html{
        font-size: 1.2vw;
    }    
} */



html{
    font-size: 1.0vw;
    font-family:"Microsoft YaHei";    
} 



.blackbox{
    position:relative;
    width:100%;
    height:100%;
    background-color:rgba(0, 0, 0, 0.527);
/*     filter:alpha(opacity=50);
    -moz-opacity:0.5;
    opacity:0.5; */
    position:absolute;
    left:0px;
    top:0px;
    display:none;
    z-index:1000;
}
.searchbox{
    position: fixed;
    background-color: rgb(253, 253, 253);
    color: black;
    top:8rem;
    left:24rem;
    width: 50rem;
    height:40rem; 
    padding: 1rem 1rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    z-index: 1500;
}

.searchbox_pinyin{
    width: 100%;
    height: 10%;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.searchbox_pinyin a{
    width: 10%;
    text-align: center;
}
.searchbox_pinyin input{
    width: 20%;
    /* margin-left: 2rem; */
}
.searchbox_pinyin input[type="radio"]{
    width: 5%;
    margin-left: 1rem;
}

.searchbox_list{
    width: 100%;
    height: 90%;  
}
.searchbox table{
    margin-top: 0rem;
    /* margin-left: 2rem; */
}

/* 表格 */
table {
    table-layout:fixed;/*列宽由表格宽度和列宽度设定。*/
    width: 98%;
    background: #ccc;
    margin: 10px auto;
    border-collapse: collapse;/*border-collapse:collapse合并内外边距(去除表格单元格默认的2个像素内外边距*/ 
}   
table tbody {
    /* display: block; */    
    width: calc(100% + 8px); /*这里的8px是滚动条的宽度*/    
    overflow-y:scroll;    
    /* -webkit-overflow-scrolling: touch; */    
} 
th,td {
    height: 30px;
    line-height: 25px;
    text-align: center;
    border: 1px solid #ccc;
    /* word-break:break-all; */
    user-select:none;   /* 不选择 */
    overflow: visible;
    /* 超长，用省略号 */
    overflow:hidden; 
    text-overflow:ellipsis;
}  
th {
    background: #eee;
    font-weight: normal;
}  
tr {
    background: #fff;
}  
tr:hover {
    background: #cc0;
}  
td a {
    color: #06f;
    text-decoration: none;
}  
td a:hover {
    color: #06f;
    text-decoration: underline;
}
/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: #f5f5f5;
  }

  ::-webkit-scrollbar:hover {
    width: 7px;
    height: 14px;
    background-color: #f5f5f5;
  }

  /*定义滚动条轨道 内阴影+圆角*/
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #f5f5f5;
  }
  /*定义滑块 内阴影+圆角*/
  ::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #c8c8c8;
  }

/* 美化表格 */
/* table {
    border-collapse: collapse;
    border-spacing: 0;
}
 
td,th {
    padding: 3;
}

.pure-table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #028017;
} */
 /* 
.pure-table caption {
    color: #000;
    font: italic 85%/1 arial,sans-serif;
    padding: 1em 0;
    text-align: center;
}
 
.pure-table td,.pure-table th {
    border-left: 1px solid #028017;
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: .5em 1em;
}
 
.pure-table thead {
    background-color: #86e98f;
    color: #000;
    text-align: left;
    vertical-align: bottom;
}
 
.pure-table td {
    background-color: transparent;
}
 
.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}
 
.pure-table-bordered tbody>tr:last-child>td {
    border-bottom-width: 0;
} */

button {    
    animation: danru 0s;
}
button:hover{    
    animation-duration: 0.5s;
}
button:active{    
    animation: none;
}

@keyframes danru {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}


.Container{
    width: 100%;   
}

/* .biaoti{
    font-family: 'font_one';
    font-size: 2rem;
    color: brown;
    text-align: center;
} */
.anjian{
    display: flex;
    flex-direction: row;
    padding: 1rem 0rem 1rem 5rem;
    /* flex-wrap:wrap; */
}
.anjian_sub{
    padding-right: 5rem;
}
.main_window{
    width: 100%;  
    display: flex;
    flex-direction: row;
}
.main_left{
    width: 10px;
    height: 100%;
    
}

.floating_window{
    position:absolute;
    left: 0;
    width: 30%;
    background-color: rgba(0, 255, 255, 0.606);
    display: none;
    z-index: 100;
}
.main_left:hover  .floating_window{
    display: block;
}
.daohuo{
    width: 100%;
}
.su{
    display: flex;
    flex-direction:column;
}
.heng{
    display: flex;
    flex-direction: row;
}
.tr_selectColor{
    background-color: khaki;
}