/* pages/index/index.wxss */
 @import '../../templates/loading/loading.wxss'; 
 page{
   background: #FFC674
 }
.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.logo {
  text-align: center; 
  padding: 180rpx 0;
}
.logo image {
  width: 140rpx;
  height: 170rpx;
}
.content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.button {
  width: 463rpx;
  height: 97rpx;
  background: #fff;
  cursor: pointer;
  position: relative;
  margin-top: 50rpx;
}
button::after{
  border: none;
}
.button-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 463rpx;
  height: 96rpx;
}
.button-text {
  font-size: 36rpx;
  color: #fff;
  margin-top: 20rpx;
  text-align: center
}
.no{
  text-align: center;
  margin-top: 40%;
  font-size: 36rpx;
  color: #BFBFBF;

}
.noImg{
  width: 551rpx;
  height: 400rpx;
}
.deal{
  margin-top: 73rpx;
  color: #7C819D;
  font-size: 24rpx;
  text-align: center;
}
.deal-item{
  display: inline-block;
  text-decoration: underline;
}
radio .wx-radio-input{
   border-radius: 50%;
   width: 26rpx;
   height: 26rpx;
   border: 1rpx solid #FF6465; 
}
/* 选中后的 背景样式 */
radio .wx-radio-input.wx-radio-input-checked{
   border: none; 
   background: #FF6465; 
}
/* 选中后的 对勾样式  */
radio .wx-radio-input.wx-radio-input-checked::before{
   border-radius: 50%;
   width: 26rpx; 
   height: 26rpx;
   line-height: 26rpx;
   text-align: center;
   font-size:20rpx; /* 对勾大小 */
   color:#fff;
   background: #FF6465;
   transform:translate(-50%, -50%) scale(1);
   -webkit-transform:translate(-50%, -50%) scale(1);
}