12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- /* templates/header/header.wxss */
- .header-container {
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- height: 88rpx;
- background: #F1F3FA;
- box-shadow: 0 0 8rpx 0 rgba(0,0,0,0.1);
- z-index:10000;
- }
- .header-wrapper {
- width: 100%;
- margin: 0;
- border-bottom: 1rpx #D0D5E6 solid;
- border-top: 1rpx #D0D5E6 solid;
- }
- .header-items {
- display: flex;
- justify-content: space-around;
- align-items: center;
- text-align: center;
- margin: 0;
- font-weight:600;
- }
- .header-item {
- /* padding: 10rpx 22rpx 6rpx 22rpx; */
- display: flex;
- flex-direction: column;
- align-items: center;
- text-align: center;
- height: 88rpx;
- }
- .header-item-text {
- text-align: center;
- font-size: 24rpx;
- color: #7C819D;
- background: #DADCE7;
- border-radius:50rpx;
- padding: 12rpx 50rpx;
- margin-top: 18rpx;
- }
- .header-item-text-active {
- color: #FF6465;
- background:rgba(255,100,101,0.2);
- }
- .header-item-specific-text-active {
- color: #fff;
- }
|