_admin.scss 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. // 头部信息
  2. .header{
  3. background: #2f95dd;
  4. height:50px;
  5. vertical-align: middle;
  6. .f-title{
  7. img{
  8. display:inline-block;
  9. width:36px;
  10. height:36px;
  11. border-radius:50%;
  12. background: #fff;
  13. margin-top:7px;
  14. }
  15. span{
  16. font-size: 18px;
  17. font-weight: bold;
  18. color:#fff;
  19. margin-left:15px;
  20. vertical-align: top;
  21. line-height: 50px;
  22. }
  23. }
  24. .f-nav{
  25. margin-left:30px;
  26. li{
  27. display:inline-block;
  28. position:relative;
  29. width:75px;
  30. margin:0 50px;
  31. text-align: center;
  32. &.active:after{
  33. position:absolute;
  34. bottom:0;
  35. left:50%;
  36. margin-left:-7px;
  37. display:block;
  38. content: '';
  39. width:0;
  40. height:0;
  41. border:7px solid #2f95dd;
  42. border-bottom:7px solid #fff;
  43. }
  44. span{
  45. line-height: 50px;
  46. font-size: 16px;
  47. color:#fff;
  48. }
  49. i{
  50. position:absolute;
  51. top:7px;
  52. right:-3px;
  53. display:block;
  54. width:24px;
  55. height:24px;
  56. line-height: 24px;
  57. background: #e35b61;
  58. border-radius:50%;
  59. text-align: center;
  60. font-size: 12px;
  61. font-style:normal;
  62. color:#fff;
  63. }
  64. }
  65. }
  66. }