/* 顶部导航栏容器 */
.top-header {
    border-bottom: 1px solid #eee;
    background: #fff;
}
/* 主内容区 */
.top-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1200px;
    height: 86px;
    margin: 0 auto;
}
/* Logo 区域 */
.top-header .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
}
.top-header .logo-img {
    width: 48px;
    height: 48px;
    background-color: #ffb800;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}
.top-header .logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
}
.top-header .logo-text p {
    font-size: 12px;
    color: #999;
}
/* 导航菜单 */
.top-header .nav {
    display: flex;
    align-items: center;
    gap: 35px;
}
.top-header .nav a {
    text-decoration: none;
    color: #5A5A5A;
    font-size: 16px;
    position: relative;
    /* 新增：添加过渡效果，让hover/选中状态切换更平滑 */
    transition: color 0.3s ease;
    font-weight: bold;
    letter-spacing: 1px;
}
.top-header .nav a.hot::after {
    content: "HOT";
    position: absolute;
    top: -12px;
    right: -24px;
    font-size: 10px;
    color: #fff;
    background-color: #ff4d4f;
    padding: 1px 4px;
    border-radius: 2px;
    height: 16px;
    line-height: 16px;
}
/* 新增：hover 悬浮效果 - 颜色改为 #FD8011 */
.top-header .nav a:hover {
    color: #FD8011;
}
/* 新增：选中状态（添加 active 类） - 颜色锁定 #FD8011 */
.top-header  .nav a.active {
    color: #FD8011;
    font-weight: 600;
}
/* 可选优化：选中状态底部添加下划线，增强视觉标识 */
/*.top-header  .nav a.active::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    bottom: -8px;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 2px;*/
/*    background-color: #FD8011;*/
/*    border-radius: 1px;*/
/*}*/
/* 登录注册区域 */
.top-header .auth {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-header .auth a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    /* 新增：登录注册区域也添加相同 hover 效果，保持样式统一 */
    transition: color 0.3s ease;
}
/* 新增：登录注册 hover 效果 - 颜色 #FD8011 */
.top-header .auth a:hover {
    color: #FD8011;
}

/* 用户头像和下拉菜单样式 */
.top-header .user-profile {
    position: relative;
    display: inline-block;
}

.top-header .user-profile .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.top-header .user-profile .avatar:hover {
    transform: scale(1.1);
}

.top-header .user-profile .dropdown-menu {
    position: absolute;
    top: 100%;
    right: -60px;
    margin-top: 0px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    min-width: 160px;
    z-index: 1000;
    display: none;
}

.top-header .user-profile:hover .dropdown-menu {
    display: block;
}

.top-header .user-profile .dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.top-header .user-profile .dropdown-menu a i {
    margin-right: 8px;
    color: #999;
    font-size: 14px;
}

.top-header .user-profile .dropdown-menu a:hover i {
    color: #FD8011;
}

.top-header .user-profile .dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #FD8011;
}
.top-header .main-section{
    display: flex;
    align-items: center;
}
.top-header .main-section .logo{
    margin-right: 30px;
}
.top-header .main-section .logo img {
    width: 170px;
    height: 54px;
}

.selectNav {
    padding: 15px 0;
    height: 120px;
    background-color: #EAEAEA;
}
.selectNav .wrap {
    display: flex;
    align-items: center;
    height: 60px;
}
.selectNav .level {
    position: relative;
    width: 155px;
    margin-left: 17px;
}
.selectNav .level .box {
    margin-top: 4px;
}
.selectNav .level .box p {
    float: left;
    font-size: 16px;
    color: #282828;
    font-weight: bold;
    cursor: pointer;
}
.selectNav .level .box .icon-xiada-pc-layers {
    float: left;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 20px;
    color: #FD8011;
}
.selectNav .level .box .icon-resource-level {
    float: left;
    margin-right: 12px;
    margin-top: 2px;
    font-size: 20px;
    color: #FD8011;
}
.selectNav .level .box .icon-choose {
    float: left;
    color: #908F8F;
    font-size: 14px;
    margin-left: 16px;
    margin-top: 3px;
    cursor: pointer;
}
.selectNav .level .box .line {
    float: right;
    margin-top: 3px;
    width: 2px;
    height: 16px;
    background-color: #8A8A8A;
}
.selectNav .level #choose-box {
    display: none;
    position: absolute;
    z-index: 999;
    left: 25px;
    top: 35px;
}
.selectNav .level #choose-box ul {
    width: 96px;
    height: 100px;
    padding: 20px 0;
    background-color: #fff;
    box-sizing: border-box;
    border: 1px solid #E4E7ED;
}
.selectNav .level #choose-box ul li {
    width: 100%;
    height: 30px;
    margin-bottom: 5px;
    line-height: 30px;
    text-align: center;
    color: #606266;
    font-size: 14px;
    cursor: pointer;
}
.selectNav .level #choose-box ul .choosed {
    color: #FD8011;
    background-color: #F5F7FA;
}
.selectNav .wrap .position {
    width: 960px;
    overflow: hidden;
    white-space: nowrap;
}
.selectNav .wrap .position a {
    margin-left: 40px;
    display: inline-block;
    height: 24px;
    padding: 0 10px;
    line-height: 24px;
    color: #666;
}
.selectNav .wrap .position a:first-child {
    margin-left: 28px;
}
.selectNav .wrap .position .choose {
    color: #FD8011;
}
.selectNav .wrap a span {
    font-size: 15px;
}
.selectNav .wrap a:hover {
    color: #FD8011;
}
.selectNav .wrap .choose:hover {
    color: #FD8011;
}
.selectNav .wrap .row {
    width: 100%;
}
.selectNav .detail {
    position: absolute;
    top: -16px;
    left: -20px;
    z-index: 10;
    display: none;
}
.selectNav .detail .wrap {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #eee;
    height: 180px;
    line-height: 60px;
    flex-flow: wrap;
    align-items: start;
    padding: 0 20px;
}

.selectNav .detail .wrap .position {
    white-space: normal;
}
.showMoreBox {
    height: 58px;
    width: 1200px;
    position: relative;
}

.default-btn:hover {
    border-color: #ff6600;
    color: #ff6600;
}

.default-btn {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 22px;
    padding: 6px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    margin-left: 50px;
}

