123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- @import "~@less/variables.less";
- .box{
- margin: 2px 20px;
- word-break: break-word;
- .boxWrap {
- border:1px #E2E2E2 dashed;
- margin-right: 455px;
- margin-top: 80px;
- position: relative;
- padding: 10px 0;
- box-sizing: border-box;
- }
- .title{
- width: 270px;
- font-size: 14px;
- font-weight: bold;
- position: absolute;
- top: -40px;
- left: 0;
- border:1px #E2E2E2 dashed;
- border-bottom: 0;
- background-color: #fff;
- height:40px;
- line-height: 40px;
- padding: 0 10px;
- box-sizing: border-box;
- z-index: 2;
- }
- .title:after{
- content: ":";
- }
- .content{
- // height:120px;
- min-height: 38px;
- margin-left: 40px;
- position: relative;
- padding:5px 12px 5px 5px;
- outline: none;
- // border-bottom:1px @part-border-color dashed;
- color: #333;
- /*border-radius: 4px;*/
- }
- .border {
- border:1px @part-border-color dashed !important;
- border-radius: 4px;
- }
- .noBorder{
- border: none;
- }
- }
|