homepage.wxss 3.8 KB
page {
  background: #fff;
}

.videobox {
  padding: 24rpx;
  box-sizing: border-box;
  overflow-x: hidden;
}

.videohead {
  width: 702rpx;
  height: 395rpx;
  font-size: 0;
  position: relative;
  border-radius: 16rpx;
}

.videohead image {
  border-radius: 16rpx;
}

.search {
  display: flex;
  align-items: center;
  margin-top: 24rpx;
  padding:10rpx 20rpx;
  box-sizing: border-box;
  /* background: #F9F9F9; */
  border: 4rpx solid #fb6324;
}

.searchleft {
  display: flex;
  align-items: center;
}

.searchright {
  width:369rpx;
  display: flex;
  align-items: center;
  margin-left: 36rpx;
}

.searchsanjiao {
  width: 28rpx;
  height: 30rpx;
  font-size: 0;
  margin-left: 8rpx;
}

.searchfightimg {
  width: 40rpx;
  height: 40rpx;
  font-size: 0;
}

.searchrightname {
  width:285rpx;
  margin-left: 22rpx;
  color: #8c9198;
  font-size: 30rpx;
}
.searchrightname input{
  width:100%;
}
.searchleftname {
  color: #8c9198;
  font-size: 32rpx;
}

.searchimg {
  width: 702rpx;
  height: 235rpx;
  font-size: 0;
  margin-top: 24rpx;
  border-radius: 16rpx;
}

.searchimg image {
  border-radius: 16rpx;
}

.searchbox {
  margin-top: 48rpx;
  padding-bottom: 120rpx;
}

.searchvideoimg {
  width: 702rpx;
  height: 395rpx;
  font-size: 0;
  margin-top: 24rpx;
  position: relative;
  border-radius: 16rpx;
}

.searchvideoimg image {
  border-radius: 16rpx;
}

.crema {
  width: 95rpx;
  height: 95rpx;
  border-radius: 50%;
  background: #fb6324;
  position: fixed;
  bottom: 4rpx;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index:999
}

.cremaimg {
  width: 42rpx;
  height: 42rpx;
  font-size: 0;
}

.yuyeu {
  font-size: 20rpx;
  color: #fff;
  margin-top: 2rpx;
}

.phonewrap {
  width: 508rpx;
  height: 400rpx;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20rpx;
  padding: 32rpx;
  box-sizing: border-box;
  z-index: 999;
}

.phonename {
  color: #333;
  font-size: 28rpx;
  margin-top: 40rpx;
  font-weight: bold;
  text-align: center;
}

.phoneenter {
  width: 410rpx;
  height: 85rpx;
  background: #f9f9f9;
  border-radius: 10rpx;
  font-size: 0;
  margin: 44rpx auto 0;
}

.phoneenter input {
  width: 410rpx;
  height: 85rpx;
  padding: 12rpx;
  box-sizing: border-box;
  color: #8c9198;
  font-size: 28rpx;
  text-align: center;
}

.surebtn {
  width: 180rpx;
  height: 70rpx;
  border-radius: 40rpx;
  color: #fff;
  font-size: 28rpx;
  text-align: center;
  line-height: 70rpx;
  margin: 65rpx auto 0;
  background: #fb6324;
}

.wrapper {
  /* position: absolute;
            top: 50%;
            left: 50%; */
  position: relative;
  /* overflow: hidden; */
  width: 60rpx;
  height: 60rpx;
  margin: 0 auto;
  background-color: transparent;
  

  /* margin: -250px 0 0 -250px; */
}

.circle {
  position: absolute;
  left: 15rpx;
  top: 8rpx;
  /* transform: translate(-50%,-50%); */
  /* background: url("https://areial.w.broing.cn/uploads/20191120/hand.png") center center no-repeat; */
  width: 50rpx;
  height: 48rpx;
  font-size: 0;
  animation: circleHide 1s ease infinite both;
}
image{
  width:100%;
  height:100%;
}

.finger {
  /* background: url("https://areial.w.broing.cn/uploads/20191120/hand.png") center center no-repeat; */
  width:30rpx;
  height: 30rpx;
  position: absolute;
  top:0;
  left:16rpx;
  animation: fingerHandle 1s ease infinite both;
  font-size: 0
}

@keyframes fingerHandle {
  0% {
    transform: none;
  }

  70% {
    transform: scale3d(2, 2, 2);
  }

  100% {
    transform: none;
  }
}

@keyframes circleHide {
  0% {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }

  70% {
    opacity: 1;
    transform: scale3d(1.2, 1.2, 1.2);
  }

  100% {
    opacity: 0;
    transform: scale3d(0, 0, 0);
  }
}