index.less 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. @import "~@less/variables.less";
  2. .infoBox{
  3. .contentZIndex1;
  4. position: absolute;
  5. top:27px;
  6. width: 388px;
  7. background: #fff;
  8. border: 1px solid #EAEDF1;
  9. /*box-shadow: 0 5px 10px 0 rgba(0,0,0,0.10);*/
  10. box-shadow: 0 10px 20px 0 #989DA3;
  11. margin-bottom: 20px;
  12. .infoTitle{
  13. height: 40px;
  14. line-height: 40px;
  15. padding-left: 18px;
  16. // border-bottom: 1px solid #EAEDF1;
  17. background: #DFEAFE;
  18. img{
  19. vertical-align: text-top;
  20. }
  21. .closeIcon{
  22. // vertical-align: middle;
  23. float: right;
  24. cursor: pointer;
  25. }
  26. }
  27. .infoCon{
  28. padding: 15px 26px 25px;
  29. }
  30. .infoFoot{
  31. text-align: right;
  32. // border-top: 1px solid #EAEDF1;
  33. padding: 10px 20px 10px 0;
  34. span{
  35. color:#3B9ED0;
  36. display: inline-block;
  37. /*width: 66px;*/
  38. padding:0 10px;
  39. height: 32px;
  40. line-height: 32px;
  41. text-align: center;
  42. border: 1px solid #3B9ED0;
  43. border-radius: 4px;
  44. cursor: pointer;
  45. }
  46. }
  47. }