1012 lines
18 KiB
Plaintext
1012 lines
18 KiB
Plaintext
@charset "UTF-8";
|
||
/**
|
||
* 这里是uni-app内置的常用样式变量
|
||
*
|
||
* uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
|
||
* 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
|
||
*
|
||
*/
|
||
/**
|
||
* 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
|
||
*
|
||
* 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
|
||
*/
|
||
.u-line-1 {
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
display: -webkit-box !important;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
word-break: break-all;
|
||
-webkit-line-clamp: 1;
|
||
-webkit-box-orient: vertical !important;
|
||
}
|
||
.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-border {
|
||
border-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-style: solid;
|
||
}
|
||
.u-border-top {
|
||
border-top-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-top-style: solid;
|
||
}
|
||
.u-border-left {
|
||
border-left-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-left-style: solid;
|
||
}
|
||
.u-border-right {
|
||
border-right-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-right-style: solid;
|
||
}
|
||
.u-border-bottom {
|
||
border-bottom-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-bottom-style: solid;
|
||
}
|
||
.u-border-top-bottom {
|
||
border-top-width: 0.5px !important;
|
||
border-bottom-width: 0.5px !important;
|
||
border-color: #dadbde !important;
|
||
border-top-style: solid;
|
||
border-bottom-style: solid;
|
||
}
|
||
.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-primary-light {
|
||
color: #ecf5ff;
|
||
}
|
||
.u-warning-light {
|
||
color: #fdf6ec;
|
||
}
|
||
.u-success-light {
|
||
color: #f5fff0;
|
||
}
|
||
.u-error-light {
|
||
color: #fef0f0;
|
||
}
|
||
.u-info-light {
|
||
color: #f4f4f5;
|
||
}
|
||
.u-primary-light-bg {
|
||
background-color: #ecf5ff;
|
||
}
|
||
.u-warning-light-bg {
|
||
background-color: #fdf6ec;
|
||
}
|
||
.u-success-light-bg {
|
||
background-color: #f5fff0;
|
||
}
|
||
.u-error-light-bg {
|
||
background-color: #fef0f0;
|
||
}
|
||
.u-info-light-bg {
|
||
background-color: #f4f4f5;
|
||
}
|
||
.u-primary-dark {
|
||
color: #398ade;
|
||
}
|
||
.u-warning-dark {
|
||
color: #f1a532;
|
||
}
|
||
.u-success-dark {
|
||
color: #53c21d;
|
||
}
|
||
.u-error-dark {
|
||
color: #e45656;
|
||
}
|
||
.u-info-dark {
|
||
color: #767a82;
|
||
}
|
||
.u-primary-dark-bg {
|
||
background-color: #398ade;
|
||
}
|
||
.u-warning-dark-bg {
|
||
background-color: #f1a532;
|
||
}
|
||
.u-success-dark-bg {
|
||
background-color: #53c21d;
|
||
}
|
||
.u-error-dark-bg {
|
||
background-color: #e45656;
|
||
}
|
||
.u-info-dark-bg {
|
||
background-color: #767a82;
|
||
}
|
||
.u-primary-disabled {
|
||
color: #9acafc;
|
||
}
|
||
.u-warning-disabled {
|
||
color: #f9d39b;
|
||
}
|
||
.u-success-disabled {
|
||
color: #a9e08f;
|
||
}
|
||
.u-error-disabled {
|
||
color: #f7b2b2;
|
||
}
|
||
.u-info-disabled {
|
||
color: #c4c6c9;
|
||
}
|
||
.u-primary {
|
||
color: #3c9cff;
|
||
}
|
||
.u-warning {
|
||
color: #f9ae3d;
|
||
}
|
||
.u-success {
|
||
color: #5ac725;
|
||
}
|
||
.u-error {
|
||
color: #f56c6c;
|
||
}
|
||
.u-info {
|
||
color: #909399;
|
||
}
|
||
.u-primary-bg {
|
||
background-color: #3c9cff;
|
||
}
|
||
.u-warning-bg {
|
||
background-color: #f9ae3d;
|
||
}
|
||
.u-success-bg {
|
||
background-color: #5ac725;
|
||
}
|
||
.u-error-bg {
|
||
background-color: #f56c6c;
|
||
}
|
||
.u-info-bg {
|
||
background-color: #909399;
|
||
}
|
||
.u-main-color {
|
||
color: #303133;
|
||
}
|
||
.u-content-color {
|
||
color: #606266;
|
||
}
|
||
.u-tips-color {
|
||
color: #909193;
|
||
}
|
||
.u-light-color {
|
||
color: #c0c4cc;
|
||
}
|
||
.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;
|
||
}
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
/* 颜色变量 */
|
||
/* 行为相关颜色 */
|
||
/* 文字基本颜色 */
|
||
/* 背景颜色 */
|
||
/* 边框颜色 */
|
||
/* 尺寸变量 */
|
||
/* 文字尺寸 */
|
||
/* 图片尺寸 */
|
||
/* Border Radius */
|
||
/* 水平间距 */
|
||
/* 垂直间距 */
|
||
page {
|
||
background: #fbf9ff;
|
||
}
|
||
.topBox {
|
||
background: linear-gradient(0deg, #FFF8F2 0%, #FFFBED 100%);
|
||
overflow: hidden;
|
||
height: calc(118rpx + 25px);
|
||
position: fixed;
|
||
top: 0;
|
||
left: 0;
|
||
width: 100%;
|
||
z-index: 99;
|
||
}
|
||
.topStatus {
|
||
height: calc(118rpx + 25px);
|
||
}
|
||
.menuBox {
|
||
display: flex;
|
||
padding: 20rpx 0 0;
|
||
padding-left: 15rpx;
|
||
}
|
||
.menuBox .menuView {
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #AE8F71;
|
||
padding: 0 21rpx;
|
||
position: relative;
|
||
}
|
||
.menuBox .menuView .menuLine {
|
||
width: 80rpx;
|
||
height: 10rpx;
|
||
border-radius: 2rpx;
|
||
background: linear-gradient(to right, #FFF8EF, #ED7B29);
|
||
margin-top: -12rpx;
|
||
position: absolute;
|
||
bottom: 0;
|
||
left: 21rpx;
|
||
}
|
||
.menuBox .checkMenu {
|
||
font-weight: bold;
|
||
font-size: 34rpx;
|
||
color: #221B16;
|
||
}
|
||
.cityBox {
|
||
padding: 0 25rpx;
|
||
height: 60rpx;
|
||
background: #FFFFFF;
|
||
border-radius: 30rpx;
|
||
font-weight: 500;
|
||
font-size: 26rpx;
|
||
color: #333333;
|
||
}
|
||
.contentBox {
|
||
padding: 0 35rpx;
|
||
}
|
||
.selectBox {
|
||
background: #F2F2F2;
|
||
border-radius: 25rpx;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
padding: 0rpx 22rpx;
|
||
height: 50rpx;
|
||
line-height: 50rpx;
|
||
}
|
||
.selectBox:first-child {
|
||
margin-right: 14rpx;
|
||
}
|
||
.goodsImg {
|
||
width: 80rpx;
|
||
height: 80rpx;
|
||
background: #FFC90E;
|
||
border-radius: 20rpx;
|
||
margin-right: 22rpx;
|
||
}
|
||
.goodsWrap {
|
||
background: #FFF9F5;
|
||
border-radius: 20rpx;
|
||
padding: 14rpx 16rpx;
|
||
margin-top: 22rpx;
|
||
}
|
||
.goodsBox1 {
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: flex-start;
|
||
align-items: center;
|
||
}
|
||
.goodsBox3 {
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: flex-end;
|
||
padding-right: 30rpx;
|
||
}
|
||
.goodsText1 {
|
||
font-weight: 500;
|
||
font-size: 22rpx;
|
||
color: #333333;
|
||
margin-bottom: 10rpx;
|
||
}
|
||
.goodsText2 {
|
||
font-weight: 500;
|
||
font-size: 30rpx;
|
||
color: #333333;
|
||
}
|
||
.priceIcon {
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #ED6343;
|
||
}
|
||
.priceNum {
|
||
font-weight: 500;
|
||
font-size: 36rpx;
|
||
color: #ED6343;
|
||
}
|
||
.userBox {
|
||
font-weight: bold;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
margin-top: 25rpx;
|
||
padding-left: 6rpx;
|
||
}
|
||
.userImg {
|
||
width: 42rpx;
|
||
height: 42rpx;
|
||
margin-right: 14rpx;
|
||
}
|
||
.userBtn {
|
||
width: 184rpx;
|
||
height: 60rpx;
|
||
background: #FB8F0C;
|
||
border-radius: 30rpx;
|
||
font-size: 24rpx;
|
||
color: #FFFFFF;
|
||
margin-left: 10rpx;
|
||
}
|
||
.userBtn2 {
|
||
width: 184rpx;
|
||
height: 60rpx;
|
||
border: 1px solid #FB8F0C;
|
||
border-radius: 30rpx;
|
||
font-size: 24rpx;
|
||
color: #FB8F0C;
|
||
margin-left: 10rpx;
|
||
}
|
||
.addressBox {
|
||
margin-top: 20rpx;
|
||
}
|
||
.addressBox .addressText {
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
width: 405rpx;
|
||
overflow: hidden;
|
||
/*超出部分隐藏*/
|
||
text-overflow: ellipsis;
|
||
/* 超出部分显示省略号 */
|
||
white-space: nowrap;
|
||
/*规定段落中的文本不进行换行 */
|
||
}
|
||
.orderBox {
|
||
background: #FFFFFF;
|
||
box-shadow: 0px 8rpx 27rpx 0px rgba(255, 141, 75, 0.08);
|
||
border-radius: 30rpx;
|
||
margin-top: 20rpx;
|
||
padding: 25rpx 33rpx;
|
||
}
|
||
.pinlei {
|
||
background-color: #fff;
|
||
padding: 15px 0px 1px 5px;
|
||
}
|
||
.pinlei-title {
|
||
border-left: solid 3px #46b45d;
|
||
padding-left: 4px;
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
font-weight: bold;
|
||
}
|
||
.imgnavbar {
|
||
width: 100%;
|
||
background-color: #fff;
|
||
margin-bottom: 8px;
|
||
}
|
||
.imgnavbar-list {
|
||
overflow: hidden;
|
||
padding: 24rpx 0 0;
|
||
width: 96%;
|
||
margin: 0 auto;
|
||
}
|
||
.imgnavbar-list .imgnavbar-item {
|
||
height: auto;
|
||
float: left;
|
||
padding: 0rpx 10rpx;
|
||
margin-bottom: 30rpx;
|
||
margin-top: 12rpx;
|
||
text-align: center;
|
||
}
|
||
.imgnavbar-list .imgnavbar-item image {
|
||
width: 86rpx;
|
||
height: 86rpx;
|
||
margin-bottom: 6rpx;
|
||
}
|
||
.imgnavbar-item-text {
|
||
font-size: 26rpx;
|
||
color: #666;
|
||
width: 100%;
|
||
overflow: hidden;
|
||
text-overflow: ellipsis;
|
||
white-space: nowrap;
|
||
}
|
||
.imgnavbar-list.row3 .imgnavbar-item {
|
||
width: 33.3%;
|
||
}
|
||
.imgnavbar-list.row4 .imgnavbar-item {
|
||
width: 25%;
|
||
}
|
||
.imgnavbar-list.row5 .imgnavbar-item {
|
||
width: 20%;
|
||
}
|
||
.imgnavbar-list.row5 .imgnavbar-item .imgnavbar-item-text {
|
||
font-size: 30rpx;
|
||
}
|
||
.notice {
|
||
height: 70rpx;
|
||
margin-top: 10rpx;
|
||
position: relative;
|
||
overflow: hidden;
|
||
background-color: #fff;
|
||
color: #333;
|
||
background: #FFECEB;
|
||
border-radius: 16rpx;
|
||
width: 100%;
|
||
}
|
||
.notice-icon {
|
||
display: inline-block;
|
||
height: 40rpx;
|
||
position: absolute;
|
||
top: 59%;
|
||
left: 26rpx;
|
||
-webkit-transform: translateY(-50%);
|
||
transform: translateY(-50%);
|
||
overflow: hidden;
|
||
}
|
||
.notice-icon image {
|
||
width: 30rpx;
|
||
height: 30rpx;
|
||
float: left;
|
||
}
|
||
.notice-row {
|
||
margin-left: 10rpx;
|
||
height: 50rpx;
|
||
line-height: 50rpx;
|
||
width: 672rpx;
|
||
display: inline-block;
|
||
font-size: 28rpx;
|
||
float: left;
|
||
}
|
||
.nav {
|
||
height: 300rpx;
|
||
width: 100%;
|
||
}
|
||
.nav .swiper {
|
||
height: 300rpx;
|
||
width: 100%;
|
||
overflow: hidden;
|
||
}
|
||
.nav .swiper image {
|
||
height: 300rpx;
|
||
width: 100%;
|
||
}
|
||
.lc {
|
||
margin-bottom: 6px;
|
||
}
|
||
.lc image {
|
||
height: 248rpx;
|
||
width: 100%;
|
||
}
|
||
.problem_header {
|
||
background-color: #fff;
|
||
padding: -2px 0px 1px 5px;
|
||
justify-content: space-between;
|
||
display: flex;
|
||
}
|
||
.problem_header .left {
|
||
border-left: solid 3px #46b45d;
|
||
padding-left: 4px;
|
||
font-size: 30rpx;
|
||
color: #333;
|
||
font-weight: bold;
|
||
margin-left: 4px;
|
||
margin-top: 15px;
|
||
}
|
||
.problem_header .right {
|
||
float: right;
|
||
margin-right: 25px;
|
||
font-size: 12px;
|
||
margin-top: 15px;
|
||
}
|
||
.problem {
|
||
background-color: #fff;
|
||
}
|
||
.problem .problem_main {
|
||
width: 92%;
|
||
margin: 0 auto;
|
||
padding-bottom: 10px;
|
||
}
|
||
.problem .problem_main .li {
|
||
padding-top: 20rpx;
|
||
border-bottom: 1px solid #eee;
|
||
}
|
||
.problem .problem_main .li .left {
|
||
overflow: hidden;
|
||
margin-bottom: 20rpx;
|
||
}
|
||
.problem .problem_main .li .left .left_1 {
|
||
float: left;
|
||
height: 4vh;
|
||
width: 4vh;
|
||
}
|
||
.problem .problem_main .li .left .left_2 {
|
||
font-size: 30rpx;
|
||
float: left;
|
||
width: 90%;
|
||
}
|
||
.problem .problem_main .li .left .left_3 {
|
||
font-size: 24rpx;
|
||
float: left;
|
||
width: 92%;
|
||
color: #676767;
|
||
padding-left: 12px;
|
||
}
|
||
.problem .problem_main .li:last-child {
|
||
border: none;
|
||
}
|
||
.orderLabel {
|
||
font-weight: bold;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
}
|
||
.orderLabel .leftLine {
|
||
height: 25rpx;
|
||
border-left: 9rpx solid #FB8F0C;
|
||
margin-right: 10rpx;
|
||
}
|
||
.addressBtn {
|
||
background: #FFF4E6;
|
||
border-radius: 22rpx;
|
||
padding: 10rpx 23rpx;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #FB8F0C;
|
||
}
|
||
.remarkBox {
|
||
background: #F2F2F2;
|
||
border-radius: 20rpx;
|
||
padding: 23rpx 28rpx;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
margin-top: 10rpx;
|
||
}
|
||
.timeLabel {
|
||
font-weight: bold;
|
||
font-size: 28rpx;
|
||
color: #FB8F0C;
|
||
}
|
||
.timeLabel2 {
|
||
font-weight: bold;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
margin-left: 21rpx;
|
||
}
|
||
.distant {
|
||
font-weight: 500;
|
||
font-size: 22rpx;
|
||
color: #333333;
|
||
}
|
||
.navbar {
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: space-between;
|
||
align-items: flex-end;
|
||
padding-left: 66rpx;
|
||
height: 90rpx !important;
|
||
top: calc(118rpx + 25px);
|
||
z-index: 99;
|
||
}
|
||
.navbar .item {
|
||
font-weight: bold;
|
||
font-size: 32rpx;
|
||
line-height: 32rpx;
|
||
color: #333333;
|
||
border-bottom-color: #FB8F0C;
|
||
border-bottom: 9rpx solid #FB8F0C;
|
||
color: #282828;
|
||
box-sizing: border-box;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: flex-start;
|
||
padding-bottom: 22rpx;
|
||
}
|
||
.navbar2 {
|
||
position: fixed;
|
||
left: 0;
|
||
width: 100%;
|
||
top: 101px;
|
||
background: #F5F5FA;
|
||
z-index: 999;
|
||
padding: 10rpx 10rpx;
|
||
top: calc(207rpx + 25px);
|
||
overflow: auto;
|
||
}
|
||
.navItem {
|
||
width: 116rpx;
|
||
flex-shrink: 0;
|
||
background: #FFF;
|
||
border-radius: 10rpx;
|
||
border: 1px solid #FFF;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
padding: 23rpx 15rpx;
|
||
margin: 0 10rpx;
|
||
}
|
||
.navItemCheck {
|
||
border: 1px solid #FFD39E;
|
||
background: #FFFDFB;
|
||
color: #FB8F0C;
|
||
}
|
||
.headBox {
|
||
margin-top: 25px;
|
||
display: flex;
|
||
flex-direction: row;
|
||
justify-content: space-between;
|
||
align-items: flex-end;
|
||
padding-bottom: 16rpx;
|
||
}
|
||
.orderText {
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
padding-right: 39rpx;
|
||
}
|
||
.contactText {
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
}
|
||
.lineEle {
|
||
border-bottom: 1rpx solid #DEDEDE;
|
||
margin-top: 29rpx;
|
||
}
|
||
.statusText1 {
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
position: relative;
|
||
}
|
||
.floatBtnBox {
|
||
position: absolute;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
background: #FFFFFF;
|
||
box-shadow: 0rpx 2rpx 46rpx 0rpx rgba(112, 78, 38, 0.15);
|
||
border-radius: 10rpx;
|
||
width: 147rpx;
|
||
padding: 18rpx 0rpx;
|
||
text-align: center;
|
||
bottom: 60rpx;
|
||
left: 0;
|
||
}
|
||
.floatBtnEle {
|
||
padding: 20rpx 0;
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #333333;
|
||
}
|
||
.btnLine {
|
||
width: 99rpx;
|
||
border-bottom: 1rpx solid #DEDEDE;
|
||
}
|
||
.popBoxOne {
|
||
width: 520rpx;
|
||
height: 620rpx;
|
||
background: linear-gradient(0deg, #FFFFFF 0%, #FFF3EA 100%);
|
||
border-radius: 30rpx;
|
||
position: relative;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-start;
|
||
align-items: center;
|
||
}
|
||
.popBoxOne .popOneImg {
|
||
width: 429rpx;
|
||
height: 429rpx;
|
||
position: absolute;
|
||
top: -182rpx;
|
||
left: 0;
|
||
right: 0;
|
||
margin: 0 auto;
|
||
}
|
||
.popBoxOne .popOneText1 {
|
||
font-weight: bold;
|
||
font-size: 36rpx;
|
||
color: #181622;
|
||
margin-top: 205rpx;
|
||
}
|
||
.popBoxOne .popOneText2 {
|
||
font-weight: 500;
|
||
font-size: 26rpx;
|
||
color: #181622;
|
||
margin-top: 26rpx;
|
||
}
|
||
.popBoxOne .popOneText3 {
|
||
font-weight: 500;
|
||
font-size: 26rpx;
|
||
color: #181622;
|
||
}
|
||
.popBoxOne .popOneBtn {
|
||
width: 260rpx;
|
||
height: 90rpx;
|
||
background: #FB8F0C;
|
||
border-radius: 45rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #FFFFFF;
|
||
margin-top: 72rpx;
|
||
}
|
||
.popBoxTwo {
|
||
width: 520rpx;
|
||
height: 800rpx;
|
||
}
|
||
.popBoxTwo .popTwoImg {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: 1;
|
||
}
|
||
.popBoxTwo .popContent {
|
||
position: absolute;
|
||
left: 0;
|
||
top: 0;
|
||
width: 100%;
|
||
height: 100%;
|
||
z-index: 2;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: flex-start;
|
||
align-items: center;
|
||
}
|
||
.popBoxTwo .popContent .popTwoText1 {
|
||
font-weight: bold;
|
||
font-size: 48rpx;
|
||
color: #7F5C2A;
|
||
line-height: 60rpx;
|
||
margin-top: 106rpx;
|
||
}
|
||
.popBoxTwo .popContent .popTwoText2 {
|
||
font-weight: bold;
|
||
font-size: 36rpx;
|
||
color: #4F3D24;
|
||
margin-top: 29rpx;
|
||
}
|
||
.popBoxTwo .popContent .popTwoText3 {
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #B8A58B;
|
||
}
|
||
.popBoxTwo .popContent .popTwoText4 {
|
||
width: 420rpx;
|
||
height: 60rpx;
|
||
line-height: 60rpx;
|
||
padding-left: 27rpx;
|
||
background: rgba(255, 141, 96, 0.1);
|
||
border-radius: 10rpx;
|
||
font-weight: 400;
|
||
font-size: 24rpx;
|
||
color: #C56742;
|
||
margin-top: 15rpx;
|
||
}
|
||
.popBoxTwo .popContent .popTowHeadImg {
|
||
width: 300rpx;
|
||
height: 300rpx;
|
||
background: #FCA30D;
|
||
border-radius: 30rpx;
|
||
margin-top: 23rpx;
|
||
}
|
||
.popBoxTwo .popContent .text1 {
|
||
font-weight: 500;
|
||
font-size: 24rpx;
|
||
color: #000000;
|
||
}
|
||
.popBoxTwo .popContent .status {
|
||
width: 80rpx;
|
||
height: 36rpx;
|
||
line-height: 36rpx;
|
||
background: #FF8D60;
|
||
border-radius: 10rpx;
|
||
font-weight: 500;
|
||
font-size: 20rpx;
|
||
color: #FFFFFF;
|
||
margin-left: 9rpx;
|
||
text-align: center;
|
||
}
|
||
.popBoxThree {
|
||
width: 620rpx;
|
||
height: 900rpx;
|
||
background: linear-gradient(0deg, #FFFFFF 0%, #FFF6F1 100%);
|
||
border-radius: 30rpx;
|
||
border: 2px solid #FFFFFF;
|
||
}
|
||
.popBoxThree .popThreeText1 {
|
||
font-weight: bold;
|
||
font-size: 36rpx;
|
||
color: #000000;
|
||
text-align: center;
|
||
margin-top: 46rpx;
|
||
}
|
||
.popBoxThree .popThreeLine {
|
||
width: 40rpx;
|
||
height: 9rpx;
|
||
background: #FF907A;
|
||
margin: 17rpx auto;
|
||
}
|
||
.popBoxThree .popThreeText2 {
|
||
width: 530rpx;
|
||
height: 616rpx;
|
||
font-weight: 400;
|
||
font-size: 28rpx;
|
||
color: #000000;
|
||
overflow: auto;
|
||
margin: 22rpx auto;
|
||
}
|
||
.popBoxThree .popThreeBtn1 {
|
||
width: 260rpx;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
background: #F6F6F6;
|
||
border-radius: 40rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
text-align: center;
|
||
}
|
||
.popBoxThree .popThreeBtn2 {
|
||
width: 260rpx;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
background: #FB7D06;
|
||
border-radius: 40rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #fff;
|
||
text-align: center;
|
||
margin-left: 20rpx;
|
||
}
|
||
.pop4Box {
|
||
width: 640rpx;
|
||
height: 480rpx;
|
||
background: #FFFFFF;
|
||
border-radius: 30rpx;
|
||
}
|
||
.pop4Box .pop4Title {
|
||
font-weight: bold;
|
||
font-size: 36rpx;
|
||
color: #000000;
|
||
}
|
||
.pop4Box .pop4Input {
|
||
width: 560rpx;
|
||
height: 173rpx;
|
||
background: #EFEFEF;
|
||
border-radius: 7rpx;
|
||
margin: 29rpx auto 0;
|
||
}
|
||
.pop4Box .pop4Btn1 {
|
||
width: 260rpx;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
background: #F6F6F6;
|
||
border-radius: 40rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #333333;
|
||
text-align: center;
|
||
}
|
||
.pop4Box .pop4Btn2 {
|
||
width: 260rpx;
|
||
height: 80rpx;
|
||
line-height: 80rpx;
|
||
background: #FB7D06;
|
||
border-radius: 40rpx;
|
||
font-weight: 500;
|
||
font-size: 28rpx;
|
||
color: #fff;
|
||
text-align: center;
|
||
margin-left: 20rpx;
|
||
}
|
||
.twoMenuBox {
|
||
position: fixed;
|
||
top: calc(118rpx + 25px);
|
||
left: 0;
|
||
padding: 0 35rpx 16rpx;
|
||
box-sizing: border-box;
|
||
width: 100%;
|
||
background: #FBF9F7;
|
||
z-index: 99;
|
||
}
|
||
.blockBox1 {
|
||
height: 165rpx;
|
||
}
|