/* -------------------------------------------------
 * 全局基础样式
 * -------------------------------------------------
*/
@import url(./bootstrap.min.css);

nav { width: 100%; height: 60px; background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%); box-shadow: 0 2px 12px rgba(79,70,229,0.2); position: fixed; top: 0; left: 0; z-index: 1000; }
  width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(79,70,229,0.06);
  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: #4f46e5;
  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 16px; 
}
nav .inner .items li a {
  display: inline-block;
  padding: 0;
  border: none;
  border-radius: 0;
  color: #4a5568 !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
  font-size: 15px;
  font-weight: 500;
  background: transparent !important;
  position: relative;
  line-height: normal;
}
nav .inner .items li a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #4f46e5;
  transition: width 0.2s ease;
}
nav .inner .items li a:hover {
  color: #4f46e5 !important;
}
nav .inner .items li a:hover::after {
  width: 100%;
}
/* 当前激活的菜单项 - 蓝色加下划线 */
nav .inner .items li a.active {
  color: #4f46e5 !important;
}
nav .inner .items li a.active::after {
  width: 100%;
}
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;
  border: 1px solid #ddd;
}
nav .inner .search input:focus {
  border-color: #4f46e5;
}
nav .inner .search button {
  width: 80px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  transition: all 0.2s ease;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  float: left;
  border: none;
  outline: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}
nav .inner .search button:hover {
  background: #4338ca;
}
nav .inner .btnGroup {
  float: right;
  height: 60px;
  line-height: 60px; 
}
nav .inner .btnGroup a {
  display: inline-block;
  padding: 5px 12px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-left: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  line-height: 1.3;
}
/* 登录按钮 / 用户名 - 蓝底白字 */
nav .inner .btnGroup .login-btn,
nav .inner .btnGroup a.login-btn {
  background: #4f46e5;
  color: #fff;
  border: none;
}
nav .inner .btnGroup .login-btn:hover,
nav .inner .btnGroup a.login-btn:hover {
  background: #4338ca;
}
/* 注册按钮 / 退出 - 白底蓝字 */
nav .inner .btnGroup .register-btn,
nav .inner .btnGroup a.register-btn {
  background: transparent;
  color: #4f46e5;
  border: 1px solid #4f46e5;
}
nav .inner .btnGroup .register-btn:hover,
nav .inner .btnGroup a.register-btn:hover {
  background: #f0f7ff;
}

/* -------------------------------------------------
 * 页脚
 * -------------------------------------------------
*/
.footer {
  width: 100%;
  background: #4f46e5;
  height: 60px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  font-size: 14px;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------
 * 全局重置
 * -------------------------------------------------
*/
body {
  background: #f5f7fa;
}
*, ul, ol, li, dl, dd {
  padding: 0;
  margin: 0; 
}
[v-cloak] { display: none !important; }

/* -------------------------------------------------
 * 标题美化 - 渐变色 + 无下划线
 * -------------------------------------------------
*/
.box-container .logo {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 10px;
}
.box-container .logo h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #4f46e5 0%, #0099FF 50%, #00CCFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  display: inline-block;
}
.box-container .logo img {
  width: 346px;
  height: 97px; 
}

/* -------------------------------------------------
 * 核心搜索框 - 圆角 + 阴影
 * -------------------------------------------------
*/
.box-container .core-search {
  margin: 30px auto 20px;
  max-width: 700px;
}
.box-container .core-search form {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 30px;
  display: flex;
  align-items: center;
}
.box-container .core-search input {
  flex: 1;
  padding: 0 18px;
  height: 46px;
  border: 1px solid #e0e0e0;
  border-radius: 30px 0 0 30px;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  margin: 0;
  transition: all 0.2s ease;
}
.box-container .core-search input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.1);
}
.box-container .core-search button {
  height: 46px;
  padding: 0 28px;
  background: #4f46e5;
  color: #fff;
  border: none;
  border-radius: 0 30px 30px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.box-container .core-search button:hover {
  background: #4338ca;
}

/* -------------------------------------------------
 * 内容列表区域 - 简洁版
 * -------------------------------------------------
*/
.box-container .main-content {
  width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #fff;
  margin-top: 40px;
  overflow: hidden;
}
.box-container .main-content .hotRec .title {
  height: 46px;
  line-height: 46px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  padding-left: 20px;
  background: #fafafa;
  border-bottom: 1px solid #eee;
}
.box-container .main-content .hotRec .header {
  height: 44px;
  line-height: 44px;
  color: #555;
  background: #f5f5f5;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid #e8e8e8;
}
.box-container .main-content .hotRec .header div {
  text-align: center;
  font-size: 13px;
  float: left; 
}
.box-container .main-content .hotRec .header .row-02 { width: 196px; text-align: left; padding: 0 10px; }
.box-container .main-content .hotRec .header .row-03 { width: 150px; text-align: left; padding: 0 10px; }
.box-container .main-content .hotRec .header .row-04 { width: 140px; text-align: center; padding: 0 10px; }
.box-container .main-content .hotRec .header .row-05 { width: 160px; 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; text-align: center; 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: 58px;
  line-height: 58px;
  border-bottom: 1px solid #f0f0f0;
  color: #666;
  margin: 0;
  padding: 0;
  background: #fff;
}
.box-container .main-content .hotRec .list-item:nth-child(even) {
  background: #fefefe; 
}
.box-container .main-content .hotRec .list-item:hover {
  background-color: #f8fbff;
}
.box-container .main-content .hotRec .list-item li {
  height: 58px;
  line-height: 58px;
  float: left;
  text-align: center;
  list-style: none;
  overflow: hidden; 
}
.box-container .main-content .hotRec .list-item .row-02 { width: 196px; text-align: left; padding: 0 10px; }
.box-container .main-content .hotRec .list-item .row-03 { width: 150px; text-align: left; padding: 0 10px; }
.box-container .main-content .hotRec .list-item .row-04 { width: 140px; text-align: center; padding: 0 10px; }
.box-container .main-content .hotRec .list-item .row-05 { width: 160px; 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; text-align: center; 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; font-size: 13px; }
.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 {
  background: #4f46e5 !important;
  color: #fff !important;
  border-radius: 4px !important;
  padding: 5px 14px !important;
  font-size: 12px !important;
  display: inline-block !important;
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.btn-info:hover {
  background: #004c99 !important;
}

/* 型号链接 - 加粗蓝色文字 */
.list-item .row-04 a {
  color: #4f46e5 !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}
.list-item .row-04 a:hover {
  text-decoration: underline !important;
}

/* 金币数量 - 蓝色（不加粗） */
.row-08 span {
  color: #4f46e5 !important;
  font-weight: normal;
}

/* -------------------------------------------------
 * 分页居中 - 兼容 Laravel 默认分页
 * -------------------------------------------------
*/
.pagination {
    text-align: center;
    margin: 30px 0 20px;
}
.pagination ul {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}
.pagination li {
    display: inline-block;
    margin: 0 3px;
}
.pagination a,
.pagination span {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #4f46e5;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}
.pagination a:hover {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}
.pagination .active span {
    background: #4f46e5;
    color: #fff;
    border-color: #4f46e5;
}
.pagination .disabled span {
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
}nav .inner .logo a { color: #fff !important; font-weight: 700; }
nav .inner .items li a { color: rgba(255,255,255,0.9) !important; }
nav .inner .items li a:hover { color: #fff !important; }
nav .inner .items li a::after { background: #fff !important; }
nav .inner .items li a.active { color: #fff !important; }
nav .inner .btnGroup .login-btn,
nav .inner .btnGroup a.login-btn { background: transparent; color: rgba(255,255,255,0.9) !important; border: 2px solid rgba(255,255,255,0.5); border-radius: 6px; padding: 7px 18px; }
nav .inner .btnGroup .register-btn,
nav .inner .btnGroup a.register-btn { background: #fff !important; color: #4f46e5 !important; border: 2px solid #fff !important; border-radius: 6px !important; padding: 7px 18px !important; font-weight: 600; }
nav .inner .btnGroup .register-btn:hover { background: #f5f3ff !important; }

.hotRec .list-item:nth-child(even) {
    background: #f8fafc;
}



/* 导航栏内边距和表格一致 */
nav .inner {
    width: 1200px;
    max-width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 导航栏内边距，和表格对齐 */
nav .inner {
    width: 1200px;
    max-width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* 下载按钮胶囊样式 */
.btn-info {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 4px 16px !important;
    font-size: 12px !important;
}
.btn-info:hover {
    background: #4338ca !important;
    border-color: #4338ca !important;
}

/* 下载按钮胶囊样式 */
.btn-download {
    display: inline-block !important;
    background: #4f46e5 !important;
    border: none !important;
    color: #fff !important;
    border-radius: 20px !important;
    padding: 4px 14px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s;
}
.btn-download:hover {
    background: #4338ca !important;
    color: #fff !important;
    text-decoration: none !important;
}

.btn-download {
    padding: 2px 10px !important;
    font-size: 11px !important;
    border-radius: 12px !important;
    min-width: auto !important;
    width: auto !important;
    height: auto !important;
}

.btn-download {
    padding: 2px 8px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
}

.btn-download {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    border: none !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 4px 12px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

.btn-download {
    padding: 1px 10px !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    vertical-align: middle !important;
}

.btn-download {
    padding: 3px 14px !important;
    font-size: 12px !important;
}

/* 表格标题栏紫色 */
.hotRec .title {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: #fff !important;
    border-radius: 8px 8px 0 0 !important;
}

/* 搜索按钮圆角 */
.core-search button {
    border-radius: 0 8px 8px 0 !important;
}

/* 标题三星固件下载 */
.box-container .logo h1 {
    font-size: 42px !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.box-container .logo h1 {
    font-size: 38px !important;
    font-weight: 800 !important;
    color: #4f46e5 !important;
    -webkit-text-fill-color: #4f46e5 !important;
    letter-spacing: 2px;
}

.box-container .logo h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #4f46e5 !important;
    -webkit-text-fill-color: #4f46e5 !important;
    letter-spacing: 3px;
}

.box-container .logo h1 {
    font-size: 48px !important;
    font-weight: 800 !important;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

.box-container .logo h1 {
    font-size: 44px !important;
    font-weight: 800 !important;
    color: #4f46e5 !important;
    -webkit-text-fill-color: #4f46e5 !important;
    background: none !important;
    letter-spacing: 2px;
    margin-bottom: 20px !important;
}
.box-container .logo {
    margin-bottom: 30px !important;
}

.box-container .logo {
    margin-bottom: 50px !important;
}

.box-container .logo {
    margin-bottom: 70px !important;
}

.box-container .logo {
    text-align: center;
}
.box-container .logo h1 {
    text-align: center;
}

/* 所有页面的表格标题统一紫色渐变 */
.hotRec .title {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%) !important;
    color: #fff !important;
}

/* 所有下载按钮统一 */
.btn-info,
.btn-download {
    background: #4f46e5 !important;
    border-color: #4f46e5 !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 3px 14px !important;
    font-size: 12px !important;
}

/* 所有表格斑马纹 */
.hotRec .list-item:nth-child(even) {
    background: #f8f7ff;
}

/* 所有品牌名紫色 */
.hotRec .list-item .row-02 span {
    color: #4f46e5 !important;
    font-weight: 600;
}

/* 表格内容文字颜色统一 */
.hotRec .row-02 span {
    color: #4f46e5 !important;
    font-weight: 600;
}
.hotRec .row-04 a {
    color: #4f46e5 !important;
}
.hotRec .row-12 a {
    background: #4f46e5 !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 3px 14px;
}

}
nav .inner .items {
    flex-shrink: 0;
}
nav .inner .btnGroup {
    flex-shrink: 0;
}

.box-container .logo {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.box-container .logo h1 {
    display: block;
    text-align: center;
}

.box-container .logo h1 {
    font-size: 50px !important;
}

.box-container .logo h1 {
    font-size: 60px !important;
}

/* 通知条 */
.notice-bar {
    width: 600px;
    margin: 0 auto 20px;
    background: #f8f7ff;
    border: 1px solid #e0dcff;
    border-radius: 8px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4f46e5;
}
.notice-bar i {
    font-size: 16px;
}

.notice-bar {
    margin: 5px auto 15px;
}
.box-container .logo {
    margin-bottom: 5px !important;
}

/* 手机端导航栏适配 */

/* 手机端导航栏 */

/* 手机端导航栏简化 */

/* 手机端导航栏 */

/* 手机端完全还原PC布局，用户自己缩放 */

/* 手机端btnGroup始终显示 */

/* 手机端导航栏不换行，横向滚动 */

@media (max-width: 1024px) {
    nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    nav .inner {
        width: 700px;
        min-width: 700px;
        padding: 0 10px;
        height: 56px;
    }
    nav .inner .logo {
        float: left;
    }
    nav .inner .btnGroup {
        float: right;
    }
    nav .inner .items {
        float: right;
        margin-right: 10px;
    }
    nav .inner .items li {
        padding: 0 6px;
    }
    nav .inner .items li a {
        font-size: 12px;
    }
}

}

    padding: 10px 20px;
    border-radius: 8px 8px 0 0;
    font-size: 15px;
    font-weight: 500;
    margin: 0;
}
.hotRec .title + p strong {
    color: #fff !important;
}
