123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- @charset "UTF-8";
- /**
- * 这里是uni-app内置的常用样式变量
- *
- * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
- * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
- *
- */
- /**
- * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
- *
- * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
- */
- /* 颜色变量 */
- /* 行为相关颜色 */
- /* 文字基本颜色 */
- /* 背景颜色 */
- /* 边框颜色 */
- /* 尺寸变量 */
- /* 文字尺寸 */
- /* 图片尺寸 */
- /* Border Radius */
- /* 水平间距 */
- /* 垂直间距 */
- /* 透明度 */
- /* 文章场景相关 */
- .yuan {
- font-size: 24rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- color: #87898B;
- line-height: 48rpx;
- }
- .data {
- font-size: 32rpx;
- font-family: DIN Alternate, DIN Alternate;
- font-weight: bold;
- color: #F64016;
- line-height: 48rpx;
- }
- .money {
- font-size: 24rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: bold;
- color: #F64016;
- line-height: 105rpx;
- }
- .list {
- width: 335rpx;
- margin-top: 30rpx;
- height: 400rpx;
- }
- .title {
- font-size: 36rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- color: #323337;
- line-height: 0rpx;
- }
- .look {
- font-size: 22rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- color: #5881C1;
- line-height: 0rpx;
- margin-left: 74rpx;
- margin-right: 14rpx;
- }
- .zhibo {
- font-size: 36rpx;
- font-family: DOUYU;
- font-weight: normal;
- line-height: 48rpx;
- color: #3B3C5B;
- margin-right: 20rpx;
- }
- .button {
- width: 174rpx;
- height: 60rpx;
- background: #57c2f4;
- opacity: 1;
- border-radius: 30rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 60rpx;
- color: #FFFFFF;
- text-align: center;
- }
- .page {
- padding: 0 28rpx;
- width: 750rpx;
- min-height: 100vh;
- background: white;
- }
- .foreshow {
- width: 702rpx;
- height: 464rpx;
- background: linear-gradient(135deg, #CFF4FE 0%, #D5E5FF 41%, #8FCCF1 100%);
- padding: 22rpx 19rpx;
- margin: 66rpx 0 22rpx;
- border-radius: 16rpx;
- }
- .describe {
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 400;
- line-height: 34rpx;
- color: #26303A;
- margin-top: 18rpx;
- }
- .swiper-item {
- height: 324rpx;
- }
- .swiper_box {
- width: 694rpx;
- height: 324rpx;
- background: rgba(255, 255, 255, 0.39);
- opacity: 1;
- border-radius: 10rpx;
- }
- .index-navbar {
- position: -webkit-sticky;
- position: sticky;
- top: 0;
- left: 0;
- width: 750rpx;
- z-index: 100;
- overflow: hidden;
- }
- .index-navbar .back {
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- width: 750rpx;
- height: 542rpx;
- background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, white 100%);
- }
|