body {
  overflow-x: hidden;
}

::-webkit-scrollbar-track-piece {
  background-color: #fff;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  height: 50px;
  background-color: #b8b8b8;
  -webkit-border-radius: 6px;
  outline: 2px solid #fff;
  outline-offset: -2px;
  border: 2px solid #fff;
  filter: alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

::-webkit-scrollbar-thumb:hover {
  height: 50px;
  background-color: #878987;
  -webkit-border-radius: 6px;
}

.layui-btn-primary {
  border: none;
}

.layui-input:focus,
.layui-textarea:focus {
  border-color: #439eff !important;
}

.layui-laydate .layui-this,
.layui-laydate .layui-this>div,
.layui-laydate-linkage .layui-laydate-content td.laydate-selected>div {
  background-color: #439eff !important;
}

.layui-laydate-content td.laydate-day-now {
  color: #439eff !important;
}

.layui-laydate-content td.laydate-day-now:after {
  border-color: #439eff !important;
}

.layui-laydate-footer span:hover {
  color: #439eff !important;
}

.layui-tab-brief>.layui-tab-title .layui-this {
  color: #439eff !important;
}

.layui-tab-brief>.layui-tab-more li.layui-this:after,
.layui-tab-brief>.layui-tab-title .layui-this:after {
  border-color: #439eff !important;
}

.layui-form-checked[lay-skin="primary"]>i {
  border-color: #439eff !important;
  background-color: #439eff;
}

.layui-form-select dl dd.layui-this {
  color: #fff !important;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #439eff;
}

.layui-laypage a:hover {
  color: #439eff !important;
}

.layui-laypage input:focus,
.layui-laypage select:focus {
  border-color: #439eff !important;
}

.custom-modal {
  position: fixed;
  z-index: 999;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.modal-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
  z-index: 1000;
}

.modal-body {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  /* max-height: 100%; */
  max-height: 90vh;
  /* overflow: auto; */
  overflow: hidden;
  background-color: #fff;
  z-index: 1001;
  display: flex;
  flex-direction: column;
}

.modal-content {
  max-height: 100%;
  flex: 1;
  overflow: auto;
}

.modal-header {
  border-bottom: 1px solid #e8e8e8;
}

.modal-footer {
  border-top: 1px solid #e8e8e8;
}

body.modal-open {
  overflow: hidden;
}

/* 导航栏 */
.sectionTypes .sectionItem .sectionTypesItem:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 导航栏 */

/* flex */
.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.justify-end {
  justify-content: flex-end;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.w-full {
  width: 100%;
}

.rounded-none {
  border-radius: 0px;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-sm {
  border-radius: 0.125rem;
}

.overflow-hidden {
  overflow: hidden;
}

.bg-white {
  background-color: #fff;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.text-sky-500 {
  color: #0ea5e9;
}

.text-blue-500 {
  color: #3b82f6;
}

.flex-wrap {
  flex-wrap: wrap;
}

.p-4 {
  padding: 1rem;
}

.py-2 {
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

.py-4 {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.p-2 {
  padding: 0.5rem;
}

.pl-2 {
  padding-left: 0.5rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.border {
  border: 0.5px solid #ddd;
}

.border-bottom {
  border-bottom: 0.5px solid #ddd;
}

.cursor-pointer {
  cursor: pointer;
}

/* flex */
.font-14px {
  font-size: 14px;
}

.font-15px {
  font-size: 15px;
}

.font-16px {
  font-size: 16px;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-white {
  color: #fff;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inline-block {
  display: inline-block;
}

.h-full {
  height: 100%;
}

.w-full {
  width: 100%;
}

.self-end {
  align-self: flex-end;
}

a {
  color: inherit;
}

img {
  display: inline-block;
  vertical-align: middle;
}

.text-\[25px\] {
  font-size: 25px;
}

.border-slate-300 {
  border-color: #cbd5e1;
}

.border-solid {
  border-style: solid;
}

.border-2 {
  border-width: 2px;
}