hldy_xcx/unpackage/dist/dev/mp-weixin/pages/oldmanindex/saoyisao.wxss

135 lines
3.2 KiB
Plaintext
Raw Normal View History

2025-09-15 17:23:33 +08:00
/**
* 这里是uni-app内置的常用样式变量
*
* uni-app 官方扩展插件及插件市场https://ext.dcloud.net.cn上很多三方插件均使用了这些样式变量
* 如果您是插件开发者建议您使用scss预处理并在插件代码中直接使用这些变量无需 import 这个文件方便用户通过搭积木的方式开发整体风格一致的App
*
*/
/**
* 如果您是App开发者插件使用者您可以通过修改这些变量来定制自己的插件主题实现自定义主题功能
*
* 如果您的项目同样使用了scss预处理您也可以直接在您的 scss 代码中使用如下变量,同时无需 import 这个文件
*/
/* 颜色变量 */
/* 行为相关颜色 */
/* 文字基本颜色 */
/* 背景颜色 */
/* 边框颜色 */
/* 尺寸变量 */
/* 文字尺寸 */
/* 图片尺寸 */
/* Border Radius */
/* 水平间距 */
/* 垂直间距 */
/* 透明度 */
/* 文章场景相关 */
.container.data-v-8fcb4df2 {
display: flex;
flex-direction: column;
min-height: 100vh;
width: 100%;
background-color: #F7F7F7;
position: relative;
}
.container .title-back.data-v-8fcb4df2 {
2025-10-13 14:58:45 +08:00
background-color: #EFF6F9;
2025-09-15 17:23:33 +08:00
width: 100%;
2025-10-13 14:58:45 +08:00
height: 70rpx;
2025-09-15 17:23:33 +08:00
display: flex;
justify-content: space-between;
2025-10-13 14:58:45 +08:00
align-items: flex-end;
padding-bottom: 20rpx;
border-bottom: 1rpx solid #cbd1d2;
position: fixed;
top: 0;
left: 0;
z-index: 9999;
2025-09-15 17:23:33 +08:00
}
.container .left-father.data-v-8fcb4df2 {
display: flex;
align-items: center;
}
.container .left-father .back-img.data-v-8fcb4df2 {
width: 45rpx;
height: 40rpx;
margin-left: 40rpx;
margin-right: 15rpx;
}
.container .white-content.data-v-8fcb4df2 {
width: 96%;
margin-left: 2%;
height: 600rpx;
border-radius: 50rpx;
background-color: #fff;
position: relative;
}
.big-bgc.data-v-8fcb4df2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 1800rpx;
height: 900rpx;
}
.big-img.data-v-8fcb4df2 {
position: absolute;
2025-09-19 17:12:59 +08:00
top: 40%;
2025-09-15 17:23:33 +08:00
left: 50%;
2025-09-19 17:12:59 +08:00
transform: translate(-50%, -40%);
2025-09-15 17:23:33 +08:00
width: 250rpx;
height: 250rpx;
}
.big-img.data-v-8fcb4df2::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
animation: scanMove-8fcb4df2 1.3s ease-in-out infinite;
z-index: 1001;
height: 80rpx;
background: linear-gradient(to top, rgba(5, 170, 254, 0.6), rgba(5, 170, 254, 0.1), transparent);
will-change: transform;
}
.big-img .big-img-third.data-v-8fcb4df2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 90%;
height: 90%;
border-radius: 50rpx;
background-color: #F1F5FD;
}
.big-img .big-img-third .big-img-second.data-v-8fcb4df2 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80%;
height: 80%;
border-radius: 50rpx;
background-color: #E0EAFA;
display: flex;
justify-content: center;
align-items: center;
}
.big-font.data-v-8fcb4df2 {
position: absolute;
color: #888A8B;
left: 50%;
transform: translateX(-50%);
bottom: -150rpx;
font-size: 32rpx;
width: 600rpx;
display: flex;
justify-content: center;
}
@keyframes scanMove-8fcb4df2 {
0% {
top: -10%;
}
100% {
top: 75%;
}
}