51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
|
|
.pullDownList {
|
||
|
|
width: 100%;
|
||
|
|
box-sizing: border-box;
|
||
|
|
background-color: var(--td-bg-color-container);
|
||
|
|
border-radius: 8rpx;
|
||
|
|
margin-bottom: 24rpx;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
.pullDownList .switchBox {
|
||
|
|
height: 120rpx;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
padding: 0 32rpx;
|
||
|
|
font-size: 32rpx;
|
||
|
|
line-height: 48rpx;
|
||
|
|
color: var(--td-text-color-secondary);
|
||
|
|
}
|
||
|
|
.pullDownList .name,
|
||
|
|
.pullDownList .icon {
|
||
|
|
transition: opacity 0.3s;
|
||
|
|
}
|
||
|
|
.pullDownList .name {
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
.pullDownList.actived .name {
|
||
|
|
opacity: 0.4;
|
||
|
|
}
|
||
|
|
.pullDownList.actived .icon {
|
||
|
|
opacity: 0.4;
|
||
|
|
}
|
||
|
|
.pullDownList .childBox {
|
||
|
|
transition: height 0.3s;
|
||
|
|
}
|
||
|
|
.pullDownList .childBox .child {
|
||
|
|
box-sizing: border-box;
|
||
|
|
border-bottom: 1rpx solid var(--td-component-stroke);
|
||
|
|
height: 112rpx;
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
align-items: center;
|
||
|
|
margin-left: 32rpx;
|
||
|
|
margin-right: 32rpx;
|
||
|
|
font-size: 32rpx;
|
||
|
|
opacity: 0.9;
|
||
|
|
color: var(--td-text-color-primary);
|
||
|
|
}
|
||
|
|
.pullDownList .childBox .child:last-of-type {
|
||
|
|
border-bottom-color: transparent;
|
||
|
|
}
|