金诚优选前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

105 lines
1.8 KiB

  1. .count-down-box{
  2. .mask{
  3. position: fixed;
  4. top: 0;
  5. left: 0;
  6. right: 0;
  7. bottom: 0;
  8. z-index: 200;
  9. background: rgba(0,0,0,.4);
  10. }
  11. .box{
  12. position: fixed;
  13. z-index: 500;
  14. width: 85%;
  15. top: 50%;
  16. left: 50%;
  17. transform: translate(-50%, -50%);
  18. border-radius:4px;
  19. overflow: hidden;
  20. text-align: center;
  21. /*padding: 20px 30px;*/
  22. box-sizing: border-box;
  23. .title{
  24. font-size: 20px;
  25. /*margin-bottom: 20px;*/
  26. padding: 20px 30px;
  27. background: #FFFFFF;
  28. }
  29. .img-box{
  30. position: relative;
  31. padding: 0 30px 20px 30px;
  32. background: #FFFFFF;
  33. margin-top: -1px;
  34. image{
  35. width: 100%;
  36. box-sizing: border-box;
  37. }
  38. .num{
  39. position: absolute;
  40. top: 38%;
  41. left: 50%;
  42. transform: translate(-50%, -50%);
  43. font-size: 110px;
  44. color:#1a1a1a;
  45. &.num-9 {
  46. color:#1b0000;
  47. }
  48. &.num-8 {
  49. color:#2f0000;
  50. }
  51. &.num-7 {
  52. color:#440000;
  53. }
  54. &.num-6 {
  55. color:#650000;
  56. }
  57. &.num-5 {
  58. color:#7b0000;
  59. }
  60. &.num-4 {
  61. color:#8f0000;
  62. }
  63. &.num-3 {
  64. color:#ac0000;
  65. }
  66. &.num-2 {
  67. color:#d30000;
  68. }
  69. &.num-1 {
  70. color:#fa0000;
  71. }
  72. }
  73. .mountain{
  74. position: absolute;
  75. right: 34px;
  76. bottom: 42%;
  77. width: 35%;
  78. }
  79. /*background: url("/static/img/time-bg.png") no-repeat;*/
  80. }
  81. .clone{
  82. color: #fff;
  83. margin-top: 10px;
  84. padding: 15px;
  85. display: inline-block;
  86. font-size: 20px;
  87. }
  88. }
  89. }
  90. @media screen and (max-width: 320px) {
  91. .ount-down-box{
  92. .box {
  93. .img-box {
  94. .num{
  95. top: 32%;
  96. }
  97. }
  98. }
  99. }
  100. }