对接烟台app的h5页面
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.
 
 
 
 
 

364 lines
6.7 KiB

@charset "UTF-8";
.f-cb {
float: none;
clear: both;
height: 0;
}
.f-cs::after {
display: block;
visibility: hidden;
clear: both;
overflow: hidden;
height: 0;
content: '';
}
.f-hide {
display: none;
}
.f-fl {
float: left;
}
.f-fr {
float: right;
}
.f-bs1 {
box-shadow: 0 2rpx 8rpx 0 rgba(0, 0, 0, 0.1);
}
.f-bs2 {
box-shadow: 0 4rpx 12rpx 0 rgba(0, 0, 0, 0.16);
}
.f-bs3 {
box-shadow: 0 6rpx 18rpx 0 rgba(0, 0, 0, 0.22);
}
.f-blur {
filter: blur(3px);
}
.f-shield {
position: fixed;
z-index: 9999;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.4);
backdrop-filter: blur(8rpx);
}
page {
height: 100%;
background-attachment: fixed;
color: #333;
font-size: 28rpx;
font-family: Source Han Serif SC;
}
input,
textarea {
outline: 0;
border: none;
-webkit-appearance: none;
box-shadow: 0 0 0 transparent;
font-family: Source Han Serif SC;
}
input:hover,
textarea:hover {
transition: all 0.15s;
-webkit-touch-callout: none;
}
@keyframes fade_in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes fade_in_up {
0% {
transform: translate3d(0, 360rpx, 0);
opacity: 0.3;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes fade_in_down {
0% {
transform: translate3d(0, -360rpx), 0;
opacity: 0.3;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes fade_in_right {
0% {
transform: translate3d(360rpx, 0, 0);
opacity: 0.3;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes fade_in_left {
0% {
transform: translate3d(-360rpx, 0, 0);
opacity: 0.3;
}
100% {
transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.a-fade-in {
animation: fade_in 0.27s ease-in;
}
.a-fade-in-up {
animation: fade_in_up 0.27s ease-in;
}
.a-fade-in-right {
animation: fade_in_right 0.27s ease-in;
}
.a-fade-in-left {
animation: fade_in_left 0.27s ease-in;
}
.a-fade-in-down {
animation: fade_in_down 0.27s ease-in;
}
@keyframes fade_out {
0% {
display: block;
opacity: 1;
}
100% {
display: block;
opacity: 0;
}
}
@keyframes fade_out_up {
0% {
display: block;
transform: translate3d(0, 0, 0);
opacity: 1;
}
100% {
display: block;
transform: translate3d(0, 360rpx, 0);
opacity: 0;
}
}
@keyframes fade_out_down {
0% {
display: block;
transform: translate3d(0, 0, 0);
opacity: 1;
}
100% {
display: block;
transform: translate3d(0, -360rpx, 0);
opacity: 0;
}
}
@keyframes fade_out_right {
0% {
display: block;
transform: translate3d(0, 0, 0);
opacity: 1;
}
100% {
display: block;
transform: translate3d(360rpx, 0, 0);
opacity: 0;
}
}
@keyframes fade_out_left {
0% {
display: block;
transform: translate3d(0);
opacity: 1;
}
100% {
display: block;
transform: translate3d(-360rpx, 0, 0);
opacity: 0;
}
}
.a-fade-out {
animation: fade_out 0.27s ease-out;
}
.a-fade-out-up {
animation: fade_out_up 0.27s ease-out;
}
.a-fade-out-right {
animation: fade_out_right 0.27s ease-out;
}
.a-fade-out-left {
animation: fade_out_left 0.27s ease-out;
}
.a-fade-out-down {
animation: fade_out_down 0.27s ease-out;
}
@keyframes scale_in {
0% {
opacity: 0;
transform: scale3d(0, 0, 0);
}
100% {
opacity: 1;
transform: scale3d(1, 1, 1);
}
}
@keyframes scale_in_left_up {
0% {
opacity: 0;
transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
@keyframes scale_in_right_down {
0% {
opacity: 0;
transform: translate3d(50%, 50%, 0) scale3d(0, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
@keyframes scale_in_right_up {
0% {
opacity: 0;
transform: translate3d(50%, -50%, 0) scale3d(0, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
@keyframes scale_in_left_down {
0% {
opacity: 0;
transform: translate3d(-50%, 50%, 0) scale3d(0, 0, 0);
}
100% {
opacity: 1;
transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
}
}
.a-scale-in {
animation: scale_in 0.27s ease-in;
}
.a-scale-in-left-up {
animation: scale_in_left_up 0.27s ease-in;
}
.a-scale-in-right-up {
animation: scale_in_right_up 0.27s ease-in;
}
.a-scale-in-left-down {
animation: scale_in_left_down 0.27s ease-in;
}
.a-scale-in-right-down {
animation: scale_in_right_down 0.27s ease-in;
}
page {
background-color: #f5f6f7;
}
form {
display: block;
}
button {
padding: 0;
background-color: transparent;
border: none;
border-radius: 0;
}
.navigator-hover {
background-color: inherit;
opacity: inherit;
}
.m-more {
height: 90rpx;
line-height: 90rpx;
color: #bbb;
font-size: 30rpx;
text-align: center;
}
.u-bottom-placeholder {
height: 100rpx;
}
.u-hover-circle-btn {
position: fixed;
right: 20rpx;
bottom: 30rpx;
width: 110rpx;
height: 110rpx;
line-height: 110rpx;
border-radius: 100%;
color: #fff;
text-align: center;
font-size: 14px;
}
.u-hover-circle-btn.z-tall {
bottom: 150rpx;
}
.u-hover-circle-btn image {
position: absolute;
display: block;
width: 100rpx;
height: 100rpx;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.m-nothing {
position: relative;
}
.m-nothing image {
display: block;
margin: 300rpx auto 0;
width: 464rpx;
height: 530rpx;
}
.m-hint {
text-align: center;
padding: 100rpx 50rpx;
line-height: 50rpx;
color: #999;
text-align: center;
font-size: 34rpx;
font-family: Source Han Serif SC;
font-weight: 500;
}
.m-hint.z-small {
padding: 50rpx;
}
.u-btn {
margin: 120rpx auto;
width: 400rpx;
height: 80rpx;
line-height: 80rpx;
background: linear-gradient(90deg, #015eea 0%, #4a91fd 100%);
border-radius: 40rpx;
font-size: 32rpx;
font-family: Source Han Serif SC;
font-weight: 500;
text-align: center;
color: #fff;
}
.u-btn.z-disabled {
opacity: 0.5;
}
.u-btn.z-disabled:active {
opacity: 0.5;
}
.u-btn:active {
background: linear-gradient(90deg, #015eea 0%, #4a91fd 100%);
}