index.scss 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. @import '@/assets/css/function';
  2. @import '@/assets/css/theme';
  3. .record{
  4. color: #fff;
  5. padding-top: halfH(10);
  6. .list{
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-around;
  10. .list-item{
  11. margin-right: halfW(20);
  12. text-align: center;
  13. flex: 1;
  14. position: relative;
  15. &:last-child{
  16. margin-right: 0;
  17. }
  18. .logoWrp{
  19. position: relative;
  20. }
  21. .list-item-logo{
  22. animation: bubble 20s linear infinite;
  23. margin: auto;
  24. }
  25. .list-item-icon{
  26. position: absolute;
  27. left: 50%;
  28. top: 50%;
  29. transform: translate(-50%, -50%);
  30. display: block;
  31. }
  32. .list-item-desc{
  33. background: $record-bg no-repeat;
  34. background-size: 100% 100%;
  35. width: halfW(196);
  36. height: halfH(45);
  37. line-height: halfH(45);
  38. margin: halfH(22) auto 0;
  39. font-size: halfH(20);
  40. color: $record-desc;
  41. font-weight: bold;
  42. .desc-tips{
  43. font-size: halfH(12);
  44. padding-left: halfH(8);
  45. }
  46. }
  47. .list-item-txt{
  48. font-size: halfH(16);
  49. color: $record-txt;
  50. padding-top: halfH(14);
  51. font-weight: bold;
  52. }
  53. &.shebei{
  54. .list-item-logo{
  55. animation-delay: 0;
  56. }
  57. }
  58. &.anfang{
  59. .list-item-logo{
  60. animation-delay: 1s;
  61. }
  62. }
  63. &.baojie{
  64. .list-item-logo{
  65. animation-delay: 3s;
  66. }
  67. }
  68. &.renwu{
  69. .list-item-logo{
  70. animation-delay: 5s;
  71. }
  72. }
  73. }
  74. }
  75. @keyframes bubble {
  76. 0% {
  77. transform: rotate(0);
  78. }
  79. 50% {
  80. transform: rotate(180deg);
  81. }
  82. 100% {
  83. transform: rotate(360deg);
  84. }
  85. }
  86. }