index.less 661 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "~@less/variables.less";
  2. .box{
  3. margin: 2px 20px;
  4. word-break: break-word;
  5. .title{
  6. width: 65px;
  7. float: left;
  8. text-align: right;
  9. padding-right: 5px;
  10. margin-top: 10px;
  11. font-size: 14px;
  12. font-weight: bold;
  13. }
  14. .title:after{
  15. content: ":";
  16. }
  17. .content{
  18. // height:120px;
  19. min-height: 38px;
  20. margin:0 470px 0 60px;
  21. position: relative;
  22. padding:5px;
  23. outline: none;
  24. border-bottom:1px @part-border-color dashed;
  25. color: #333;
  26. /*border-radius: 4px;*/
  27. }
  28. .border {
  29. border:1px @part-border-color dashed !important;
  30. border-radius: 4px;
  31. }
  32. .noBorder{
  33. border: none;
  34. }
  35. }