table,table tr th, table tr td { border-bottom: 1px solid #EEF1F5; }
table { text-align: center; border-collapse: collapse; padding:2px;}  
*{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    scrollbar-width: none; /* Firefox */
} 
::-webkit-scrollbar {
    display: none; /* Chrome Safari */
}

.box{
    width: 100%;
    height: 100%;
    background: #F2F5F6;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    .contant{
        flex: 1;
        display: flex;
        flex-direction: column;
        .colorspan{
            color: #07CDCF;
        }
        .main{
            flex: 1;
            display: flex;
            div{
                box-sizing: border-box;
                background-color: #fff;
                border-radius: 13px;
            }
            .leftDiv{
                width: 18%;
                margin: 20px;
                margin-bottom: 0;
                padding: 18px;
                .title{
                    display: flex;
                    justify-content: space-between;
                    font-size: 16px;
                }
                .unitList{
                    margin-top: 12px;
                    table{
                        width: 100%;
                        font-size: 15px;
                        tr{
                            height: 35px;
                            td:nth-child(1){
                                width: 60%;
                            }
                        }
                        tr:nth-child(1){              
                            background: #F5FDFE;
                        }
                    }
                }
            }
            .rightDiv{
                margin: 20px;
                margin-left: 0;
                flex: 1;
                margin-bottom: 0;
                display: flex;
                flex-direction: column;
                .tabsbox{
                    height: 46px;
                    border-radius: 0;
                    background: #F2F5F6;
                    div{
                        float: left; 
                        height: 46px;
                        line-height: 46px;
                        width: 100px;
                        text-align: center;
                        color: #788080;
                        border-radius: 0;
                        border-top: 2px solid #fff;
                        cursor: pointer;
                    }
                    // div:nth-child(1){
                    //     border-radius:13px 0 0 0 ;
                    // }
                    //选中选项卡
                    .selectedTab{
                        color: #07CDCF;
                        border-top: 2px solid #07CDCF;
                    }
                }
                .maincontantbox{
                  flex: 0px;
                  overflow-y: auto;  
                  padding: 18px;
                  .basicinfodiv{
                      .scoreInput{
                          text-align: center;
                          width: 60px;
                          color: #FF8678;
                      }
                      .treeNodeTemplate{
                          .scoreDiv{
                              display: inline-block;
                            
                              .lookitem{
                                margin: 0 20px;
                              }
                              .item{
                                  cursor: default;
                                  margin: 0 10px;
                              }
                          }
                      }
                  }
                  .fightdeploydiv{
                      .addPlan{
                        width: 130px;
                        height: 36px;
                        line-height: 36px;
                        background: #07CDCF;
                        opacity: 1;
                        border-radius: 8px;
                        color: #fff;
                        text-align: center;
                        cursor: pointer;
                        font-size: 16px;
                        margin-bottom: 15px;
                      }
                      .planList{
                          table{
                            width: 100%;
                            tr{
                                height: 42px;
                                font-size: 15px;
                                td{
                                    input{
                                        width: 62px;
                                        height: 26px;
                                        background: #F2F5F6;
                                        border: none;
                                        border-radius: 5px;
                                        text-align: center;
                                    }
                                    span{
                                        margin: 0 5px;
                                        cursor: pointer;
                                    }
                                }
                            }
                            tr:nth-child(1){              
                                background: #F5FDFE;
                            }
                          }
                      }
                  }
                }
            }
        }
        .btnbox{
            width: 100%;
            height: 70px;
            display: flex;
            justify-content: center;
            align-items: center;
            .btn{
                width: 100px;
                height: 33px;
                background: #01CFD5;
                opacity: 1;
                border-radius: 8px;
                color: #FFFFFF;
                text-align: center;
                line-height: 33px;            
                font-size: 16px;
                font-family: Source Han Sans CN;
                margin: 0 15px;
                cursor: pointer;
            }
        }
    }
}