video.acss 884 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /**index.wxss**/
  2. .userinfo {
  3. display: flex;
  4. flex-direction: column;
  5. align-items: center;
  6. color: #aaa;
  7. /* background-color: blue; */
  8. width: 100%;
  9. height: 70vh;
  10. }
  11. .userinfo video{
  12. width: 100%;
  13. height: 70vh;
  14. }
  15. .container_video {
  16. height: 100%;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: space-between;
  21. box-sizing: border-box;
  22. }
  23. .usermotto .motto{
  24. display: flex;
  25. flex-direction: column;
  26. align-items: center;
  27. }
  28. .usermotto .title{
  29. font-size: 18px;
  30. margin-top: 40rpx;
  31. font-weight: 600;
  32. }
  33. .usermotto .cont{
  34. font-size: 14px;
  35. margin-top: 40rpx;
  36. font-weight: 400;
  37. color: #A1A1A1;
  38. }
  39. .red{
  40. color: #ff0000;
  41. }
  42. .usermotto .btn{
  43. width: 80vw;
  44. background-color: var(--globleColor);
  45. font-size: 14px;
  46. border-radius: 24rpx;
  47. /* padding: 24rpx; */
  48. bottom: 40rpx;
  49. color: #FFF;
  50. margin-top: 100rpx;
  51. }