about_aijia.wxss 533 B

12345678910111213141516171819202122232425262728293031
  1. /* pages/question/question.wxss */
  2. .list {
  3. padding: 0;
  4. }
  5. .li {
  6. margin: 0;
  7. background: #fff;
  8. border-radius: 0;
  9. padding: 0;
  10. }
  11. .li-title {
  12. background: #fff;
  13. display: flex;
  14. justify-content: space-between;
  15. align-items: center;
  16. padding: 30rpx;
  17. border-bottom: solid 1rpx #e6e6e6;
  18. font-size: 32rpx;
  19. color: #333333;
  20. }
  21. .li-text {
  22. flex: 1;
  23. }
  24. .li-arrow-right {
  25. width: 20rpx;
  26. height: 20rpx;
  27. border-top: 1rpx solid #e6e6e6;
  28. border-right: 1rpx solid #e6e6e6;
  29. transform: rotate(45deg);
  30. transition: all .3s;
  31. }