1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- .wux-accordion__hd {
- position: relative;
- padding: 20rpx 30rpx;
- color: #000;
- background-color: #fff;
- box-sizing: border-box;
- padding-right: 60rpx;
- width: auto;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- display: flex;
- align-items: center
- }
- .wux-accordion__hd::after {
- content: " ";
- position: absolute;
- bottom: 0;
- right: 0;
- height: 1PX;
- border-bottom: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 100%;
- transform: scaleY(.5);
- left: 0
- }
- .wux-accordion__thumb {
- width: 40rpx;
- height: 40rpx;
- display: block;
- margin-right: 10rpx
- }
- .wux-accordion__arrow {
- display: inline-block;
- width: 30rpx;
- height: 30rpx;
- background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2216%22%20height%3D%2226%22%20viewBox%3D%220%200%2016%2026%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M2%200L0%202l11.5%2011L0%2024l2%202%2014-13z%22%20fill%3D%22%23c7c7cc%22%20fill-rule%3D%22evenodd%22%2F%3E%3C%2Fsvg%3E");
- background-size: contain;
- background-repeat: no-repeat;
- background-position: 50% 50%;
- transform: rotate(90deg);
- transition: transform .2s ease;
- position: absolute;
- display: block;
- top: 30rpx;
- right: 30rpx
- }
- .wux-accordion--current > .wux-accordion__hd > .wux-accordion__arrow {
- transform: rotate(270deg)
- }
- .wux-accordion__bd {
- display: none;
- overflow: hidden;
- background: #fff;
- font-size: 30rpx;
- color: rgba(0,0,0,.85);
- position: relative;
- padding: 30rpx
- }
- .wux-accordion__bd::after {
- content: " ";
- position: absolute;
- bottom: 0;
- right: 0;
- height: 1PX;
- border-bottom: 1PX solid #d9d9d9;
- color: #d9d9d9;
- transform-origin: 0 100%;
- transform: scaleY(.5);
- left: 0
- }
- .wux-accordion--current > .wux-accordion__bd {
- display: block
- }
|