/*捲軸*/
#scrollme::-webkit-scrollbar-track {
  background-color: transparent;
  border-radius: 0 0 30px 30px;
}
#scrollme::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
#scrollme::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 30px;
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.6);
}

/*表格*/
.table-responsive {
  width: 100%;
  overflow: auto;
  border-radius: 20px;
  margin-top: 40px;
}
.table-responsive table {
  width: 100%;
  border-collapse: collapse;
  background-color: #eee;
}
.table-responsive table .bg-dark {
  background: linear-gradient(323deg, #003cff 0%, rgb(0 113 227) 100%);
  color: #ddd;
}
.table-responsive table .bg-white {
  background-color: #FFF;
}
.table-responsive thead {
  background-color: #666;
  color: #FFF;
  font-size: 16px;
  line-height: 18px;
  white-space: nowrap;
}
.table-responsive tr, th, td {
  padding: 10px;
  border-top: 1px solid #eee;
  border-right: 1px solid #ddd;
}
.table-responsive th {
  width: 20%;
  min-width: 210px;
}
.table-responsive td {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  position: relative;
}
.table-responsive td .scroll {
    width: 15px;
    height: 2px;
    border-radius: 0 1em 1em 0;
    -webkit-animation: scroll 1.5s infinite linear;
    animation: scroll 1.5s infinite linear;
    transform: rotate(225deg);
    position: absolute;
    left: 45%;
    bottom: 14px;
    background-color: #003cff;
}
.table-responsive td .scroll:before {
    content: '';
    display: block;
    width: 2px;
    height: 25px;
    top: 0px;
    border-radius: 0 0 1em 1em;
    -webkit-animation: scroll 1.5s infinite linear;
    animation: scroll 1.5s infinite linear;
    background-color: #003cff;
}
.table-responsive td .scroll-text-move {
    position: absolute;
    bottom: 45px;
}
.table-responsive td .scroll-text {
    position: absolute;
    bottom: 10px;
    left: 15px;
    overflow: hidden;
}
@media screen and (max-width:1200px) {}
@media screen and (max-width:900px) {}
@media screen and (max-width:768px) {}
@media screen and (max-width:580px) {}
