@charset "UTF-8"; /** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /* uni.scss */ /* 页面左右间距 */ /* 文字尺寸 */ /* 文字尺寸 */ /*文字颜色*/ /* 边框颜色 */ /* 图片加载中颜色 */ /* 行为相关颜色 */ /* 颜色变量 */ /* 项目主色 */ /* 文字基本颜色 */ .red { color: #f60808; } .green { color: #15ab54; } .yellow { color: #f0ad4e; } .blue { color: #1f96f6; } .blank { color: #000; } .white { color: #fff; } .promain { color: #025b58; } .prosecond { color: #ed742f; } .textmain { color: #333; } .textgrey { color: #999; } .fuColor { color: #c6cadb; } .fontssm { font-size: 22rpx; } .fontsm { font-size: 24rpx; } .fontmid { font-size: 28rpx; } .fontbase { font-size: 30rpx; } /* 背景颜色 */ /* 边框颜色 */ /* input 样式 */ .input-placeholder { color: #999999; } .navigator-hover { background: transparent !important; opacity: 1; } .uni-page-head-transparent .uni-page-head-btn { background: transparent !important; } uni-toast { z-index: 99999; } button { background: transparent; } button::after { border: 0; } .menu-category-box { width: 100%; padding: 10rpx 0rpx 0 0rpx; } .menu-category-box, .menu-swiper-box { width: 100%; position: relative; } .menu-category-box .menu-swiper-item, .menu-swiper-box .menu-swiper-item { height: 100%; width: 100%; } .menu-category-box .menu-tab-box, .menu-swiper-box .menu-tab-box { display: flex; flex-direction: row; flex-wrap: wrap; } .menu-category-box .menu-tab-box .tab-list, .menu-swiper-box .menu-tab-box .tab-list { justify-content: flex-start; align-items: center; width: 20%; font-size: 24rpx; font-family: PingFang SC; font-weight: 500; color: #333333; padding-bottom: 25rpx; } .menu-category-box .menu-tab-box .tab-list .tab-img, .menu-swiper-box .menu-tab-box .tab-list .tab-img { width: 100%; border-radius: 50%; margin-bottom: 10rpx; padding: 10rpx; } .menu-category-box .menu-tab-box .tab-list text, .menu-swiper-box .menu-tab-box .tab-list text { width: 100%; text-align: center; font-size: 24rpx; } .menu-category-box .menu-category-dots, .menu-swiper-box .menu-category-dots { display: flex; position: absolute; left: 50%; -webkit-transform: translateX(-50%); transform: translateX(-50%); bottom: 0rpx; } .menu-category-box .menu-category-dots .category-dot, .menu-swiper-box .menu-category-dots .category-dot { width: 25rpx; height: 8rpx; background: #eeeeee; border-radius: 50%; } .menu-category-box .menu-category-dots .category-dot-active, .menu-swiper-box .menu-category-dots .category-dot-active { width: 25rpx; height: 8rpx; background: #025b58; border-radius: 50%; }