12345678910111213141516171819202122 |
- view {
- box-sizing: border-box;
- }
-
- .container {
- padding: 30rpx;
- .topBox{
- min-height: 75vh;
- }
-
- .btnBox{
- display: flex;
- align-items: center;
- justify-content: space-around;
- margin-top: 50rpx;
- .item{
- color: #017CFF;
- border-bottom: 2rpx solid #017CFF;
- padding-bottom: 10rpx;
- }
- }
- }
|