courseDetail.wxss 2.7 KB
/* pages/course/courseDetail/courseDetail.wxss */
@import '../../template/template.wxss';
.banner_img {
  width: 750rpx;
  height: 400rpx;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner_img video {
  width: 100%;
  height: 100%;
}

.content_box {
  padding: 55rpx 85rpx;
  box-sizing: border-box;
  overflow: hidden;
}

.content_title {
  font-size: 36rpx;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.hint_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 43rpx;
}

.case_point {
  display: flex;
  align-items: center;
  font-size: 26rpx;
  color: #666;
}

.point {
  width: 25rpx;
  height: 25rpx;
  border-radius: 50%;
  background: linear-gradient(to left, #1cb9fa, #6cf0f9);
  margin-right: 8rpx;
}

.num_box {
  width: 76rpx;
  height: 45rpx;
  background: rgba(255, 255, 255, 1);
  border: 1rpx solid rgba(219, 219, 219, 1);
  border-radius: 4rpx;
  font-size: 18rpx;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.info {
  font-size: 14rpx;
  color: #808080;
}

.content {
  font-size: 26rpx;
  color: #666;
  margin-top: 45rpx;
  /* border: 1rpx solid red; */
}


.bottom_btn {
  width: 650rpx;
  height: 80rpx;
  background: #53a6fa;
  border-radius: 44rpx;
  position: fixed;
  bottom: 40rpx;
  left: 50rpx;
  font-size: 32rpx;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wxParse-img {
  width: 100%!important;
  height: 100%;
}
/*会员充值弹框样式开始*/
.mask_vip {
  width: 100%;
  height: 100%;
  background: rgba(250, 250, 250, 0.7);
  /* filter: blur(2rpx); */
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup_vip {
  width: 500rpx;
  height: 410rpx;
  background: rgba(29, 185, 250, 1);
  border-radius: 20rpx;
  position: absolute;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36rpx;
  color: #fff;
}

.vip {
  margin-bottom: 20rpx;
}

.vip_money {
  font-size: 72rpx;
  font-weight: normal;
  color: #fff;
  margin-top: 40rpx;
}

.btn_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30rpx;
}

.vip_btn {
  width: 200rpx;
  height: 60rpx;
  border-radius: 40rpx;
  font-size: 30rpx;
  color: #2ebbf6;
  background: #fff;
  text-align: center;
  line-height: 60rpx;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn2 {
  background: none;
  border: 1rpx solid #fff;
  color: #fff;
  margin-left: 30rpx;
}
/*会员充值弹框样式开始*/