@charset "UTF-8";

table {
	    text-align: center;
	    font-size: 12px;
	    line-height: 35px
}
table td {
    border: 1px solid #3270c6;
}
table thead th {
    text-align: center;
    border: 1px solid #3270c6;
    font-size: 12px;
    line-height: 20px
}
table tr, table tr:hover {
    background-color: transparent;
}
.thWidth {
    width: 50px;
}
/*修改滚动条样式*/
div::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
div::-webkit-scrollbar-track {
    background: rgb(239, 239, 239);
    border-radius: 2px;
}
div::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 10px;
}
div::-webkit-scrollbar-thumb:hover {
    background: #061687;
}
div::-webkit-scrollbar-corner {
    background: #061687;
}
