/*
    #369ffb 蓝色
    #ff6b95 粉色
*/

*{
    font-family: monospace;
}
html{
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	background:rgb(78, 79, 80);
}
.tabs{
    display: flex;
}
.tabs .tab{
    flex: 1;
    text-align: center;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
}
.tabs .tab.unselect{
    color: #ff6b95;
    background-color: white;
}
.tabs .tab.select{
    background-color: #ff6b95;
    color: white;
}
.edits{
	width: 95%;

	display: inline-flex;
	justify-content: space-between;

	margin-left: 2.5%;
	margin-right: 2.5%;

    font-size: 16px;

    height: calc(100% - 120px);
    overflow: hidden;
    height: calc(100% - 80px);
}
.edits .html-edit,
.edits .css-edit,
.edits .js-edit{
	width: calc(95% / 3);
	height: 98%;
	background: rgb(55, 56, 57);

    width: calc(97% / 2);
    width: 100%;
}
.edits .html-edit{
}
.edits .js-edit{
    display: none;
}
.edits .css-edit{
    display: none;
}
.edits .html-edit .tag,
.edits .css-edit .tag,
.edits .js-edit .tag{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-bottom: solid 1px rgb(85, 86, 87);
	color: white;
	width: 95%;
	padding-left: 5%;
}
.edits .html-edit .edit,
.edits .css-edit .edit,
.edits .js-edit .edit{
	width: 94%;
    height: none;
    border: none;
    background: transparent;
    padding: 3%;
    height: 70%;
    overflow: auto;
    height: calc(94% - 40px);
    color: white;
    line-height: 1.5em;
}
.edits .run{
	background: rgb(78, 79, 80);
}
.btns{
    display: flex;
}
.insert-pun-view,
.result{
	width: 100%;
	background: rgb(55, 56, 57);

    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}
.insert-pun-view{
    width: calc(100% - 10px);
    justify-content: flex-end;
    padding-right: 10px;
}
.result{
    justify-content: flex-start;
    padding-left: 5px;
}
.btns span,
.insert-pun-view .insert-pun,
.result .run,
.result .insert-pun,
.result .close{
    background: rgb(78, 79, 80);
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    margin-left: 1%;
    border-radius: 5px;
    letter-spacing: 4px;
    margin-top: 1%;
    display: inline-block;

    margin-top: 0;
    cursor: pointer;
    background: #ff6b95;
}
.result .run-result{
    height: calc(92% - 45px);
    border: solid 1px rgb(78, 79, 80);
    border-radius: 5px;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;

    display: none;
}
.code-result-shadow-view{
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10001;
    display: none;
}
.code-result-shadow-view .code-result{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: white;
}
.code-result-shadow-view .code-result .close{
    height: 35px;
    background: #ddd;
    width: 70%;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.code-result-shadow-view .code-result .close img{
    position: absolute;
    right: 10px;

    width: 15px;
    height: 15px;
    top: 10px;
}
.code-result-shadow-view .code-result .iframe-scroll{
    width: 100%;
    height: calc(100% - 35px);
    background: white;
    overflow: auto;
    -webkit-overflow-scrolling: touch;  
}
.code-result-shadow-view .code-result iframe{
    width: 100%;
    height: 100%;
}
.punctuation-shadow-view{
    position: fixed;
    z-index: 10001;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.punctuation-view{
    position: fixed;
    /*bottom: 50px;*/
    background: white;
    width: 70%;
    /* align-items: center; */
    /*justify-content: center;
    display: flex;*/
    z-index: 1000;
    /*flex-wrap: wrap;*/
    display: none;
}
.punctuation-view .close{
    height: 35px;
    background: #ddd;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}
.punctuation-view .close img{
    position: absolute;
    right: 10px;

    width: 15px;
    height: 15px;
    top: 10px;
}
.punctuations{
    justify-content: center;
    display: flex;
    z-index: 1000;
    flex-wrap: wrap;
    overflow: auto;
    height: 200px;
}
.punctuations span{
    padding: 10px;
    background: white;
    display: inline-block;
    margin: 10px;

    background: #ff6b95; */
    color: white; 
    font-size: 17px;
}


