You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
205 lines
4.6 KiB
205 lines
4.6 KiB
@charset "UTF-8";
|
|
/**
|
|
* 这里是uni-app内置的常用样式变量
|
|
*
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
*
|
|
*/
|
|
/**
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
*
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
*/
|
|
/* 颜色变量 */
|
|
/* 行为相关颜色 */
|
|
/* 文字基本颜色 */
|
|
/* 背景颜色 */
|
|
/* 边框颜色 */
|
|
/* 尺寸变量 */
|
|
/* 文字尺寸 */
|
|
/* 图片尺寸 */
|
|
/* Border Radius */
|
|
/* 水平间距 */
|
|
/* 垂直间距 */
|
|
/* 透明度 */
|
|
/* 文章场景相关 */
|
|
.tips {
|
|
height: 80rpx;
|
|
text-align: center;
|
|
}
|
|
.tips > ._span {
|
|
line-height: 80rpx;
|
|
font-size: 28rpx;
|
|
color: black;
|
|
}
|
|
page {
|
|
background-color: #f6f6f6;
|
|
font-size: 0;
|
|
}
|
|
.container .color-33 {
|
|
color: #333333;
|
|
}
|
|
.container .color-99 {
|
|
color: #999999;
|
|
}
|
|
.container .color-f4 {
|
|
color: #ff4444;
|
|
}
|
|
.container .font-blod {
|
|
font-weight: bold;
|
|
}
|
|
.container .search-box .search-input {
|
|
position: relative;
|
|
padding: 0 60rpx 0 80rpx;
|
|
height: 76rpx;
|
|
width: 100%;
|
|
border-radius: 38rpx;
|
|
background: white;
|
|
}
|
|
.container .search-box .search-input input {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
.container .search-box .search-input .icon.icon-sousuo {
|
|
position: absolute;
|
|
color: #999999;
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
left: 30rpx;
|
|
}
|
|
.container .tool-r-btn {
|
|
position: relative;
|
|
}
|
|
.container .operationShow {
|
|
z-index: 3;
|
|
position: absolute;
|
|
right: 88rpx;
|
|
bottom: -22rpx;
|
|
width: 400rpx;
|
|
height: 80rpx;
|
|
background: #333333;
|
|
border-radius: 10rpx;
|
|
}
|
|
.container .operationShow image {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
margin-right: 4rpx;
|
|
}
|
|
.container .operationShow > view > ._span {
|
|
font-size: 24rpx;
|
|
color: white;
|
|
}
|
|
.container .operationView {
|
|
-webkit-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
display: inline-block;
|
|
position: absolute;
|
|
bottom: 20rpx;
|
|
right: -6rpx;
|
|
z-index: -1;
|
|
width: 38rpx;
|
|
height: 38rpx;
|
|
background: #333333;
|
|
border: 1rpx solid #333333;
|
|
}
|
|
.container .chat-btn {
|
|
padding: 40rpx 0;
|
|
color: #ffffff;
|
|
}
|
|
.container .chat-btn .chat-btn-item {
|
|
width: 50%;
|
|
line-height: 24px;
|
|
vertical-align: text-bottom;
|
|
}
|
|
.container .chat-btn .chat-btn-item .m2 {
|
|
margin-left: 2rpx;
|
|
}
|
|
.container .chat-btn .chat-btn-item .icon {
|
|
margin-right: 20rpx;
|
|
}
|
|
.container .chat-btn .chat-btn-line {
|
|
width: 1rpx;
|
|
height: 40rpx;
|
|
background: white;
|
|
opacity: 0.3;
|
|
}
|
|
.container .pages-header {
|
|
width: 100%;
|
|
height: 370rpx;
|
|
background-repeat: no-repeat;
|
|
background-size: 100% 370rpx;
|
|
}
|
|
.container .pages-header .person-content {
|
|
padding: 94rpx 40rpx 0;
|
|
}
|
|
.container .pages-header .person-content .user-avatar {
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
border-radius: 50%;
|
|
background-repeat: no-repeat;
|
|
background-size: 100rpx 100rpx;
|
|
}
|
|
.container .pages-header .person-content .user-referrer-name .level-label {
|
|
background-color: #e7d4aa;
|
|
border-radius: 18rpx;
|
|
padding: 0 16rpx;
|
|
}
|
|
.container .pages-header .person-content .user-referrer-name .referrer-name {
|
|
color: #6b6e88;
|
|
}
|
|
.container .merchantchat {
|
|
margin-top: -330rpx;
|
|
}
|
|
.container .merchantchat .tool-tab {
|
|
padding: 0 30rpx;
|
|
border-radius: 10px;
|
|
background: #ffffff;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item-right {
|
|
width: 100%;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-username {
|
|
align-items: start;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-username .font-blod {
|
|
margin-bottom: 16rpx;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-tab-title {
|
|
padding: 0 30rpx;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item {
|
|
width: 100%;
|
|
flex-wrap: nowrap;
|
|
border-bottom: 1px solid #eeeeee;
|
|
padding: 40rpx 0;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item .badge {
|
|
width: 65rpx;
|
|
height: 40rpx;
|
|
background: #f1f7ff;
|
|
border-radius: 6rpx;
|
|
color: white;
|
|
margin-top: 18rpx;
|
|
padding: 0 10rpx;
|
|
margin-top: 48rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item .badge .circle {
|
|
width: 4px;
|
|
height: 4px;
|
|
background: #398cff;
|
|
border-radius: 50%;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item .tool-item-icon {
|
|
margin-right: 30rpx;
|
|
width: 70rpx;
|
|
height: 70rpx;
|
|
flex-shrink: 0;
|
|
border-radius: 50%;
|
|
}
|
|
.container .merchantchat .tool-tab .tool-item:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
|