index.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .businessInfo {
  2. width: 100vw;
  3. min-height: 100vh;
  4. background-color: rgb(247, 247, 247);
  5. box-sizing: border-box;
  6. padding-top: 30rpx;
  7. .info-continer {
  8. .info-box {
  9. width: 100%;
  10. height: 94rpx;
  11. padding: 0 32rpx;
  12. box-sizing: border-box;
  13. @include flex(space-between, null, null);
  14. background-color: #ffffff;
  15. .box-left {
  16. font-size: 28rpx;
  17. color: #333333;
  18. }
  19. .box-right {
  20. @include flex(null, null, 10rpx);
  21. text {
  22. font-size: 28rpx;
  23. color: #333333;
  24. width: 280rpx;
  25. text-align: right;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. white-space: nowrap;
  29. }
  30. image {
  31. width: 64rpx;
  32. height: 64rpx;
  33. display: block;
  34. border-radius: 50%;
  35. }
  36. }
  37. }
  38. .top {
  39. margin-top: 6rpx;
  40. }
  41. .top-more{
  42. margin-top: 28rpx;
  43. }
  44. }
  45. .login-state{
  46. width: 100%;
  47. .btn{
  48. width: 100%;
  49. height: 104rpx;
  50. text-align: center;
  51. line-height: 104rpx;
  52. color: #333333;
  53. font-size: 32rpx;
  54. margin-top: 28rpx;
  55. background-color: #FFFFFF;
  56. }
  57. .exit{
  58. color: #DA4A4A;
  59. }
  60. }
  61. }