公司小程序
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.

191 lines
3.9 KiB

3 years ago
@charset "UTF-8";
/**
* 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
* uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
*/
/*每个页面公共css */
.u-line-1 {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.u-line-2 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical !important;
}
.u-line-3 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical !important;
}
.u-line-4 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 4;
-webkit-box-orient: vertical !important;
}
.u-line-5 {
display: -webkit-box !important;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
-webkit-line-clamp: 5;
-webkit-box-orient: vertical !important;
}
.u-reset-button {
padding: 0;
background-color: transparent;
font-size: inherit;
line-height: inherit;
color: inherit;
}
.u-reset-button::after {
border: none;
}
.u-hover-class {
opacity: 0.7;
}
.u-safe-area-inset-top {
padding-top: 0;
padding-top: constant(safe-area-inset-top);
padding-top: env(safe-area-inset-top);
}
.u-safe-area-inset-right {
padding-right: 0;
padding-right: constant(safe-area-inset-right);
padding-right: env(safe-area-inset-right);
}
.u-safe-area-inset-bottom {
padding-bottom: 0;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
}
.u-safe-area-inset-left {
padding-left: 0;
padding-left: constant(safe-area-inset-left);
padding-left: env(safe-area-inset-left);
}
::-webkit-scrollbar {
display: none;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
background: transparent;
}
3 years ago
.main {
opacity: 1;
border-radius: 0px;
overflow: scroll;
touch-action: auto;
flex-direction: column;
display: flex;
margin: 0 auto;
left: 0;
top: 0;
bottom: 0;
right: 0;
position: fixed;
height: 100%;
background-color: #F6F6F6;
}
.back {
width: 100%;
height: 100%;
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #F6F6F6;
}
.form_item_global {
width: 702rpx;
height: 110rpx;
position: relative;
border-radius: 20rpx;
3 years ago
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.form_out_box_global {
width: 702rpx;
border-radius: 20rpx;
position: relative;
left: 24rpx;
}
.form_title_global {
height: 40rpx;
font-size: 28rpx;
font-weight: 400;
color: #333333;
opacity: 1;
}
.form_input_global {
width: 550rpx;
height: 90rpx;
text-align: right;
font-size: 28rpx;
font-weight: 400;
color: #333333;
right: 10rpx;
position: absolute;
}
.form_input_placeholder_global {
height: 40rpx;
text-align: right;
font-size: 28rpx;
font-weight: 400;
color: #999999;
}
.confirm_button_global {
width: 702rpx;
height: 90rpx;
background: #D49B4B;
opacity: 1;
border-radius: 93rpx;
3 years ago
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
position: relative;
font-size: 36rpx;
font-weight: 400;
color: #FFFFFF;
}
.confirm_button_hover_class {
opacity: 0.8;
}
.cancel_button_hover_class {
color: #333333;
}
.cancel_button_global {
width: 702rpx;
height: 90rpx;
background: #FFFFFF;
border: 1rpx solid #D49B4B;
opacity: 1;
border-radius: 93rpx;
position: relative;
display: flex;
align-items: center;
justify-content: center;
font-size: 36rpx;
font-weight: 400;
color: #D49B4B;
3 years ago
}
.uni-picker-container .uni-picker .uni-picker-action-confirm {
color: #d7b57c !important;
}
3 years ago