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.
46 lines
791 B
46 lines
791 B
/* components/segment/index.wxss */
|
|
.header-titles {
|
|
height: 36px;
|
|
display: flex;
|
|
/* justify-content: space-around; */
|
|
padding: 5px;
|
|
}
|
|
.title {
|
|
min-width: 150rpx;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: #999999;
|
|
font-size: 14px;
|
|
margin-top: 5px;
|
|
}
|
|
.item-title{
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
transition: 0.5s all ease-in-out;
|
|
}
|
|
.title-selected {
|
|
font-size: 16px;
|
|
color: #292E3E;
|
|
}
|
|
.select-line{
|
|
margin-top: 4px;
|
|
height: 2px;
|
|
border-radius: 5px;
|
|
transition: 0.5s all ease-in-out;
|
|
}
|
|
.select-line-active {
|
|
width: 10px;
|
|
background-color: #FA4646;
|
|
}
|
|
|
|
.main{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 90rpx;
|
|
color: white;
|
|
}
|