| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- /* pages/home/index.less */
- .banner-bg {
- display: flex;
- flex-direction: column;
- align-content: center;
- align-items: center;
- &__top {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- padding: 5px;
- align-content: center;
- width: 95%;
- }
- .banner {
- height: 210px;
- width: 95%;
- .swiper-item, image {
- width: 100%;
- }
- }
- }
- .statistics {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- margin: 10px;
- padding: 15px;
- .statistics-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- width: 100%;
- text:nth-child(1) {
- color: #333;
- font-size: 30rpx;
- font-weight: bold;
- text-align: center;
- padding-right: 10px;
- }
- text:nth-child(2) {
- color: #333;
- font-size: 24rpx;
- text-align: center;
- padding-right: 10px;
- }
- }
- }
|