.midBar {
  width: 100%;
  height: 204px;
  background-image: url(../../res/images/midBar/backimage0.png);
  background-size: cover;
  display: flex;
  mix-blend-mode: exclusion;
  background-color: #238be4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #238be4;
}

.midBar > .midBar-TextTitlePanel {
  display: flex;
  justify-content: center;
}

.midBar-TextTitlePanel > span {
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.1em;
}

.midBar-TextTitlePanel > span:first-child {
  color: #f4bf1e;
}

@media screen and (max-width: 750px) {
  .midBar-TextTitlePanel > span {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .midBar-TextTitlePanel > span {
    font-size: 20px;
  }
}

.midBar > .Brdiv {
  width: 100%;
  height: 41px;
}

/*#region 详情按钮*/
.midBar .midButton {
  overflow: hidden;
  line-height: 37px;
  position: relative;
  text-align: center;
  color: #f4bf1e;
  width: 128px;
  border-radius: 100px;
  box-sizing: border-box;
  height: 40px;
  z-index: 1;
  transition: all 1s ease-in-out;
}

.midButton > .midButtonBorder {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-sizing: border-box;
  z-index: 10;
  border: 2px solid #f4bf1e;
  display: flex;
  align-items: center;
  justify-content: center;
}

.midButton:after,
.midButton:before {
  content: "";
  position: absolute;
  top: -2px;
  left: calc(-100% - 60px);
  height: calc(100% + 30px);
  width: calc(100% + 30px);
  color: #fff;
  border-radius: 2px;
  transform: skew(-25deg);
}

.midButton:after {
  background: #404040;
  transition: left 0.8s cubic-bezier(0.86, 0, 0.07, 1) 0.2s;
  z-index: 0;
  opacity: 1;
}

.midButton:before {
  background: #f4bf1e;
  z-index: 5;
  transition: left 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.midButton:hover {
  color: #000;
}
.midButton:hover:after {
  left: calc(0% - 10px);
  transition: left 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.midButton:hover:before {
  left: calc(0% - 10px);
  transition: left 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.midButton > .midButtonBorder > span {
  position: relative;
  z-index: 6;
  font-weight: 500;
}

.midButtonBorder > .midButton-pic {
  margin-left: 6px;
  background-image: url(../../res/images/midBar/icon.svg);
  width: 12px;
  height: 12px;
  z-index: 6;
  transition: all 1s ease-in-out;
}

.midButton:hover > .midButtonBorder > .midButton-pic {
  background-image: url(../../res/images/midBar/icon-active.svg);
}
/*#endregion */
