lib.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. /* CSS Document */
  2. /**
  3. * +----------------------------------------------------------
  4. * 主样式
  5. * +----------------------------------------------------------
  6. */
  7. *{
  8. -webkit-box-sizing: border-box;
  9. -moz-box-sizing: border-box;
  10. box-sizing: border-box;
  11. margin: 0;
  12. padding: 0;
  13. font-family: 微软雅黑;
  14. letter-spacing: 1px;
  15. }
  16. html,body{
  17. width: 100%; height: 100%;
  18. overflow: hidden;
  19. font-size: 14px;
  20. }
  21. li{
  22. list-style: none;
  23. }
  24. a{
  25. display: block;
  26. }
  27. a:hover{
  28. color: #df621e;
  29. -webkit-transition: all 0.2s ease-in-out;
  30. }
  31. iframe{
  32. border: 0; width: 100%; height: 100%;
  33. }
  34. .pull-left{ float: left; }
  35. .pull-right{ float: right; }
  36. .show{ display: block; }
  37. .hide{ display: none; }
  38. .i-bold{
  39. font-weight: bolder;
  40. }
  41. /*字体颜色*/
  42. .i-green{ color:#00c851 !important;}
  43. .i-yellow{ color:#e7592b !important;}
  44. .i-red{ color:#d90000 !important; font-weight: border;}
  45. .i-blue{ color:#2292ef !important;}
  46. .i-lightblue{ color:#00a5e0 !important;}
  47. .i-gray{ color:#6c6c6e !important;}
  48. /*背景颜色*/
  49. .bg-green{ background-color:#00c851 !important;}
  50. .bg-yellow{ background-color:#e7592b !important;}
  51. .bg-red{ background-color:#d90000 !important;}
  52. .bg-blue{ background-color:#2292ef !important;}
  53. .bg-white{ background-color: white !important;}
  54. .bg-gray{ background-color: #6c6c6e !important;}
  55. /*渐变色*/
  56. .shade-white{
  57. display: block;
  58. background-image:url(../../home/images/shade/white.png);
  59. background-repeat:repeat-x;
  60. background-size: 100% 100%;
  61. background-position: 0 0;
  62. }
  63. .shade-menu{
  64. display: block;
  65. background-image:url(../../home/images/shade/menu.png);
  66. background-repeat:repeat-x;
  67. background-size: 100% 100%;
  68. background-position: 0 0;
  69. }
  70. .shadow{
  71. box-shadow:0px 4px 8px rgba(0,0,0,0.3);
  72. }
  73. .shadow1{
  74. background: url(../../home/images/shadow.png);
  75. width: 220px; height: 15px;
  76. background-size: 100%;
  77. background-position: 0 0;
  78. position: absolute; bottom: -15px; left: 0;
  79. }
  80. .shadow2{
  81. background: url(../../home/images/shadow.png);
  82. width: 100%; height: 15px;
  83. background-size: 100%;
  84. background-position: 0 -15px;
  85. position: absolute; bottom: -15px; left: 0;
  86. }
  87. /* 数字提示 */
  88. .num{
  89. width: 15px; height: 15px; text-align: center; line-height: 15px;
  90. border-radius: 99px;
  91. color: white; font-weight: bolder;
  92. }
  93. .num-1{
  94. margin-left: 5px;
  95. padding: 5px 10px; text-align: center; line-height: 15px;
  96. border-radius: 99px;
  97. color: white; font-weight: bolder;
  98. }
  99. /* layui修改 */
  100. .layui-input-block{
  101. margin-left: 0;
  102. }