index.wxss 451 B

12345678910111213141516171819202122232425
  1. /* 居中标题 */
  2. .venter-the-title {
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. height: 44rpx;
  7. width: 100%;
  8. font-size: 32rpx;
  9. text-align: center;
  10. color: #000000;
  11. margin: 30rpx 0 20rpx;
  12. }
  13. .venter-the-title>text {
  14. display: inline-block;
  15. padding: 0 20rpx;
  16. }
  17. .venter-the-title>view {
  18. width: 44rpx;
  19. height: 4rpx;
  20. background: #4DC2D4;
  21. border-radius: 2rpx;
  22. opacity: 0.5;
  23. }