123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .container {
- margin: 0;
- padding: 0;
- overflow: hidden;
- width: 100%;
- height: 100%;
- .header {
- position: absolute;
- z-index: 555;
- margin-bottom: 20px;
- height: 70px;
- width: 100%;
- top: 0;
- img {
- width: 100%;
- height: 100%;
- }
- }
- }
- .el-container {
- height: 938px;
- overflow: hidden;
- }
- // 点击模型弹出框
- .modelInfo {
- position: absolute;
- padding: 10px;
- padding-left: 20px;
- border-radius: 10px;
- background: rgba(255, 255, 255, 0.80);
- width: 206px;
- height: 165px;
- display: none;
- z-index: 999;
- .model-detail {
- position: absolute;
- // border: 2px dashed #00CF78;
- display: none;
- display: flex;
- justify-content: space-between;
- flex-direction: column;
- // flex-wrap: wrap;
- // padding: 10px;
- span {
- font-size: 16px;
- width: 100%;
- font-family: Microsoft YaHei UI;
- // border: 1px solid red;
- // margin: 6px;
- margin: 6px 0;
- font-weight: 400;
- .title {
- color: #333;
- font-weight: 700;
- }
- .green {
- color: #00C767;
- }
- .red {
- color: #DB4A36;
- }
- }
- }
- }
|