/** * 这里是uni-app内置的常用样式变量 * * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量 * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App * */ /** * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能 * * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件 */ /* 颜色变量 */ /* 行为相关颜色 */ /* 文字基本颜色 */ /* 背景颜色 */ /* 边框颜色 */ /* 尺寸变量 */ /* 文字尺寸 */ /* 图片尺寸 */ /* Border Radius */ /* 水平间距 */ /* 垂直间距 */ /* 透明度 */ /* 文章场景相关 */ .titles { position: absolute; left: 50%; top: 70rpx; transform: translate(-50%); font-size: 36rpx; font-weight: 400; color: #FFFFFF; z-index: 5; } .butout { width: 400rpx; height: 88rpx; background: #D3832A40; border-radius: 8rpx 8rpx 8rpx 8rpx; display: flex; align-items: center; justify-content: center; font-size: 32rpx; font-weight: 500; color: #D3832A; margin: auto; margin-top: 60rpx; box-sizing: border-box; } .zhanwei { width: 100%; height: 80rpx; } .btsview { position: relative; display: flex; flex-direction: column; width: 100%; padding: 26rpx; box-sizing: border-box; border-radius: 30rpx 30rpx 0 0; margin-top: 50rpx; background-color: #ffffff; padding-bottom: 0rpx; } .btsview > view { display: flex; align-items: center; justify-content: space-between; padding: 40rpx; box-sizing: border-box; border-bottom: 2rpx solid #EEEEEE; padding-right: 0; padding-left: 20rpx; } .btsview > view:nth-last-child(1) { border-bottom: none; } .btsview > view > view:nth-of-type(1) { display: flex; align-items: center; justify-content: center; } .btsview > view > view:nth-of-type(1) > image { width: 40rpx; height: 40rpx; margin-right: 20rpx; } .btsview > view > view:nth-of-type(1) > view { font-size: 32rpx; font-weight: 500; color: #3D3D3D; } .btsview > view > view:nth-of-type(2) > image { width: 32rpx; height: 32rpx; } .userviews { display: flex; align-items: center; position: relative; width: 560rpx; margin: auto; margin-top: 200rpx; } .userviews > image { width: 160rpx; height: 160rpx; box-sizing: border-box; margin-right: 24rpx; } .userviews > view { width: 400rpx; display: flex; flex-direction: column; align-items: flex-start; color: #ffffff; } .userviews > view > view { display: flex; flex-direction: column; align-items: flex-start; } .userviews > view > view:nth-of-type(1) { font-size: 40rpx; font-weight: 700; margin-bottom: 30rpx; } .userviews > view > view > view { display: flex; align-items: center; } .userviews > view > view > view:nth-of-type(1) { font-size: 32rpx; font-weight: 700; margin-bottom: 10rpx; } .userviews > view > view > view:nth-of-type(2) { font-size: 28rpx; } .userviews > view > view > view > image { width: 32rpx; height: 32rpx; } .usebg { width: 100%; height: 476rpx; position: absolute; left: 0; top: 0; } .login { width: 260rpx; height: 90rpx; display: flex; align-items: center; justify-content: center; background-color: #0073ff; color: #ffffff; border-radius: 90rpx; margin: auto; margin-top: 180rpx; } .contmabox { display: flex; flex-direction: column; width: 100%; height: 400rpx; background-color: #FA8C16da; }