.layui-layer-content{
    padding: 30px;
}
#loading {
  position: fixed;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

.loading-text {
  margin-left: 20px;
  font-size: 24px;
  font-weight: bold;
}

@keyframes spin {
  0% { transform: rotate(0deg); }/static/web3/img/b1.webp
  100% { transform: rotate(360deg); }
}

.actionsheet {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.actionsheet-mask {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.actionsheet-menu {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.actionsheet-title {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

.actionsheet-list {
  margin: 0;
  padding: 0;
}

.actionsheet-item {
  padding: 10px;
  font-size: 16px;
  color: #333;
  border-top: 1px solid #e5e5e5;
  cursor: pointer;
}

.actionsheet-item:first-child {
  border-top: none;
}

.actionsheet-cancel {
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  cursor: pointer;
}
.van-collapse-item__wrapper {
    overflow: hidden;
    transition: height 0.3s ease-out;
}