index.less 995 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. @import "~@less/variables.less";
  2. .box{
  3. margin: 2px 20px;
  4. word-break: break-word;
  5. .boxWrap {
  6. border:1px #E2E2E2 dashed;
  7. margin-right: 455px;
  8. margin-top: 80px;
  9. position: relative;
  10. padding: 10px 0;
  11. box-sizing: border-box;
  12. }
  13. .title{
  14. width: 270px;
  15. font-size: 14px;
  16. font-weight: bold;
  17. position: absolute;
  18. top: -40px;
  19. left: 0;
  20. border:1px #E2E2E2 dashed;
  21. border-bottom: 0;
  22. background-color: #fff;
  23. height:40px;
  24. line-height: 40px;
  25. padding: 0 10px;
  26. box-sizing: border-box;
  27. z-index: 2;
  28. }
  29. .title:after{
  30. content: ":";
  31. }
  32. .content{
  33. // height:120px;
  34. min-height: 38px;
  35. margin-left: 40px;
  36. position: relative;
  37. padding:5px 12px 5px 5px;
  38. outline: none;
  39. // border-bottom:1px @part-border-color dashed;
  40. color: #333;
  41. /*border-radius: 4px;*/
  42. }
  43. .border {
  44. border:1px @part-border-color dashed !important;
  45. border-radius: 4px;
  46. }
  47. .noBorder{
  48. border: none;
  49. }
  50. }