first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
@import "normalize";
@import "colors";
@import "mixins";

View File

@@ -0,0 +1,20 @@
@theme: red;
body,ul,li,p,h1,h2,h3,h4,h5,h6 {
margin: 0;
padding: 0;
}
li {
list-style: none;
}
a {
text-decoration: none;
}
input {
outline: none;
border: none;
padding: 0;
}

View File

@@ -0,0 +1,185 @@
.hairline(@position, @color) when (@position = top) {
&:before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: auto;
right: auto;
height: 1px;
width: 100%;
background-color: @color;
display: block;
z-index: 15;
// .transform-origin(50% 0%);
html.pixel-ratio-2 & {
.transform(scaleY(0.5));
}
html.pixel-ratio-3 & {
.transform(scaleY(0.33));
}
}
}
.hairline(@position, @color) when (@position = left) {
&:before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: auto;
right: auto;
width: 1px;
height: 100%;
background-color: @color;
display: block;
z-index: 15;
// .transform-origin(0% 50%);
html.pixel-ratio-2 & {
.transform(scaleX(0.5));
}
html.pixel-ratio-3 & {
.transform(scaleX(0.33));
}
}
}
.hairline(@position, @color) when (@position = bottom) {
&:after {
content: '';
position: absolute;
left: 0;
bottom: 0;
right: auto;
top: auto;
height: 1px;
width: 100%;
background-color: @color;
display: block;
z-index: 15;
html.pixel-ratio-2 & {
.transform(scaleY(0.5));
}
html.pixel-ratio-3 & {
.transform(scaleY(0.33));
}
}
}
.hairline(@position, @color) when (@position = right) {
&:after {
content: '';
position: absolute;
right: 0;
top: 0;
left: auto;
bottom: auto;
width: 1px;
height: 100%;
background-color: @color;
display: block;
z-index: 15;
// .transform-origin(100% 50%);
html.pixel-ratio-2 & {
.transform(scaleX(0.5));
}
html.pixel-ratio-3 & {
.transform(scaleX(0.33));
}
}
}
// Shadow
.depth(@level:1) {
& when (@level = 0) {
box-shadow: none;
}
& when (@level = 1) {
box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12);
}
& when (@level = 2) {
box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
}
& when (@level = 3) {
box-shadow: 0 3px 3px -2px rgba(0,0,0,.2),0 3px 4px 0 rgba(0,0,0,.14),0 1px 8px 0 rgba(0,0,0,.12);
}
& when (@level = 4) {
box-shadow: 0 2px 4px -1px rgba(0,0,0,.2),0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12);
}
& when (@level = 5) {
box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 5px 8px 0 rgba(0,0,0,.14),0 1px 14px 0 rgba(0,0,0,.12);
}
& when (@level = 6) {
box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
}
& when (@level = 7) {
box-shadow: 0 4px 5px -2px rgba(0,0,0,.2),0 7px 10px 1px rgba(0,0,0,.14),0 2px 16px 1px rgba(0,0,0,.12);
}
& when (@level = 8) {
box-shadow: 0 5px 5px -3px rgba(0,0,0,.2),0 8px 10px 1px rgba(0,0,0,.14),0 3px 14px 2px rgba(0,0,0,.12);
}
& when (@level = 9) {
box-shadow: 0 5px 6px -3px rgba(0,0,0,.2),0 9px 12px 1px rgba(0,0,0,.14),0 3px 16px 2px rgba(0,0,0,.12);
}
& when (@level = 10) {
box-shadow: 0 6px 6px -3px rgba(0,0,0,.2),0 10px 14px 1px rgba(0,0,0,.14),0 4px 18px 3px rgba(0,0,0,.12);
}
& when (@level = 11) {
box-shadow: 0 6px 7px -4px rgba(0,0,0,.2),0 11px 15px 1px rgba(0,0,0,.14),0 4px 20px 3px rgba(0,0,0,.12);
}
& when (@level = 12) {
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 12px 17px 2px rgba(0,0,0,.14),0 5px 22px 4px rgba(0,0,0,.12);
}
& when (@level = 13) {
box-shadow: 0 7px 8px -4px rgba(0,0,0,.2),0 13px 19px 2px rgba(0,0,0,.14),0 5px 24px 4px rgba(0,0,0,.12);
}
& when (@level = 14) {
box-shadow: 0 7px 9px -4px rgba(0,0,0,.2),0 14px 21px 2px rgba(0,0,0,.14),0 5px 26px 4px rgba(0,0,0,.12);
}
& when (@level = 15) {
box-shadow: 0 8px 9px -5px rgba(0,0,0,.2),0 15px 22px 2px rgba(0,0,0,.14),0 6px 28px 5px rgba(0,0,0,.12);
}
& when (@level = 16) {
box-shadow: 0 8px 10px -5px rgba(0,0,0,.2),0 16px 24px 2px rgba(0,0,0,.14),0 6px 30px 5px rgba(0,0,0,.12);
}
& when (@level = 17) {
box-shadow: 0 8px 11px -5px rgba(0,0,0,.2),0 17px 26px 2px rgba(0,0,0,.14),0 6px 32px 5px rgba(0,0,0,.12);
}
& when (@level = 18) {
box-shadow: 0 9px 11px -5px rgba(0,0,0,.2),0 18px 28px 2px rgba(0,0,0,.14),0 7px 34px 6px rgba(0,0,0,.12);
}
& when (@level = 19) {
box-shadow: 0 9px 12px -6px rgba(0,0,0,.2),0 19px 29px 2px rgba(0,0,0,.14),0 7px 36px 6px rgba(0,0,0,.12);
}
& when (@level = 20) {
box-shadow: 0 10px 13px -6px rgba(0,0,0,.2),0 20px 31px 3px rgba(0,0,0,.14),0 8px 38px 7px rgba(0,0,0,.12);
}
& when (@level = 21) {
box-shadow: 0 10px 13px -6px rgba(0,0,0,.2),0 21px 33px 3px rgba(0,0,0,.14),0 8px 40px 7px rgba(0,0,0,.12);
}
& when (@level = 22) {
box-shadow: 0 10px 14px -6px rgba(0,0,0,.2),0 22px 35px 3px rgba(0,0,0,.14),0 8px 42px 7px rgba(0,0,0,.12);
}
& when (@level = 23) {
box-shadow: 0 11px 14px -7px rgba(0,0,0,.2),0 23px 36px 3px rgba(0,0,0,.14),0 9px 44px 8px rgba(0,0,0,.12);
}
& when (@level = 24) {
box-shadow: 0 11px 15px -7px rgba(0,0,0,.2),0 24px 38px 3px rgba(0,0,0,.14),0 9px 46px 8px rgba(0,0,0,.12);
}
}
.no-scrollbar() {
&::-webkit-scrollbar {
display: none !important;
width: 0 !important;
height: 0 !important;
-webkit-appearance: none;
opacity: 0 !important;
}
}
.ellipsis() {
white-space:nowrap;
text-overflow:ellipsis;
overflow:hidden;
word-wrap: break-word;
}

View File

@@ -0,0 +1,420 @@
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
html {
font-family: sans-serif; /* 1 */
-ms-text-size-adjust: 100%; /* 2 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/**
* Remove the margin in all browsers (opinionated).
*/
body {
margin: 0;
}
/* HTML5 display definitions
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
* 2. Add the correct display in IE.
*/
article,
aside,
details, /* 1 */
figcaption,
figure,
footer,
header,
main, /* 2 */
menu,
nav,
section,
summary { /* 1 */
display: block;
}
/**
* Add the correct display in IE 9-.
*/
audio,
canvas,
progress,
video {
display: inline-block;
}
/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
display: none;
height: 0;
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Add the correct display in IE 10-.
* 1. Add the correct display in IE.
*/
template, /* 1 */
[hidden] {
display: none;
}
/* Links
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
background-color: transparent; /* 1 */
-webkit-text-decoration-skip: objects; /* 2 */
}
/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
outline-width: 0;
}
/* Text-level semantics
========================================================================== */
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
font-weight: inherit;
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* Add the correct font style in Android 4.3-.
*/
dfn {
font-style: italic;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/**
* Add the correct background and color in IE 9-.
*/
mark {
background-color: #ff0;
color: #000;
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10-.
*/
img {
border-style: none;
}
/**
* Hide the overflow in IE.
*/
svg:not(:root) {
overflow: hidden;
}
/* Grouping content
========================================================================== */
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
pre,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
* Add the correct margin in IE 8.
*/
figure {
margin: 1em 40px;
}
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/* Forms
========================================================================== */
/**
* 1. Change font properties to `inherit` in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
select,
textarea {
font: inherit; /* 1 */
margin: 0; /* 2 */
}
/**
* Restore the font weight unset by the previous rule.
*/
optgroup {
font-weight: bold;
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input { /* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
text-transform: none;
}
/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
* controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"], /* 1 */
[type="reset"],
[type="submit"] {
-webkit-appearance: button; /* 2 */
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
border: 1px solid #c0c0c0;
margin: 0 2px;
padding: 0.35em 0.625em 0.75em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
* Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* Correct the text style of placeholders in Chrome, Edge, and Safari.
*/
::-webkit-input-placeholder {
color: inherit;
opacity: 0.54;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}

View File

@@ -0,0 +1,342 @@
@import "../_";
.index{
}
.header{
position: fixed;
background: #fff;
top: 0;
left: 0;
right: 0;
z-index: 999;
padding-left: 32rpx;
padding-right: 32rpx;
padding-top:calc(var(--status-bar-height) + 16px);
padding-bottom: 32rpx;
border-bottom: 1px solid #f5f5f5;
.search{
height: 80rpx;
background: #f5f5f5;
border-radius: 8rpx;
font-size: 32rpx;
color: #999;
display: flex;
align-items: center;
padding-left: 30rpx;
}
.iconfont{
margin-right: 20rpx;
margin-top: 4rpx;
font-size: 40rpx;
}
span{
font-size: 32rpx;
color: #999;
}
}
.content{
margin-top:calc(var(--status-bar-height) + 150rpx);
padding-left: 32rpx;
padding-right: 32rpx;
}
.title_a{
font-size: 60rpx;
font-weight: 600;
color: #333;
line-height: 72rpx;
margin-bottom: 32rpx;
}
.banner{
width: 100%;
border-radius: 30rpx;
height: 100%;
}
.title_b{
margin-top: 20rpx;
font-size: 60rpx;
font-weight: 600;
color: #333;
line-height: 72rpx;
}
.tab{
margin-top: 30rpx;
display: flex;
align-items: center;
justify-content:center;
width: 326rpx;
height: 84rpx;
border-radius: 60rpx;
box-shadow: 0rpx 0rpx 24rpx rgba(0 ,0, 0,10%);
background: #fe9b95;
image{
margin-right: 20rpx;
height: 36rpx;
width: 36rpx;
}
span{
font-size: 26rpx;
color: #ffffff;
font-weight: 600;
}
}
.top_tab{
display: flex;
align-items: center;
justify-content: space-between;
}
.tab_2{
margin-top: 30rpx;
display: flex;
align-items: center;
justify-content:center;
width: 326rpx;
height: 84rpx;
border-radius: 60rpx;
box-shadow: 0px 0px 24rpx rgba(0 ,0, 0,10%);
background: #ffffff;
image{
margin-right: 10rpx;
height: 36rpx;
width: 36rpx;
}
span{
font-size: 26rpx;
color: #000000;
font-weight: 600;
}
}
.top_3{
margin-top: 30rpx;
width: 206rpx;
height: 84rpx;
display: flex;
align-items: center;
justify-content:center;
border-radius: 60rpx;
box-shadow: 0px 0px 24rpx rgba(0 ,0, 0,10%);
background: #ffffff;
image{
margin-right: 10rpx;
height: 36rpx;
width: 36rpx;
}
span{
font-size: 26rpx;
color: #000000;
font-weight: 600;
}
}
.title_c{
margin-top: 30rpx;
font-size: 32rpx;
font-weight: 600;
color: #999;
margin-bottom: 20rpx;
}
.threeMeals_top{
display: flex;
align-items: flex-end;
}
.threeMeals_text{
font-size: 32rpx;
color: #666;
margin-right: 40rpx;
position: relative;
}
.active{
font-size: 60rpx;
font-weight: 600;
color: #333;
}
.active:after {
content: "";
position: absolute;
background: #ff9d9b;
width: 100%;
height: 6px;
border-radius: 3px;
left: 0;
bottom: 0px;
z-index: -2;
}
.list_data{
width: 46%;
margin-right: 16rpx;
image{
width: 100%;
height: 448rpx;
border-radius: 14rpx;
}
p{
font-size: 36rpx;
font-weight: 600;
color: #333;
display: block;
height: 56rpx;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 56rpx;
padding: 24rpx 0rpx 4rpx;
}
.txt{
font-size: 16rpx;
width: 36rpx;
height: 24rpx;
line-height: 24rpx;
border-radius: 4rpx;
color: #fff;
padding: 0rpx 6rpx;
font-weight: 600;
background: #ff8d8d;
}
.txt_2{
background: #fff2f2;
border-radius: 4rpx;
margin: 16rpx 32rpx 0rpx 0rpx;
padding: 8rpx 12rpx 8rpx 12rpx;
box-sizing: border-box;
display: inline-block;
font-size: 22rpx;
color: #ff8d8d;
overflow: hidden;
text-overflow: ellipsis;
.ellipsis()
}
}
.swiper-box{
margin-top: 40rpx;
height: 660rpx;
width: 100%;
}
/deep/.uni-scroll-view-content{
display: flex;
justify-content: space-between;
align-items: center;
}
.title_d{
font-size: 32rpx;
font-weight: 600;
color: #999;
margin-bottom: 20rpx;
}
.title_d_top{
display: flex;
align-items: flex-end;
margin-bottom: 10px;
}
.title_d_top_text{
font-size: 16px;
color: #666;
margin-right: 20px;
position: relative;
}
.active_2{
font-size: 30px;
font-weight: 600;
color: #333;
}
.active_2:after {
content: "";
position: absolute;
background: #ff9d9b;
width: 100%;
height: 6px;
border-radius: 3px;
left: 0;
bottom: 0px;
z-index: -2;
}
.title_d_content{
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap:wrap;
}
.title_d_content_list{
margin-bottom: 20px;
height: 672rpx;
width: 47%;
.food_img{
width: 100%;
height: 224px;
border-radius: 7px;
}
p{
font-size: 18px;
font-weight: 600;
color: #333;
display: block;
height: 28px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
line-height: 28px;
padding: 12px 0px 2px;
}
.yyy{
font-size: 8px;
width: 18px;
height: 12px;
line-height: 12px;
border-radius: 2px;
color: #fff;
padding: 0px 3px;
font-weight: 600;
background: #ff8d8d;
}
.dddd{
background: #fff2f2;
border-radius: 2px;
margin: 8px 16px 0px 0px;
padding: 4px 6px 4px 6px;
box-sizing: border-box;
display: inline-block;
font-size: 11px;
color: #ff8d8d;
overflow: hidden;
text-overflow: ellipsis;
}
.user{
display: flex;
align-items: center;
justify-content: space-between;
}
.user_left{
display: flex;
align-items: center;
.user_img{
height: 18px;
width: 18px;
margin-right: 5px;
border-radius: 9px;
box-shadow: 0px 1px 3px rgb(0 0 0 / 10%);
}
.tit{
width: 90px;
margin-left:5px;
height: 18px;
font-size: 9px;
zoom: 0.9;
color: #666;
max-width: 45%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.user_right{
display: flex;
align-items: center;
.sssss{
margin-right: 5px;
}
.nubs{
color: #666;
font-size: 9px;
zoom: 0.9;
}
}
}

View File

@@ -0,0 +1,13 @@
.content{
image{
width: 100%;
}
.title{
font-size: 44rpx;
font-weight: 700;
color: #1b1b1b;
line-height: 72rpx;
margin: 0px 8rpx;
margin-top: 20rpx;
}
}

View File

@@ -0,0 +1,94 @@
.header{
position: fixed;
background: #fff;
top: 0;
left: 0;
right: 0;
z-index: 999;
padding-left: 32rpx;
padding-right: 32rpx;
padding-top:calc(var(--status-bar-height) + 32rpx);
padding-bottom: 32rpx;
border-bottom: 1px solid #f5f5f5;
.search{
height: 80rpx;
background: #f5f5f5;
border-radius: 8rpx;
font-size: 32rpx;
color: #999;
display: flex;
align-items: center;
padding-left: 30rpx;
}
.iconfont{
margin-right: 20rpx;
margin-top: 4rpx;
font-size: 40rpx;
}
span{
font-size: 32rpx;
color: #999;
}
}
.left{
height: 100%;
width: 160rpx;
position: fixed;
left: 0px;
bottom: 0px;
z-index: 210;
background: #f5f5f5;
box-sizing: border-box;
padding-top:calc(var(--status-bar-height) + 130rpx);
}
.aaa{
background: url(../../../static/img/2019.png);
display: inline-block;
height: 50rpx;
width: 50rpx;
background-size: 50rpx 1000rpx;
}
.title{
padding-top: 10px;
padding-bottom: 10px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
span{
padding-top: 3px;
line-height: 24px;
color: #333;
font-size: 12px;
}
}
.active{
background: #ffffff;
}
.right{
margin-left: 160rpx;
padding-left: 12rpx;
padding-right: 12rpx;
display: flex;
align-items: center;
flex-wrap: wrap;
overflow: hidden;
overflow-y: overlay;
height: 100%;
padding-top:calc(var(--status-bar-height) + 152rpx);
background: #ffffff;
}
.title_a{
width: 29%;
display: flex;
align-items: center;
flex-direction: column;
padding: 0px 6px;
image{
width: 124rpx;
height: 124rpx;
}
}

View File

@@ -0,0 +1,259 @@
@import "../_";
.pad{
padding-top:var(--status-bar-height);
}
.top{
background: #ffffff;
z-index: 9999;
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
height: 120rpx;
border-bottom: 1px solid #f5f5f5;
display: flex;
align-items: center;
justify-content: space-between;
padding-top:calc(var(--status-bar-height));
image{
width: 156rpx;
height: 80rpx;
}
.search{
width: 300rpx;
height: 80rpx;
background: #ffffff;
display: flex;
align-items: center;
border-radius: 6rpx;
background-color: #f5f5f5;
box-sizing: border-box;
}
i{
font-size: 40rpx;
margin-right: 10rpx;
}
span{
font-size: 30rpx;
color: #767676;
}
.sousuo{
width: 100rpx;
height: 80rpx;
background: #FE552F;
color: #fff;
text-align: center;
line-height: 80rpx;
border-radius: 6rpx;
}
.caipu{
height: 80rpx;
color: #fe552f;
background: #fcefec;
width: 80rpx;
text-align: center;
margin-right: 10rpx;
box-sizing: border-box;
}
}
.iconfont{
margin-left: 15px;
display: inline-block;
font-size: 20px;
}
.content{
padding-top:calc(var(--status-bar-height)+ 122rpx);
.back{
width: 100%;
height: 375px;
}
}
.content_1{
padding: 0 15px;
.text{
width: 100%;
background: #fff;
border-radius: 16px;
box-shadow: 0px 0px 32px rgba(0 ,0, 0, 10%);
position: relative;
top: -55px;
padding: 20px 15px 30px;
box-sizing: border-box;
}
.text_1{
font-size: 28px;
font-weight: 700;
color: #333;
line-height: 38px;
}
.posttime{
font-size: 12px;
color: #999;
line-height: 20px;
display: block;
padding: 4px 0px 0px;
border-bottom: 1px solid #f5f5f5
}
}
.list_1{
display: flex;
align-items: center;
span{
display: inline-block;
font-size: 24rpx;
zoom: 0.9;
line-height: 17px;
flex: 1;
color: #4dd196;
}
.jdw {
height: 5px;
border-radius: 3px;
flex: 4;
background: #ebfbf4;
}
.jd {
height: 5px;
border-radius: 3px;
background: #4dd196;
}
}
.list{
margin: 10px 0px 10px;
position: relative;
}
.tips{
font-size: 10px;
color: #999;
line-height: 24px;
text-align: center;
}
.cpargsw{
display: flex;
justify-content: space-around;
margin-top: 17px;
}
.title_2{
display: flex;
align-items: center;
flex-direction: column;
i{
background: url("../../../static/img/2020.png");
height: 60rpx;
width: 60rpx;
display: inline-block;
background-size: 60rpx 300rpx;
}
span{
font-size: 12px;
line-height: 24px;
color: #666666;
}
}
.text_2{
font-weight: 400;
text-align: justify;
font-size: 14px;
color: #999999;
line-height: 21px;
display: block;
}
.text_2_1{
color: #5a92f5;
font-size: 14px;
line-height: 27px;
display: flex;
align-items: center;
justify-content: flex-end;
background-image: linear-gradient(to right,rgba(255,255,255,0.1),rgba(255,255,255,0.5),rgba(255,255,255,1),rgba(255,255,255,1),rgba(255,255,255,1),rgba(255,255,255,1));
.ssss{
margin-left: 2px !important;
}
.shang{
transform:rotate(90deg);
}
.xia{
transform:rotate(-90deg)
}
}
.showdata{
height: 20px;
overflow: hidden;
}
.text_3{
font-size: 16px;
color: #333;
font-weight: 700;
margin-top: 20px;
}
.text_3_1{
margin-top: 15px;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
border-top: 1px solid rgba(0,0,0,0.05);
}
.text_3_2{
display: flex;
align-items: center;
justify-content: space-between;
width: 49%;
height: 36px;
border-bottom: 1px solid rgba(0,0,0,0.05);
border-right: 1px solid rgba(0,0,0,0.05);
}
.list_title{
color: #108ee9;
padding-left: 20px;
font-size: 14px;
box-sizing: border-box;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
margin-right: 15px;
}
.list_nums{
margin-right: 15px;
font-size: 14px;
color: #666;
font-weight: 400;
}
.step{
margin-top: -29px;
}
.title_0{
padding: 10px 10px;
margin-bottom: 30px;
font-size: 16px;
line-height: 24px;
color: #666;
font-weight: 400;
}
.step_list{
position: relative;
}
image{
width: 100%;
}
.step_list_1{
height: 40px;
line-height: 40px;
color: #333;
font-size: 18px;
font-weight: 700;
padding: 0px 20px 0px 15px;
background: rgba(255,255,255,0.9);
position: absolute;
left: 0px;
top: 15px;
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
z-index: 100;
}

View File

@@ -0,0 +1,120 @@
@import "../_";
.pad{
padding-top:var(--status-bar-height);
}
.top{
background: #ffffff;
z-index: 9999;
position: fixed;
top: 0;
right: 0;
left: 0;
width: 100%;
height: 120rpx;
border-bottom: 1px solid #f5f5f5;
display: flex;
align-items: center;
justify-content: space-between;
padding-top:calc(var(--status-bar-height));
image{
width: 156rpx;
height: 80rpx;
}
.search{
width: 380rpx;
height: 80rpx;
background: #ffffff;
display: flex;
align-items: center;
border-radius: 6rpx;
background-color: #f5f5f5;
box-sizing: border-box;
}
i{
font-size: 40rpx;
margin-right: 10rpx;
}
span{
font-size: 30rpx;
color: #767676;
}
.sousuo{
width: 100rpx;
height: 80rpx;
background: #FE552F;
color: #fff;
text-align: center;
line-height: 80rpx;
border-radius: 6rpx;
}
.caipu{
height: 80rpx;
color: #fe552f;
background: #fcefec;
width: 80rpx;
text-align: center;
margin-right: 10rpx;
box-sizing: border-box;
}
}
.content{
margin-top: 140rpx;
padding-left: 32rpx;
padding-right: 32rpx;
}
.title{
margin-top: 60rpx;
font-weight: 700;
font-size: 40rpx;
margin-bottom: 30rpx;
}
.list{
padding: 24rpx;
box-shadow: 0px 0px 64rpx rgba(0 ,0 ,0 ,10%);
border-radius: 32rpx;
}
.list_1{
width: 100%;
display: flex;
margin-bottom: 20rpx;
image{
width: 112px;
height: 90px;
border-radius: 16px;
}
}
.text{
width: 60%;
display: flex;
flex-direction: column;
justify-content: space-between;
box-sizing: border-box;
padding-left: 20px;
p{.ellipsis();
font-size: 17px;
font-weight: 400;
margin-bottom: 5px;
width: 100%;
}
.xx{
width: 12px;
height: 12px;
margin-bottom: 5px;
}
}
.neb{
display: flex;
align-items: center;
image{
margin-right: 3px;
width: 16px;
height: 16px;
}
span{
margin-right: 5px;
}
}

View File

@@ -0,0 +1,72 @@
.hader{
font-size: 0;
width: 100%;
height: 88rpx;
position: fixed;
z-index: 999;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #f0f0f0;
background: #ffffff;
padding-top:var(--status-bar-height);
i{
margin-left: 30rpx;
font-size: 44rpx;
}
}
.caipu{
height: 64rpx;
background: #eee;
border-radius: 4rpx;
color: #333;
font-size: 28rpx;
width: 480rpx;
line-height: 48rpx;
padding-left: 12rpx;
}
.ser {
margin-right: 30rpx;
height: 64rpx;
background: #ff4c39;
border-radius: 4rpx;
color: #fff;
font-size: 26rpx;
line-height: 64rpx;
text-align: center;
width: 110rpx;
}
.list{
padding: 0rpx 30rpx 30rpx 30rpx;
padding-top:calc(var(--status-bar-height) + 88rpx);
}
.list_content{
padding-top: 30rpx;
display: flex;
align-items: center;
justify-content: flex-start;
padding-bottom: 30rpx;
border-bottom: 1px solid rgba(0,0,0,0.05);
img{
width: 240rpx;
height: 200rpx;
margin-right: 30rpx;
}
.top{
font-size: 36rpx;
color: #333;
font-weight: 300;
padding: 2px 0px 0px;
}
.top_2{
font-size: 28rpx;
color: #999;
overflow: hidden;
}
}
.neir{
display: flex;
align-items: center;
justify-content: center;
font-size: 36rpx;
}

View File

@@ -0,0 +1,82 @@
@import "../_";
.food_list{
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 11px;
flex-wrap:wrap;
margin-bottom: 15px;
}
.food{
margin-top: 15px;
box-shadow: 1px 1px 9px #888888;
border-radius: 7px;
width: 170px;
}
.food_img{
position: relative;
image{
width: 100%;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
.content_img_play{
background: url("../../../static/img/i.png");
position: absolute;
display: inline-block;
width: 20px;
height: 20px;
top: 9px;
right: 8px;
background-size: 20px 40px;
}
}
.food_text{
padding-left: 10px;
padding-right: 10px;
padding-bottom: 12px;
p{
.ellipsis();
font-size: 16px;
font-weight: 600;
padding: 10px 0px 0px 0px;
}
}
.food_icon{
margin-top: 20px;
display: flex;
align-items: center;
justify-content: space-between;
.food_icon_lift{
display: flex;
align-items: center;
image{
width: 18px;
height: 18px;
border-radius: 100%;
}
span{
font-size: 11px;
color: #666;
padding-left: 5px;
}
}
.food_icon_right{
display: flex;
align-items: center;
i{
background: url("../../../static/img/i.png");
width: 13px;
height: 10px;
display: inline-block;
background-position: -4px -20px;
background-size: 20px 40px;
}
span{
font-size: 12px;
}
}
}

View File

@@ -0,0 +1,81 @@
uni-video{
width: 100%;
height: 422rpx;
}
.top{
padding: 0 20rpx;
display: flex;
align-items: center;
justify-content: space-between;
.iconfont{
font-size: 40rpx;
}
.text{
margin-left: -70rpx;
font-size: 32rpx;
color: #6e6e6e;
}
height: 60rpx;
padding-top: var(--status-bar-height);
border-bottom: 2rpx solid #b2b2b2;
}
.content_font{
padding: 20rpx 42rpx 0;
.title{
font-size: 32rpx;
font-weight: 600;
padding: 0.4rem 0rem 0rem 0rem;
line-height: 1;
}
.content_font_span {
padding: 14rpx 0 34rpx;
border-bottom: 1px solid #f1f1f1;
span{
font-size: 26rpx;
color: #999;
padding-right: 16rpx;
}
}
}
.user{
padding: 24rpx 0;
display: flex;
align-items: center;
image{
width: 92rpx;
height: 92rpx;
border-radius: 100%;
}
.user_right{
margin-left: 20rpx;
p{
font-size: 26rpx;
span{
margin-left: 18rpx;
font-size: 24rpx;
padding: 1px 2px 2px;
border: 1px solid #b2d5f3;
color: #2a9aff;
display: inline-block;
line-height: 1;
}
}
.user_p{
font-size: 26rpx;
color: #999;
margin-top: 5px;
}
}
}
.title_s{
font-size: 16px;
color: #333;
padding-bottom: 10px;
margin-top: 5px;
font-weight: 800;
}
.content_c{
font-size: 16px;
color: #333;
line-height: 27px;
}