1234567891011121314151617181920212223242526272829303132 |
- .swiper-box {
- display: block;
- height: 100%;
- width: 100%;
- overflow: hidden;
- color: #fff;
- }
- .swiper-box-view {
- display: flex;
- justify-content: space-between ;
- align-items: center;
- margin: 10rpx;
- border-bottom: 1rpx slategray solid;
- }
- .swiper-box-view .swiper-box-left .swiper-box-subtitle{
- color: slategray;
- }
- .swiper-box-view .swiper-box-right{
- display: flex;
- align-items: center;
- }
- .swiper-box-view .swiper-box-right .swiper-box-canvas {
- height: 120rpx;
- width: 300rpx;
- }
- .swiper-box-view .swiper-box-right .swiper-box-button{
- text-align: right;
- }
- .swiper-box-view .swiper-box-right .swiper-box-button button{
- color: #fff;
- background: #D81E06;
- }
|