@import "icon.css";
html,
body {
  width: 100%;
  height: 100%;
  background-color: white;
  color: #282828;
  font-family: "Microsoft YaHei", "微软雅黑", "PingFang SC", "Lantinghei SC", "HanHei SC", "Helvetica Neue", "Open Sans", Arial, "Hiragino Sans GB", STHeiti, "WenQuanYi Micro Hei", SimSun, sans-serif;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  touch-action: manipulation;
  flex-shrink: 0;
  border: none;
  outline: none;
  background-repeat: no-repeat;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
input,
textarea,
img,
button,
select {
  border: none;
  outline: none;
}
ul {
  list-style: none;
}
a {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
a:hover {
  transition: all 0.2s linear;
}
i {
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
}
button,
.button {
  color: #fff;
  background-color: #FF3E48;
  border-radius: 4px;
  border: solid 1px #FF3E48;
  font-size: 17px;
  cursor: pointer;
  line-height: 100%;
}
button:hover,
.button:hover {
  opacity: 0.9;
}
input,
select {
  background-color: transparent;
  color: #282828;
  padding: 0 1%;
  font-size: 16px;
  border: solid #ededed;
}
input::-webkit-input-placeholder {
  color: #bcbcbc;
}
input:focus,
input:hover {
  border-color: #FF3E4830;
}
input[type='checkbox'] {
  width: 20px;
  height: 20px;
  background-color: transparent;
  -webkit-appearance: none;
  border: 1px solid #d2d9d9;
  background-color: #fff;
  margin-right: 5px;
}
input[type='radio'] {
  width: 20px;
  height: 20px;
  background-color: transparent;
  -webkit-appearance: none;
  border: 1px solid #d2d9d9;
  border-radius: 50%;
  margin-right: 5px;
}
input[type=checkbox]:checked {
  background: url("../image/i_checkbox.png") no-repeat center;
}
input[type=radio]:checked {
  background: url("../image/i_radio.png") no-repeat center;
}
caption {
  line-height: 70px;
  text-align: left;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 600;
}
h1,
h2,
h3,
h4,
p {
  cursor: default;
}
video {
  width: 100%;
  height: auto;
}
/* 滚动条 */
.scroll_bar {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/* 布局 */
.d_none {
  display: none !important;
}
.d_flex {
  display: flex;
}
.d_flex_wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}
.flex_column {
  flex-direction: column;
}
.align_items_center {
  align-items: center;
}
.align_items_end {
  align-items: flex-end;
}
.align_items_stretch {
  align-items: stretch;
}
.align_content_center {
  align-content: center;
}
.justify_content_between {
  justify-content: space-between;
}
.justify_content_center {
  justify-content: center;
}
.flex_1 {
  flex: 1;
}
.flex_2 {
  flex: 2;
}
.flex_3 {
  flex: 3;
}
.align_self_end {
  align-self: flex-end;
}
.pos_rel {
  position: relative;
}
.pos_abs {
  position: absolute;
}
.pos_l_0 {
  left: 0;
}
.pos_r_0 {
  right: 0;
}
.overflow_hidden {
  overflow: hidden;
}
.page_container {
  width: 1360px;
  padding-left: 80px;
  padding-right: 80px;
  margin: 0 auto;
}
/* 宽度 */
.w_100p {
  width: 100%;
}
.w_50 {
  width: 50px;
}
.w_80 {
  width: 80px;
}
.w_320 {
  width: 320px;
}
.h_100p {
  height: 100%;
}
.h_40 {
  height: 40px;
}
.h_60 {
  height: 60px;
}
.h_80 {
  height: 80px;
}
.col_3 {
  width: calc(100%/3 - 20px);
  margin-right: 30px;
}
.col_3:nth-child(3n) {
  margin-right: 0;
}
.col_4 {
  width: calc((100% - 45px)/4);
  margin-right: 15px;
}
.col_4:nth-child(4n) {
  margin-right: 0;
}
.col_4.m_r_20 {
  width: calc(25% - 15px);
}
.col_5 {
  width: calc(20% - 20px);
  margin-right: 25px;
}
.col_5:nth-child(5n) {
  margin-right: 0;
}
/* 边距 */
.m_r_5 {
  margin-right: 5px;
}
.m_r_6 {
  margin-right: 6px;
}
.m_r_10 {
  margin-right: 10px;
}
.m_r_15 {
  margin-right: 15px;
}
.m_r_20 {
  margin-right: 20px;
}
.m_r_25 {
  margin-right: 25px;
}
.m_r_40 {
  margin-right: 40px;
}
.m_r_60 {
  margin-right: 60px;
}
.m_r_80 {
  margin-right: 80px;
}
.m_l_5 {
  margin-left: 5px;
}
.m_l_10 {
  margin-left: 10px;
}
.m_l_15 {
  margin-left: 15px;
}
.m_l_20 {
  margin-left: 20px;
}
.m_l_30 {
  margin-left: 30px;
}
.m_l_40 {
  margin-left: 40px;
}
.m_l_50 {
  margin-left: 50px;
}
.m_x_n15 {
  margin-left: -15px;
  margin-right: -15px;
}
.m_t_3 {
  margin-top: 3px;
}
.m_t_5 {
  margin-top: 5px;
}
.m_t_10 {
  margin-top: 10px;
}
.m_t_15 {
  margin-top: 15px;
}
.m_t_20 {
  margin-top: 20px;
}
.m_t_25 {
  margin-top: 25px;
}
.m_t_30 {
  margin-top: 30px;
}
.m_t_35 {
  margin-top: 35px;
}
.m_t_40 {
  margin-top: 40px;
}
.m_t_50 {
  margin-top: 50px;
}
.m_t_60 {
  margin-top: 60px;
}
.m_t_70 {
  margin-top: 70px;
}
.m_t_80 {
  margin-top: 80px;
}
.m_t_100 {
  margin-top: 100px;
}
.m_t_120 {
  margin-top: 120px;
}
.m_t_130 {
  margin-top: 130px;
}
.m_t_140 {
  margin-top: 140px;
}
.m_t_270 {
  margin-top: 270px;
}
.m_b_10 {
  margin-bottom: 10px;
}
.m_b_20 {
  margin-bottom: 20px;
}
.m_b_30 {
  margin-bottom: 30px;
}
.m_b_40 {
  margin-bottom: 40px;
}
.m_b_50 {
  margin-bottom: 50px;
}
.m_b_60 {
  margin-bottom: 60px;
}
.m_b_80 {
  margin-bottom: 80px;
}
.m_b_100 {
  margin-bottom: 100px;
}
.m_b_110 {
  margin-bottom: 110px;
}
.m_y_10 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.m_y_20 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.m_y_30 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.m_y_40 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.p_0 {
  padding: 0 !important;
}
.p_20 {
  padding: 20px;
}
.p_30 {
  padding: 30px;
}
.p_60 {
  padding: 60px;
}
.p_140 {
  padding: 140px;
}
.p_r_20 {
  padding-right: 20px;
}
.p_r_40 {
  padding-right: 40px;
}
.p_l_10 {
  padding-left: 10px;
}
.p_l_20 {
  padding-left: 20px;
}
.p_l_30 {
  padding-left: 30px;
}
.p_l_40 {
  padding-left: 40px;
}
.p_l_50 {
  padding-left: 50px;
}
.p_x_10 {
  padding-left: 10px;
  padding-right: 10px;
}
.p_x_20 {
  padding-left: 20px;
  padding-right: 20px;
}
.p_x_30 {
  padding-left: 30px;
  padding-right: 30px;
}
.p_x_50 {
  padding-left: 50px;
  padding-right: 50px;
}
.p_x_70 {
  padding-left: 70px;
  padding-right: 70px;
}
.p_x_80 {
  padding-left: 80px;
  padding-right: 80px;
}
.p_x_100 {
  padding-left: 100px;
  padding-right: 100px;
}
.p_x_120 {
  padding-left: 120px;
  padding-right: 120px;
}
.p_t_10 {
  padding-top: 10px;
}
.p_t_15 {
  padding-top: 15px;
}
.p_t_20 {
  padding-top: 20px;
}
.p_t_30 {
  padding-top: 30px;
}
.p_t_80 {
  padding-top: 80px;
}
.p_b_30 {
  padding-bottom: 30px;
}
.p_y_5 {
  padding-top: 5px;
  padding-bottom: 5px;
}
.p_y_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.p_y_15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.p_y_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.p_y_30 {
  padding-top: 30px;
  padding-bottom: 30px;
}
.p_y_40 {
  padding-top: 40px;
  padding-bottom: 40px;
}
/* 字体 */
.f_size_14 {
  font-size: 14px;
  line-height: 22px;
}
.f_size_15 {
  font-size: 15px;
  line-height: 22px;
}
.f_size_16 {
  font-size: 16px;
  line-height: 26px;
}
.f_size_17 {
  font-size: 17px;
  line-height: 26px;
}
.f_size_18 {
  font-size: 18px;
  line-height: 28px;
}
.f_size_20 {
  font-size: 20px;
  line-height: 28px;
}
.f_size_22 {
  font-size: 22px;
  line-height: 32px;
}
.f_size_24 {
  font-size: 24px;
  line-height: 36px;
}
.f_size_28 {
  font-size: 28px;
  line-height: 38px;
}
.f_size_32 {
  font-size: 32px;
}
.f_size_34 {
  font-size: 34px;
}
.f_size_90 {
  font-size: 9px;
}
.f_size_120 {
  font-size: 12px;
}
.f_bold {
  font-weight: 600;
}
.text_align_center {
  text-align: center;
}
.f_color_white {
  color: white;
}
.f_color_gray_v6 {
  color: #666;
}
.f_color_gray_v9 {
  color: #999;
}
.f_color_gray_v10 {
  color: #aaa;
}
.f_color_red {
  color: #FF3E48;
}
.f_color_deepred {
  color: #e01b1b;
}
.f_color_white {
  color: white;
}
.f_line_100p {
  line-height: 100%;
}
.text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.text_ellipsis_2 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.text_ellipsis_2 img {
  display: none;
}
/* 鼠标 */
.cursor_pointer {
  cursor: pointer;
}
/* 居中 */
.abs_h_center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.abs_c_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.border_around_1 {
  border: solid 1px;
}
.border_around_2 {
  border: solid 2px;
}
.border_top_1 {
  border-top: solid 1px;
}
.border_bottom_1 {
  border-bottom: solid 1px;
}
.border_gray_v5 {
  border-color: #eee;
}
.border_gray_v4 {
  border-color: #dcdcdc;
}
.border_radius_around_100 {
  border-radius: 100px;
}
.border_radius_tl_4 {
  border-top-left-radius: 4px;
}
.border_radius_tr_4 {
  border-top-right-radius: 4px;
}
.border_radius_bl_4 {
  border-bottom-left-radius: 4px;
}
.border_radius_br_4 {
  border-bottom-right-radius: 4px;
}
.bg_white {
  background-color: #fff;
}
.bg_black_v3 {
  background-color: #333;
}
.bg_gray_v5 {
  background-color: #f5f5f5;
}
.bg_gray_v8 {
  background-color: #f8f8f8;
}
.bg_red {
  background-color: #FF3E48;
}
header {
  width: 100%;
}
.header_bar {
  border: solid #eee;
  border-width: 1px 0;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 99;
}
.header_nav {
  height: 48px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.header_nav .active {
  color: #FF3E48;
  font-weight: 600;
}
.header_nav li {
  margin: 0 20px;
}
.header_nav li a {
  padding: 5px;
  transition: transform 0.2s, all 0.2s;
  -webkit-transition: transform 0.2s, all 0.2s;
  -moz-transition: transform 0.2s, all 0.2s;
  -o-transition: transform 0.2s, all 0.2s;
}
.header_nav li a:hover {
  color: #FF3E48;
}
.header_nav li:first-child {
  margin-left: 0;
}
.header_nav li:last-child {
  margin-right: 0;
}
.header_nav .header_nav_more .i_more path {
  stroke: #282828;
  transform-origin: center;
}
.header_nav .header_nav_more .header_more_container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  overflow: hidden;
  box-shadow: 0 3px 5px #00000009;
  z-index: 999;
}
.header_nav .header_nav_more .header_more_container a {
  margin: 4px 30px 4px 0;
}
.header_nav .header_nav_more .header_more_container.show_more {
  height: fit-content !important;
  max-height: calc(100vh - (100rem / 75));
}
.header_nav .header_nav_more .hover.header_more_item {
  color: #FF3E48;
}
.header_nav .header_nav_more .hover .i_more path {
  stroke: #FF3E48;
  transform: rotateX(180deg);
}
footer {
  color: #8d90a1;
  background-color: #2D3236;
  font-size: 15px;
  padding: 10px 0;
}
footer .footer_download {
  display: flex;
}
footer .footer_download li {
  position: relative;
  padding: 10px;
}
footer .footer_download li i {
  width: 42px;
  height: 42px;
  background-size: 20px 20px;
  background-position: center;
  border-radius: 50%;
  border: solid 1px #5e616e;
}
footer .footer_download li i.icon_ios {
  background-image: url(/resource/web/images/i_ios.png);
}
footer .footer_download li i.icon_android {
  background-image: url(/resource/web/images/i_android.png);
}
footer .footer_download li img {
  position: absolute;
  width: 160px;
  height: 160px;
  bottom: 68px;
  left: -49px;
}
footer a {
  color: inherit;
}
footer a:hover {
  color: #838591;
}
.search_bar input {
  padding: 0 15px;
  border-radius: 4px 0 0 4px;
  border-width: 2px 0 2px 2px;
  line-height: 100%;
  color: #282828;
}
.search_bar button {
  border-radius: 0 4px 4px 0;
}
.search_bar .search_icon {
  display: none;
}
input.layui-input {
  border-radius: 4px;
}
input.layui-input:hover,
input.layui-input:focus {
  border-color: #FF3E4830 !important;
}
.layui-laydate td.layui-this {
  background-color: #FF3E48 !important;
}
.layui-laydate-footer .laydate-footer-btns span:hover {
  color: white;
  background-color: #FF3E48;
  border-color: #FF3E48;
}
.transition_2,
.transition_2:hover,
.transition_2:focus,
:hover.transition_2,
:focus.transition_2 {
  transition: transform 0.2s, all 0.2s;
  -webkit-transition: transform 0.2s, all 0.2s;
  -moz-transition: transform 0.2s, all 0.2s;
  -o-transition: transform 0.2s, all 0.2s;
}
.transition_4,
.transition_4:hover,
.transition_4:focus,
:hover.transition_4,
:focus.transition_4 {
  transition: transform 0.4s, all 0.4s;
  -webkit-transition: transform 0.4s, all 0.4s;
  -moz-transition: transform 0.4s, all 0.4s;
  -o-transition: transform 0.4s, all 0.4s;
}
.f_hover_red:hover {
  color: #FF3E48;
}
.f_hover_deepred:hover {
  color: #e01b1b;
}
.f_hover_black_v3:hover {
  color: #333;
}
.opacity_hover_v8:hover {
  opacity: 0.8;
}
.img_hover:hover img,
.img_hover:hover .img {
  transform: scale(1.1);
}
.shadow_hover_v7 {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
}
.shadow_hover_v7:hover {
  box-shadow: 0 8px 20px -10px rgba(68, 54, 54, 0.3);
}
.breadcrumbs {
  background-color: white;
  border-bottom: solid 1px #ededed;
  display: flex;
}
.breadcrumbs .breadcrumbs_item:last-child svg {
  display: none;
}
.breadcrumbs .active {
  color: #FF3E48;
}
.item_title {
  width: 100%;
  border-bottom: solid 1px #dcdcdc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item_title .title {
  border-bottom: solid 3px #FF3E48;
  font-size: 18px;
  font-weight: 600;
  padding: 5px 0;
  margin-bottom: -1px;
}
.item_title .more {
  color: #999;
  font-size: 16px;
}
.item_title .more .i_more {
  stroke: #aaa;
}
.item_title .more :hover {
  color: #FF3E48;
}
.item_title .more :hover .i_more {
  stroke: #FF3E48;
}
.chujiao_tab,
.expert_tab {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 16px;
  border-bottom: solid 1px #dcdcdc;
}
.chujiao_tab li,
.expert_tab li {
  margin-right: 35px;
  padding: 5px 0;
  margin-bottom: 6px;
}
.chujiao_tab li:last-child,
.expert_tab li:last-child {
  margin-right: 0;
}
.chujiao_tab .active,
.expert_tab .active {
  font-size: 18px;
  font-weight: bold;
  color: #282828;
  border-bottom: solid 3px #FF3E48;
  margin-bottom: -1px;
}
.expert_tab {
  font-size: 18px;
}
.expert_tab li {
  margin-bottom: 4px;
}
.img_box {
  width: 280px;
  height: 168px;
  border: solid 1px #eee;
}
.img_box.expert {
  width: 100%;
  height: 200px;
}
.img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
/*设置轮播图的边框相对定位*/
.play_box {
  position: relative;
  background-color: #000;
  height: 500px;
}
/*设置超链接下的所有图片不显示*/
.play_box a {
  display: block;
  /*现在是文本状态，要修改为块状*/
  overflow: hidden;
  /*隐藏超过边框高度的图片*/
  opacity: 0;
  /*默认图片为全透明*/
  height: 0;
  /*默认高度为0*/
  width: 100%;
  transition: opacity 0.5s;
  /*默认透明度过渡时间为0.5s*/
}
.img_list {
  width: 100%;
  height: 100%;
}
/*设置当前图片显示*/
.img_list a.active {
  opacity: 1;
  /*默认图片显示*/
  height: 100%;
  /*默认高度为自动*/
}
/*设置图标绝对定位*/
.icon_list {
  position: absolute;
  display: flex;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.icon_list li {
  width: 25px;
  height: 4px;
  margin: 0 5px;
  background-color: #ffffffb0;
  cursor: pointer;
}
.icon_list .active {
  background-color: #FF3E48;
}
/*设置向左向右图标*/
.sliderbar {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  color: #fff;
  text-align: center;
  line-height: 50px;
  opacity: 0.6;
  display: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.sliderbar svg {
  stroke: #ffffffb0;
}
.sliderbar:hover svg {
  stroke: #fff;
}
.slidebar_left {
  left: 0;
  padding: 0 70px 0 20px;
  background-image: linear-gradient(270deg, #00000000, #00000050);
}
.slidebar_right {
  right: 0;
  padding: 0 20px 0 70px;
  background-image: linear-gradient(90deg, #00000000, #00000050);
}
.icon_video {
  width: 45px;
  height: 45px;
  background-image: url(../images/i_video.png);
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new_focus .focus_title {
  padding: 6px 45px 9px 25px;
  color: white;
  font-size: 34px;
}
.new_focus a {
  padding: 0 20px;
  font-size: 22px;
}
@media (max-width: 768px) {
  .d_none_mp {
    display: none;
  }
  .d_block_mp {
    display: block !important;
  }
  .d_flex_wrap_mp {
    display: flex;
    flex-wrap: wrap;
  }
  .justify_content_center_mp {
    justify-content: center;
  }
  .order_0_mp {
    order: 0;
  }
  .order_1_mp {
    order: 1;
  }
  .page_container {
    width: 100%;
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .col_2_mp {
    width: calc(50% - (15rem / 75));
    margin-right: 0.4rem !important;
  }
  .col_2_mp:nth-child(2n) {
    margin-right: 0 !important;
  }
  .col_4_mp {
    width: calc(25% - (90rem / 75)/4);
    margin-right: 0.4rem !important;
  }
  .col_4_mp:nth-child(4n) {
    margin-right: 0 !important;
  }
  header .logo img {
    width: 1.33333333rem;
    margin-bottom: 0.13333333rem;
  }
  header .search_bar {
    flex: 1;
    padding-left: 0.4rem;
    position: relative;
  }
  header .search_bar input {
    background-color: white;
    border-radius: 0.10666667rem;
    width: 100%;
    height: 0.90666667rem;
    border: none;
    padding-left: 1.06666667rem;
  }
  header .search_bar button {
    display: none;
  }
  header .search_bar .search_icon {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.4rem;
  }
  header .header_bar {
    width: 100%;
    height: auto;
    background-color: white;
    border-width: 0 0 1px 0;
    position: relative;
  }
  header .header_bar .header_nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    height: 44px;
  }
  header .header_bar .header_nav::-webkit-scrollbar {
    width: 0;
    height: 0;
    min-width: 0;
    min-height: 0;
  }
  header .header_bar .header_nav ul {
    padding-right: 0.8rem;
  }
  header .header_bar .header_nav li {
    margin: 0 0.26666667rem;
  }
  header .header_bar .header_nav li:first-child {
    margin-left: 0;
  }
  header .header_bar .more_icon {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: white;
    min-width: 0;
    min-height: 0;
    width: fit-content;
    border: none;
  }
  footer {
    width: 100%;
  }
  .bg_red_mp {
    background-color: #FF3E48;
  }
  .w_100pct_mp {
    width: 100% !important;
  }
  .h_auto_mp {
    height: auto !important;
  }
  .h_100_mp {
    height: 1.33333333rem !important;
  }
  .h_200_mp {
    height: 2.66666667rem !important;
  }
  .h_300_mp {
    height: 4rem !important;
  }
  .h_500_mp {
    height: 6.66666667rem !important;
  }
  .p_0_mp {
    padding: 0 !important;
  }
  .p_x_0_mp {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .p_x_30 {
    padding-left: 0.4rem;
    padding-right: 0.4rem;
  }
  .p_x_30_mp {
    padding-left: 0.4rem !important;
    padding-right: 0.4rem !important;
  }
  .p_y_0_mp {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .p_y_15 {
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
  }
  .p_y_20 {
    padding-top: 0.26666667rem;
    padding-bottom: 0.26666667rem;
  }
  .p_y_30_mp {
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  .p_y_40 {
    padding-top: 0.53333333rem;
    padding-bottom: 0.53333333rem;
  }
  .m_0_mp {
    margin: 0;
  }
  .m_t_10 {
    margin-top: 0.13333333rem;
  }
  .m_t_15 {
    margin-top: 0.2rem;
  }
  .m_t_30 {
    margin-top: 0.4rem;
  }
  .m_t_30_mp {
    margin-top: 0.4rem !important;
  }
  .m_y_40 {
    margin-top: 0.53333333rem;
    margin-bottom: 0.53333333rem;
  }
  .f_size_12 {
    font-size: 0.32rem;
  }
  .f_size_14 {
    font-size: 0.37333333rem;
  }
  .f_size_14_mp {
    font-size: 0.37333333rem !important;
    line-height: 0.58666667rem !important;
  }
  .f_size_15 {
    font-size: 0.4rem;
  }
  .f_size_16 {
    font-size: 0.42666667rem;
    line-height: 0.64rem;
  }
  .f_size_16_mp {
    font-size: 0.42666667rem !important;
    line-height: 0.64rem !important;
  }
  .f_size_17 {
    font-size: 0.45333333rem;
    line-height: 0.72rem;
  }
  .f_size_17_mp {
    font-size: 0.45333333rem !important;
    line-height: 0.72rem !important;
  }
  .f_size_18 {
    font-size: 0.48rem;
  }
  .f_size_20 {
    font-size: 0.53333333rem;
    line-height: 0.74666667rem;
  }
  .f_size_20_mp {
    font-size: 0.53333333rem !important;
    line-height: 0.74666667rem !important;
  }
  .f_size_22 {
    font-size: 0.58666667rem;
  }
  .f_size_32 {
    font-size: 0.85333333rem;
  }
  .item_title .title {
    font-size: 0.48rem;
  }
  .img_box {
    width: 3.73333333rem;
    height: 2.26666667rem;
  }
  .img_box.expert {
    height: 2.4rem !important;
  }
  .play_box {
    height: 6rem;
  }
  .play_box .icon_list {
    bottom: 0.4rem;
  }
  .play_box .icon_list li {
    width: 0.46666667rem;
    height: 0.06666667rem;
    margin: 0 0.13333333rem;
  }
  .chujiao_tab,
  .expert_tab {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .chujiao_tab::-webkit-scrollbar,
  .expert_tab::-webkit-scrollbar {
    width: 0;
    height: 0;
    min-width: 0;
    min-height: 0;
  }
  .icon_video {
    width: 0.85333333rem;
    height: 0.85333333rem;
  }
  .expert_img {
    width: 3.33333333rem !important;
    height: 4rem !important;
  }
  .new_focus .focus_title {
    font-size: 0.45333333rem;
    padding: 5px 30px 7px 20px;
  }
  .new_focus a {
    font-size: 0.45333333rem;
    padding: 0 0.26666667rem;
  }
}
