index.scss 324 B

12345678910111213141516171819202122
  1. view {
  2. box-sizing: border-box;
  3. }
  4. .container {
  5. padding: 30rpx;
  6. .topBox{
  7. min-height: 75vh;
  8. }
  9. .btnBox{
  10. display: flex;
  11. align-items: center;
  12. justify-content: space-around;
  13. margin-top: 50rpx;
  14. .item{
  15. color: #017CFF;
  16. border-bottom: 2rpx solid #017CFF;
  17. padding-bottom: 10rpx;
  18. }
  19. }
  20. }