.a-dropdown-wrapper { position: relative; display: flex; flex-direction: column; width: 100%; height: 100rpx; } .a-dropdown-wrapper.expand { position: fixed; height: 100%; z-index: 99; } .a-dropdown-nav { display: flex; position: relative; border-bottom: 1px solid #ddd; background: #fff; min-height: 100rpx; z-index: 99; } .a-dropdown-nav-item { flex: 1; text-align: center; height: 100rpx; line-height: 100rpx; } .a-dropdown-nav-item-hover { background: rgba(0, 0, 0, 0.03); } .a-dropdown-nav-item.active { color: #f76a24; } .triangle { width: 0; height: 0; border-left: 10rpx solid transparent; border-right: 10rpx solid transparent; border-top: 10rpx solid #000; border-bottom: 0; vertical-align: middle; display: inline-block; } .a-dropdown-nav-item.active .triangle { border-bottom: 10rpx solid #f76a24; border-top: 0; } .a-dropdown-contents { max-height: 100%; z-index: 2; } .a-dropdown-list-items { height: 0; overflow: hidden; background: #fff; position: relative; z-index: 98; } .a-dropdown-list-items.show { height: auto; } .a-dropdown-list-items .a-dropdown-list-item { display: flex; font-size: 30rpx; line-height: 1.5; color: #333333; min-height: 88rpx; align-items: center; padding-left: 30rpx; background: #fff; } .a-dropdown-list-item.selected { color: #f76a24; } .a-dropdown-list-item .a-dropdown-list-item-bottom { display: block; position: absolute; width: 100%; border-bottom: 1px solid #ddd; left: 0; bottom: 0; right: auto; top: auto; } .a-dropdown-list-item .a-dropdown-list-item-thumb { width: 44rpx; height: 44rpx; margin-right: 30rpx; } .a-dropdown-list-item .a-dropdown-list-item-line { position: relative; display: flex; flex: 1; align-items: center; align-self: stretch; padding-right: 30rpx; min-height: 88rpx; overflow: hidden; } .a-dropdown-list-item .a-dropdown-list-item-content { flex: 1; font-size: .34rem; text-align: left; line-height: 1.5; width: auto; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding-top: .14rem; padding-bottom: .14rem; } .a-dropdown-list-item.last .a-dropdown-list-item-bottom { border-bottom: none; } .a-dropdown-list-item .a-dropdown-list-item-line-wrap .a-dropdown-list-item-content { white-space: normal; } .a-dropdown-list-item.a-dropdown-list-item-hover { background-color: #ddd; } .a-dropdown-list-item-check { display: block; width: 35rpx; height: 35rpx; margin-left: 16rpx; background-image: url('data:image/svg+xml;charset=utf-8,'); background-size: contain; background-repeat: no-repeat; background-position: 50% 50%; transition: transform 0.3s; visibility: hidden; } .a-dropdown-list-item.selected .a-dropdown-list-item-check { visibility: visible; } .a-dropdown-placeholder { min-height: 150rpx; z-index: 1; flex: 1; } .a-dropdown-bg { opacity: 0; transition: opacity linear 0.1s; } .expand .a-dropdown-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgb(0, 0, 0); opacity: 0.4; z-index: 1; }