/* 圆形选择框大小 */
.custom-radio {
  width: 25px;
  height: 25px;
}

.custom-radio2 {
  width: 20px;
  height: 20px;
}
/* 翻页用 */
.page {
  display: none;
}
/* 账单换行 */
#bill {
  white-space: pre-line;
}

/* 修复输入框超出手机屏幕 */
/* 在小屏幕上应用的样式 */
@media screen and (max-width: 768px) {
  .mbr-text input[type="text"] {
      width: 80%; /* 将输入框宽度设置为100% */
  }
}

/* 禁止文字被选中 */
body {
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE/Edge */
  user-select: none; /* 标准语法 */
}