590 lines
14 KiB
Plaintext
Raw Permalink Normal View History

2025-04-01 09:03:51 +08:00
@charset "UTF-8";
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果你是插件开发者建议你使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果你是App开发者插件使用者你可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果你的项目同样使用了scss预处理你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 筛选组件 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.w-100.data-v-26bde83e {
width: 100%;
}
.flex.data-v-26bde83e {
display: flex;
}
.flex-start.data-v-26bde83e {
align-items: flex-start;
}
.justify-center.data-v-26bde83e {
justify-content: center;
}
.align-items.data-v-26bde83e {
align-items: center;
}
.flex-column.data-v-26bde83e {
flex-flow: column;
}
.justify-start.data-v-26bde83e {
justify-content: start;
}
.white-space.data-v-26bde83e {
overflow: hidden;
/* 确保超出容器的文本被隐藏 */
white-space: nowrap;
/* 确保文本在一行内显示 */
text-overflow: ellipsis;
/* 使用省略号表示被截断的文本 */
width: 100%;
}
.con-center.data-v-26bde83e {
background: linear-gradient(to bottom, #F1F2F8 0%, #F1F2F8 10%, #FFFFFF 50%, #FFFFFF 95%);
}
.swiper.data-v-26bde83e {
width: 100%;
height: 450rpx;
}
.box.data-v-26bde83e {
position: relative;
}
.first-box.data-v-26bde83e {
width: 90%;
background: #FFFFFF;
padding-left: 24rpx;
margin-top: 24rpx;
}
.first-box .first-name.data-v-26bde83e {
width: 100%;
height: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 34rpx;
color: #343434;
margin-top: 32rpx;
}
.first-box .first-money.data-v-26bde83e {
height: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 28rpx;
color: #FF2323;
}
.first-box .first-mine.data-v-26bde83e {
height: 32rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
}
.first-box .first-txt.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
line-height: 32rpx;
}
.first-box .first-image.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
margin: 16rpx 0 16rpx 0;
}
.second-box.data-v-26bde83e {
width: 90%;
margin-top: 42rpx;
border-radius: 8rpx 8rpx 8rpx 8rpx;
padding-left: 24rpx;
position: relative;
}
.second-box .second-title.data-v-26bde83e {
position: absolute;
top: 0;
left: 0;
}
.second-box .second.data-v-26bde83e {
padding: 24rpx 23rpx 0 0rpx;
margin-top: 32rpx;
}
.second-box .second view.data-v-26bde83e {
width: 20%;
margin: 24rpx 0 0 0;
}
.second-box .second image.data-v-26bde83e {
width: 54rpx;
height: 54rpx;
}
.second-box .second ._span.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
text-align: center;
overflow: hidden;
white-space: nowrap;
width: 100%;
}
.second-box .number.data-v-26bde83e {
width: 108rpx;
color: #FF4949;
font-size: 42rpx;
font-weight: bold;
text-align: center;
}
.third.data-v-26bde83e {
margin-top: 24rpx;
width: 93%;
}
.third .third-header.data-v-26bde83e {
padding-bottom: 12rpx;
border-bottom: 2rpx solid #008CFF;
}
.third .third-box.data-v-26bde83e {
margin: 12rpx 0 0 24rpx;
}
.third .third-center.data-v-26bde83e {
margin-top: 28rpx;
width: 100%;
height: 242rpx;
overflow: hidden;
position: relative;
}
.third .scroll-container.data-v-26bde83e {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-webkit-animation: scroll-data-v-26bde83e 12s linear infinite;
animation: scroll-data-v-26bde83e 12s linear infinite;
}
@-webkit-keyframes scroll-data-v-26bde83e {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(calc(-100% + 8 * 100px));
transform: translateX(calc(-100% + 8 * 100px));
/* 8 * 100px 是假设每个项目的宽度为 100px */
}
}
@keyframes scroll-data-v-26bde83e {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
-webkit-transform: translateX(calc(-100% + 8 * 100px));
transform: translateX(calc(-100% + 8 * 100px));
/* 8 * 100px 是假设每个项目的宽度为 100px */
}
}
.third .item.data-v-26bde83e {
display: flex;
width: 94%;
align-items: center;
justify-content: space-between;
padding: 22rpx 24rpx 24rpx 24rpx;
height: 32rpx;
/* 假设每条数据的高度为60rpx */
}
.third .item image.data-v-26bde83e {
margin-right: 10rpx;
}
.third .line-colum.data-v-26bde83e {
margin: 0 10rpx;
border-left: 1rpx solid #ccc;
height: 42rpx;
}
.third .item ._span.data-v-26bde83e {
margin-right: 10rpx;
}
@keyframes scroll-data-v-26bde83e {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
-webkit-transform: translateY(-240rpx);
transform: translateY(-240rpx);
/* 总高度为 4 * 60rpx = 240rpx */
}
}
.four.data-v-26bde83e {
margin-top: 42rpx;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
width: 93%;
}
.four .four-box .four-header.data-v-26bde83e {
padding: 32rpx 34rpx 15rpx 24rpx;
}
.four .four-box .four-header .four-name.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 28rpx;
color: #4974FF;
}
.four .four-box .four-header .jigou.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 24rpx;
color: #008CFF;
line-height: 26rpx;
margin: 8rpx 0 12rpx 0;
}
.four .four-box .four-header .rate.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 26rpx;
color: #FFBC2C;
line-height: 26rpx;
}
.four .four-box .four-header .teacher-detail.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #008CFF;
line-height: 32rpx;
}
.four .four-box .four-right.data-v-26bde83e {
justify-content: space-between;
align-items: flex-end;
height: 115rpx;
}
.four .tt-detail.data-v-26bde83e {
width: 93%;
padding: 0rpx 24rpx 18rpx 24rpx;
justify-content: flex-start;
align-items: left;
flex-flow: column;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
}
.five.data-v-26bde83e {
width: 93%;
background: #FFFFFF;
border-radius: 20rpx 20rpx 20rpx 20rpx;
margin-top: 24rpx;
}
.five .five-box.data-v-26bde83e {
padding: 24rpx;
width: 100%;
justify-content: space-between;
align-items: center;
}
.five .five-box .five-left .five-name.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: bold;
font-size: 36rpx;
color: #4974FF;
}
.five .five-box .five-left .five-address.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
}
.five .five-box .five-right.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
width: 21%;
}
.six.data-v-26bde83e {
margin-bottom: 106rpx;
width: 93%;
background: linear-gradient(to bottom, #F1F2F8 0%, #FFFFFF 20%, #FFFFFF 100%);
}
.six .six-header.data-v-26bde83e {
padding-top: 64rpx;
padding-bottom: 12rpx;
border-bottom: 2rpx solid #008CFF;
}
.six .six-box.data-v-26bde83e {
margin: 12rpx 0 0 24rpx;
}
.six .six-center.data-v-26bde83e {
width: 100%;
margin-top: 41rpx;
}
.six .six-center .s-header.data-v-26bde83e {
padding: 24rpx;
width: 642rpx;
}
.six .six-center .s-header ._span.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
}
.six .six-center .s-footer.data-v-26bde83e {
padding: 24rpx;
width: 642rpx;
}
.six .six-center .s-footer ._span.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
}
.six .six-center .s-footer .h4.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: bold;
font-size: 36rpx;
color: #656565;
}
.line.data-v-26bde83e {
width: 95%;
height: 1rpx;
background: #D9D9D9;
margin: 19rpx 0 19rpx 0;
}
.icon-size.data-v-26bde83e {
width: 36rpx;
height: 36rpx;
}
.footer.data-v-26bde83e {
width: 750rpx;
height: 122rpx;
background: #FFFFFF;
box-shadow: 0rpx -6rpx 12rpx 0rpx rgba(111, 190, 255, 0.1);
border-radius: 0rpx 0rpx 0rpx 0rpx;
position: -webkit-sticky;
position: sticky;
z-index: 999999;
/* 绝对定位 */
bottom: 0;
/* 定位在底部 */
left: 0;
/* 定位在左边 */
}
.footer .footer-left.data-v-26bde83e {
position: absolute;
top: 32rpx;
left: 30rpx;
display: flex;
}
.footer .footer-left .price.data-v-26bde83e {
width: 210rpx;
display: flex;
flex-flow: column;
align-items: flex-start;
}
.footer .footer-left .lan.data-v-26bde83e {
width: 210rpx;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 34rpx;
color: #008CFF;
}
.footer .footer-left view.data-v-26bde83e {
display: flex;
justify-content: center;
align-items: center;
flex-flow: column;
width: 100rpx;
}
.footer .footer-left view ._span.data-v-26bde83e {
text-align: center;
}
.footer .footer-left image.data-v-26bde83e {
width: 50rpx;
height: 50rpx;
}
.footer .footer-right.data-v-26bde83e {
position: absolute;
top: 32rpx;
right: 30rpx;
width: 300rpx;
display: flex;
justify-content: flex-end;
}
.footer .footer-right .cancel.data-v-26bde83e {
width: 138rpx;
height: 48rpx;
border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 2rpx solid #008CFF;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 24rpx;
color: #008CFF;
display: flex;
justify-content: center;
align-items: center;
margin-right: 16rpx;
}
.footer .footer-right .lan.data-v-26bde83e {
width: 138rpx;
height: 48rpx;
border-radius: 12rpx 12rpx 12rpx 12rpx;
background: #008CFF;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
line-height: 32rpx;
font-size: 24rpx;
color: #FFFFFF;
letter-spacing: 6rpx;
display: flex;
justify-content: center;
align-items: center;
}
.popupBox.data-v-26bde83e {
height: 365rpx;
width: 750rpx;
}
.popupBox .pop-header.data-v-26bde83e {
width: 93%;
padding-top: 32rpx;
padding-bottom: 17rpx;
border-bottom: 2rpx solid #D9D9D9;
}
.popupBox .pop-header ._span.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 400;
font-size: 20rpx;
color: #343434;
}
.popupBox .popup.data-v-26bde83e {
display: flex;
align-items: self-start;
justify-content: center;
padding-top: 21rpx;
}
.popupBox .popup .popur-right.data-v-26bde83e {
align-items: self-start;
margin-left: 24rpx;
width: 418rpx;
}
.popupBox .popup .popur-right .name.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 28rpx;
color: #343434;
}
.popupBox .popup .popur-right .address.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
line-height: 32rpx;
margin: 16rpx 0 12rpx 0;
overflow: hidden;
/* 确保超出容器的文本被隐藏 */
white-space: nowrap;
/* 确保文本在一行内显示 */
text-overflow: ellipsis;
/* 使用省略号表示被截断的文本 */
width: 100%;
}
.popupBox .popup .popur-right .date.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
line-height: 32rpx;
}
.popupBox .popup .popur-right .time.data-v-26bde83e {
margin: 12rpx 0 73rpx 0;
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
line-height: 32rpx;
}
.popupBox .popup .popur-right .line-row.data-v-26bde83e {
width: 418rpx;
height: 1rpx;
background: #008CFF;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.popupBox .popup .popur-right .price.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 500;
font-size: 24rpx;
color: #7A7A7A;
line-height: 32rpx;
margin-top: 23rpx;
align-self: flex-end;
}
.popupBox .popup .popur-right .price ._span.data-v-26bde83e {
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 36rpx;
color: #FF2323;
line-height: 32rpx;
}
.popupBox .line.data-v-26bde83e {
width: 642rpx;
height: 1rpx;
background: #D9D9D9;
box-shadow: 1rpx 1rpx 0rpx 0rpx rgba(102, 102, 102, 0.25);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.popupBox .times.data-v-26bde83e {
width: 93%;
}
.popupBox .times .selectTime.data-v-26bde83e {
width: 288rpx;
height: 50rpx;
background: #FFFFFF;
border-radius: 12rpx 12rpx 12rpx 12rpx;
border: 1rpx solid #D9D9D9;
color: #4B4B4B;
font-family: 'PingFang SC', 'PingFang SC';
font-weight: 500;
font-size: 24rpx;
padding-left: 15rpx;
cursor: pointer;
margin: 24rpx 25rpx 0 25rpx;
white-space: nowrap;
/* 防止文本换行 */
text-overflow: ellipsis;
/* 超出部分显示省略号 */
overflow: hidden;
/* 隐藏超出部分 */
text-align: left;
/* 文字靠左对齐 */
line-height: 50rpx;
/* 垂直居中对齐 */
box-sizing: border-box;
/* 确保 padding 和 border 不影响宽度和高度 */
display: inline-block;
/* 确保容器内文字正确对齐 */
}
.popupBox .selectTime.selected.data-v-26bde83e {
width: 288rpx;
height: 50rpx;
border-radius: 12rpx 12rpx 12rpx 12rpx;
background: #008CFF;
font-family: PingFang SC, PingFang SC;
font-weight: 800;
font-size: 24rpx;
color: #FFFFFF;
cursor: pointer;
margin: 24rpx 32rpx 0 0;
}