123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- @import "@assets/css/public-style.scss";
- .formContent {
- display: flex;
- justify-content: space-between;
- padding: 20px 20px 0 20px;
- background: white;
- .formContent-item {
- width: calc((100% / 3) - 80px);
- .formContent-formList {
- display: flex;
- justify-content: space-between;
- }
- .block-title {
- width: 200px;
- height: 80px;
- background: #ffffff;
- border-radius: 2px;
- border: 1px solid #e0e1e3;
- position: relative;
- .floor {
- margin: 16px 0 9px 0;
- font-weight: 600;
- font-size: 16px;
- }
- .remove {
- color: $mainBgColor;
- font-size: 12px;
- cursor: pointer;
- }
- .list-title {
- margin-left: 20px;
- position: relative;
- z-index: 2;
- }
- img {
- &.bg-img {
- position: absolute;
- right: 0;
- top: 0;
- width: 100px;
- }
- &.bg-imgIoc {
- position: absolute;
- right: 20px;
- top: 28px;
- width: 24px;
- }
- }
- }
- .addHouse {
- margin-bottom: 25px;
- }
- .add-block {
- width: 80px;
- height: 80px;
- background: #ffffff;
- border-radius: 2px;
- border: 1px solid #e0e1e3;
- position: relative;
- cursor: pointer;
- & > img {
- width: 16px;
- height: 16px;
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- }
- .addCat {
- & > div {
- float: left;
- margin-right: 20px;
- margin-bottom: 20px;
- }
- }
- }
- }
- .formContent-item_title {
- font-size: 14px;
- position: relative;
- margin-left: 14px;
- margin-bottom: 20px;
- &::before {
- position: absolute;
- left: -14px;
- top: 4px;
- width: 4px;
- height: 12px;
- border-radius: 2px;
- display: block;
- background: $mainBgColor;
- content: " ";
- }
- }
- .buttons {
- text-align: right;
- background: white;
- padding: 0 20px 20px 0;
- }
- .top-title {
- padding: 20px;
- background: white;
- margin-bottom: 20px;
- position: relative;
- h1 {
- font-size: 30px;
- line-height: 42px;
- }
- .right {
- position: absolute;
- right: 20px;
- top: 20px;
- }
- .text {
- margin-top: 10px;
- font-size: 12px;
- color: #747d87;
- span {
- margin-right: 40px;
- }
- }
- }
- .content {
- background: white;
- .tages {
- display: flex;
- padding: 15px 20px;
- border-bottom: 1px solid #ddd;
- .tages-list {
- margin-right: 40px;
- position: relative;
- cursor: pointer;
- &.active {
- color: $mainTextColor;
- &::before {
- position: absolute;
- left: 0px;
- bottom: -15px;
- width: 100%;
- height: 2px;
- background: $mainBgColor;
- content: " ";
- }
- }
- }
- }
- .content-item {
- padding: 30px 20px 20px 20px;
- .widthFlex {
- display: flex;
- margin-bottom: 20px;
- .item-table {
- width: 100%;
- border: 1px solid #e0e1e3;
- &:first-of-type {
- border-right: none;
- }
- .table-list {
- display: flex;
- line-height: 40px;
- border-bottom: 1px solid #e0e1e3;
- &:last-of-type {
- border-bottom: none;
- }
- .lable {
- width: 200px;
- background: #f8fcff;
- padding-left: 20px;
- box-sizing: border-box;
- border-right: 1px solid #e0e1e3;
- }
- .text {
- flex: 1;
- padding-left: 20px;
- box-sizing: border-box;
- }
- }
- }
- }
- }
- }
|