12345678910111213141516171819202122232425262728293031 |
- /* pages/question/question.wxss */
- .list {
- padding: 0;
- }
- .li {
- margin: 0;
- background: #fff;
- border-radius: 0;
- padding: 0;
- }
- .li-title {
- background: #fff;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 30rpx;
- border-bottom: solid 1rpx #e6e6e6;
- font-size: 32rpx;
- color: #333333;
- }
- .li-text {
- flex: 1;
- }
- .li-arrow-right {
- width: 20rpx;
- height: 20rpx;
- border-top: 1rpx solid #e6e6e6;
- border-right: 1rpx solid #e6e6e6;
- transform: rotate(45deg);
- transition: all .3s;
- }
|