| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- @charset "UTF-8";
- /* 页面左右间距 */
- /* 文字尺寸 */
- /*文字颜色*/
- /* 边框颜色 */
- /*颜色*/
- /* 图片加载中颜色 */
- /* 行为相关颜色 */
- /* 功能栏字体大小 */
- /*功能栏左侧小图标*/
- .carousel {
- height: 520rpx;
- position: relative;
- }
- .carousel swiper {
- height: 100%;
- }
- .carousel .image-wrapper {
- width: 100%;
- height: 100%;
- }
- .carousel .swiper-item {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-pack: center;
- -webkit-justify-content: center;
- justify-content: center;
- -webkit-align-content: center;
- align-content: center;
- height: 700rpx;
- overflow: hidden;
- }
- .carousel .swiper-item image {
- width: 100%;
- height: 100%;
- }
- .swiper-dots {
- position: absolute;
- bottom: 30rpx;
- right: 26rpx;
- color: red;
- background-color: red;
- z-index: 99;
- width: 88rpx;
- height: 42rpx;
- background: #000000;
- opacity: 0.5;
- border-radius: 21rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 42rpx;
- text-align: center;
- }
|