135 lines
1.5 KiB
Plaintext
135 lines
1.5 KiB
Plaintext
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* 导航 */
|
|
.foot-bar{
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 98rpx;
|
|
background-color: #ffffff;
|
|
box-shadow: 0 -3rpx 8rpx rgba(226,226,226,.76);
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
}
|
|
.foot-bar .item{
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
width: 25%;
|
|
}
|
|
.foot-bar .item>.icon{
|
|
height: 38rpx;
|
|
}
|
|
.foot-bar .item>.txt{
|
|
width: 100%;
|
|
margin-top: 6rpx;
|
|
line-height: 1.2;
|
|
text-align: center;
|
|
-webkit-transform: scale(.92);
|
|
transform: scale(.92);
|
|
}
|
|
/* 客服 */
|
|
.customer-service{
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 96rpx;
|
|
height: 96rpx;
|
|
background-color: rgba(53,28,136,.17);
|
|
-webkit-animation: scale_name 1s linear alternate infinite;
|
|
animation: scale_name 1s linear alternate infinite;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
bottom: 130rpx;
|
|
right: 16rpx;
|
|
z-index: 999;
|
|
}
|
|
.customer-service .icon{
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 80rpx;
|
|
height: 80rpx;
|
|
background-image: linear-gradient(to top,#1c2588,#4450d5);
|
|
position: relative;
|
|
}
|
|
.customer-service .icon>.contact-btn{
|
|
width: 100%;
|
|
height: 100%;
|
|
opacity: 0;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
z-index: 1;
|
|
}
|
|
@-webkit-keyframes scale_name{
|
|
from{-webkit-transform: scale(1);transform: scale(1);}
|
|
to{-webkit-transform: scale(1.2);transform: scale(1.2);}
|
|
}
|
|
@keyframes scale_name{
|
|
from{-webkit-transform: scale(1);transform: scale(1);}
|
|
to{-webkit-transform: scale(1.2);transform: scale(1.2);}
|
|
}
|
|
|