/* 默认所有样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
}

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
input[type="checkbox"]::after {
  width: 24px;
  height: 24px;
  content: " ";
  color: #fff;
  display: inline-block;
  visibility: visible;
  border-radius: 2px;
  padding: 1px 2px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d4d7d9;
  display: flex;
  align-items: center;
  justify-content: center;
}

input[type="checkbox"]:checked::after {
  content: "\e613";
  font-family: "iconfont";
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  background: #ea5520;
  border: none;
}
.form-control:focus {
  box-shadow: none;
}
@media only screen and (max-width: 1100px) {
  input[type="checkbox"]::after {
    width: 18px !important;
    height: 18px !important;
  }
  body .form-control {
    border: 1px solid #d4d7d9;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    height: 30px;
    font-size: 14px;
  }
  body .varify-input-code,
  #mpanel2 div {
    height: 30px !important;
  }
  .checkbox {
    margin: 0 !important;
  }
  div .verify-code-area {
    width: 200px !important;
  }
}
/* 针对 Webkit 内核浏览器（Chrome, Safari, Edge, Opera） */
::-webkit-scrollbar {
  width: 14px; /* 垂直滚动条宽度，加大便于操作 */
  height: 14px; /* 水平滚动条高度 */
}

::-webkit-scrollbar-track {
  background: #e8e8e8; /* 轨道背景略深，便于区分 */
  border-radius: 7px;
}

::-webkit-scrollbar-thumb {
  background: #adacac; /* 滚动条滑块加深，更易辨认 */
  border-radius: 7px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7e7d7d;
}

/* 去掉上下箭头 */
::-webkit-scrollbar-button {
  display: none;
}
.layui-laypage-next,
.layui-laypage-prev {
  background: transparent !important;
  border: none !important;
}
.layui-laypage a,
.layui-laypage span {
  border: none !important;
  background: transparent !important;
  height: 40px !important;
  line-height: 40px !important;
}
/* 溢出隐藏 */
.overflow-hidden {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.checkbox-input {
  cursor: pointer;
}
@media (min-width: 1500px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1364px;
  }
}
/* css 平滑
@keyframes ysfadelnUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 60px, 0);
    transform: translate3d(0, 60px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
} */
html {
  scroll-behavior: smooth;
}
.layui-laypage a,
.layui-laypage span {
  font-size: 14px !important;
}
