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.
557 lines
11 KiB
557 lines
11 KiB
@charset "UTF-8";
|
|
/**
|
|
* 这里是uni-app内置的常用样式变量
|
|
*
|
|
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
|
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
|
*
|
|
*/
|
|
/**
|
|
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
|
*
|
|
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
|
*/
|
|
/* 颜色变量 */
|
|
/* 行为相关颜色 */
|
|
/* 文字基本颜色 */
|
|
/* 背景颜色 */
|
|
/* 边框颜色 */
|
|
/* 尺寸变量 */
|
|
/* 文字尺寸 */
|
|
/* 图片尺寸 */
|
|
/* Border Radius */
|
|
/* 水平间距 */
|
|
/* 垂直间距 */
|
|
/* 透明度 */
|
|
/* 文章场景相关 */
|
|
.select-page.data-v-3c9eb0a7 {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
.select-page .scroll-list-panel.data-v-3c9eb0a7 {
|
|
height: inherit;
|
|
}
|
|
.select-page .scroll-list-panel .title.data-v-3c9eb0a7 {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
.select-page .scroll-list-panel .list.data-v-3c9eb0a7 {
|
|
box-sizing: border-box;
|
|
margin: 0 0 0 30rpx;
|
|
}
|
|
.select-page .scroll-list-panel .list text.data-v-3c9eb0a7 {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
.select-page .scroll-list-panel .list text.data-v-3c9eb0a7:last-child {
|
|
border: none !important;
|
|
}
|
|
.select-page .now-sort.data-v-3c9eb0a7 {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
}
|
|
.select-page .now-letter.data-v-3c9eb0a7 {
|
|
font-size: 160rpx;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate3d(-50%, -50%, 0);
|
|
transform: translate3d(-50%, -50%, 0);
|
|
opacity: 0;
|
|
}
|
|
.select-page .now-letter.fadeIn.data-v-3c9eb0a7 {
|
|
-webkit-animation: fade-data-v-3c9eb0a7 1s linear 0ms;
|
|
animation: fade-data-v-3c9eb0a7 1s linear 0ms;
|
|
}
|
|
.select-page .letter-nav.data-v-3c9eb0a7 {
|
|
width: 100rpx;
|
|
position: absolute;
|
|
-webkit-transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
right: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
z-index: 99999;
|
|
}
|
|
.base-wrap-history.data-v-3c9eb0a7 {
|
|
overflow: hidden;
|
|
padding: 0 50rpx 0 20rpx;
|
|
}
|
|
.base-wrap-history .title.data-v-3c9eb0a7 {
|
|
display: flex;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
font-size: 28rpx;
|
|
color: #999999;
|
|
height: 60rpx;
|
|
}
|
|
.base-wrap-history .panel.data-v-3c9eb0a7 {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.base-wrap-history .panel .current-item.data-v-3c9eb0a7 {
|
|
background-color: #FFD940 !important;
|
|
}
|
|
.base-wrap-history .panel .history-icon.data-v-3c9eb0a7 {
|
|
font-size: 30rpx;
|
|
margin-right: 10rpx;
|
|
color: #333333;
|
|
}
|
|
.base-wrap-history .panel .item.data-v-3c9eb0a7 {
|
|
display: inline-block;
|
|
align-items: center;
|
|
text-align: center;
|
|
width: 160rpx;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
overflow: hidden;
|
|
font-size: 28rpx;
|
|
border-radius: 60rpx;
|
|
padding: 0 20rpx;
|
|
margin-top: 20rpx;
|
|
color: #333333;
|
|
margin-right: 8rpx;
|
|
background-color: #f6f6f6;
|
|
}
|
|
.base-wrap-history .panel.data-v-3c9eb0a7::after {
|
|
display: block;
|
|
content: '';
|
|
width: 200rpx;
|
|
border: 1px solid transparent;
|
|
}
|
|
@-webkit-keyframes fade-data-v-3c9eb0a7 {
|
|
0% {
|
|
opacity: 0;
|
|
display: block !important;
|
|
}
|
|
50% {
|
|
opacity: 0.4;
|
|
}
|
|
100% {
|
|
display: none;
|
|
opacity: 0 !important;
|
|
}
|
|
}
|
|
@keyframes fade-data-v-3c9eb0a7 {
|
|
0% {
|
|
opacity: 0;
|
|
display: block !important;
|
|
}
|
|
50% {
|
|
opacity: 0.4;
|
|
}
|
|
100% {
|
|
display: none;
|
|
opacity: 0 !important;
|
|
}
|
|
}
|
|
.data-v-3c9eb0a7::-webkit-scrollbar {
|
|
width: 0;
|
|
height: 0;
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
.diy-tabbar.data-v-4ffc8988 {
|
|
border-color: rgba(0, 0, 0, 0.33);
|
|
position: fixed;
|
|
z-index: 9999;
|
|
height: 130rpx;
|
|
left: 0;
|
|
background-color: rgb(255, 255, 255);
|
|
color: rgb(110, 109, 107);
|
|
bottom: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
}
|
|
.tabbar-item.data-v-4ffc8988 {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
font-size: 0;
|
|
color: #6e6d6b;
|
|
text-align: center;
|
|
z-index: 5;
|
|
padding-bottom: 30rpx;
|
|
}
|
|
.tabbar-sever.data-v-4ffc8988{
|
|
}
|
|
.tabbar-severImg.data-v-4ffc8988{
|
|
width: 84rpx;
|
|
height: 84rpx;
|
|
position: relative;
|
|
top: -20rpx;
|
|
}
|
|
.tabbar-item .tabbar-item-icon.data-v-4ffc8988 {
|
|
font-size: 44rpx;
|
|
}
|
|
.tabbar-item.item-on.data-v-4ffc8988 {
|
|
/* color: #fd4a5f; */
|
|
}
|
|
.tabbar-item .image.data-v-4ffc8988 {
|
|
display: inline-block;
|
|
width: 100rpx;
|
|
height: 100rpx;
|
|
}
|
|
.tabbat-item-text.data-v-4ffc8988 {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
font-size: 20rpx;
|
|
line-height: 1.8;
|
|
text-align: center;
|
|
}
|
|
.navstyle-image.data-v-4ffc8988 {
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
background-repeat: no-repeat;
|
|
background-size: 60rpx 60rpx;
|
|
display: block;
|
|
margin: 0 auto;
|
|
}
|
|
.navstyle-3-item.data-v-4ffc8988 {
|
|
padding: 10rpx 0;
|
|
}
|
|
|
|
.imgPreview {
|
|
overflow: hidden;
|
|
width: 157rpx;
|
|
height: 157rpx;
|
|
background: gray;
|
|
margin-right: 37rpx;
|
|
margin-bottom: 10rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.imgPreview > image {
|
|
width: 157rpx;
|
|
height: 157rpx;
|
|
}
|
|
.close {
|
|
width: 32rpx !important;
|
|
height: 32rpx !important;
|
|
position: relative;
|
|
bottom: 150rpx;
|
|
left: 120rpx;
|
|
z-index: 30;
|
|
}
|
|
.userImg {
|
|
margin-top: 26rpx;
|
|
display: inline-block;
|
|
width: 628rpx;
|
|
background: #ffffff;
|
|
border-radius: 10px;
|
|
padding: 30rpx;
|
|
}
|
|
.userInfo {
|
|
width: 628rpx;
|
|
background: white;
|
|
border-radius: 10rpx;
|
|
background: #ffffff;
|
|
padding: 30rpx;
|
|
}
|
|
.submitButtom {
|
|
margin: 100rpx auto 0 auto;
|
|
width: 690rpx;
|
|
height: 83rpx;
|
|
background: #3388ff;
|
|
border-radius: 42rpx;
|
|
text-align: center;
|
|
}
|
|
.submitButtom > ._span {
|
|
line-height: 83rpx;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
}
|
|
.twiceTitle {
|
|
margin-top: 62rpx;
|
|
}
|
|
.twiceTitle > ._span {
|
|
vertical-align: middle;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.twiceTitle > view {
|
|
vertical-align: middle;
|
|
overflow: visible !important;
|
|
margin-top: 43rpx;
|
|
}
|
|
.twiceTitle > view > view {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
.userImgUpdata {
|
|
width: 157rpx;
|
|
height: 157rpx;
|
|
background: #f6f6f6;
|
|
border: 1rpx solid #cccccc;
|
|
border-radius: 10rpx;
|
|
text-align: center;
|
|
}
|
|
.userImgUpdata > image {
|
|
margin-top: 53rpx;
|
|
width: 53rpx;
|
|
height: 53rpx;
|
|
}
|
|
.twiceTitle2 {
|
|
margin-left: 36rpx;
|
|
}
|
|
.twiceTitle1 {
|
|
margin-top: 40rpx;
|
|
}
|
|
.twiceTitle1 > ._span {
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.twiceTitle1 > view {
|
|
margin-top: 43rpx;
|
|
}
|
|
.twiceTitle1 > view > view {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
.uni-input {
|
|
margin-top: 27rpx;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
page {
|
|
font-size: 0;
|
|
}
|
|
.setPackage {
|
|
background: #f8f8f8;
|
|
padding: 30rpx;
|
|
}
|
|
.firstTitle {
|
|
margin-top: 20rpx;
|
|
}
|
|
.firstTitle > ._span {
|
|
margin-left: 10rpx;
|
|
vertical-align: middle;
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #333333;
|
|
}
|
|
.line {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
width: 8rpx;
|
|
height: 27rpx;
|
|
background: #3388ff;
|
|
border-radius: 4rpx;
|
|
}
|
|
.setInput .uni-radio-input {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
}
|
|
.setInput {
|
|
margin-top: 15rpx;
|
|
height: 83rpx;
|
|
background: #fafafa;
|
|
border-radius: 10rpx;
|
|
}
|
|
.setInput > ._span {
|
|
text-align: right;
|
|
display: inline-block;
|
|
width: 120rpx;
|
|
vertical-align: middle;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.setInput > input {
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
padding-left: 40rpx;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
height: 100%;
|
|
width: 400rpx;
|
|
}
|
|
.inputPackage {
|
|
margin-top: 15rpx;
|
|
}
|
|
.userInfoInputMain {
|
|
background: #fafafa;
|
|
margin-top: 18rpx;
|
|
padding: 0 22rpx;
|
|
}
|
|
.userInfoInputMain > ._span {
|
|
text-align: right;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
width: 96rpx;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.userInfoInputMain > input {
|
|
border: none;
|
|
outline: none;
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
width: 350rpx;
|
|
margin-left: 49rpx;
|
|
height: 83rpx;
|
|
background: #fafafa;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.userInfoInputMain > image {
|
|
margin-left: 50rpx;
|
|
vertical-align: middle;
|
|
width: 20rpx;
|
|
height: 28rpx;
|
|
}
|
|
.userInfoInputMain > view {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
}
|
|
.userInfoInputMain > view > image {
|
|
vertical-align: middle;
|
|
width: 21rpx;
|
|
height: 24rpx;
|
|
margin-right: 9rpx;
|
|
}
|
|
.userInfoInputMain > view > ._span {
|
|
vertical-align: middle;
|
|
font-size: 24rpx;
|
|
color: #ff4444;
|
|
}
|
|
.userInfoInputMain .uni-input {
|
|
margin-top: 27rpx;
|
|
}
|
|
.userInfoInputMain .timePickerView {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
margin-left: 49rpx;
|
|
width: 350rpx;
|
|
height: 83rpx;
|
|
}
|
|
.userInfoInputMain .timePickerView > ._span {
|
|
line-height: 83rpx;
|
|
vertical-align: top;
|
|
margin: 0 10rpx;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.uni-input {
|
|
margin-top: 27rpx;
|
|
}
|
|
.timePickerView {
|
|
vertical-align: middle;
|
|
display: inline-block;
|
|
margin-left: 30rpx;
|
|
width: 350rpx;
|
|
height: 83rpx;
|
|
}
|
|
.timePickerView > ._span {
|
|
line-height: 83rpx;
|
|
vertical-align: top;
|
|
margin: 0 10rpx;
|
|
font-size: 24rpx;
|
|
color: #333333;
|
|
}
|
|
.dataPicker {
|
|
width: 350rpx;
|
|
height: 82rpx;
|
|
display: inline-block;
|
|
}
|
|
.dataPicker1 {
|
|
width: 70rpx;
|
|
height: 82rpx;
|
|
display: inline-block;
|
|
}
|
|
.iframe-wid-hgt {
|
|
width: 100vw;
|
|
}
|
|
.homema .check-item {
|
|
padding: 0 10rpx;
|
|
border-radius: 10rpx;
|
|
background-color: #ff4444;
|
|
color: #ffffff;
|
|
height: 40rpx;
|
|
line-height: 40rpx;
|
|
text-align: center;
|
|
display: inline-block;
|
|
margin-right: 10rpx;
|
|
margin-bottom: 10rpx;
|
|
position: relative;
|
|
}
|
|
.homema .check-item > image {
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
margin-top: 5rpx;
|
|
vertical-align: top;
|
|
margin-left: 10rpx;
|
|
}
|
|
.cicupation {
|
|
width: 750rpx;
|
|
height: 550rpx;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
background-color: #ffffff;
|
|
border-radius: 30rpx 30rpx 0 0;
|
|
display: flex;
|
|
}
|
|
.cicupation .cicupation-left {
|
|
padding-right: 10rpx;
|
|
height: 450rpx;
|
|
flex: 1;
|
|
overflow: auto;
|
|
}
|
|
.cicupation .cicupation-left .left-item {
|
|
line-height: 60rpx;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
background-color: #ff4444;
|
|
color: #ffffff;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
border-radius: 15rpx;
|
|
margin-bottom: 20rpx;
|
|
font-weight: bold;
|
|
}
|
|
.cicupation .cicupation-left .left-nocheck {
|
|
line-height: 60rpx;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
background-color: #f8f8f8;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
border-radius: 15rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.cicupation .cicupation-right {
|
|
flex: 1;
|
|
padding-left: 10rpx;
|
|
height: 450rpx;
|
|
overflow: auto;
|
|
}
|
|
.cicupation .cicupation-right .right-item {
|
|
line-height: 60rpx;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
background-color: #ff4444;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
border-radius: 15rpx;
|
|
margin-bottom: 20rpx;
|
|
color: #ffffff;
|
|
}
|
|
.cicupation .cicupation-right .right-nocheck {
|
|
line-height: 60rpx;
|
|
font-size: 26rpx;
|
|
text-align: center;
|
|
background-color: #f8f8f8;
|
|
border-bottom: 1rpx solid #eeeeee;
|
|
border-radius: 15rpx;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
|