style.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**
  2. * common
  3. */
  4. .box {
  5. display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
  6. }
  7. .box_align_center {
  8. -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
  9. }
  10. .box_vertical {
  11. -webkit-box-orient: vertical;-moz-box-orient: vertical;-o-box-orient: vertical;-ms-box-orient: vertical;box-orient: vertical;
  12. }
  13. .box_flex {
  14. -moz-box-flex: 1;-webkit-box-flex: 1;-o-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
  15. }
  16. .box_center {
  17. display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
  18. -webkit-box-pack: center;-moz-box-pack: center;-o-box-pack: center;-ms-box-pack: center;box-pack: center;
  19. -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
  20. }
  21. .box_container {
  22. width: 100%;
  23. height: 100%;
  24. }
  25. .hide {
  26. display: none;
  27. }
  28. .detail_layout {
  29. width: 100%;
  30. height: 100%;
  31. }
  32. .detail_center {
  33. border: 0px;
  34. }
  35. .detail_south {
  36. height: 38px;
  37. border-left: 0px;
  38. border-right: 0px;
  39. border-bottom: 0px;
  40. }
  41. .detail_east {
  42. border-top: 0px;
  43. border-right: 0px;
  44. border-bottom: 0px;
  45. }
  46. .detail_west {
  47. border-top: 0px;
  48. border-left: 0px;
  49. border-bottom: 0px;
  50. }
  51. .detail_main {
  52. padding: 8px;
  53. font-size: 14px;
  54. padding-right: 20px;
  55. }
  56. .detail_toolbar {
  57. padding: 5px 10px;
  58. }
  59. ul li {
  60. margin: 0;
  61. padding : 0;
  62. }
  63. /**
  64. * f_item
  65. */
  66. .f_item {
  67. padding: 5px 0;
  68. display: block;
  69. line-height: 20px;
  70. min-height: 30px;
  71. }
  72. .f_item label {
  73. vertical-align: middle;
  74. }
  75. .f_label {
  76. width: 80px;
  77. text-align: right;
  78. margin-right: 10px;
  79. display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
  80. -webkit-box-pack: end;-moz-box-pack: end;-o-box-pack: end;-ms-box-pack: end;box-pack: end;
  81. -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
  82. }
  83. .f_content {
  84. padding-right: 10px;
  85. }
  86. .f_item label:first-child {
  87. display: inline-block;
  88. width: 100px;
  89. text-align: right;
  90. margin-right: 10px;
  91. }
  92. .f_item .item_c {
  93. display: inline-block;
  94. vertical-align: middle;
  95. }
  96. .f_item .item_c img{
  97. margin: 10px 0;
  98. }
  99. #image_list .img_list, #upload_image_list .img_list{
  100. float:left;
  101. margin:5px;
  102. }
  103. /**
  104. * toolbar
  105. */
  106. .tb_line {
  107. padding: 2px;
  108. }
  109. .tb_line_h {
  110. padding: 4px 2px;
  111. }
  112. .tb_label {
  113. margin-left: 3px;
  114. }
  115. .tb_box {
  116. margin: 3px 2px;
  117. padding:5px;
  118. border: 1px solid #95B8E7;
  119. }