1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* president/pages/good_books/good_books.wxss */
- @import '../../../templates/nodata/nodata.wxss';
- @import '../../../templates/footer/footer.wxss';
- @import '../../../templates/loading/loading.wxss';
- .nav-two{
- background: rgba(0,183,255,1);
- }
- .nav-item-row-active2{
- border-bottom:solid 6rpx #FFFFFF;
- border-radius:3rpx;
- }
- .nav-item-text-active2{
- color: #fff;
- font-weight: 600;
- }
- .nav-item2{
- padding-bottom: 11rpx;
- }
- .header {
- background: #FAFAFA;
- padding: 24rpx 30rpx;
- }
- .header-active {
- background: #fff;
- }
- .items {
- position: relative;
- z-index: 99;
- }
- .item {
- padding: 24rpx 30rpx;
- display: flex;
- justify-content: flex-end;
- align-items: center;
- background: #fff;
- }
- .item-title{
- color: #333333;
- font-size: 30rpx;
- text-align: left;
- }
- .item-text {
- color: #00B7FF;
- font-size: 28rpx;
- }
- .item-icon {
- width: 14rpx;
- height: 14rpx;
- margin-left: 20rpx;
- transition: all .3s;
- }
- .item-icon-active {
- transform: rotate(180deg);
- }
- .items-modal {
- position: absolute;
- top: 100%;
- left: 0;
- width: 100%;
- height: 1500rpx;
- background: rgba(0, 0, 0, .5);
- z-index: 1000;
- }
- .items-modal-list {
- background: #fff;
- border-top: solid 1rpx #e6e6e6;
- padding-left: 30rpx;
- }
- .items-modal-li {
- padding: 30rpx 30rpx 30rpx 0;
- border-bottom: solid 1rpx #e6e6e6;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .items-modal-li:nth-last-of-type(1) {
- border-bottom: solid 1rpx transparent;
- }
- .items-modal-text {
- font-size: 28rpx;
- color: #999;
- }
- .items-modal-icon {
- width: 26rpx;
- height: 20rpx;
- }
|