/*清除元素默认的内外边距  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: PingFangSC, PingFang SC; */
}

/*让所有斜体 不倾斜*/
em,
i {
  font-style: normal;
}

/*去掉列表前面的小点*/
li {
  list-style: none;
}

/*图片没有边框   去掉图片底侧的空白缝隙*/
img {
  border: 0;
  /*ie6*/
  vertical-align: middle;
}

/*让button 按钮 变成小手*/
button {
  cursor: pointer;
}

/*取消链接的下划线*/
a {
  color: #666;
  text-decoration: none;
}

/* input框 */
input {
  /* 移除边框 */
  border: none;
  /* 移除边框阴影（如果有的话） */
  box-shadow: none;
  /* 移除内边距 */
  padding: 0;
  /* 移除外边距 */
  margin: 0;
  /* 移除背景色 */
  background-color: transparent;
  /* 移除背景图片 */
  background-image: none;
  /* 移除圆角 */
  border-radius: 0;
  /* 移除焦点时的轮廓线（如果需要的话） */
  outline: none;
  /* 移除文本高亮颜色（在某些浏览器中，当文本被选中时） */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 移除文本阴影（如果有的话） */
  text-shadow: none;
  /* 移除字体样式（如果需要的话） */
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  /* 移除其他可能的默认样式 */
  display: block;
}

.ellipsis {
  white-space: nowrap;
  /* 防止文本换行 */
  overflow: hidden;
  /* 隐藏超出容器的内容 */
  text-overflow: ellipsis;
  /* 超出部分用省略号表示 */
}

.df {
  display: flex;
}

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

.aic {
  align-items: center;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
html,
body {
  width: 100%;
  height: 100%;
}
body {
  font-size: 0.4267rem;
}
/* 提示框 */
.popup,
.popup-tips {
  z-index: 999;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.popup-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8rem;
  /* height: 4.32rem; */
  background: radial-gradient(0% 0% at 50% 50%, #ffffff 0%, #cbebfe 87%, #e2f4ff 100%);
  border-radius: 28px 28px 28px 28px;
  text-align: center;
}
.popup .back-btn {
  position: absolute;
  bottom: -1.8667rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3.3067rem;
  height: 1.0133rem;
  line-height: 1.0133rem;
  background: #0098ff;
  box-shadow: 0px 0.0533rem 0px 0.0267rem #007ed3;
  border-radius: 0.48rem;
  font-size: 0.4267rem;
  color: #ffffff;
}

/* 土司提示 */
#myToast {
  display: none;
  position: fixed;
  top: 40vh;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.27rem 0.53rem;
  border-radius: 0.13rem;
  z-index: 1000;
  font-size: 0.37rem;
}
.popup-tips .popup-container {
  padding: 0.4267rem 0.7467rem 0.72rem;
}
.popup-tips .title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.48rem;
  color: #5bb7fe;
}
.popup-tips .title::before {
  display: inline-block;
  content: "";
  margin-right: 0.16rem;
  width: 0.64rem;
  height: 0.0267rem;
  background-color: #5bb7fe;
}
.popup-tips .title::after {
  display: inline-block;
  content: "";
  margin-left: 0.16rem;
  width: 0.64rem;
  height: 0.0267rem;
  background-color: #5bb7fe;
}
.popup-tips .main {
  margin: 0.3733rem 0;
  font-size: 0.48rem;
  color: #666666;
}
.popup-tips .close-popup-tips {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  right: -0.1333rem;
  top: -0.2667rem;
}
.btn {
  width: 6.48rem;
  height: 1.0667rem;
  background: linear-gradient(270deg, #80cffd 0%, #41a6ff 100%);
  border-radius: 0.4rem;
  font-size: 0.4267rem;
  color: #ffffff;
}
