style.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. .clear {
  2. clear: both;
  3. height: 1px;
  4. width: 100%;
  5. overflow: hidden;
  6. margin-top: -1px;
  7. }
  8. #wrap1 {
  9. width: 100%;
  10. height: auto;
  11. margin: 0px auto;
  12. }
  13. #heard1 {
  14. color: #fd0002;
  15. margin-bottom: 10px;
  16. width: 100%;
  17. height: 50px;
  18. line-height: 50px;
  19. text-align: center;
  20. font-size: 30px;
  21. font-weight: bold;
  22. }
  23. #main {
  24. width: 60%;
  25. height: auto;
  26. margin: 0px auto;
  27. }
  28. #mytable {
  29. padding: 0;
  30. margin: 0px 0px 10px 0px;
  31. border-collapse: collapse;
  32. border: 2px solid #fd0002;
  33. }
  34. #mytable td {
  35. border: 1px solid #fd0002;
  36. background: #fff;
  37. font-size: 11px;
  38. padding: 6px 6px 6px 6px;
  39. font-size: 14px;
  40. font-weight: 600;
  41. text-align: left;
  42. }
  43. #mytable td.alt {
  44. color: #fd0002;
  45. font-size: 14px;
  46. font-weight: 600;
  47. text-align: center;
  48. }
  49. #mytable td input,select,textarea{
  50. width: 80%;
  51. }
  52. #mytable td textarea{
  53. height: 50px !important;
  54. }
  55. #stable td {
  56. padding: 3px 3px 3px 6px;
  57. }
  58. .l-tab-links {
  59. position: relative;
  60. float: left;
  61. height: 32px;
  62. line-height: 32px;
  63. width: 100%;
  64. overflow: hidden;
  65. margin: 0px;
  66. background: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
  67. to(#f7f4f4));
  68. font-size: 12px;
  69. background: rgb(245, 245, 245);
  70. }
  71. .l-tab-links .l-selected a {
  72. font-size: 12px;
  73. font-weight: bold;
  74. height: 30px;
  75. line-height: 30px;
  76. }
  77. .l-tab-links li a {
  78. font-size: 12px;
  79. color: #777;
  80. font-weight: bold;
  81. height: 30px;
  82. line-height: 30px;
  83. }
  84. .l-tab-links li.l-selected {
  85. position: relative;
  86. float: left;
  87. height: 30px;
  88. background: #e6e6e6;
  89. overflow: hidden;
  90. text-decoration: none;
  91. background-position: 0 -15px;
  92. -webkit-transition: background-position 0.1s linear;
  93. -moz-transition: background-position 0.1s linear;
  94. -o-transition: background-position 0.1s linear;
  95. transition: background-position 0.1s linear;
  96. }
  97. .l-tab-links ul li {
  98. width: 120px;
  99. float: left;
  100. margin-right: -1px;
  101. margin-bottom: 0;
  102. font-size: 14px;
  103. height: 30px;
  104. line-height: 30px;
  105. text-align: center;
  106. vertical-align: middle;
  107. cursor: pointer;
  108. color: #333333;
  109. text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  110. background-color: #f5f5f5;
  111. background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  112. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff),
  113. to(#e6e6e6));
  114. background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  115. background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  116. background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
  117. background-repeat: repeat-x;
  118. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff',
  119. endColorstr='#ffe6e6e6', GradientType=0);
  120. border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  121. border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  122. filter: progid:DXImageTransform.Microsoft.gradient(enabled= false);
  123. border-bottom-color: #b3b3b3;
  124. -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
  125. rgba(0, 0, 0, .05);
  126. -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
  127. rgba(0, 0, 0, .05);
  128. box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px
  129. rgba(0, 0, 0, .05);
  130. }
  131. .error{
  132. color: red;
  133. }