.navBarBox .navBar {
  background-color:#fff;
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.05);
}
.fix{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
}
.barText{
  font-size: 16px;
  font-weight: 600;
  flex: 2;
  text-align: center;
}
.statusBar{
  background-color:lightgrey;
}

.tabList{
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: -webkit-sticky;
  position: sticky;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 9998;
}

.switchPanel{
  width: 100%;
  height: 84rpx;
  position: relative;
  border: 2px solid #fff;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0px -6px 10px rgba(255, 255, 255, 1), 0px 4px 15px rgba(0, 0, 0, 0.1),0px 3px 6px rgba(0, 0, 0, 0.05) inset;
  background: #f5f7fa;
}

.switchBtns{
  width: 100%;
  height: 80rpx;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}

.btnItem{
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  text-align: center;
  line-height: 80rpx;
}

.colBlock{
  position: absolute;
  top: 5rpx;
  left: 0;
  z-index: 999;
  width: 50%;
  height: 70rpx;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: .4s;
  text-align: center;
  line-height: 70rpx;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  border: 2rpx solid #fff;
}

.switchPanel .colBlock.left{
  transform: translateX(0px);
}

.switchPanel .colBlock.right{
  transform: translateX(calc(100% - 2px));
}

.cardList{
  width: 100%;
  box-sizing: border-box;
  padding: 0 15px;
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
}

.cardItem{
  width: 100%;
  padding: 15px 30px;
  box-sizing: border-box;
  margin-bottom: 15px;
  background: #fff;
  border-radius: 40rpx;
  display: flex;
  align-items: center;
  box-shadow: 0 10rpx 20rpx rgba(0,0,0,.05);
  transition: box-shadow .15s ease;
}

.cardItem:active{
  box-shadow: none;
}

.cardItem:last-of-type{
  margin-bottom: 75px;
}

.cardTit{
  font-size: 36rpx;
  font-weight: bold;
  margin-left: 30px;
}

.modal-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.modal-content > view {
  width: 100%;
}

.toast-content {
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
}

.modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.modal-container {
  width: 80%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.modal-content {
  padding: 24px;
}

.input-group {
  margin-bottom: 20px;
}

.input-label {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.input-group input {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 12px;
  box-sizing: border-box;
}

.button-group {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.button-group button {
  flex: 1;
  height: 80rpx;
  font-size: 32rpx;
  line-height: 80rpx;
  margin: 0 8px;
  border-radius: 6px;
}

.cancel-btn {
  background: #f5f5f5;
  color: #333;
  margin-left: 0 !important;
}

.confirm-btn {
  background: #2979ff;
  color: #fff;
  margin-right: 0 !important;
}