123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* templates/footer/footer.wxss */
- .footer-container {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- background: #FFFFFF;
- box-shadow: 0 0 14rpx 0 rgba(0,0,0,0.1);
- z-index: 99;
- }
- .footer-wrapper {
- width: 100%;
- margin: 0;
- }
- .footer-items {
- display: flex;
- justify-content: space-around;
- align-items: center;
- text-align: center;
- margin: 0;
- }
- .footer-item {
- padding: 18rpx 22rpx;
- position: relative;
- text-align: center;
- }
- .footer-item-image {
- width: 48rpx;
- height: 48rpx;
- }
- .footer-item-image-active {
- width: 48rpx;
- height: 48rpx;
- }
- .footer-item-text {
- font-size: 20rpx;
- color: #ccc;
- margin-top: 8rpx;
- }
- .footer-item-text-active {
- color: #00B7FF;
- }
|