代码拉取完成,页面将自动刷新
/**app.wxss**/
page {
/* Color 可以自定义相关配色 */
/* var属性兼容性 --> https://www.caniuse.com/#feat=css-variables */
/* 标准色 */
--red: #FD603B;
--orange: #f37b1d;
--yellow: #fbbd08;
--olive: #8dc63f;
--green: #39b54a;
--cyan: #1cbbb4;
--blue: #0081ff;
--purple: #6739b6;
--mauve: #9c26b0;
--pink: #e03997;
--brown: #a5673f;
--grey: #8799a3;
--black: #333333;
--darkGray: #666666;
--gray: #aaaaaa;
--ghostWhite: #f1f1f1;
--white: #ffffff;
/* 浅色 */
--redLight: #fadbd9;
--orangeLight: #fde6d2;
--yellowLight: #fef2ce;
--oliveLight: #e8f4d9;
--greenLight: #d7f0db;
--cyanLight: #d2f1f0;
--blueLight: #cce6ff;
--purpleLight: #e1d7f0;
--mauveLight: #ebd4ef;
--pinkLight: #f9d7ea;
--brownLight: #ede1d9;
--greyLight: #e7ebed;
/* 渐变色 */
--gradualRed: linear-gradient(45deg, #f43f3b, #ec008c);
--gradualOrange: linear-gradient(45deg, #ff9700, #ed1c24);
--gradualGreen: linear-gradient(45deg, #39b54a, #8dc63f);
--gradualPurple: linear-gradient(45deg, #9000ff, #5e00ff);
--gradualPink: linear-gradient(45deg, #ec008c, #6739b6);
--gradualBlue: linear-gradient(45deg, #0081ff, #1cbbb4);
/* 阴影透明色 */
--ShadowSize: 6rpx 6rpx 8rpx;
--redShadow: rgba(204, 69, 59, 0.2);
--orangeShadow: rgba(217, 109, 26, 0.2);
--yellowShadow: rgba(224, 170, 7, 0.2);
--oliveShadow: rgba(124, 173, 55, 0.2);
--greenShadow: rgba(48, 156, 63, 0.2);
--cyanShadow: rgba(28, 187, 180, 0.2);
--blueShadow: rgba(0, 102, 204, 0.2);
--purpleShadow: rgba(88, 48, 156, 0.2);
--mauveShadow: rgba(133, 33, 150, 0.2);
--pinkShadow: rgba(199, 50, 134, 0.2);
--brownShadow: rgba(140, 88, 53, 0.2);
--greyShadow: rgba(114, 130, 138, 0.2);
--grayShadow: rgba(114, 130, 138, 0.2);
--blackShadow: rgba(26, 26, 26, 0.2);
background-color: var(--ghostWhite);
font-size: 28rpx;
color: var(--black);
font-family: Helvetica Neue, Helvetica, sans-serif;
min-height: 100vh;
}
view, scroll-view, swiper, button, input, textarea, label, navigator, image {
box-sizing: border-box;
}
.container {
padding: 30rpx;
}
page {
background:rgba(248,248,248,1);
}
.bg-white {
background: rgba(255, 255, 255, 1);
}
.mt5 {
margin-top: 5rpx;
}
.mt8 {
margin-top: 8rpx;
}
.mt10 {
margin-top: 10rpx;
}
.mt15 {
margin-top: 15rpx;
}
.mt20 {
margin-top: 20rpx;
}
.mt25 {
margin-top: 25rpx;
}
.mt28 {
margin-top: 28rpx;
}
.mt30 {
margin-top: 30rpx;
}
.mt40 {
margin-top: 40rpx;
}
.mt50 {
margin-top: 50rpx;
}
.mt60 {
margin-top: 60rpx;
}
.mt80 {
margin-top: 80rpx;
}
.mt100 {
margin-top: 100rpx;
}
.ml5 {
margin-left: 5rpx;
}
.ml10 {
margin-left: 10rpx;
}
.ml12 {
margin-left: 12rpx;
}
.ml15 {
margin-left: 15rpx;
}
.ml20 {
margin-left: 20rpx;
}
.ml25 {
margin-left: 25rpx;
}
.ml30 {
margin-left: 30rpx;
}
.flex{
display: flex;
}
.flex-between{
display: flex;
justify-content: space-between;
}
.align-items{
display: flex;
align-items: center;
}
.flex-center{
display: flex;
justify-content: center;
}
.flex-wrap {
display: flex;
flex-wrap: wrap;
}
.flex-1 {
flex: 1;
}
.avater24 {
height: 24rpx;
width: 24rpx;
border-radius: 50%;
}
.avater40 {
height: 40rpx;
width: 40rpx;
border-radius: 50%;
}
.avater48 {
height: 48rpx;
width: 48rpx;
border-radius: 50%;
}
.avater60 {
height: 60rpx;
width: 60rpx;
border-radius: 50%;
}
.avater68 {
height: 68rpx;
width: 68rpx;
border-radius: 50%;
}
.avater80{
height: 80rpx;
width: 80rpx;
border-radius: 50%;
}
.avater100{
height: 100rpx;
width: 100rpx;
border-radius: 50%;
}
.avater120{
height: 120rpx;
width: 120rpx;
border-radius: 50%;
}
.avater140{
height: 140rpx;
width: 140rpx;
border-radius: 50%;
}
.text-left{
text-align: left;
}
.flex-column {
display: flex;
flex-direction: column;
align-items: center;
}
.ellipsis1 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
overflow: hidden;
text-overflow: ellipsis;
}
.ellipsis2 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
.ellipsis3 {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
text-overflow: ellipsis;
}
.display-none {
display: none;
}
.clearfix::before {
content: "";
display: table;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.f-contianer {
display: flex;
height: 100vh;
flex-direction: column;
}
.f-container {
display: flex;
height: 100vh;
flex-direction: column;
}
.modal-scale{
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1110;
opacity: 0;
outline: 0;
text-align: center;
transform: scale(1.2);
backface-visibility: hidden;
perspective: 2000rpx;
background: rgba(0, 0, 0, 0.5);
transition: all 0.3s ease-in-out 0s;
pointer-events: none;
}
.modal-scale::before {
content: " ";
display: inline-block;
height: 100%;
vertical-align: middle;
}
.btn {
width:100%;
height:96rpx;
background:rgba(255,255,255,1);
border-radius:48rpx;
border:1px solid rgba(232,232,232,1);
text-align: center;
line-height: 96rpx;
font-size:32rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(102,102,102,1);
}
.primary {
background:rgba(253,209,3,1);
border:1px solid rgba(253,209,3,1);
color:rgba(26,26,26,1);
}
.btn.disabled{
background: rgba(248, 248, 248, 1);
border: none;
}
.show {
opacity: 1;
transition-duration: 0.3s;
transform: scale(1);
overflow-x: hidden;
overflow-y: auto;
pointer-events: auto;
}
/* 表单 */
.form .form-cell {
padding: 0 40rpx;
height: 108rpx;
background:rgba(255,255,255,1);
}
.form-label {
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(26,26,26,1);
}
.form-cell input {
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
text-align: right;
}
.form-cell+.form-cell {
border-top: 1px solid rgba(241, 241, 241, 1);
}
.form-cell .icon {
margin-left: 20rpx;
width: 16rpx;
height: 26rpx;
}
/* 表单 */
.placeholder-style {
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(204,204,204,1);
}
.placeholder-select {
font-size:28rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(102,102,102,1);
}
/* 刻度尺 */
.rule-box {
padding-top: 40rpx;
}
.rule-box .tool-bar {
font-size:32rpx;
font-family:PingFangSC-Semibold,PingFang SC;
font-weight:600;
color:rgba(26,26,26,1);
display: flex;
justify-content: space-between;
padding: 0 40rpx;
}
/* .rule-box .tool-bar .close {
height: 28rpx;
width: 28rpx;
} */
.rule {
overflow:hidden;
white-space:nowrap;
height: 140rpx;
background:rgba(248,248,248,1);
position: relative;
}
.rule-marker {
position: absolute;
counter-reset: value var(--marker-value);
z-index: 999;
}
.rule-item {
display: inline-block;
/* width:2rpx; */
width: 1px;
height:40rpx;
background:rgba(228,228,228,1);
counter-reset: value var(--rule-value);
position: relative;
vertical-align: top;
}
.marker-tool {
position: absolute;
/* left: 364rpx; */
left: 182px;
bottom: -80rpx;
z-index: 999;
}
.base-marker {
position: relative;
height: 64rpx;
/* width: 24rpx; */
width: 12px;
}
.base-line {
/* width:4rpx; */
width: 2px;
height:64rpx;
background:rgba(26,26,26,1);
position: absolute;
top: 0;
/* left: 10rpx; */
left: 5px;
}
.marker-tool image {
/* width: 24rpx;
height: 16rpx; */
width: 12px;
height: 8px;
top: 0;
left: 0;
vertical-align: top;
}
.rule-item{
/* margin-left: 16rpx; */
margin-left: 8px;
}
.rule .rule-item:nth-child(10n+1) {
/* width:4rpx; */
width: 2px;
height:64rpx;
}
.rule-value {
position: absolute;
bottom: -60rpx;
left: -40rpx;
text-align: center;
width: 80rpx;
font-size:24rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(204,204,204,1);
z-index: 1001;
}
.rule .rule-item:first-child {
/* margin-left: 12rpx; */
margin-left: 6px;
}
.rule .rule-item:last-child {
/* margin-left: 8rpx; */
margin-left: 4px;
}
.marker-value{
font-size:40rpx;
font-family:PingFangSC-Semibold,PingFang SC;
font-weight:600;
color:rgba(26,26,26,1);
margin: 56rpx auto 16rpx auto;
position: relative;
}
::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
color: transparent;
}
.sure-btn {
height: 96rpx;
background:rgba(253,209,3,1);
font-size:32rpx;
font-family:PingFangSC-Medium,PingFang SC;
font-weight:500;
color:rgba(26,26,26,1);
margin-top: 112rpx;
text-align: center;
line-height: 96rpx;
}
.marker-text{
display: inline-block;
width: 100px;
margin-left: 136px;
text-align:center;
}
/* 刻度尺 */
/* 关注框 */
.qr-box{
width:570rpx;
height:680rpx;
background:rgba(255,255,255,1);
border-radius:32px;
}
.qr-box {
padding: 40rpx;
text-align: center;
}
.qr-box .title{
height:50rpx;
font-size:36rpx;
font-family:PingFangSC-Semibold,PingFang SC;
font-weight:600;
color:rgba(26,26,26,1);
}
.qr-box .subtitle{
font-size:32rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(153,153,153,1);
}
.close{
height: 108rpx;
width: 108rpx;
position: absolute;
right: 0rpx;
top: 0rpx;
padding: 40rpx;
}
.close image{
height: 28rpx;
width: 28rpx;
}
.btn image {
height: 30rpx;
width: 30rpx;
}
.qr-code {
width: 290rpx;
height: 290rpx;
}
.pop-box {
width:560rpx;
height:260rpx;
background:rgba(255,255,255,1);
border-radius:16rpx;
position: relative;
overflow: hidden;
display: inline-block;
vertical-align: middle;
}
.pop-option {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 94rpx;
border-top: 1px #F1F1F1 solid;
border-bottom: 1px #F1F1F1 solid;
display: flex;
}
.pop-option view {
width: 50%;
text-align: center;
line-height: 94rpx;
}
.pop-option view:first-child {
border-right: 1px #F1F1F1 solid;
}
.pop-title {
font-size:32rpx;
font-family:PingFangSC-Regular,PingFang SC;
font-weight:400;
color:rgba(34,34,34,1);
text-align: center;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。