@charset "UTF-8";
|
/**
|
* 这里是uni-app内置的常用样式变量
|
*
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
*
|
*/
|
/**
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
*
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
*/
|
/* 颜色变量 */
|
/* 行为相关颜色 */
|
/* 文字基本颜色 */
|
/* 背景颜色 */
|
/* 边框颜色 */
|
/* 尺寸变量 */
|
/* 文字尺寸 */
|
/* 图片尺寸 */
|
/* Border Radius */
|
/* 水平间距 */
|
/* 垂直间距 */
|
/* 透明度 */
|
/* 文章场景相关 */
|
.main {
|
height: 1380rpx;
|
background-color: #f2f4f3;
|
display: flex;
|
align-items: center;
|
flex-direction: column;
|
}
|
.header {
|
display: flex;
|
background-color: #fd8b4d;
|
padding: 40rpx 0;
|
width: 100%;
|
}
|
.userImg {
|
width: 100rpx;
|
height: 100rpx;
|
margin: 0 50rpx 0 30rpx;
|
background-color: #fff;
|
border-radius: 50rpx;
|
}
|
.userInfo {
|
height: 50rpx;
|
line-height: 50rpx;
|
font-size: 28rpx;
|
}
|
.content {
|
width: 700rpx;
|
height: 300rpx;
|
background-color: #fff;
|
margin: 0 20rpx;
|
border-radius: 15rpx;
|
}
|
.yy {
|
display: flex;
|
line-height: 90rpx;
|
justify-content: space-evenly;
|
}
|
.yy_txt {
|
font-size: 14px;
|
font-weight: 600;
|
}
|
.all {
|
margin-left: 350rpx;
|
font-size: 12px;
|
color: #868686;
|
}
|
.line {
|
width: 90%;
|
height: 2rpx;
|
background-color: #eee;
|
margin: 0 auto;
|
}
|
.myAssetList {
|
width: 90%;
|
margin: 20rpx auto;
|
display: flex;
|
flex-direction: row;
|
justify-content: space-around;
|
}
|
.assetItem {
|
display: flex;
|
flex-direction: column;
|
}
|
.assetItem_img {
|
width: 100rpx;
|
height: 100rpx;
|
margin-bottom: 10rpx;
|
}
|
.assetItem_txt {
|
font-size: 14px;
|
}
|
.imgs {
|
width: 710rpx;
|
height: 150rpx;
|
margin-top: 20rpx;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
margin-bottom: 20rpx;
|
}
|
.img {
|
width: 710rpx;
|
height: 150rpx;
|
}
|
.floor_top {
|
width: 690rpx;
|
height: 500rpx;
|
background-color: #fff;
|
display: flex;
|
flex-direction: column;
|
justify-content: space-evenly;
|
border-radius: 15rpx;
|
padding: 10rpx;
|
}
|
.quan {
|
display: flex;
|
justify-content: space-between;
|
align-items: center;
|
}
|
.quan_sty {
|
display: flex;
|
}
|
.quan_img1 {
|
width: 45rpx;
|
height: 45rpx;
|
}
|
.zi {
|
margin-left: 30rpx;
|
font-size: 14px;
|
font-weight: 600;
|
}
|
.dy {
|
font-size: 14px;
|
margin-right: 10rpx;
|
color: #fd8b4d;
|
}
|
.quan_img {
|
width: 30rpx;
|
height: 30rpx;
|
}
|
.bottom {
|
width: 700rpx;
|
height: 100rpx;
|
margin-top: 20rpx;
|
border-radius: 15rpx;
|
display: flex;
|
align-items: center;
|
justify-content: center;
|
background-color: #fff;
|
}
|