index.wxss 814 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* miniprogram/pages/provincialArea/index.wxss */
  2. .areaPage {
  3. width: 100%;
  4. height: 100%;
  5. box-sizing: border-box;
  6. }
  7. .areaItem {
  8. height: 100vh;
  9. padding: 10rpx;
  10. box-sizing: border-box;
  11. }
  12. .content {
  13. padding: 20rpx 20rpx 60rpx 20rpx;
  14. }
  15. .title {
  16. text-align: center;
  17. margin: 20rpx 0;
  18. }
  19. .palybtn {
  20. position: relative;
  21. height: 30px;
  22. }
  23. .playAudio {
  24. z-index: 1;
  25. right: 20rpx;
  26. width: 30px;
  27. height: 30px;
  28. border-radius: 50%;
  29. text-align: center;
  30. position: absolute;
  31. box-sizing: border-box;
  32. border: 1rpx solid #000;
  33. }
  34. .playAudioAnimation {
  35. animation-name: playAudio;
  36. animation-duration: 2s;
  37. animation-timing-function: linear;
  38. animation-iteration-count: infinite;
  39. }
  40. @keyframes playAudio {
  41. 0% {
  42. transform: rotate(0deg);
  43. }
  44. 100% {
  45. transform: rotate(360deg);
  46. }
  47. }