/* CSS Document */

/* 覆盖style.css中的全局样式，保持report/2024页面原有的外观 */
body {
  background: #fff;
  margin: 0;
}

/* 覆盖style.css中的全局a标签样式 */
a {
  color: #337ab7;
  text-decoration: none;
  font-weight: normal;  /* 覆盖style.css中的font-weight: 500 */
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

/* 导航栏链接样式 - 确保与主站一致 */
.head-mobile a {
  color: inherit;  /* 继承父元素颜色（.navi-bar-item定义了#333） */
  text-decoration: none;
}

.head-mobile a:hover {
  color: #35B058;  /* 主站的绿色悬停色 */
  text-decoration: none;
}

/* 导航栏菜单项样式 */
.navi-bar-item a {
  color: inherit;  /* 继承.navi-bar-item的#333 */
}

.navi-bar-item.active a {
  color: #35B058;  /* 激活状态的绿色 */
}

.brand_logo{
	max-height: 32px;
}

header {
	background: center bottom no-repeat;
	background-image: url(//cdn.xiaoxiongyouhao.com/assets/images/banner/dt.jpg);
    background-size: cover;
    min-height: 200px;
    padding: 80px 0 0 0;
    text-align: center;
	color: rgba(255,255,255,0.90);
	border-bottom: 5px solid;
	border-bottom-color: rgb(232,141,50);
}
header a{ color:rgba(255,255,255,0.90);}
header a:hover{ color:rgba(255,255,255,1.00); text-decoration: none;}
header a h2 small{ color:rgba(255,255,255,0.90);}


.container{margin-top:20px; margin-bottom: 20px;}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
	padding: 8px 1px;
	text-align: center;
	font-size: 14px;
	vertical-align:middle;
}

.table > thead > tr > th{
    font-size: 16px;
}
.table > thead > tr .col-rank-order {
    width: 40px;
}
.table > thead > tr .col-pinpai-icon {
    width: 50px;
}
.table > thead > tr .col-cspt {
    width: 52px;
}
.table > tbody > tr .col-chexi-name {
    font-size: 16px;
    padding-left: 2px;
	text-align: left;
}
.table > tbody > tr .col-cspt {
    font-size: 18px;
    font-weight: bold;
}


.table-bordered {
    border: 1px solid #CAE2BE;
}
.table-bordered>tbody>tr>td, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>td, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>thead>tr>th {
    border: 1px solid #CAE2BE;
}
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #E2EFDB;
}
.table-striped>thead>tr {
    background-color: #A9D08F;
	color: #254212;
}
.table-striped>tbody>tr>th{
	font-weight: normal;
	color: #254212;
}
footer {
    padding: 50px 0;
    text-align: center;
	border-top: 5px solid;
	border-top-color: rgb(232,141,50);
}
h3.cpy_email {
    font-size: 30px;
    color: #777;
    margin: 15px 0;
    font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial;
    position: relative;
    z-index: 1;
}
h5.cpy_allright {
    font-size: 16px;
    color: #777;
    margin: 15px 0;
    line-height: 180%;
}

.rank2019_img_ls img{ width:100%; margin:10px 0; border: 4px solid; border-color: rgb(255,255,255);}
.rank2019_img_ls img:hover{border: 4px solid; border-color: rgb(232,141,50);}

.rules_img img{ width:100%; margin:10px 0;}

.more_link{ text-align: center; font-size: 16px; padding: 10px 0;}


@media only screen and (max-width: 768px){
header{min-height:80px; padding:30px 0;}
	header h2{font-size: 18px; line-height: 20px;}
footer {
    padding: 20px 0;
    text-align: center;
	border-top: 5px solid;
	border-top-color: rgb(232,141,50);
}
h3.cpy_email {
    font-size: 16px;
    color: #777;
    margin: 10px 0;
    font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial;
    position: relative;
    z-index: 1;
}
h5.cpy_allright {
    font-size: 14px;
    color: #777;
    margin: 10px 0;
    line-height: 180%;
}
.table{
    width:96%;
    margin: 0 auto;
}
}

/* 深色模式下的导航栏样式增强（确保与主站一致） */
@media (prefers-color-scheme: dark) {
  /* 确保导航栏背景色正确 */
  .head-mobile {
    background-color: var(--card-bg) !important;
    border-bottom: 1px solid var(--border-soft);
  }

  /* 确保导航文字颜色正确 */
  .head-mobile .navi-bar-item {
    color: var(--text-dark);
  }

  /* 激活状态的菜单项 */
  .navi-bar-item.active {
    color: var(--brand-green);
  }

  /* 登录按钮颜色 */
  .search .login {
    color: var(--text-dark);
  }

  /* 悬停效果 */
  .head-mobile .navi-bar-item:hover,
  .search .login:hover {
    color: var(--brand-green);
  }
}