.row-tabs {
  position: relative;
  width: 100%;
  height: 62vh;
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}
.row-tabs input[name="rowtab"] ~ label:after {
  /* display: none !important; */
}

.row-tabs input[name="rowtab"] ~ label:before {
  display: none !important;
}
.row-tabs .tab-pane {
  display: inline-block;
}
.row-tabs input[name="rowtab"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 18%;
  height: 5vh;
}
.row-tabs .tab-item {
  user-select: none;
  display: block;
  position: relative;
  color: #3f3b39;
  width: 20vw;
  height: 5.5vh;
  line-height: 3vh;
  cursor: pointer;
  padding: 5%;
  font-size: 0.28rem;
  font-weight: 400;
  /* border-bottom: 1px solid #fff; */
}
.row-tabs .tab-item-p {
  width: 29vw;
}
.row-tabs .tab-item-s {
  width: 24vw;
}

.row-tabs .tab-item:after {
  position: absolute;
  content: "";
  height: 2px;
  width: 70%;
  border: none;
  border-radius: 2px;
  background: #cf242d;
  left: 7%;
  top: 85%;
  transition: 0.3s;
  transform: scaleX(0);
}
.row-tabs .tab-item-p:after {
  width: 80%;
}
.row-tabs .tab-item-s:after {
  width: 75%;
}

.row-tabs input[name="rowtab"]:checked + .tab-item:after {
  transform: scaleX(1);
}

.row-tabs .tab-content {
  display: flex;
  flex-direction: column;
  background: #fff;
  margin-top: 0.4rem;
  position: absolute;
  /* padding: 0.4rem 0.1rem; */
  border-radius: 12px;
  left: 0;
  top: 36px;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(50px);
}

.row-tabs input[name="rowtab"]:checked + .tab-item + .tab-content {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
}

.row-tabs .tab-content img {
  width: 100%;
}
.row-tabs .tab-content .info-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.28rem;
  flex: 1;
  justify-content: center;
}
.row-tabs .tab-content .info-main .title {
  font-size: 0.4rem;
  margin-top: 0.4rem;
}
.row-tabs .tab-content .info-main .main {
  line-height: 0.3rem;
  padding: 0rem 0.5rem;
  font-size: 0.24rem;
  color: #555353;
  margin-top: 0.2rem;
}
.row-tabs .tab-content .info-btn {
  font-size: 0.22rem;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
  padding: 0.2rem 0.4rem;
  border: 1px solid #c8000b;
  color: #c8000b;
  border-radius: 10px;
}
.row-tabs .tab-content .info-btn:active {
  background-color: #c8000b;
  color: #ffffff;
  transition: all 0.2s linear;
}
