body {
    margin-top: 0px !important;
    padding-top: 0px !important;
    margin-bottom: 0px !important;
}

.kit-header {
    height: 32px;
    background-color: white;
    border-bottom: 1px solid #e8e8e8
}

.container {
    display: flex;
    justify-content: left;
    /* 水平居中 */
    /* align-items: center;     垂直居中，如果需要 */
    height: 32px;
    /* 高度设为视口高度，使元素完全居中 */
    /**gap: 10px;*/
}
#container {
    width: 100%;
    height: 58vh;
    transition: all 0.3s ease;
} 
  
/* 全屏状态 */
 #container.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
} 
  
.fullscreen-img{
    width: 22px;
    height: 22px;
    margin-top: 0px;
    margin-right: 0px;
    float: right;
}
/* 
#container {
    position: relative;
    width: 100%;
    height: 100%;
  }
   */
/* #fullscreenBtn {
    position: absolute;
    top: 4px;
    right: 6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    z-index: 10;
  } */

  

.item {
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    line-height: 28px;
    font-size: 14.2px;
    font-family: 'Courier New', Courier, monospace;
    font-family: 'Times New Roman', Times, serif;
    font-family: monospace;
    color: #383838;
    background-color: white;
}

.custom-a {
    text-decoration: none;
    color: #383838;
    font-size: .9rem;
}

.custom-a:hover {
    font-weight: bold;
    color: #282828;
}

/**去除左侧的框*/
/* .mergely-margin{ */
/* width:0px; */
/* opacity: 0; */
/* } */
.CodeMirror-gutters {
    padding-left: 20px;
    padding-right: 5px;
}


.merge-button {
    padding-top: 2px !important;
    color: white !important;
    font-weight: bold;
    /* background-color: black !important; */
    /* background-color: green !important; */
    /* background-color: #363636 !important; */
    background-color: black !important;
    /* border:1px; */
    /* background-size: 50%; */
    margin-left: -25px !important;
    margin-right: -0px !important;
    width: 16px;
    height: 16px;
    /* opacity: 1; */
    font-weight: bold;
    padding-top: 0px;
    padding-bottom: 0px;
    align-items: center;
    /* text-align: center; */
    padding-left: 4px !important;
    line-height: 15px !important;
    /* 垂直居中 */
    margin-top: 0px !important;
    /* margin-right: 0px !important; */
}

/**当前需要合并的文本的标识*/
.mergely.current.CodeMirror-linenumber {
    /* background-color: #5eb09a; */
    background-color: #888;
}

[id^="merge-lhs-"].merge-button {}

[id^="merge-lhs-"].merge-button::before {
    /* content: "="; */
    /* width:16px; */
    /* height:16px !important; */
}

/* #merge-lhs-*.merge-button::before{ */
/* content: "="; */
/* } */

.mergely.ch.d.lhs {
    /* background-color: rgba(255, 255, 255, 0); */
    /* font-weight: bold; */
    background-color: #f9cece;
    font-weight: bold;
}

.mergely.d.lhs {
    background-color: #f9cece;
    /* background-color: rgba(255, 255, 255, 0); */
    /* font-weight: bold; */
}


.mergely.ch.a.rhs {
    /* background-color: rgba(255, 255, 255, 0); */
    /* color:blue; */
    background-color: #bad8f9;
    color: blue;
    font-weight: bold;
}

.mergely.a.rhs {
    background-color: #bad8f9;
    /* background-color: rgba(255, 255, 255, 0); */
}

.mergely-column {
    font-size: 14.2px;
    line-height: 20px !important;
}

.mergely.c.lhs,
.mergely.c.rhs {
    background-color: #f8f8f8;
}

.common-container {
    margin-top: 2px;
    display: grid;
    grid-template-columns: 20px 1fr  1fr  20px;
    /* grid-template-columns: 20px 1fr 20px 1fr 20px 20px; */
}

.button-class {
    font-size: 14.6px;
    color: #13872e;
    /* font-weight: bold; */
    /* color: #168168; */
    background-color: white;
    border: none;
    padding: 0px;
    /* color:#22ca9d; */
}

.button-class-bold {
    font-size: 14.6px;
    color: #13872e;
    /* font-weight: ; */
    /* color: #168168; */
    background-color: white;
    border: none;
    padding: 0px;
    /* color:#22ca9d; */
}



/* wrapper 全屏 */
.wrapper-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    background: #fff;
    box-sizing: border-box;
    overflow: auto;
    padding: 20px;
}

/* 全屏时 textarea 变大 */
.wrapper-fullscreen #myTextarea {
    height: calc(100vh - 80px);
    /* 留按钮空间 */
    font-size: 18px;
}