/*----------------------------颜色----------------------------*/
/*----------------------------尺寸----------------------------*/
/*----------------------------字体----------------------------*/
/*----------------------------字号----------------------------*/
/*----------------------------动画----------------------------*/
/*----------------------------圆角----------------------------*/
/*----------------------------阴影----------------------------*/
/*----------------------------透明度--------------------*/

/* 基础布局 */
header .fill {
    height: 70px;
}

.menu-bg {
    position: fixed;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    z-index: 5;
}

.add-menu-shadow {
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.menu-bg-jp {
    box-shadow: 0 1px 7px 0 rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

/* 工具类 */
.add-margin-bottom {
    margin-bottom: 30px !important;
}

.add-margin-top {
    margin-top: 36px !important;
}

.add-ai-margin-top {
    margin-top: 44px !important;
}

.add-margin-right {
    margin-right: 40px !important;
}

.add-align-center {
    display: flex;
    align-items: center;
}

/* 菜单基础布局 */
.menu {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 16px;
    margin: 0 auto;
}

.menu .logo {
    display: inline-block;
    width: 5.6875rem;
    height: 1.8125rem;
    vertical-align: middle;
    box-sizing: content-box;
}

.menu .logo img {
    width: 100%;
}

.menu .menu-list {
    display: flex;
    flex: 1;
    width: 200px;
    top: 0;
    height: 70px;
    align-items: center;
    justify-content: right;
}

/* 移动端隐藏桌面端导航 */
.menu .menu-list .nav-template {
    display: none;
}

.menu .menu-list > ul {
    display: none;
}

/* 移动端登录按钮 */
.menu .login-btn {
    display: none;
}

.menu .menu-list .login-button-mobile {
    display: block !important;
}

/* 汉堡菜单按钮 */
.menu .menu-list .header-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 21px;
    margin-left: 5px;
}

.menu .menu-list .header-more:hover {
    background: #ffffff;
}

.add-menu-shadow .menu .menu-list .header-more:hover {
    background: #f3f3f7 !important;
}

.other-page-menu .menu .menu-list .header-more:hover {
    background: #f3f3f7 !important;
}

/* 移动端全屏抽屉菜单 */
.mobile-menu-list {
    display: none;
    position: fixed;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.mobile-menu-list .mobile-menu {
    position: absolute;
    top: 0;
    width: 85%;
    left: 0;
    transform: translateX(-100%);
    opacity: 1;
    background: #ffffff;
    height: 100%;
    padding: 0 20px;
    overflow: auto;
    animation: slideInFromLeft 0.3s ease forwards;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* 滚动条样式 */
.mobile-menu-list .mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu-list .mobile-menu::-webkit-scrollbar-thumb {
    background: #d9dadd;
}

/* 移动端菜单列表 */
.mobile-menu-list .mobile-menu ul {
    list-style-type: none;
    padding: 0;
}

.mobile-menu-list .mobile-menu ul li {
    width: 100%;
    vertical-align: middle;
    margin-top: 4px;
    transition: all 0.1s;
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    border-radius: 10px;
    font-family: Roboto, Roboto-Medium;
    text-align: left;
    color: #1a1b1c;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.mobile-menu-list .mobile-menu .mobile-nav-ul .mobile-banner-li:hover {
    background: #f3f3f7 !important;
    border-radius: 8px !important;
}

.mobile-menu-list .mobile-menu .mobile-nav-ul .mobile-banner-li .mobile-right-icon {
    height: 40px;
    line-height: 47px;
}

.mobile-menu-list .mobile-menu ul .title {
    display: flex;
    width: 100%;
    height: 36px;
    align-items: center;
    margin-bottom: 28px;
    margin-top: 12px;
}

.mobile-menu-list .mobile-menu ul .title .cancel-icon {
    display: flex;
    width: 36px;
    height: 36px;
    background-color: #f3f3f7;
    border-radius: 21px;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-menu-list .mobile-menu ul .title .cancel-icon:hover {
    background-color: #E9E9ED;
}

.mobile-menu-list .mobile-menu ul .title .cancel-icon svg {
    transition: all 0.3s;
}

.mobile-menu-list .mobile-menu ul .title .cancel-icon svg:hover {
    transform: rotate(90deg);
}

.mobile-menu-list .mobile-menu ul li a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    font-family: Roboto, Roboto-Regular;
    font-weight: 400;
    color: #1a1b1c;
}

.mobile-menu-list .mobile-menu ul li .mobile-font-weight {
    font-weight: 500 !important;
}

/* 移动端子菜单返回标题 */
.mobile-menu .now-mobile-list .title {
    display: flex;
    width: 100%;
    height: 36px;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-menu .now-mobile-list .title .back-icon {
    display: flex;
    width: 36px;
    height: 36px;
    background: #f3f3f7;
    border-radius: 21px;
    align-items: center;
    justify-content: center;
}

.mobile-menu .now-mobile-list .title .back-icon:hover {
    background: #E9E9ED;
}

.mobile-menu .now-mobile-list .child-menu-ul {
    transition: all 0.3s;
}

.mobile-menu .now-mobile-list .title a {
    text-decoration: none;
    width: 100px;
    height: 36px;
    display: inline-flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    color: #1a1b1c;
    font-size: 18px;
    font-family: Roboto, Roboto-Medium;
    font-weight: 500;
    padding-right: 36px;
}

.mobile-menu ul > li span {
    font-size: 15px;
}

.mobile-menu ul > li a {
    font-size: 15px;
}

.mobile-menu ul > li:hover {
    background: #f3f3f7;
    border-radius: 8px;
}

.mobile-menu ul > li span:hover {
    color: #1a1b1c;
}

.mobile-menu .now-mobile-list {
    display: none;
}

.mobile-menu .now-mobile-list div:last-child {
    margin-top: 5px;
    padding-top: 30px;
    border-top: 1px solid #f3f3f7;
}

.mobile-menu .now-mobile-list .child-menu-leave {
    margin-top: 5px;
    padding-top: 0 !important;
    border-top: none !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title-image {
    display: flex;
    align-items: center;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title-image img {
    margin-right: 6px !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title-image span {
    height: 100% !important;
    width: 100% !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title {
    margin: 0;
    height: auto;
    margin-top: 15px;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title:hover {
    background: white;
}

.mobile-menu .now-mobile-list .child-menu-ul li {
    height: 34px;
    line-height: 34px;
    width: 100%;
    margin: 2px 0;
    padding: 0 6px;
    display: block;
    border-radius: 8px;
}

.mobile-menu .now-mobile-list .child-menu-ul .mobile-special-treatment {
    margin-bottom: 0 !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .learn-color {
    display: flex;
    align-items: center;
    justify-content: left;
    height: 42px;
    width: 100%;
    margin: 2px 0;
    padding: 0 6px;
    border-radius: 8px;
}

.mobile-menu .now-mobile-list .child-menu-ul .learn-color a {
    margin-left: 10px;
    color: #000000;
}

.mobile-menu .now-mobile-list .child-menu-ul .add-margin-top {
    margin-top: 0 !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .add-ai-margin-top {
    margin-top: 0 !important;
}

.mobile-menu .now-mobile-list .child-menu-ul li:hover {
    background: #f3f3f7;
    border-radius: 8px;
}

.mobile-menu .now-mobile-list .child-menu-ul .menu-title > span {
    display: block;
    width: 100%;
    font-size: 17px;
    font-family: Roboto, Roboto-Medium;
    font-weight: 500;
    text-align: left;
    color: #000000;
}

.mobile-menu .now-mobile-list .child-menu-ul .ai-menu-li > a {
    color: #000000 !important;
}

.mobile-menu .now-mobile-list .child-menu-ul li > a {
    font-size: 15px;
    font-family: Roboto, Roboto-Regular;
    font-weight: 400;
    text-align: left;
    color: #686c7e;
}

.mobile-menu .now-mobile-list .child-menu-ul .add-font-color > a {
    color: #ff3939 !important;
}

.mobile-menu .now-mobile-list .child-menu-ul .ai-height {
    border-radius: 8px;
    padding: 16px 16px;
    height: auto;
}

.mobile-menu .now-mobile-list .child-menu-ul .ai-height span {
    width: 100%;
    font-size: 17px;
    font-family: Roboto, Roboto-Medium;
    font-weight: 500;
    text-align: left;
    color: #000000;
    display: inline;
}

.mobile-menu .now-mobile-list .child-menu-ul .ai-height p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: Roboto, Roboto-Regular;
    font-weight: 400;
    text-align: left;
    color: #686c7e;
    line-height: 20px;
}

/* NEW 标签 */
.mobile-menu .now-mobile-list .child-menu-ul .h-new {
    display: inline-block;
    width: 30px;
    height: 15px;
    background: #c907ff;
    border-radius: 8px;
    font-size: 10px;
    font-weight: Bold;
    text-align: center;
    color: #ffffff;
    line-height: 16px;
    margin-left: 4px;
    position: relative;
    top: -2px;
}

.menu .menu-list .mobile-menu .mobile-nav-ul .mobile-banner-li .mobile-right-icon {
    height: 40px;
    line-height: 47px;
}