/* 头部 */

.aui-head-box {
    width: 100%;
    height: 70px;
    background: #0041bd;
    color: #4c4847 !important;
    z-index: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

@media (max-width:575px) {
    .aui-head-box {
        box-shadow: 0 0 3px #939da6;
    }
}

.aui-head-logo {
    position: relative;
    float: left;
    width: 320px;
    height: 70px;
    overflow: hidden;
}

.aui-head-logo a {
    position: relative;
    float: left;
    /* width:150px;
	height:70px; */
    overflow: hidden;
    display: block;
}

.aui-head-logo a img {
    position: relative;
    float: left;
    margin-top: 20px;
    /* width:150px; */
    height: 30px;
    overflow: hidden;
    display: block;
}

.aui-head-menu {
    height: 60px;
    margin-top: 5px;
    float: left;
}

.aui-head-menu ul li {
    /* position:relative; */
    float: left;
    /* height:60px; */
    /* line-height:60px; */
    cursor: pointer;
}

.aui-head-menu ul li a {
    display: block;
    width: 100%;
    /* height:60px;s */
    padding: 0 20px;
    line-height: 60px;
    text-align: center;
    font-size: 14px;
    color: #fff
}

.aui-head-menu ul li .active {
    /* background-color: #e6eff0; */
}

.aui-head-menu ul li a .active {
    color: #35aae6;
    border-bottom: 2px solid #35aae6;
    border-radius: 1px;
}

.aui-head-menu ul li:hover {
    /* background-color: #e6eff0; */
}

.aui-head-menu ul li:hover a {
    border-bottom: 2px solid #fff;
    border-radius: 1px;
}

.aui-head-login {
    float: right;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 14px;
}

.aui-head-login ul li {
    float: right;
    height: 70px;
    line-height: 70px;
    text-align: center;
    font-size: 14px;
    padding: 0 10px;
}

.aui-head-register {
    padding: 6px 15px;
    width: 55px;
    height: 25px;
    line-height: 25px;
    border-radius: 3px;
    background: #fff;
    color: #fff;
}

.aui-head-register a {
    color: #0041bd
}

.aui-head-register:hover {
    color: #ffffff;
    background: #00b5e5;
}

.aui-head-login a {
    color: #fff
}

.aui-head-login ul li:nth-child(2) a {
    color: #0041bd;
}


/*lg*/

@media (min-width: 992px) {
    .aui-head-box .container {
        width: 992px;
    }
}


/*xl*/

@media (min-width: 1200px) {
    .aui-head-box .container {
        width: 1200px;
    }
}

.nav-btn {
    float: right;
    width: 40px;
    height: 40px;
    margin: 15px 0;
}

.nav-btn .btn-toggle {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
}

.nav-btn .btn-toggle .strip {
    width: 100%;
    height: 3px;
    background: #0e0d0d;
    border-radius: 8px;
}

.folded-nav {
    z-index: 2;
    position: absolute;
    top: 70px;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 3px #939da6;
    height: 0px;
    overflow: hidden;
    transition: height 0.5s;
}


/* 在大屏以下点击导航栏按钮触发事件将该类名赋给需要添加样式的元素 */

.folded-nav-extended {
    height: 62px;
}

.folded-nav .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.folded-nav .container ul {
    display: flex;
}

.folded-nav ul li {
    padding: 5px 10px;
}

.folded-nav .nav-container li:hover a {
    color: #35aae6;
    transition: color 0.6s;
}

.folded-nav .nav-login li:hover {
    background: #35aae6;
    border-radius: 5px;
    transition: all 0.6s;
}

.folded-nav .nav-login li:hover a {
    color: #fff;
    transition: all 0.6s;
}

@media (max-width:767px) {
    .folded-nav .container ul {
        flex-direction: column;
        text-align: right;
    }
    .folded-nav ul li a {
        font-size: 18px;
    }
    .folded-nav-extended {
        height: 272px;
    }
}


/* 尾部 */

.aui-footer {
    width: 100%;
    background: #021823;
}

.aui-footer .row {
    display: flex;
    padding: 50px 0;
    justify-content: space-between;
    flex-wrap: wrap;
}

.aui-footer .row .aui-footer-list {
    width: 20%;
    text-align: center;
}

.aui-footer-title {
    cursor: default;
    width: 50%;
    margin: auto;
    color: #dddee2;
    margin-bottom: 15px;
    line-height: 32px;
    font-size: 16px;
    border-bottom: 2px solid #00b5e5;
}

.aui-footer-list ul li {
    margin-bottom: 12px;
    height: 14px;
    line-height: 14px;
}

.aui-footer-list ul li a {
    font-size: 13px;
    color: #ddd;
    transition: all 0.6s;
}

.aui-footer-list ul li a:hover {
    color: #00b5e5;
}

.aui-footer-list-right {
    display: flex;
    position: fixed;
    left: 5px;
    bottom: 180px;
    flex-direction: column;
    justify-content: center;
}