html{
    width: 100%;
}
body {
}

#wrap{
    display: flex;
    height: 100%;
}
#tdwrapper {
    width:100%;
    display: flex;
    flex-direction: column;
}
#header {
    width:100%;
    height: 64px;
    color: #425262;
    border-bottom: 1px solid #EAEAEA;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-width:600px;
}
#header div{
    margin-right: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#header a{
    font-size:18px;
    font-weight:bold;
}

#lrwrapper {
    width:100%;
    height:calc(100vh - 64px);
    display: flex;
    flex-direction:row;
    /*border: 2px solid orange;*/
    overflow:auto;

}
#nav{
    width:240px;
    min-width: 240px;
    /*border: 1px solid purple;*/
    height:100%;
    padding-top: 32px;
    background: #FAFBFC;
    letter-spacing: -0.48px;
}
#content {
    width:100%;
    /*border: 2px solid palegoldenrod;*/
    /*width:calc(100vw - 240px);*/
    height:100%;
    padding-left: 35px;
    left: 240px;
    color: #425262;
    display: flex;
    flex-direction: column;
    min-width:1065px;
}


#nav p{
    font-size: 11px;
    font-weight: bold;
    color: #425262;
    padding-left: 32px;
    padding-bottom: 9px;
}

#nav a{
    display: flex;
    align-items: center;
    padding-top:11px;
    padding-bottom:11px;
    padding-left: 32px;
    font-size: 14px;
    font-weight: 500;
    color: #425262;
    transition: background-color, color .2s;
    position: relative;
}

#nav a.on{
    color: #4177F6;
    background: #ECF5FF;
    font-weight: 700;
}

#nav a:hover{
    background: #ECF5FF;
    font-weight: 700;
    opacity:80%;
}


#nav i {
    font-size: 20px;
    margin-right: 22px;
    color: #425262;
    transition: all .2s;
}

#nav a.on i{
    color: #4177F6;
}

#nav button:hover {
    color: #4177F6;
}

#signup-guide-box {
    background: #fff;
    margin-left: 12px;
    margin-right: 9px;
    min-height: 196px;
    border-radius: 4px;
    box-shadow: 0 1px 4px 2px rgba(0, 0, 0, 0.03);
    padding: 19px 15px;
}



#content-header,
#content-body{
    display:flex;
    flex-direction: column;
    padding-right:30px;
    width:100%;
    /*border: 2px solid lightskyblue;*/
    min-width:1030px;
}

#content-body{
    overflow-y:scroll;
    z-index: 50;
}

#content-header{
    padding-top:10px;
    padding-bottom:10px;
    z-index: 51;
}

#content-header button{
    margin-left:10px;
}

#content-header p{
    font-size: 24px;
    font-weight: bold;
    display:inline-block;
}

#addressbox {
    position:relative;
    z-index:100;
}


#content-body-tab {
    margin-top:0px;
    border-bottom: 1px solid #EAEAEA;
    z-index: 25;
}

#content-body-tab ul {
  font-size: 0;
  position: relative;
  padding: 0;
  width: 480px;
        z-index: inherit;
}


#content-body-tab li {
    display: inline-block;
    width: 88px;
    height: 52px;

    font-size: 15px;
    font-weight:bold;
    text-align: center;
    line-height: 52px;
    position: relative;
    cursor: pointer;
            z-index: inherit;

}

#content-body-tab li.on{
    color: #4177F6;
}

#content-body-tab li:hover {
    color: #4177F6;
    border-bottom: 4px solid #4177F6;
    opacity: 60%;
}

#content-body-tab .slider {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: #4177F6;;
  transition: all 0.5s;

}

.content-inner-flex{
    /*border: 1px solid lightpink;*/
    width: 80%;
    min-width:1030px;
    margin: 20px auto 0px auto;
        z-index: 20;


}

.content-body-flex{
    border: 1px solid lightpink;
    width: 1030px;
    min-width:1030px;
    margin: 24px auto;
    /*margin-top:24px;*/
}





