/* -------------------------------------------------
 * 
 * -------------------------------------------------
*/
@import url(./bootstrap.min.css);
/* -------------------------------------------------
 * 全局基础样式
 * -------------------------------------------------
*/
nav {
  width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: 1px 1px 10px #ccc;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000; 
}
  nav .inner {
    width: 1200px;
    height: 60px;
    margin: 0 auto; 
  }
    nav .inner .logo {
      width: 100px;
      height: 60px;
      line-height: 60px;
      float: left;
      text-align: center; 
    }
      nav .inner .logo a {
        color: #0066CC; /* 主色改为标准蓝色 */
        font-size: 26px;
        font-weight: 700;
        text-decoration: none; 
      }
    nav .inner .items {
      float: right;
      margin-right: 20px; 
    }
      nav .inner .items li {
        height: 60px;
        line-height: 60px;
        float: left;
        text-align: center;
        list-style: none;
        padding: 0 15px; 
      }
        /* 导航菜单按钮美化（加框 + 统一风格） */
        nav .inner .items li a {
          padding: 4px 10px;
          border: 1px solid #0066CC; /* 主色改为标准蓝色 */
          border-radius: 4px;
          color: #0066CC !important; /* 主色改为标准蓝色 */
          text-decoration: none !important;
          transition: all 0.2s ease;
          font-size: 16px;
        }
        nav .inner .items li a:hover {
          background: #0066CC; /* 主色改为标准蓝色 */
          color: #fff !important;
        }
    nav .inner .search {
      height: 35px;
      float: left;
      margin: 14px 0 0 60px; 
    }
      nav .inner .search input {
        float: left;
        height: 35px;
        outline: none;
        width: 350px;
        padding-left: 20px;
        border-radius: 4px 0 0 4px;
        float: left; 
      }
      /* 搜索按钮美化 */
      nav .inner .search button {
        width: 80px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        transition: all 0.2s ease;
        background: #0066CC; /* 主色改为标准蓝色 */
        color: #fff;
        font-weight: 600;
        float: left;
        border: none;
        outline: none;
        border-radius: 0 4px 4px 0;
      }
        nav .inner .search button:hover {
          background: #004c99; /* hover色改为深蓝 */
        }
      nav .inner .search input:focus {
        border-color: #0066CC; /* 主色改为标准蓝色 */
        outline: none;
      }
    nav .inner .btnGroup {
      float: right;
      height: 60px;
      line-height: 60px; 
    }
      /* 登录注册按钮美化 */
      nav .inner .btnGroup a {
        transition: all 0.2s ease;
      }
      nav .inner .btnGroup .login-btn {
        display: inline-block;
        height: 25px;
        line-height: 23px;
        text-align: center;
        border-radius: 4px;
        margin-left: 10px;
        text-decoration: none;
        padding: 0 10px;
        border: 1px solid #0066CC; /* 主色改为标准蓝色 */
        background: #0066CC !important; /* 主色改为标准蓝色 */
        color: #fff !important;
      }
        nav .inner .btnGroup .login-btn:hover {
          background: #004c99 !important; /* hover色改为深蓝 */
          border-color: #004c99; /* hover色改为深蓝 */
        }
      nav .inner .btnGroup .register-btn {
        display: inline-block;
        height: 25px;
        line-height: 23px;
        text-align: center;
        border-radius: 4px;
        margin-left: 10px;
        text-decoration: none;
        padding: 0 10px;
        border: 1px solid #0066CC !important; /* 主色改为标准蓝色 */
        background: #fff !important;
        color: #0066CC !important; /* 主色改为标准蓝色 */
      }
        nav .inner .btnGroup .register-btn:hover {
          background: #f2f9ff !important;
          color: #004c99 !important; /* hover色改为深蓝 */
          border-color: #004c99; /* hover色改为深蓝 */
        }

/* -------------------------------------------------
 * 页脚样式
 * -------------------------------------------------
*/
/* 底部样式 */
.footer {
  width: 100%;
  background: #0066CC; /* 清爽浅蓝 */
  height: 60px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  font-size: 15px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}

/* -------------------------------------------------
 * 全局重置与基础
 * -------------------------------------------------
*/
body {
  background: #f3f3f3;
  font-smoothing: grayscale;
  -moz-osx-font-smoothing: grayscale; 
}

*, ul, ol, li, dl, dd {
  padding: 0;
  margin: 0; 
}

/* -------------------------------------------------
 * 主体内容区
 * -------------------------------------------------
*/
[v-cloak] { display: none !important; }

.box-container .logo {
  text-align: center;
  margin-top: 150px; 
}
  .box-container .logo img {
    width: 346px;
    height: 97px; 
  }
.box-container .search {
  height: 45px;
  width: 700px;
  margin: 0 auto;
  margin-top: 20px; 
}
  .box-container .search input {
    float: left;
    font-size: 16px;
    height: 45px;
    outline: none;
    width: 600px;
    padding-left: 20px;
    border-radius: 4px 0 0 4px;
    float: left; 
  }
  /* 搜索按钮美化 */
  .box-container .search button {
    width: 100px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    transition: all 0.2s ease;
    background: #0066CC; /* 主色改为标准蓝色 */
    color: #fff;
    font-weight: 600;
    float: left;
    border: none;
    outline: none;
    border-radius: 0 4px 4px 0;
  }
    .box-container .search button:hover {
      background: #004c99; /* hover色改为深蓝 */
    }
  .box-container .search input:focus {
    border-color: #0066CC; /* 主色改为标准蓝色 */
    outline: none;
  }

.box-container .main-content {
  width: 1200px;
  margin: 0 auto;
  border-radius: 4px;
  border: 1px solid #ccc;
  background: #fff;
  margin-top: 40px; 
}
  .box-container .main-content .hotRec .title {
    height: 40px;
    line-height: 40px;
    margin: 0;
    font-size: 18px;
    color: #555;
    padding-left: 20px; 
  }
  /* 列表轻微美化 不影响布局 */
  .box-container .main-content .hotRec .header {
    height: 48px;
    line-height: 48px;
    color: #4c4f4f;
    background: #f5f9fc;
    font-weight: bold;
  }
    .box-container .main-content .hotRec .header div {
      text-align: center;
      font-size: 14px;
      float: left; 
    }
    .box-container .main-content .hotRec .header .row-02 {
      width: 216px;
      text-align: left;
      padding: 0 10px; 
    }
.box-container .main-content .hotRec .header .row-03 {
  width: 130px; /* 原row-04的宽度 */
  text-align: left;
  padding: 0 10px; 
}
.box-container .main-content .hotRec .header .row-04 {
  width: 152px; /* 原row-03的宽度 */
  text-align: left;
  padding: 0 10px; 
}
    .box-container .main-content .hotRec .header .row-05 {
      width: 150px;
      text-align: left;
      padding: 0 10px; 
    }
.box-container .main-content .hotRec .header .row-06 {
  width: 80px; /* 统一宽度 */
  text-align: center; /* 改为居中 */
  padding: 0 10px; 
}
.box-container .main-content .hotRec .header .row-07 {
  width: 100px; /* 和row-06保持一致 */
  text-align: left;
  padding: 0 10px; 
}
    .box-container .main-content .hotRec .header .row-08 {
      width: 75px; 
    }
    .box-container .main-content .hotRec .header .row-09 {
      width: 100px; 
    }
    .box-container .main-content .hotRec .header .row-10 {
      width: 55px; 
    }
    .box-container .main-content .hotRec .header .row-11 {
      width: 55px; 
    }
    .box-container .main-content .hotRec .header .row-12 {
      width: 70px; 
    }
  /* 列表行样式 + 悬浮高亮 */
  .box-container .main-content .hotRec .list-item {
    height: 68px;
    line-height: 68px;
    border-bottom: 1px #f2f2f2 solid;
    color: #666;
    margin: 0;
    padding: 0;
    transition: all 0.2s ease;
  }
    .box-container .main-content .hotRec .list-item:nth-child(odd) {
      background: #fbfbfb; 
    }
    /* 列表行鼠标悬浮高亮效果 */
    .box-container .main-content .hotRec .list-item:hover {
      background-color: #e3f2fd; /* 浅蓝色悬浮背景保持协调 */
      cursor: pointer;
    }
    .box-container .main-content .hotRec .list-item:hover ul {
      background: #fafdff;
    }
    .box-container .main-content .hotRec .list-item li {
      height: 68px;
      line-height: 68px;
      float: left;
      text-align: center;
      list-style: none;
      overflow: hidden; 
    }
      .box-container .main-content .hotRec .list-item li a {
        text-decoration: none;
        text-overflow: ellipsis;
        white-space: nowrap; 
      }
    .box-container .main-content .hotRec .list-item .row-02 {
      width: 216px;
      text-align: left;
      padding: 0 10px; 
    }
.box-container .main-content .hotRec .list-item .row-03 {
  width: 130px; /* 原row-04的宽度 */
  text-align: left;
  padding: 0 10px; 
}
.box-container .main-content .hotRec .list-item .row-04 {
  width: 152px; /* 原row-03的宽度 */
  text-align: left;
  padding: 0 10px; 
}
    .box-container .main-content .hotRec .list-item .row-05 {
      width: 150px;
      text-align: left;
      padding: 0 10px; 
    }
.box-container .main-content .hotRec .list-item .row-06 {
  width: 80px; /* 统一宽度 */
  text-align: center; /* 改为居中 */
  padding: 0 10px; 
}
.box-container .main-content .hotRec .list-item .row-07 {
  width: 100px; /* 和row-06保持一致 */
  text-align: left;
  padding: 0 10px; 
}
    .box-container .main-content .hotRec .list-item .row-08 {
      width: 75px; 
    }
    .box-container .main-content .hotRec .list-item .row-09 {
      width: 100px; 
    }
    .box-container .main-content .hotRec .list-item .row-10 {
      width: 55px; 
    }
    .box-container .main-content .hotRec .list-item .row-11 {
      width: 55px; 
    }
    .box-container .main-content .hotRec .list-item .row-12 {
      width: 70px; 
    }

/* 下载按钮美化 */
.btn-info {
  transition: all 0.2s ease;
  background: #0066CC !important; /* 主色改为标准蓝色 */
  color: #fff !important;
}
.btn-info:hover {
  background: #004c99 !important; /* hover色改为深蓝 */
}

/*# sourceMappingURL=load.css.map */
