@import "font-resources.css";

body {
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Open Sans', 'Helvetica Neue',Helvetica, Arial,sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    text-decoration: none;
}
.page-header {
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    box-shadow: 0px -10px 19px 0px black;
    display: flex;
    justify-content: center;
    z-index: 10000;
    background-color: white;
    font-family: 'Roboto', 'Open Sans', 'Microsoft YaHei', Arial, sans-serif;
    width: 100%;
    min-width: 1040px;
}
.header-content {
    display: flex;
    align-items: center;
    width: 1040px;
    box-sizing: border-box;
}
.head-menu {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    position: relative;
    width: 650px;
    margin-top: 5px;
}
.head-menu-box {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
}
.head-menu-box .header-prefix-icon{
    transition: transform 0.2s;
}
.item-head-menu.selected .header-prefix-icon, .item-head-menu.selected .header-menu-text{
    color: #2381c4;
}
.head-menu-box:hover .header-prefix-icon{
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12);
}
.header-prefix-icon {
    font-size: 22px;
    height: 22px;
    color: #999999;
    margin-bottom: 4px;
}
.item-head-menu {
    cursor: pointer;
    color: #333333;
    text-decoration: none;
    margin-right: 10px;

}
.item-head-menu.last-item {
    margin-right: 0;
}
a.item-head-menu:hover {
    text-decoration: none;
}

.language {
    font-size: 12px;
    align-self: flex-start;
    display: flex;
}
.language .language-box {
    background-color: #666666;
    min-width: 40px;
    text-align: center;
    height: 25px;
    line-height: 25px;
    display: block;
    color: #FFFFFF;
    border-radius: 0 0 5px 5px;
    margin-right: 8px;
    padding: 0 5px;
}
.language .language-box:last-child {
    margin-right: 0;
}

.language .language-box:hover {
    background-color: #AA0574;
    text-decoration: none;
}

.footer-high-light {
    position: absolute;
    background-color: rgb(35, 129, 196);
    bottom: -5px;
    left: calc(100% + 100px);
    height: 3px;
    width: 0px;
    transition: left .5s ease-in-out, width .5s ease-in-out, height .5s ease-in-out;
}


.main-menu-list {
    width: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left:0;
    top: 0;
    background-color: #2A2829;
    padding: 20px 0;
    height: calc(100% - 40px);
    z-index: 15000;
}
.main-menu-list .menu-item {
    font-size: 24px;
    margin-bottom: 20px;
    height: 24px;
}
.main-menu-list .menu-item:last-child {
    margin-bottom: 0;
}
.main-menu-list a.menu-item {
    color: #AEAEAE;
}
.main-menu-list a.menu-item.selected, .main-menu-list a:hover.menu-item {
    color: #FFFFFF;
}

.main-menu-list .menu-item.create-new {
    /*margin-bottom: 20px;*/
    width: 24px;
    height: 24px;
    position: relative;
}
.menu-item.create-new > span.fixed-button {
    display: block;
    background-color: transparent;
    color: #666666;
}
.menu-item.create-new:hover > span.fixed-button {
    /*background-color: #EEEEEE;*/
    background-color: #2A2829;
    color: #FFFFFF
}
.menu-item.create-new .create-menu-list {
    position: absolute;
    left: 12px;
    bottom: 12px;
    flex-direction: column;
    border: 1px solid #000000;
    display: none;
    z-index: 100001;
}
.menu-item.create-new:hover .create-menu-list {
    display: flex;
}
.menu-item.create-new .create-menu-list > a {
    display: block;
    font-size: 12px;
    text-align: center;
    width: 200px;
    line-height: 37px;
    background-color: #EEEEEE;
    color: #016698;
    border-bottom: 1px solid #000000;
}
.menu-item.create-new .create-menu-list > a:hover {
    font-weight: bold;
    background-color: #CCEEFF;
}
.menu-item.create-new .create-menu-list > a:last-child {
    border: none;
}

#layout_menu_tip {
    /*background-color: rgba(42, 122, 210, 0.8);*/
    background-color: rgba(0, 95, 201, 0.83);
    color: white;
    border-radius: 5px;
    padding: 5px;
    font-size: 12px;
    display: none;
    left: 40px;
    position: fixed;
    z-index: 999;
}
#layout_menu_tip.fade-in {
    display: block;
    animation: fade-in 0.6s;
}

#layout_menu_tip.fade-out {
    animation: fade-out 0.6s;
    display: none;
}


.page-container {
    /*padding-top: 80px;*/
    background-color: #FFFFFF;
    width: 1040px;
    margin: auto;
}


.page-footer {
    color: #333333;
    width: 100%;
    text-align: center;
    font-family: "Lato", arial, helvetica, sans-serif;
    font-size: 12px;
    margin-top: 50px;
    margin-bottom: 20px;
}
.page-footer a {
    color: #333333;
}
ul li {
    list-style: none;
}

.section-footer{
    font-family: Futura;
}

.section-footer .section-box{
    display: flex;
    justify-content: space-between;
    color: #5d5d5d;
    font-size: 17px;
    padding-top: 30px;
    margin-top: 50px;
    position: relative;
}