* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, "Microsoft YaHei", sans-serif;
  background: #fff;
  color: #333;
  padding-top: 34px;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  display: block;
}

/* 主体 */
.container {
  width: 1200px;
  margin: 0 auto;
}

/* logo 区 */
.header {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #f36c21;
  font-size: 28px;
  font-weight: bold;
}

.logo small {
  display: block;
  font-size: 12px;
  color: #888;
}

.main-nav a {
  margin-left: 22px;
  font-size: 14px;
}

/* 顶部广告 */
.hero-ad {
  height: 170px;
  background: #f5f5f5;
  display: flex;
  margin-bottom: 12px;
  border: 1px solid #eee;
}

.hero-img {
  width: 48%;
  background: url("https://picsum.photos/600/260?random=1") center/cover no-repeat;
}

.hero-text {
  flex: 1;
  padding: 38px;
}

.hero-text h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.hero-text p {
  color: #999;
}

/* 橙色横条 */
.breaking {
  /* background: #fff;
    border: 1px solid #ddd;
    border-top: none; */
  padding: 10px 0px 10px 0px;
}

.breaking-row {
  display: grid;
  grid-template-columns: 86px 1fr 35px;
  height: 30px;
  align-items: center
}

.breaking-label {
  background: #000;
  color: #fff;
  font-size: 14px;
  text-align: center;
  height: 35px;
  line-height: 35px
}

.breaking-text {
  background: #f28729;
  color: #fff;
  padding: 0 12px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis
}

.breaking-close {
  text-align: center;
  color: #fff;
  background: #000;
  height: 35px;
  line-height: 35px;
  font-size: 25px
}

/* 三栏 */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  gap: 20px;
}

/* 左侧 */
.left {
  position: sticky;
  top: 50px;
  align-self: start;
  height: calc(100vh - 60px);
  overflow-y: auto;
  padding-right: 6px;
  margin-top: 20px;
}


/* 去掉默认 ul li 样式 */
.column-list,
.column-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 每个专栏块 */
.column-list>li {
  border-bottom: 2px solid #e60012;
  padding: 0 0 14px;
  margin-bottom: 14px;
  overflow: hidden;
}

/* 标题行 */
.column-list>li>div {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
}

/* 阅读更多 */
.column-list>li>div a {
  color: #5b007a;
  font-size: 15px;
  font-weight: bold;
  text-decoration: underline;
}

/* 左侧图片 */
.column-list>li>img {
  float: left;
  width: 120px;
  height: 225px;
  object-fit: cover;
  margin-right: 10px;
}

/* 右侧新闻列表 */
.column-itemlist {
  overflow: hidden;
}

/* 每条新闻 */
.column-itemlist li {
  padding: 0 0 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed #999;
  line-height: 1.45;
}

/* 最后一条不要虚线 */
.column-itemlist li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

/* 新闻文字 */
.column-itemlist li a {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;

  font-size: 14px;
  color: #333;
  line-height: 1.45;
  text-decoration: none;
}

.column-itemlist li a:hover {
  color: #e60012;
}

/* 美化左侧滚动条 */
.left::-webkit-scrollbar {
  width: 6px;
}

.left::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, .25);
  border-radius: 10px;
}

.left::-webkit-scrollbar-track {
  background: transparent;
}

/* .left-card {
      margin-bottom: 18px;
      border-top: 2px solid #f15a24;
    }

    .left-card h3 {
      font-size: 15px;
      padding: 8px 0;
      border-bottom: 1px solid #ddd;
    }

    .left-card-content {
      display: flex;
      gap: 8px;
      padding-top: 8px;
    }

    .left-card-content img {
      width: 90px;
      height: 90px;
      object-fit: cover;
    }

    .left-card-content p {
      font-size: 12px;
      line-height: 1.6;
    } */
/* 中部区域 */
.center{
  margin-top: 20px;
}
/* 中间焦点图 */
.focus {
  height: 260px;
  position: relative;
  background: url("https://picsum.photos/620/350?random=2") center/cover no-repeat;
  margin-bottom: 12px;
}

.focus-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
}

/* 灰色按钮 */
.gray-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 0;
}

.gray-buttons button {
  height: 42px;
  border: none;
  background: #e5e5e5;
  color: #555;
  cursor: pointer;
  font-size: 15px;
}

.gray-buttons button.active {
  background: #d5d5d5;
  font-weight: bold;
}

/* 红色 Tab */
.red-tabs-wrapper {
  position: sticky;
  top: 34px;
  z-index: 9998;
  background: #fff;
  padding-top: 6px;
}

.red-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 2px solid #e60012;
}

.red-tabs button {
  height: 42px;
  border: none;
  background: #f3f3f3;
  color: #333;
  cursor: pointer;
  font-size: 15px;
}

.red-tabs button.active {
  background: #e60012;
  color: #fff;
  font-weight: bold;
}

/* 新闻列表 */
.news-list {
  padding-top: 12px;
}

.news-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-item img {
  width: 150px;
  height: 88px;
  object-fit: cover;
}

.news-item h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.news-item p {
  font-size: 12px;
  color: #999;
}

.news-item .tag {
  color: #e60012;
  margin-right: 8px;
}

/* 右侧广告 */
.right-ad {
  margin-bottom: 18px;
}

.right-ad img {
  height: 260px;
  object-fit: cover;
}

.load-more {
  /* height: 46px;
  border: 1px solid #ddd;
  margin: 28px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  cursor: pointer; */
  text-align: center;
  padding: 20px 0;
  color: #999;
  font-size: 14px;
}

.footer {
  margin-top: 30px;
  border-top: 3px solid #ff6b00;
  padding: 25px 0 60px;
  text-align: center;
  color: #777;
  font-size: 12px;
}

/* 响应式 */
/* @media (max-width: 900px) {

      .container,
      .top-inner {
        width: 94%;
      }

      .layout {
        grid-template-columns: 1fr;
      }

      .left,
      .right {
        display: none;
      }

      .hero-ad {
        height: auto;
        flex-direction: column;
      }

      .hero-img {
        width: 100%;
        height: 160px;
      }

      .news-item img {
        width: 120px;
      }
    } */


/* 中部轮播 */
.center_main_title {
  /* height: 28px; */
  line-height: 28px;
  border-bottom: 1px solid #d91c1c;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.center_main_carousel {
  width: 600px;
  height: 340px;
  position: relative;
  overflow: hidden;
}

.center_main_slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
  margin-top: 40px;
}

.center_main_slide {
  width: 600px;
  height: 300px;
  flex-shrink: 0;
  position: relative;
}

.center_main_slide img {
  width: 600px;
  height: 300px;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* 标题区域 */
.center_main_caption {
  position: absolute;
  left: 0;
  bottom: 25px;
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.center_main_caption h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}

.center_main_caption p {
  margin: 0;
  font-size: 20px;
  line-height: 1.5;
  opacity: 0.95;
}

.center_main_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}

.center_main_prev {
  left: 8px;
}

.center_main_next {
  right: 8px;
}

.center_main_dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: right;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.center_main_dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 4px;
  background: rgb(213 172 173);
  border-radius: 50%;
  cursor: pointer;
}

.center_main_dot.active {
  background: #d11e25;
}

/* 中部轮播 end*/

/* 右侧专题轮播 */
.right_zt_title {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.right_zt_carousel {
  width: 300px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.right_zt_slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.right_zt_slide {
  width: 300px;
  height: 400px;
  flex-shrink: 0;
  position: relative;
}

.right_zt_slide img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* 标题区域 */
.right_zt_caption {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.right_zt_caption h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}

.right_zt_caption p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.right_zt_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}

.right_zt_prev {
  left: 8px;
}

.right_zt_next {
  right: 8px;
}

.right_zt_dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.right_zt_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.right_zt_dot.active {
  background: #fff;
}

/* 右侧轮播 end*/

.moneymoney-imedu_ul li {
  height: 23px;
  overflow: hidden;
  margin: 5px 0;
  list-style: inside;

}

/* 右侧投资新闻热点轮播 */
.right_money_title {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #999;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.right_money_title span {
  color: #f5842b;
  text-decoration: underline;
}

.right_money_carousel {
  width: 300px;
  height: 150px;
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

.right_money_slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.right_money_slide {
  width: 300px;
  height: 150px;
  flex-shrink: 0;
  position: relative;
}

.right_money_slide img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  display: block;
}

/* 标题区域 */
.right_money_caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 5px 0 5px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  height: 50px;
  overflow: hidden;
}

.right_money_caption h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

.right_money_caption p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.right_money_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}

.right_money_prev {
  left: 8px;
}

.right_money_next {
  right: 8px;
}

.right_money_dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.right_money_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.right_money_dot.active {
  background: #fff;
}

/* 右侧投资新闻热点轮播 end*/


/* 右侧留学移民新闻热点轮播 */
.right_imedu_title {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #999;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.right_imedu_title span {
  color: #f5842b;
  text-decoration: underline;
}

.right_imedu_carousel {
  width: 300px;
  height: 150px;
  position: relative;
  overflow: hidden;
  /* border-radius: 10px; */
}

.right_imedu_slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.right_imedu_slide {
  width: 300px;
  height: 150px;
  flex-shrink: 0;
  position: relative;
}

.right_imedu_slide img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  display: block;
}

/* 标题区域 */
.right_imedu_caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 5px 5px 0 5px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  height: 50px;
  overflow: hidden;
}

.right_imedu_caption h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
}

.right_imedu_caption p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.right_imedu_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}

.right_imedu_prev {
  left: 8px;
}

.right_imedu_next {
  right: 8px;
}

.right_imedu_dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.right_imedu_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.right_imedu_dot.active {
  background: #fff;
}

/* 右侧留学移民新闻热点轮播 end*/

/* 右侧投资、留学文字链 start */
.money-imedu_div {}

.moneymoney-imedu_ul {}

.moneymoney-imedu_ul li {
  height: 23px;
  overflow: hidden;
  margin: 5px 0;
  list-style: inside;

}

/* 右侧投资、留学文字链 end */

/* 右侧人物轮播 */
.right_rw_title {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #999;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  justify-content: space-between;
}

.right_rw_title span {
  color: #f5842b;
  text-decoration: underline;
}

.right_rw_carousel {
  width: 300px;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.right_rw_slides {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform 0.5s ease;
}

.right_rw_slide {
  width: 300px;
  height: 440px;
  flex-shrink: 0;
  position: relative;
}

.right_rw_slide img {
  width: 100%;
  /* height: 400px; */
  object-fit: cover;
  display: block;
}

/* 标题区域 */
.right_rw_caption {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 100%;
  padding: 15px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

.right_rw_caption h3 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.3;
}

.right_rw_caption p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.95;
}

.right_rw_btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  font-size: 22px;
  width: 32px;
  height: 42px;
  cursor: pointer;
  z-index: 2;
}

.right_rw_prev {
  left: 8px;
}

.right_rw_next {
  right: 8px;
}

.right_rw_dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 3;
}

.right_rw_dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
}

.right_rw_dot.active {
  background: #fff;
}

/* 右侧人物轮播 end*/

/* 右侧间距共用值 start */
.right-ad {
  margin: 20px 0;
  /* position: relative; */
}

.right-slider {
  margin: 20px 0;
}

.right-ad-repeat-box {
  margin: 20px 0;
}

/* 右侧间距共用值 end */

/* 即时热点样式 start */

.right-box {
  background: #fff;
  border-radius: 12px;
}

.right-box h3 {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 700;
  color: #333;
}

.redlist {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: rank;
}

.redlist li {
  counter-increment: rank;
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  height: 52px !important;
}

.redlist li:last-child {
  margin-bottom: 0;
}

.redlist li::before {
  content: counter(rank);
  width: 26px;
  height: 26px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-right: 12px;

  border-radius: 6px;

  font-size: 13px;
  font-weight: 700;

  color: #fff;

  background: linear-gradient(135deg,
      #ff6a00,
      #ff3d00);
}

/* 第2名 */

.redlist li:nth-child(2)::before {
  background: linear-gradient(135deg,
      #ff8a00,
      #ff5722);
}

/* 第3名 */

.redlist li:nth-child(3)::before {
  background: linear-gradient(135deg,
      #ffb300,
      #ff8f00);
}

/* 第4名以后 */

.redlist li:nth-child(n+4)::before {
  background: #d8d8d8;
  color: #666;
}

.redlist li a {
  flex: 1;
  color: #333;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .2s ease;
}

.redlist li a:hover {
  color: #e60012;
}

/* 即时热点样式 end */