*{
    touch-action: none;
}
body {
    margin:0; padding:0;
    font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, STHeitiSC-Light, Microsoft YaHei, SimSun, sans-serifsans-serifsans-serifsans-serifsans-serifsans-serif;
}


body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
body::-webkit-scrollbar-thumb {
    background-color: rgb(198, 198, 198);
    border-radius: 10px;
}
body::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: white;
}

::-webkit-scrollbar {
    /* 滚动条整体部分 */
    width: 2px;
    margin-right: 2px;
}

::-webkit-scrollbar-button {
    /* 滚动条两端的按钮 */
    width: 2px;
}

::-webkit-scrollbar:horizontal {
    height: 1px;
    margin-bottom: 2px
}

::-webkit-scrollbar-track {
    /* 外层轨道 */
    border-radius: 1px;
}

::-webkit-scrollbar-track-piece {
    /*内层轨道，滚动条中间部分 */
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    /* 滑块 */
    width: 2px;
    border-radius: 1px;
    background: #CBCBCB;
}

::-webkit-scrollbar-corner {
    /* 边角 */
    width: 2px;
}

::-webkit-scrollbar-thumb:hover {
    /* 鼠标移入滑块 */
    background: #CBCBCB;
}

.loading {
    width: 100%;
    height: 100%;
    position: relative;
}
.container_dwg {
    width: 100%;
    height: 100%;
    position: relative;
    display: none;
}
.view {
    width: 100%;
    height: 100%;
    position: relative;
}

#canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0%;
    left: 0%;
}

.left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #2e2e2e;
    border-radius: 0 15px 15px 0px;
    z-index: 104;

    text-align: center;
    color: #fff;
    font-size: 12px;
}

.l-line {
    width: 60%;
    margin-left: 20%;
    height: 0.5px;
    background-color: #fff;
    opacity: 0.3;
}

.l-item:nth-child(1) {
    margin-top: 15px;
}
.l-item:nth-last-child(1) {
    margin-bottom: 15px;
}

.l-item {
    position: relative;
    box-sizing: border-box;
    width: 68px;
    height: 73px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    cursor: pointer;
}

.l-item:hover {
    border-left: 6px solid #1E90FF;
    background: rgba(30, 144, 255, 0.1);
}

.l-item img {
    width: 30px;
    height: 30px;
    margin-top: 16px;
}

.l-item .l-item-word {
    margin-top: 6px;
}


.rt {
    position: absolute;
    right: 96px;
    top: 33px;
    background: #2e2e2e;
    border-radius: 8px;
    z-index: 104;
    height: 74px;
    padding: 0 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 12px;
}

.rt-item{
    width: 74px;
    height: 74px;
    cursor: pointer;
}

.rt-item-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.rt-item:hover {
    background: rgba(30, 144, 255, 0.2);
}

.rt-item-word {
    margin-top: 5px;
}

.rt-box {
    width: 340px;
    background: #2e2e2e;
    border-radius: 8px;
    position: absolute;
    right: -15px;
    top: 83px;
    max-height: 450px;
    overflow-y: scroll;
    display: none;
}

.layer-line:nth-child(1), .model-line:nth-child(1) {
    margin-top: 30px;
}

.layer-item, .model-item {
    width: 300px;
    height: 36px;
    line-height: 36px;
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    text-align: left;
}

.layer-item div, .model-item div {
    width: 260px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.layer-item input, .model-item input {
    width: 18px;
    height: 18px;
    margin-top: 10px;
}

.layer-line, .model-line {
    width: 100%;
    height: 0.5px;
    background-color: #fff;
    opacity: 0.3;
}

#layers, #models {
    display: none;
}


.edit-box {
    min-width: 300px;
    max-width: 800px;
    position: absolute;
    top: 200px;
    left: 52%;
    transform: translateX(-50%);
    border: 1px solid #dcdcdc;
    border-radius: 2px;
    background-color: #fff;
    color: #fff;
    z-index: 105;
    display: none;
    box-shadow: 0 0 16px rgb(0 0 0 / 10%);
    padding: 0 20px;
}

.edit-title {
    width: 100%;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 16px;
    color: #3a3a3a;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 1px solid #ccc;
    background-color: #ececec;
}

#edit_input, #input_word_input {
    width: 100%;
    padding: 5px 0;
    min-height: 20px;
    line-height: 20px;
    word-break: break-word;
    border: none;
    outline: none;
    resize: none;
    font-size: 14px;
    color: #555;
    margin-left: 10px;
    overflow: hidden;
    /* text-overflow:ellipsis; */
    white-space: nowrap;
}

.edit-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}

.endt-input {
    display: flex;
    /* align-items: center; */
    justify-content: flex-start;
    width: 100%;
    margin: 10px auto;
}

.edit-logo {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edit-logo img{
    width: 24px;
    height: 24px;
}

#edit_cancel, #edit_yes, #input_word_cancel, #input_word_yes {
    width: 50px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    font-size: 14px;
    color: #5DC8CD;
    cursor: pointer;
    border-radius: 2px;
}

#edit_cancel, #input_word_cancel {
    border: 1px solid #ced0d1;
    color: #999;
}

#edit_yes, #input_word_yes {
    background-color: #4383f0;
    color: #fff;
    margin-left: 10px;
    margin-right: 20px;
}

#file_name {
    position: fixed;
    top: 77px;
    left: 113px;
    color: #fff;
    font-size: 18px;
    width: 217px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    z-index: 104;
}

.qrcode {
    width: 256px;
    height: 256px;
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    background-color: #fff;
    color: #fff;
    z-index: 105;
    display: none;
}

#download_btn {
    display: block;
}

.measure-area-box {
    width: 350px;
    height: 60px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 8px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 105;
    display: none;
}
.mab-item {
    display: flex;
    flex-direction: row;
    height: 30px;
    line-height: 30px;
}
.mab-item-title {
    margin-left: 20px;
}
.mab-item-value {
    margin-left: 50px;
}

@media screen and (max-width: 720px) {
    .l-item {
        width: 40px;
    }
    .rt-item {
        width: 25px;
        margin-left: 5px;
        height: 56px;
    }
    .rt {
        right: 36px;
        height: 56px;
    }
    .rt-item img {
        width: 25px;
        height: 25px;
    }
}

.tss-expire {
    margin-left: 20px;
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    height: 21px;
    font-size: 14px;
}

.tss-item {
    margin-left: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.tss-item input {
    margin: 0;
}

.team-code-expire-word {
    font-size: 14px;
    line-height: 21px;
    color: #333;
    padding-left: 4px;
}

.team-code-expire-word-active {
    color: #4383f0;
}

.tss-url-input {
    width: 461px;
    height: 42px;
    overflow: hidden;
}

::-webkit-input-placeholder {
	/* WebKit browsers */
	color: #999;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
}

:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
	color: #999;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
}

::-moz-placeholder {
	/* Mozilla Firefox 19+ */
	color: #999;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
}

:-ms-input-placeholder {
	/* Internet Explorer 10+ */
	color: #999;
	font-size: 13px;
	font-weight: normal;
	font-stretch: normal;
	letter-spacing: 0px;
}


/* 图层 */

.dwg_tuceng_fun {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 0 10px;
}

.dwg_tuceng_gou {
    width: 10px;
    height: 10px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png");
    background-position: -1px -3px;
}

.dwg_tuceng_gou_close {
    width: 10px;
    height: 10px;
    background-image: none;
}

.dwg_tuceng_suo {
    width: 24px;
    height: 24px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    background-position: 0 -272px;
    border: solid 1px rgba(0, 0, 0, 0);
}

.dwg_tuceng_suo_close {
    width: 24px;
    height: 24px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    /* background-image: none; */
    background-position: 0 -295px;
    border: solid 1px rgba(0, 0, 0, 0);
}

.dwg_tuceng_kg {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    background-position: 0 -344px;
    border: solid 1px rgba(0, 0, 0, 0);
}

.dwg_tuceng_kg_cur {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    background-position: 0 -320px;
    border: solid 1px rgba(0, 0, 0, 0);
}

.dwg_tuceng_kg_no {
    background-image: none;
}

.dwg_tuceng_kg_top {
    background-image:none;
}

.dwg_tuceng_kg_close {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    background-position: 0 -368px;
    border: solid 1px rgba(0, 0, 0, 0);
}
.dwg_tuceng_suo:hover,
.dwg_tuceng_kg:hover {
    border: solid 1px #4176d0;
}

.dwg_tuceng_border {
    border: solid 1px #4176d0;
}

.dwg_tuceng_top_right {
    width: 16px;
    height: 16px;
    background-image: url("/static/images/dwg_new/dwg_sprite.png?v=1");
    background-position: -22px 3px;
    margin-right: 8px;
}


@media (min-width: 1024px){

} /*>=1024的设备*/

@media (min-width: 1100px) {

} /*>=1100的设备*/
@media (min-width: 1280px) {

} /*>=1280的设备*/

@media (min-width: 1366px) {

}  

@media (min-width: 1440px) {

} 

@media (min-width: 1680px) {

} 
@media (min-width: 1920px) {

} 