123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /**
- * common
- */
- .box {
- display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
- }
- .box_align_center {
- -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
- }
- .box_vertical {
- -webkit-box-orient: vertical;-moz-box-orient: vertical;-o-box-orient: vertical;-ms-box-orient: vertical;box-orient: vertical;
- }
- .box_flex {
- -moz-box-flex: 1;-webkit-box-flex: 1;-o-box-flex: 1;-ms-box-flex: 1;box-flex: 1;
- }
- .box_center {
- display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
- -webkit-box-pack: center;-moz-box-pack: center;-o-box-pack: center;-ms-box-pack: center;box-pack: center;
- -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
- }
- .box_container {
- width: 100%;
- height: 100%;
- }
- .hide {
- display: none;
- }
- .detail_layout {
- width: 100%;
- height: 100%;
- }
- .detail_center {
- border: 0px;
- }
- .detail_south {
- height: 38px;
- border-left: 0px;
- border-right: 0px;
- border-bottom: 0px;
- }
- .detail_east {
- border-top: 0px;
- border-right: 0px;
- border-bottom: 0px;
- }
- .detail_west {
- border-top: 0px;
- border-left: 0px;
- border-bottom: 0px;
- }
- .detail_main {
- padding: 8px;
- font-size: 14px;
- padding-right: 20px;
- }
- .detail_toolbar {
- padding: 5px 10px;
- }
- ul li {
- margin: 0;
- padding : 0;
- }
- /**
- * f_item
- */
- .f_item {
- padding: 5px 0;
- display: block;
- line-height: 20px;
- min-height: 30px;
- }
- .f_item label {
- vertical-align: middle;
- }
- .f_label {
- width: 80px;
- text-align: right;
- margin-right: 10px;
- display: -webkit-box;display: -moz-box;display: -o-box;display: -ms-box;display: box;
- -webkit-box-pack: end;-moz-box-pack: end;-o-box-pack: end;-ms-box-pack: end;box-pack: end;
- -webkit-box-align: center;-moz-box-align: center;-o-box-align: center;-ms-box-align: center;box-align: center;
- }
- .f_content {
- padding-right: 10px;
- }
- .f_item label:first-child {
- display: inline-block;
- width: 100px;
- text-align: right;
- margin-right: 10px;
- }
- .f_item .item_c {
- display: inline-block;
- vertical-align: middle;
- }
- .f_item .item_c img{
- margin: 10px 0;
- }
- #image_list .img_list, #upload_image_list .img_list{
- float:left;
- margin:5px;
- }
- /**
- * toolbar
- */
- .tb_line {
- padding: 2px;
- }
- .tb_line_h {
- padding: 4px 2px;
- }
- .tb_label {
- margin-left: 3px;
- }
- .tb_box {
- margin: 3px 2px;
- padding:5px;
- border: 1px solid #95B8E7;
- }
|