236 lines
5.1 KiB
SCSS
236 lines
5.1 KiB
SCSS
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
/* 透明度 */
|
||
/* 文章场景相关 */
|
||
.app {
|
||
background-color: #F7F5F5;
|
||
height: 100vh;
|
||
width: 100%;
|
||
color: #000000;
|
||
padding-top: 20rpx;
|
||
overflow: scroll;
|
||
}
|
||
.app .u-tabs-scroll-flex {
|
||
background: #F7F5F5;
|
||
width: 60%;
|
||
}
|
||
.app .u-scroll-view {
|
||
background: #F7F5F5 !important;
|
||
}
|
||
.app .record {
|
||
width: 95%;
|
||
height: 392rpx;
|
||
background: #FFFFFF;
|
||
box-shadow: 0rpx 9rpx 31rpx 9rpx rgba(0, 0, 0, 0.03);
|
||
border-radius: 5rpx;
|
||
margin: 0 auto;
|
||
position: relative;
|
||
font-family: Source Han Sans CN;
|
||
margin-bottom: 15rpx;
|
||
}
|
||
.app .record .top {
|
||
position: absolute;
|
||
background: red;
|
||
width: 90%;
|
||
left: 5%;
|
||
top: 7%;
|
||
}
|
||
.app .record .top ._span:nth-child(1) {
|
||
font-size: 26rpx;
|
||
font-weight: 600;
|
||
color: #000000;
|
||
position: absolute;
|
||
width: 80%;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.app .record .top ._span:nth-child(2) {
|
||
font-weight: 500;
|
||
color: #868585;
|
||
position: absolute;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
font-weight: 500;
|
||
color: #868585;
|
||
position: absolute;
|
||
left: 78%;
|
||
}
|
||
.app .record .top ._span:nth-child(3) {
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
font-weight: 600;
|
||
color: #26A888;
|
||
position: absolute;
|
||
right: 0%;
|
||
}
|
||
.app .record .recorddata {
|
||
width: 95%;
|
||
position: relative;
|
||
top: 23%;
|
||
left: 50%;
|
||
-webkit-transform: translateX(-50%);
|
||
transform: translateX(-50%);
|
||
border-bottom: 1rpx solid #E6E6E6;
|
||
padding-left: 3%;
|
||
}
|
||
.app .record .recorddata .recordbottom {
|
||
margin-bottom: 30rpx !important;
|
||
}
|
||
.app .record .recorddata .recorditem {
|
||
width: 100%;
|
||
font-size: 27rpx;
|
||
font-family: Source Han Sans CN;
|
||
font-weight: 400;
|
||
color: #868585;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
.app .record .recorddata .recorditem ._span {
|
||
margin-left: 20rpx;
|
||
}
|
||
.app .record .evaluate .evaluatedata {
|
||
position: absolute;
|
||
width: 169rpx;
|
||
height: 61rpx;
|
||
background: #26A888;
|
||
border-radius: 5rpx;
|
||
text-align: center;
|
||
font-size: 28rpx;
|
||
font-weight: 400;
|
||
color: #FFFFFF;
|
||
line-height: 61rpx;
|
||
bottom: 8%;
|
||
right: 4%;
|
||
}
|
||
.app .record .evaluate ._span:nth-child(1) {
|
||
display: inline-block;
|
||
position: absolute;
|
||
height: 22rpx;
|
||
font-size: 28rpx;
|
||
font-weight: 400;
|
||
color: #868585;
|
||
left: 5%;
|
||
bottom: 16%;
|
||
}
|
||
.app .record .evaluate ._span:nth-child(2) {
|
||
display: inline-block;
|
||
position: absolute;
|
||
height: 22rpx;
|
||
font-size: 28rpx;
|
||
font-weight: 400;
|
||
color: #868585;
|
||
left: 30%;
|
||
bottom: 16%;
|
||
}
|
||
.app .record .evaluate ._span:nth-child(3) {
|
||
display: inline-block;
|
||
position: absolute;
|
||
right: 3%;
|
||
bottom: 10%;
|
||
}
|
||
.app .evaluateserver {
|
||
width: 100%;
|
||
font-size: 38rpx;
|
||
color: #000000;
|
||
line-height: 120rpx;
|
||
font-weight: 400;
|
||
text-align: center;
|
||
}
|
||
.app .evaluateserver .u-close {
|
||
top: 8% !important;
|
||
}
|
||
.app .star {
|
||
position: relative;
|
||
left: 11%;
|
||
height: 80rpx;
|
||
margin-bottom: 40rpx;
|
||
}
|
||
.app .star .evaluatstar {
|
||
font-family: Source Han Sans CN;
|
||
}
|
||
.app .star .evaluatstar .u-rate {
|
||
position: absolute !important;
|
||
left: 14% !important;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
.app .star .evaluatstar .u-input__textarea {
|
||
background: #F6F6F6;
|
||
height: 200rpx !important;
|
||
}
|
||
.app .star .evaluatstar .u-input {
|
||
width: 66% !important;
|
||
height: 171rpx;
|
||
position: absolute;
|
||
left: 16%;
|
||
}
|
||
.app .star .evaluatstar ._span:nth-child(1) {
|
||
position: absolute;
|
||
display: inline;
|
||
font-size: 36rpx;
|
||
color: #000000;
|
||
font-weight: 400;
|
||
letter-spacing: 0.2em;
|
||
top: 50%;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
}
|
||
.app .star .evaluatstar ._span:nth-child(2) {
|
||
position: absolute;
|
||
display: inline-block;
|
||
}
|
||
.app .submits {
|
||
font-family: Source Han Sans CN;
|
||
font-size: 31rpx;
|
||
position: relative;
|
||
display: flex;
|
||
justify-content: space-around;
|
||
top: 23%;
|
||
text-align: center;
|
||
}
|
||
.app .submits ._span:nth-child(1) {
|
||
display: inline-block;
|
||
width: 290rpx;
|
||
height: 62rpx;
|
||
line-height: 62rpx;
|
||
background: #FFFFFF;
|
||
border: 1px solid #26A888;
|
||
border-radius: 5rpx;
|
||
font-weight: 500;
|
||
color: #26A888;
|
||
}
|
||
.app .submits ._span:nth-child(2) {
|
||
width: 290rpx;
|
||
height: 62rpx;
|
||
line-height: 62rpx;
|
||
background: #26A888;
|
||
border-radius: 5rpx;
|
||
font-weight: 500;
|
||
color: #FFFFFF;
|
||
display: inline-block;
|
||
}
|
||
|