﻿@import url("icon.css");
@import url("player_detail.css");

/* ===== 全局 ===== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

:after, :before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "微软雅黑", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
  font-size: 14px;
  line-height: 140%;
  color: #2d3436;
  background: #f5f6fa;
  background-image: linear-gradient(135deg, #f5f6fa 0%, #dfe6e9 100%);
}

ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset, table, td, img, tr {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

input, select {
  font-size: 12px;
  vertical-align: middle;
  border: none;
}

ul, li {
  list-style-type: none;
}

a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

img {
  border: 0 none;
}

.wap {
  display: none;
}

.pc {
  display: block;
}

/* ===== 容器 ===== */
.container {
  width: 80%;
  position: relative;
  margin: auto;
  padding: 0 20px;
  background: transparent;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.container .row {
  display: block;
  width: 100%;
}

/* ===== 标题 ===== */
h1 {
  font-size: 18px;
  line-height: 24px;
  color: #2d3436;
  font-weight: 700;
}
h2 {
  font-size: 18px;
  line-height: 24px;
  color: #2d3436;
  font-weight: 700;
}
h3 {
  font-size: 18px;
  line-height: 24px;
  color: #2d3436;
  font-weight: 700;
}
h4 {
  font-size: 16px;
  line-height: 22px;
  color: #2d3436;
  font-weight: 600;
}
h5 {
  font-size: 14px;
  line-height: 20px;
  color: #636e72;
  font-weight: 500;
}
h6 {
  font-size: 12px;
  line-height: 18px;
  color: #b2bec3;
}

a, button {
  text-decoration: none;
  color: #636e72;
  outline: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

button:hover {
  cursor: pointer;
}

a:focus, a:hover, a:active {
  text-decoration: none;
  color: #0984e3;
}

.icon {
  font-size: 16px;
  vertical-align: -1px;
}

.font-16 { font-size: 16px; }
.font-14 { font-size: 14px; }
.font-12 { font-size: 12px; }

.text-red { color: #d63031; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.pull-right { float: right !important; }
.mg10 { margin: 10px 0; }
.cb { clear: both; width: 100%; }
.hide { display: none !important; }

.text-overflow {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap;
}

.pic-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 99;
  padding: 2px 12px;
  font-size: 11px;
  border-radius: 20px;
  background: #0984e3;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(9, 132, 227, 0.3);
}

/* ===== 表单 ===== */
input, textarea {
  outline: medium none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input.form-control, input.btn {
  outline: 0px;
  -webkit-appearance: none;
}

input[type="checkbox"] {
  vertical-align: -2px;
}

textarea {
  height: auto;
}

/* ===== 嵌入 ===== */
.embed-responsive {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  height: 0;
}

.embed-responsive .embed-responsive-item,
.embed-responsive embed,
.embed-responsive iframe,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 { padding-bottom: 56.25%; }
.embed-responsive-4by3 { padding-bottom: 75%; }

/* ===== 顶部 ===== */
.top_padding { height: 60px; }

.header {
  height: 60px;
  line-height: 60px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  width: 100%;
  position: fixed;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Logo */
.header_logo {
  float: left;
  display: block;
  width: 240px;
  height: 60px;
  background: center center no-repeat;
  position: relative;
  overflow: hidden;
}
.header_logo * { font-size: 0; }

/* 快捷菜单 */
.header_menu_open,
.header_search_open {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 59px;
  font-size: 20px;
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 900;
  text-align: center;
  color: #2d3436;
  float: right;
  transition: all 0.3s ease;
}

.header_search_open { display: none; }

.header_menu_open:hover,
.header_search_open:hover,
.ico_active {
  background: rgba(9, 132, 227, 0.06);
  color: #0984e3;
}

/* 弹出菜单 */
.tanchu {
  display: none;
  width: 260px;
  height: auto;
  position: fixed;
  top: 20%;
  left: 50%;
  margin-left: -130px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 100;
  border: 1px solid rgba(9, 132, 227, 0.15);
  box-shadow: 0px 0px 0px 2000px rgba(0,0,0,0.8), 0 20px 60px rgba(0,0,0,0.15);
  -webkit-box-shadow: 0px 0px 0px 2000px rgba(0,0,0,0.8), 0 20px 60px rgba(0,0,0,0.15);
  -moz-box-shadow: 0px 0px 0px 2000px rgba(0,0,0,0.8), 0 20px 60px rgba(0,0,0,0.15);
}

.tanchu h5 {
  line-height: 50px;
  width: 100%;
  background: #f8f9fa;
  text-align: center;
  color: #0984e3;
  border-bottom: 1px solid #f1f2f6;
  font-weight: 900;
  font-size: 20px;
}

.tanchu div {
  overflow-y: scroll;
  height: 300px;
}

.tanchu div::-webkit-scrollbar {
  width: 5px;
  background-color: transparent;
}

.tanchu div::-webkit-scrollbar-thumb {
  background: #0984e3;
  border-radius: 10px;
}

.tanchu div a {
  display: block;
  width: calc(100% - 15px);
  line-height: 40px;
  background: #f8f9fa;
  color: #2d3436;
  margin: 10px 5px 0 10px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.tanchu div a:hover {
  background: #0984e3;
  color: #FFF;
}

.tanchu p {
  width: 200px;
  height: 56px;
  margin: auto;
  line-height: 30px;
  color: #FFF;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  background: #0984e3;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px 0;
  transition: all 0.3s ease;
}

.tanchu p:hover {
  background: #0873c7;
  transform: scale(1.02);
}

/* 搜索 */
.header_search {
  overflow: hidden;
  width: 300px;
  float: right;
}

#search {
  position: relative;
  margin: 12px;
}

.header_search .form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 48px 0 16px;
  font-size: 13px;
  background: #f8f9fa;
  color: #2d3436;
  line-height: 20px;
  border-radius: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.header_search .form-control:focus {
  background: #ffffff;
  border-color: #0984e3;
  box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.06);
}

.header_search .form-control::placeholder {
  color: #b2bec3;
}

.header_search .submit {
  color: #FFF;
  font-weight: 700;
  display: block;
  background: #0984e3;
  position: absolute;
  top: 0;
  right: 0;
  height: 36px;
  line-height: 36px;
  width: 42px;
  text-align: center;
  border: 0;
  cursor: pointer;
  border-radius: 0 25px 25px 0;
  transition: all 0.3s ease;
}

.header_search .submit:hover {
  background: #0873c7;
}

/* 导航菜单 */
.menu { float: left; }

.menu a, .menu span {
  display: block;
  float: left;
  cursor: pointer;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
  height: 60px;
  padding: 0 18px;
  color: #636e72;
  margin-right: -3px;
  margin-bottom: -3px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-weight: 500;
}

.menu a:hover, .menu span:hover, .menu a.active {
  color: #0984e3;
  background: rgba(9, 132, 227, 0.04);
}

.menu a h2 {
  font-weight: 700;
  font-size: 15px;
  line-height: 60px;
  margin-bottom: 0;
  margin-top: 0;
}

/* 列表分类 */
.index_text {
  font-size: 20px;
  color: #2d3436;
  padding: 10px 0;
  font-weight: 700;
}

.index_class, .class_list {
  width: 100%;
  margin-bottom: 20px;
}

.class_list a, .index_class a {
  display: block;
  float: left;
  width: calc(10% - 30px);
  height: 32px;
  line-height: 30px;
  border-radius: 20px;
  border: 1px solid #dfe6e9;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #636e72;
  margin: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.class_list a:hover, .my_active, .index_class a:hover {
  background: #0984e3 !important;
  color: #FFF !important;
  border-color: #0984e3;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

/* 视频列表 */
.vodlist {
  margin: 0 -2px;
}

.vodlist li {
  float: left;
  border: 3px solid transparent;
  margin: 0px;
  width: 25%;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.vodlist li:hover {
  border-color: #0984e3;
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.vodlist li a:hover .vod_title h4 {
  color: #0984e3;
}

.vodlist li a:hover .play {
  display: block;
}

.vodlist li a:hover .vod_img {
  opacity: 0.9;
}

.vod_img {
  position: relative;
  padding-top: 65%;
  background-position: 50% 30%;
  background-size: cover;
  background-color: #dfe6e9;
  border-radius: 8px;
  overflow: hidden;
}

.vod_img .play {
  display: none;
  position: absolute;
  top: -5px;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url(../image/play.png) center center no-repeat;
  background-size: 64px;
}

.vod_img .vod_tab {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 12px;
  font-size: 12px;
  background-image: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: #FFF;
}

.vod_title {
  padding: 6px 2px;
}

.vod_title h4 {
  font-size: 14px;
  line-height: 28px;
  color: #2d3436;
  font-weight: 600;
  transition: color 0.3s ease;
}

/* 分页 */
.page {
  padding: 20px 0 20px;
}

.page a {
  display: inline-block;
  padding: 8px 16px;
  color: #636e72;
  transition: all 0.3s ease;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  margin: 0 3px;
  font-size: 13px;
  background: #fff;
}

.page a.active, .page a:hover {
  background: #0984e3;
  color: #FFF;
  border-color: #0984e3;
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

.page a.num { display: none; }

/* 播放器 */
.player {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.player .player_title {
  height: 48px;
  line-height: 48px;
  clear: both;
  background: #f8f9fa;
  padding: 0 16px;
  border-bottom: 1px solid #f1f2f6;
}

.player .player_title a {
  width: 80px;
  height: 34px;
  line-height: 32px;
  text-align: center;
  float: left;
  color: #636e72;
  background: #ffffff;
  border: 1px solid #dfe6e9;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.player .player_title a:hover {
  background: #0984e3;
  color: #FFF;
  border-color: #0984e3;
}

.player .player_title h1 {
  float: left;
  width: calc(100% - 80px);
  font-weight: 700;
  line-height: 34px;
  margin-top: 0;
  margin-bottom: 0;
  color: #2d3436;
  padding-left: 14px;
  max-width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 16px;
}

.player_video {
  background-color: #000;
}

.player_left {
  position: relative;
  float: left;
  width: 75%;
  overflow: hidden;
  height: 580px;
}

.player_side {
  position: relative;
  float: left;
  width: 25%;
  padding: 8px;
  overflow: hidden;
  max-height: 580px;
  overflow-y: auto;
  background: #fafbfc;
}

.player_side::-webkit-scrollbar {
  width: 3px;
}
.player_side::-webkit-scrollbar-thumb {
  background: #0984e3;
  border-radius: 10px;
}

.player_side li {
  float: left;
  display: inline-block;
  width: 100%;
  height: 44px;
  line-height: 44px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 4px;
  background: #ffffff;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: #636e72;
  font-weight: 500;
  border: 1px solid #f1f2f6;
}

.player_side li:hover {
  background: #0984e3;
  color: #fff;
  border-color: #0984e3;
  transform: translateX(4px);
}

.player_side li.active {
  background: #0984e3;
  color: #FFF;
  border-color: #0984e3;
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

.player_side a.play_side_img {
  display: inline-block;
  height: 400px;
  width: 100%;
}

.player_detail {
  height: 48px;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-top: 1px solid #f1f2f6;
  border-radius: 0 0 16px 16px;
}

.player_detail a {
  display: inline-block;
  height: 36px;
  padding: 0 20px;
  line-height: 36px;
  color: #636e72;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.player_detail a:hover {
  background: rgba(9, 132, 227, 0.06);
  color: #0984e3;
}

.player_detail a b {
  color: #2d3436;
  font-size: 15px;
  margin-right: 4px;
}

.vodlist_more {
  display: block;
  text-align: center;
  width: 30%;
  height: 44px;
  line-height: 44px;
  border-radius: 25px;
  color: #FFF;
  background: #0984e3;
  margin: 20px auto;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

.vodlist_more:hover {
  background: #0873c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(9, 132, 227, 0.3);
}

/* 返回顶部 */
.my_top {
  width: 44px;
  height: 44px;
  background: #0984e3 url(../image/top.png) center center no-repeat;
  background-size: 20px;
  position: fixed;
  right: 30px;
  bottom: 3rem;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(9, 132, 227, 0.3);
  transition: all 0.3s ease;
}

.my_top:hover {
  background-color: #0873c7;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(9, 132, 227, 0.4);
}

.email {
  line-height: 30px;
  text-align: center;
  color: #0984e3;
  font-weight: 600;
  background: #f8f9fa;
  padding: 30px 0;
}

.pc4 { display: inline-block !important; }

/* 广告 */
.Play_imgAD, .Play_appAD, .bottomAD, .dingAD, .sideAD_left, .sideAD_right {
  display: none;
}

.Play_imgAD {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: -3px;
}
.Play_imgAD img { width: 100%; }

.Play_appAD {
  padding-bottom: 15PX;
}
.Play_appAD a {
  float: left;
  color: #2d3436;
  border-radius: 12px;
  width: 25%;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  transition: all 0.3s ease;
}
.Play_appAD a img {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  clear: both;
  margin: 0 auto 6px;
  border: 2px solid #f1f2f6;
  transition: all 0.3s ease;
}
.Play_appAD a:hover {
  color: #0984e3;
  background: #f8f9fa;
}
.Play_appAD a:hover img {
  border-color: #0984e3;
  transform: scale(1.05);
}

.dingAD {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: 9999;
}
.dingAD span {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #d63031;
  color: #FFF;
  clear: both;
  position: absolute;
  top: 0;
  border-radius: 0 0 8px 0;
  font-size: 12px;
  cursor: pointer;
}
.dingAD a {
  display: block;
  width: 100%;
  height: auto;
}
.dingAD a img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.bottomAD {
  position: fixed;
  width: 100%;
  height: auto;
  bottom: 0;
  left: 0;
  z-index: 9999;
}
.bottomAD span {
  display: block;
  float: left;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #d63031;
  color: #FFF;
  clear: both;
  border-radius: 0 8px 0 0;
  font-size: 12px;
  cursor: pointer;
}
.bottomAD a {
  display: block;
  width: 100%;
  height: auto;
}
.bottomAD a img {
  width: 100%;
  object-fit: cover;
}

.sideAD_left, .sideAD_right {
  width: 80px;
  height: auto;
  position: fixed;
  bottom: 40%;
  z-index: 9999;
}
.sideAD_left { left: 0; }
.sideAD_right { right: 0; }
.sideAD_left a, .sideAD_right a {
  display: block;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
.sideAD_right a {
  border-radius: 0 12px 12px 0;
}
.sideAD_right a img, .sideAD_left a img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.sideAD_left span, .sideAD_right span {
  display: block;
  width: 80px;
  height: 24px;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
  color: #636e72;
  clear: both;
  background: #f1f2f6;
}

/* 响应式 */
@media (max-width: 1900px) {
  .vodlist li { width: 25%; }
  .player_side li { height: 40.2px; line-height: 40px; }
}

@media (max-width: 1600px) {
  .vodlist li { width: 25%; display: block !important; }
  .player_side li { height: 40.2px; line-height: 40px; }
}

@media (max-width: 1300px) {
  .container { width: 96%; }
  .header_search_open { display: block; }
  #search { margin: 20px 0; }
  .header_search {
    display: none;
    position: absolute;
    left: 0;
    top: 70px;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 0 5%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }
  .vodlist li { width: 25%; }
  .player_side li { height: 40.2px; line-height: 40px; }
}

@media (max-width: 1000px) {
  .index_class a, .class_list a { width: calc(16.6666666666666% - 5px); }
  .container { width: 100%; }
  .menu, .player_side { display: none; }
  .my_top_banner a { width: 100%; }
  .my_top_banner a img { height: 70px; }
  .vodlist li { width: 50%; }
  .player_left { width: 100%; }
  .player_side {
    padding-top: 10px;
    height: 95px;
    width: calc(100% + 2px);
    padding-left: 0;
    display: block !important;
    max-height: none;
    background: #f5f6fa;
  }
  .player_side li {
    float: left;
    width: 20%;
    height: 36px;
    line-height: 36px;
    border-right: 1px solid #dfe6e9;
  }
}

@media (max-width: 768px) {
  .player_left {
    position: relative;
    float: left;
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 650px) {
  .Play_imgAD, .Play_appAD, .bottomAD, .dingAD {
    display: block;
    width: 100%;
    overflow: hidden;
  }
  .sideAD_left, .sideAD_right { display: block; }
  .index_class a, .class_list a {
    width: calc(30% - 5px);
    height: 45px;
    line-height: 40px;
  }
  .wap4 { display: inline-block !important; }
  .wap { display: block; }
  .vodlist li { width: 100%; }
  .container { width: 100%; padding: 0 5px; }
  .header { height: 50px; line-height: 50px; }
  .header_logo { height: 50px; width: 180px; background-size: 160px auto; }
  .header_menu_open, .header_search_open { height: 50px; line-height: 48px; }
  .header_search { top: 50px; }
  .top_padding { height: 50px; }
  .my_top_app a { padding: 0px; }
  .my_top_app a img { width: 50px; height: 50px; }
  .my_top_banner a img { height: 60px; }
  .my_top_link a, .my_link a { font-size: 12px; padding: 4px 6px; font-weight: 400; }
  .player_side { height: 135px; }
  .player_side li { width: 25%; }
  .hidden-xs { display: none !important; }
  .num { display: inline-block !important; }
  .my_top { right: 5px; width: 40px; height: 40px; background-size: 18px; }
}

@media (max-width: 414px) {
  .player_side { height: 170px; }
  .player_side li { width: 33.3333333333333%; }
}

/* 关键字 */
.my_keywords { padding: 10px 0; }
.my_keywords a {
  display: block;
  float: left;
  padding: 4px 12px;
  margin: 2px;
  color: #FFF;
  font-size: 12px;
  background: #0984e3;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}
.my_keywords a:hover {
  background: #0873c7;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}

@media screen and (max-width: 805px) {
  body { font-size: 12px; }
}

/* 通用 */
div { display: block; }
ul { padding: 0; margin: 0; }
ol, ul { list-style: none; }

.row-item ul li { display: inline-block; }

.row-item-content .item a {
  color: #636e72;
  font-size: 20px;
  transition: color 0.3s ease;
}
.row-item-content .item a:hover {
  color: #0984e3;
}

.row-item { padding: 0 1%; }

@media (max-width: 769px) {
  .row-item { margin: 0; }
}

.container .row {
  display: block;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .container .row {
    display: block;
    width: 100%;
  }
}

.row-item.odd {
  background: #ffffff;
  height: auto;
  border-radius: 12px;
  margin: 4px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.row-item.even {
  background: #f8f9fa;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  margin: 4px 0;
}

.row-item { padding: 0 1%; }

.bg_red {
  background: #dfe6e9;
  color: #2d3436;
}

.row-item-title {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 8px;
  vertical-align: top;
  margin: 10px;
  float: left;
  background: rgba(9, 132, 227, 0.06);
  border: 1px solid rgba(9, 132, 227, 0.08);
}

.row-item-title a {
  color: #2d3436;
  font-weight: 600;
  font-size: 15px;
}

.row-item-content {
  display: inline-block;
  margin: 0px auto;
  padding-left: 10px;
  width: 100%;
  margin-bottom: 15px;
}

@media (max-width: 769px) {
  .row-item-content {
    display: inline-block;
    margin: 0;
    width: 100%;
    padding: 0;
    margin-bottom: 5px;
  }
}

@media (max-width: 359px) and (min-width: 345px) {
  .row-item-content {
    display: inline-block;
    margin: 0;
    width: 100%;
    padding: 0;
    margin-bottom: 5px;
  }
}

.row-item-content .item {
  cursor: pointer;
  text-align: center;
  width: 11.9%;
  margin: 0;
  padding: 15px 0 0 0;
}

@media (max-width: 359px) and (min-width: 345px) {
  .row-item-content .item {
    width: 23%;
    padding: 5px 0 0 0;
  }
}

@media (max-width: 769px) {
  .row-item-content .item {
    width: 24.2%;
    padding: 5px 0 0 0;
  }
}

@media (max-width: 768px) {
  .row-item-title {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    vertical-align: top;
    margin: 5px;
    float: left;
    background: #0984e3;
  }
  .row-item-title a {
    color: #fff;
  }
}

/* 滚动条 */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f2f6;
}
::-webkit-scrollbar-thumb {
  background: #0984e3;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0873c7;
}