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.
50 lines
840 B
50 lines
840 B
/* components/segment/index.wxss */
|
|
.header-titles {
|
|
height: 36px;
|
|
display: flex;
|
|
justify-content: center;
|
|
/* padding: 5px; */
|
|
}
|
|
.title {
|
|
min-width: 100rpx;
|
|
padding: 0 20rpx;
|
|
white-space: nowrap;
|
|
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;
|
|
flex: 1;
|
|
}
|
|
.title-selected {
|
|
font-size: 15px;
|
|
color: #292E3E;
|
|
}
|
|
.select-line{
|
|
margin-top: 4px;
|
|
height: 2px;
|
|
border-radius: 5px;
|
|
transition: 0.5s all ease-in-out;
|
|
}
|
|
.select-line-active {
|
|
width: 20px;
|
|
background-color: #FA4646;
|
|
}
|
|
|
|
.main{
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 90rpx;
|
|
color: white;
|
|
}
|