| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | .businessInfo {  width: 100vw;  min-height: 100vh;  background-color: rgb(247, 247, 247);  box-sizing: border-box;  padding-top: 30rpx;  .info-continer {    .info-box {      width: 100%;      height: 94rpx;      padding: 0 32rpx;      box-sizing: border-box;      @include flex(space-between, null, null);      background-color: #ffffff;      .box-left {        font-size: 28rpx;        color: #333333;      }      .box-right {        @include flex(null, null, 10rpx);        text {          font-size: 28rpx;          color: #333333;          width: 280rpx;          text-align: right;          overflow: hidden;          text-overflow: ellipsis;          white-space: nowrap;        }        image {          width: 64rpx;          height: 64rpx;          display: block;          border-radius: 50%;        }      }    }    .top {      margin-top: 6rpx;    }    .top-more{        margin-top: 28rpx;    }  }  .login-state{    width: 100%;    .btn{        width: 100%;        height: 104rpx;        text-align: center;        line-height: 104rpx;        color: #333333;        font-size: 32rpx;        margin-top: 28rpx;        background-color: #FFFFFF;    }    .exit{        color: #DA4A4A;    }  }}
 |