html,
body {
  position: relative;
  width: 100%;
  height: 100%;
  /* *+width: auto;
  *+height: auto; */
  overflow-x: hidden;
  overflow-x: auto\9;
  /*overflow-y:auto;*/
  background-color: #f8f8f8;
}

html,
body,
p,
input,
span,
ul,
li,
select,
textarea,
label,
table {
  padding: 0;
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑";
  font-size: 14px;
  color: #4D4D4D;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-family: '微软雅黑';
  font-size: 14px;
  color: #4D4D4D;
}

ul,
li {
  list-style: none;
}

img {
  /*cursor: pointer;*/
  border: 0;
  outline: none;
  /*max-width:100%;*/
  display: inline-block
}

a {
  color: #4D4D4D;
  text-decoration: none;
  outline: none;
  font-family: '微软雅黑';
}

a:link {
  text-decoration: none;
  border: 0;
  outline: none;
}

a:visited {
  text-decoration: none;
  border: 0;
  outline: none;
}

a:hover {
  text-decoration: none;
  border: 0;
  outline: none;
  color: #006bc7;
  cursor: pointer;
}

a:active {
  text-decoration: none;
  border: 0;
  outline: none;
}


/* 去掉按钮点击时的边框高亮效果 */
button:focus,
button.focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.page-link:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

#leftNav {
  border-radius: 5px;
}

.accordion-common-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 5px;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}

.accordion-common-button:hover {
  /* background-color: #75c8ff; */
  background: linear-gradient(to right, #1f80e7, #4bb7ff);
  color: #fff;
  /* border-radius: 5px; */
}

.accordion-common-button.active {
  /* background-color: #006bc7; */
  background: linear-gradient(to right, #1f80e7, #4bb7ff);
  color: #fff;
  /* border-radius: 5px; */
}

.accordion-body ul li:hover {
  background: linear-gradient(to right, #1f80e7, #4bb7ff);
  color: #fff;
}

.accordion-body ul li.active {
  background: linear-gradient(to right, #1f80e7, #4bb7ff);
  color: #fff;
}

/* .accordion-common-button .title {
  width: 100px;
} */

.accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.line {
  height: 3px;
  background: linear-gradient(to right, #1f80e7, #4bb7ff);
}

.btn:hover {
  background: linear-gradient(to right, #1f80e7, #4bb7ff);

}

.list-item {
  transition: all 0.3s ease-in-out;
}

.list-item:hover {
  transform: translateX(3px);
  cursor: pointer;
}

/* 
.img-scroll {
  overflow: hidden;
  flex-wrap: nowrap;
  animation: scroll 30s normal linear infinite;
}

.img-scroll:hover {
  animation: none;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
} */