* {
    margin: 0;
    padding: 0;
}
html{
    height:100%;
    overflow: hidden;
}
body{
    height:100%;
}
a {
    text-decoration: none;
}

li {
    list-style-type: none; 
    /* 去掉无序列表前的那个原点 */
}

#navigator{
    background-color: #348ac5;  
    height: 5em;
    border-bottom: 1px solid rgb(200, 200, 200);
}
#navigator .study_check{
    display: inline-flex;
    /* 在父元素ul中设置子元素的显示形式 */
}
#navigator .nav1{
    position:relative;
    width: 6em;
    font-size: 1.5em;
    padding: 0.5em 0.5em 0.5em 0.5em;
    margin: 0.5em 0.5em 0 0.5em;
    border: 1px solid rgb(200, 200, 200);
    font-weight: bold;
    text-align: center;
    margin-bottom:0;
    z-index: 22;
}
.study_check a{
    color:white;
    display:inline-block;
}
#navigator .nav1 .dropdown-list{
    color:black;
    position:absolute;
    top:58px;
    left:0;
    width:100%;
    margin-top:-2px;
    margin-bottom:0;
    /* border:1px solid rgb(200, 200, 200); */
    display:none;
}
#navigator .nav1:hover .dropdown-list{
    display:block; 
    z-index:200;
}
.dropdown-list li{
    height:40px;
    width:100%;
    line-height: 40px;
    text-align: center;
    font-size:18px;
    margin:0;
    border: 1px solid rgb(200, 200, 200);
    background-color: rgba(255, 255, 255, 0.3);
}
.dropdown-list li:hover{
    color:#348ac5;
}
.dropdown-list li a{
    color:black;
}
.dropdown-list li a:hover{
    color:#348ac5;
}

/* #navigator ul li{
    
} */
/* #navigator ul li a{
    align-items: center;
} */

.shadow {
    position: relative;
    max-width: 270px;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3),
                0px 0px 20px rgba(0,0,0,0.1) inset;
}
.shadow:hover{
    position: relative;
    max-width: 270px;
    box-shadow: 0px 1px 4px rgba(255, 255, 255, 0.3),
                0px 0px 20px rgba(255, 255, 255, 0.1) inset;
}

#menu{
    display: inline-block;
    height: 2.9em;
    width: 100%;
    background-color: #eaeaea;  
}
#menu .tool{
    margin: 0.2em 0.8em 0.2em 0.8em;
    width: 2.9em;
    height: 2.9em;
}
#menu .basic_tool{
    height: 1.5em;
    margin: 0.5em 0.5em 0.5em 0.5em;
    cursor: pointer;
}
#menu .tool::after {
    content: attr(tips);
    display: block;
    z-index: 100;
    height: 1.8em;
    width: 5em;
    padding: 5px;
    background-color: #B4A078;
    box-shadow: 0 0 5px #B4A078;
    color: white;
    text-align: center;
    border-radius: 1px;

    position: relative;
    transform: translate(-1.4em, 1em);

    opacity: 0;
}
#menu .tool:hover::after {
    opacity: 1;
}

#menu .tool::before {
    content: '';
  
    width: 0;
    height: 0;
    z-index: 100;
    border: 6px solid transparent;
    border-top-color: #B4A078;
  
    position: absolute;
    transform: translate(0.9em, 3em);
  
    opacity: 0;
}
#menu .tool:hover::before {
    opacity: 1;
}

/* #study{
    position: fixed;
    left: 0;
    height: 100%;
    width: 100%;
} */
/* #study iframe{ */
    /* position: fixed; */
    /* left: 0; */
    /* height: 100%; */
    /* width: 100%; */
/* } */
#layers_panel{
    position: fixed;
    left: 0;
    height: 100%;
    width: 20%;
    /* background-color: #ff0000;   */
}

#view_window{
    position: fixed;
    height: 100%;
    width: 60%;
    left: 20%;
    /* background-color: #00ff00;   */
}

#tools_panel{
    position: fixed;
    display: block;
    right: 0;
    height: 100%;
    width: 20%;
    background-color: #f0f0f0;  
}
#tools_panel h1{
    padding: 0.2em 0.5em 0.2em 0.5em;
}
#tools_panel h1:hover{
    border: none;
    box-shadow: none;
}
#tools_panel .tool{
    margin: 0.5em 0em 0.5em 0em;
    padding: 0 0.2em 0 0.2em;
    width: 100%;
    height: 2.9em;
    border: none;
}
#tools_panel :hover{
    border: 1px dashed grey;
    position: relative;
    max-width: 270px;
    box-shadow: 0px 1px 4px rgba(0,0,0,0.3),
                0px 0px 20px rgba(0,0,0,0.1) inset;
}
#tools_panel .tool_tag{
    float: left;
    margin: 0.6em 0 0.5em 0.6em;
}
#tools_panel .tool_tag:hover{
    border: none;
    box-shadow: none;
}
#tools_panel .pro_tool{
    float: left;
    margin: 0.5em 0.5em 0.5em 0.5em;
    height: 1.5em;
    width: 1.5em;
    cursor: pointer;
}
#tools_panel .pro_tool:hover{
    border: none;
    box-shadow: none;
}

.avatar {
    margin-right: 10vh;

    margin-top: 0.5em;
    height: 4em;
    width: 4em;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;

}

.avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}