123456789101112131415161718192021222324252627282930313233343536373839404142 |
- /* templates/header/header.wxss */
- .header-container {
- width: 100%;
- height: 88rpx;
- z-index:10000;
- }
- .header-wrapper {
- width: 100%;
- margin: 0;
- }
- .header-items {
- display: flex;
- justify-content: space-around;
- align-items: center;
- text-align: center;
- margin:5% 20%;
- 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: 36rpx;
- color: #7C819D;
- /* background: #DADCE7;
- border-radius:50rpx; */
- padding: 6rpx 0;
- margin-top: 18rpx;
- }
- .header-item-text-active {
- color: #393939;
- border-bottom: 8rpx #FF6465 solid;
- }
- .header-item-specific-text-active {
- color: #fff;
- }
|