_dlfooter.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. @import "../sass/mixins";
  2. $maincolor : #ff6b1a;
  3. .v-mod-footer{
  4. position: fixed;
  5. width: 100%;
  6. bottom: 0;
  7. z-index: 11;
  8. background: rgba(0,0,0,0.9);
  9. padding: px2rem(20);
  10. display: flex;
  11. &.tp2{
  12. .footer-fl{
  13. background: url(../../img/icon-logo2.png) no-repeat;
  14. background-size: 100%;
  15. }
  16. }
  17. .footer-fl{
  18. width: px2rem(88);
  19. height: px2rem(88);
  20. background: url(../../img/icon-logo.png) no-repeat;
  21. background-size: 100%;
  22. }
  23. .footer-fm{
  24. flex: 1;
  25. text-align: left;
  26. padding-left: px2rem(16);
  27. h3{
  28. font-size: px2rem(32);
  29. color: $maincolor;
  30. line-height: px2rem(50);
  31. }
  32. p{
  33. font-size: px2rem(24);
  34. color: #ff8542;
  35. }
  36. }
  37. .footer-fr{
  38. display: flex;
  39. align-items: center;
  40. .btn-open{
  41. display: block;
  42. width: px2rem(127);
  43. height: px2rem(60);
  44. background: url(../../img/btn-open2.png) no-repeat;
  45. background-size: 100%;
  46. margin-right: px2rem(30);
  47. }
  48. .btn-close{
  49. display: block;
  50. width: px2rem(40);
  51. height: px2rem(40);
  52. background: url(../../img/btn-close2.png) no-repeat;
  53. background-size: 100%;
  54. }
  55. }
  56. }