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.
127 lines
2.0 KiB
127 lines
2.0 KiB
|
|
|
|
$deep-color: #333333;
|
|
$gray-color: #9299AD;
|
|
$primary-color: #5C5BEE;
|
|
$light-primary-color: #E8E8FF;
|
|
$text-red:#D91C1C;
|
|
$text-org:#EE991A;
|
|
$bg-light-org:#FFF1DB;
|
|
$text-green:#39B872;
|
|
$bg-white:#fff;
|
|
$text-white:#fff;
|
|
|
|
:export {
|
|
deepColor: $deep-color;
|
|
grayColor: $gray-color;
|
|
primaryColor: $primary-color;
|
|
lightPrimaryColor: $light-primary-color;
|
|
}
|
|
|
|
uni-app {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
|
|
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
|
}
|
|
.text-blue{
|
|
color: #34ACF0;
|
|
}
|
|
.text-red{
|
|
color: #D91C1C;
|
|
}
|
|
.text-org{
|
|
color: #EE991A;
|
|
}
|
|
.bg-light-org{
|
|
background: #FFF1DB;
|
|
}
|
|
.text-green{
|
|
color: #39B872;
|
|
}
|
|
.bg-white{
|
|
background-color: #fff;
|
|
}
|
|
.text-white{
|
|
color: #fff;
|
|
}
|
|
.text-deep {
|
|
color: $deep-color;
|
|
}
|
|
.bg-deep {
|
|
background-color: $deep-color;
|
|
}
|
|
|
|
// 灰色
|
|
.text-gray {
|
|
color: $gray-color;
|
|
}
|
|
.bg-gray {
|
|
background-color: $gray-color;
|
|
}
|
|
|
|
// 主题深色
|
|
.text-deep-primary {
|
|
// color: #5C5BEE !important;
|
|
color: $primary-color;
|
|
}
|
|
.bg-deep-primary {
|
|
background-color: $primary-color;
|
|
}
|
|
|
|
// 主题浅色
|
|
.text-light-primary {
|
|
color: $light-primary-color;
|
|
}
|
|
.bg-light-primary {
|
|
background-color: $light-primary-color;
|
|
}
|
|
|
|
// 浅主题色按钮
|
|
.btn-light-primary {
|
|
background-color: $light-primary-color;
|
|
color: $primary-color;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease-in-out;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
|
|
&:after {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
// 深主题色按钮
|
|
.btn-deep-primary {
|
|
background-color: $primary-color;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 6px;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease-in-out;
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
|
|
&:after {
|
|
border: none;
|
|
}
|
|
}
|
|
|
|
.a-line-overflow {
|
|
white-space: nowrap;/*强制在一行显示*/
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;/*溢出显示省略号*/
|
|
}
|
|
|
|
.page-content {
|
|
width: 750rpx;
|
|
position: relative;
|
|
padding: 0 32rpx;
|
|
}
|
|
|
|
.uni-input-input {
|
|
// 修改输入框文字的颜色
|
|
color: #333333;
|
|
}
|
|
|