/* 重置标签样式 */
* {
  padding: 0;
  margin: 0;
}
body {
  color: #0d1c28;
  font-family: Roboto-Regular, Roboto, Helvetica Neue, Helvetica, Tahoma,
  Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei UI",
  "Microsoft YaHei", "SimSun", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  background-color: #f5f5f5;
}
button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
img {
  border: 0;
  cursor: pointer;
  vertical-align: middle;
}
ul,
li,
ol,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.w1400 {
  max-width: 1400px;
  margin: 0 auto;
  min-width: 1200px;
}
.minW1200 {
  min-width: 1200px;
}
.minW1400 {
  min-width: 1400px;
}
/* 表单公共样式包含input、select、textarea */
input::-ms-clear,
select::-ms-clear,
textarea::-ms-clear {
  display: none;
}
input,
textarea,
select {
  border: 1px solid #c9cdd4;
  background: #fff;
  color: #0d1c28;
  outline: none;
  box-sizing: border-box;
  filter: none !important;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s;
}
input,
select {
  padding: 8px;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
textarea {
  resize: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, PingFang SC,
  Hiragino Sans GB, noto sans, Microsoft YaHei, Helvetica Neue, Helvetica,
  Arial, sans-serif;
  padding: 8px;
  display: block;
  line-height: 1.5;
}
.defaultSelect {
  width: 200px;
}
/* 鼠标移入 */
input:hover,
textarea:hover,
select:hover {
  border-color: #2386ee;
}
/* 聚焦 */
input:focus,
textarea:focus,
select:focus {
  border-color: #2386ee;
}

input {
  outline: none;
}
input::input-placeholder {
  color: #86909c;
}
input::-webkit-input-placeholder {
  color: #86909c;
}
input:-moz-placeholder {
  color: #86909c;
}
input::-moz-placeholder {
  color: #86909c;
}
input:-ms-input-placeholder {
  color: #86909c;
}
.margin_aotu {
  margin: 0 auto;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #2386ee;
}

/* 文字颜色 */
.primary_color {
  color: #2386ee !important;
} /* 主颜色 */
a.primary_color:hover {
  color: #0068dd !important;
  border-bottom: 1px solid #4799ee;
}
.light_color {
  color: #4b5667 !important;
} /* 次强调 */
.very_light_color {
  color: #86909c !important;
} /* 次要信息 */
.success_color {
  color: #1bc47d !important;
} /* 成功 */
.warning_color {
  color: #fa8c16 !important;
} /* 警告 */
.wrong_color {
  color: #ff4d4d !important;
} /* 错误 */
.disable_color {
  color: #c9cdd4 !important;
} /* 禁用 */
a.a_link:hover {
  color: #2386ee !important;
  border-bottom: 1px solid #2386ee;
} /* 链接 */
a:hover {
  color: #2386ee;
}

/* 字体大小 */
.font_16 {
  font-size: 16px;
}
.font_18 {
  font-size: 18px;
}

/* 单行添加省略号 兼容ie*/
.text_ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}
/* 单行文本省略号不兼容ie */
.ellipsis_native1 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
/* 多行文本省略号不兼容ie */
.ellipsis_native2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* 文本居中 */
.text_center {
  text-align: center !important;
}

/* 按钮 */
.yn_btn {
  height: 36px;
  min-width: 88px;
  padding: 0 16px;
  border: 1px solid #c9cdd4;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1;
  cursor: pointer;
  background-color: #fff;
  font-size: 14px;
  color: #4b5667;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.1s cubic-bezier(0, 0, 1, 1);
  box-shadow: 0px 2px 2px rgba(75, 86, 103, 0.1);
}
.yn_btn:hover {
  border-color: #2386ee;
  color: #2386ee;
}

.yn_btn_primary {
  /* 主要按钮 */
  background-color: #2386ee;
  border-color: #2386ee;
  color: #fff;
}
.yn_btn_primary .iconfont {
  color: #fff;
}
.yn_btn_primary:hover {
  background-color: #0068dd;
  border-color: #0068dd;
  color: #ffffff;
}
/* 绿按钮 */
.yn_btn_primary_green {
  background-color: #1bc47d;
  border-color: #1bc47d;
  color: #ffffff;
}
.yn_btn_primary_green .iconfont {
  /* 绿按钮 */
  color: #fff;
}
/* 禁用按钮 */
.yn_btn_disable,
.yn_btn_disable:hover {
  background: #c9cdd4;
  color: #ffffff;
  cursor: not-allowed;
  border-color: #c9cdd4;
}

/* 红色按钮 */
.yn_btn_primary_red {
  /* background-color: #FF4D4D; */
  border-color: #ff4d4d;
  color: #ff4d4d;
}
.yn_btn_primary_red .iconfont {
  /* 红色按钮 */
  color: #ff4d4d;
}
/* 红色按钮hover */
.yn_btn.btn_primary_red:hover {
  background-color: #ff4d4d;
  border-color: #ff4d4d;
  color: #ffffff;
}
.yn_btn.btn_primary_red:hover .iconfont {
  color: #ffffff;
}
.yn_btn_outline {
  /* 线型按钮 */
  color: #2386ee;
  border-color: #2386ee;
}
.yn_btn_outline .iconfont {
  /* 线型按钮 */
  color: #2386ee;
  margin-right: 8px;
}
.yn_btn.yn_btn_outline:hover {
  border-color: #2386ee;
  background-color: #2386ee;
  color: #fff;
}
.yn_btn.yn_btn_outline:hover .iconfont {
  color: #fff;
}

.yn_btn.btn_primary:hover {
  /* 主按钮 */
  color: #fff;
  border-color: #0068dd;
  background-color: #0068dd;
}
/* 绿按钮 */
.yn_btn.btn_primary_green:hover {
  background-color: #18ab6d;
  border-color: #18ab6d;
  color: #fff;
}
.yn_btn.btn_primary_green:hover .iconfont {
  color: #fff;
}

.yn_btn:hover .iconfont {
  color: #2386ee;
}
.yn_btn.btn_outline .iconfont {
  color: #2386ee !important;
}
.yn_btn.btn_outline:hover {
  /* 线型按钮 */
  border-color: #2386ee;
  background-color: #2386ee;
  color: #fff;
}
.yn_btn.btn_outline:hover .iconfont {
  color: #fff !important;
}

/* 表格公用css */
.yn_table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  font-size: 14px;
  border: 1px solid #e5e6eb;
}
.yn_table tr th {
  font-weight: 700;
  vertical-align: middle;
  background: #f7f8fa;
  padding: 14px 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #e5e6eb;
  border-right: 1px solid #e5e6eb;
  text-align: left;
}
.yn_table tr td {
  border-bottom: 1px solid #e5e6eb;
  border-right: 1px solid #e5e6eb;
  padding: 16px 12px;
}
.yn_table tr td .primary_color i.iconfont {
  margin-right: 4px;
}
/* 下边框类型tablet */
.yn_table.noBorderT {
  border: 0;
}
.yn_table.noBorderT tr th {
  border-right: 0;
  color: #86909c;
  font-weight: normal;
}
.yn_table.noBorderT tr td {
  border-right: 0;
}

/* flex布局 */
._flex_ {
  display: flex;
}
._flex_st_c {
  display: flex;
  align-items: center;
}
._flex_c_c {
  display: flex;
  justify-content: center;
  align-items: center;
}
._flex_sb_c {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
._flex_sb {
  display: flex;
  justify-content: space-between;
}
/* 间距 */
.mr_64 {
  margin-right: 64px;
}
.mr_24 {
  margin-right: 24px;
}
.mr_110 {
  margin-right: 110px;
}
.mb_24 {
  margin-bottom: 24px;
}
.mb_12 {
  margin-bottom: 12px;
}

/* 元素类型 */
.dis_inline_block {
  display: inline-block;
}

/* 面包屑 */
.breadcrumb {
  color: #4b5667;
  margin-bottom: 32px;
}
.breadcrumb .active {
  color: #2386ee;
}
.breadcrumb .item,
.breadcrumb span,
.breadcrumb .iconfont {
  display: inline-block;
  margin: 0 2px;
  vertical-align: middle;
}
.breadcrumb .item {
  cursor: pointer;
}

/* 弹窗 */
.yn_mask_alert {
  z-index: 999;
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.yn_overlay_notification {
  width: 500px;
  min-height: 526px;
  border-radius: 8px;
  background-color: #fff;
  padding: 48px 60px 52px;
  box-shadow: 0px 2px 5px rgba(75, 86, 103, 0.1);
  box-sizing: border-box;
  position: relative;
}

.yn_herder {
  padding-bottom: 84px;
  background: url("../images/banner.jpg") no-repeat center;
  background-size: cover;
}
.yn_herder.default {
  padding-bottom: 84px;
  background: #ffffff;
  padding: 0;
  box-shadow: 0px 2px 5px 0px rgba(75, 86, 103, 0.1);
}
.yn_herder.default .yn_logo {
  margin-bottom: 0;
}
.yn_herder.default .yn_logo_text span {
  color: #0d1c28;
}
.yn_herder.default .yn_operate_ul .yn_operate_li {
  color: #4b5667;
  border-right-color: #4b5667;
}
.yn_herder.default .yn_operate_ul .city_tab_boxcity_tab_box{
  float: unset;
  position: relative;
  margin-left: unset;
  margin-top: unset;
  display: inline-block;
}
.yn_logo {
  height: 80px;
  margin-bottom: 76px;
  z-index: 1;
  position: relative;
}
.yn_logo_text img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.yn_logo_text span {
  font-weight: bold;
  font-size: 26px;
  line-height: 1;
  color: #ffffff;
}
.yn_herder_typeArea {
  margin: 0 auto;
}
.yn_operate_ul .yn_operate_li {
  margin-right: 24px;
  color: #ffffff;
}
.yn_operate_ul .yn_operate_li:hover {
  opacity: 0.8;
}
.yn_operate_ul .yn_operate_li .iconfont {
  margin-right: 4px;
  font-size: 16px;
}
.yn_logon_btn.yn_btn {
  border-radius: 85px;
  margin-left: 24px;
}

#yn_header_search_btn-box {
  position: relative;
}
#yn_header_search_btn-box .yn_header_search-plus {
  position: absolute;
  right: -12px;
  top: -22px;
  border-radius: 4px;
  border: 1px solid var(--Line-, #e5e6eb);
  background: #fff;
  box-shadow: 0px 4px 12px 0px rgba(13, 28, 40, 0.1);
  width: 1200px;
  padding: 32px 48px;
  box-sizing: border-box;
  display: none;
}
#yn_header_search_btn-box .yn_header_search-plus .yn_header_search-plus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.yn_header_search-plus-input {
  flex: 1;
  flex-shrink: 0;
  border-radius: 4px 0px 0px 4px;
  border: 1px solid var(--Line-, #c9cdd4);
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.yn_header_search-plus-input
input {
  width: 100%;
  height: 100%;
  padding: 0 16px 0 48px;
  box-sizing: border-box;
  border: none;
  outline: none;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.yn_header_search-plus-input
.iconfont {
  position: absolute;
  left: 12px;
  font-size: 24px;
  color: #86909c;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.yn_btn {
  width: 100px;
  height: 40px;
  line-height: 40px;
  border-radius: 0px 4px 4px 0px;
  flex-shrink: 0;
  font-size: 16px;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.icon-close {
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 24px;
  margin-left: 16px;
  flex-shrink: 0;
  color: #86909c;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-top
.icon-close:hover {
  color: #ff4d4d;
}
#yn_header_search_btn-box .yn_header_search-plus .yn_header_search-plus-bottom {
  display: flex;
  align-items: center;
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-bottom
.yn_header_search-plus-bottom-list
a {
  height: 32px;
  line-height: 32px;
  display: inline-block;
  padding: 0 16px;
  box-sizing: border-box;
  border-radius: 2px;
  background: var(--Color--, #edf5ff);
  margin-left: 12px;
  color: var(--Text-, #4b5667);
}
#yn_header_search_btn-box
.yn_header_search-plus
.yn_header_search-plus-bottom
.yn_header_search-plus-bottom-list
a:hover {
  color: var(--Text-, #0082ee);
}
.yn_header_search_btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(2px);
  color: #fff;
  background: transparent;
  border-radius: 36px;
}
.yn_header_search_btn .iconfont {
  font-size: 18px;
  margin-right: 8px;
  color: #fff;
}
.yn_header_search_btn:hover {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.yn_header_search_btn:hover .iconfont {
  color: #fff;
}

.yn_search {
  width: 680px;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 40px;
  border: 1px solid #c9cdd4;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.yn_search input::input-placeholder {
  color: #86909c;
}
.yn_search input::-webkit-input-placeholder {
  color: #86909c;
}
.yn_search input:-moz-placeholder {
  color: #86909c;
}
.yn_search input::-moz-placeholder {
  color: #86909c;
}
.yn_search input:-ms-input-placeholder {
  color: #86909c;
}
.yn_search .yn_search_input {
  flex: 1;
  height: 100%;
}
.yn_search .yn_search_input .iconfont {
  font-size: 24px;
  color: #86909c;
  display: inline-block;
  margin: 0 16px 0 24px;
}
.yn_search .yn_search_input input {
  border: 0;
  background: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding: 16px 8px 16px 24px;
}
.yn_search_botton {
  background: #2386ee;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: linear-gradient(135deg, #0082ee 0%, #4c3be1 100%);
  margin-right: 5px;
}
.yn_search_botton:hover {
  background: #0068dd;
}

.yn_keyword {
  margin-top: 20px;
}
.yn_keyword .text {
  color: #ffffff;
  margin-right: 12px;
}
.yn_keyword ul li {
  margin-right: 12px;
  background: rgba(16, 42, 66, 0.59);
  border-radius: 2px;
  color: #ffffff;
}
.yn_keyword ul li:hover {
  background: rgba(16, 42, 66, 1);
}
.yn_keyword ul li:hover a {
  color: #ffffff;
}
.yn_keyword ul li:last-child {
  margin-right: 0;
}
.yn_keyword ul li a {
  display: block;
  padding: 9px 16px;
}

.yn_herder_card {
  margin-top: 48px;
}
.yn_herder_card .popover_item:last-child {
  margin-right: 0;
}
.yn_herder_card .card_item {
  width: 112px;
  height: 112px;
  background: #0068dd;
  opacity: 0.9;
  border-radius: 8px;
  text-align: center;
}
.yn_herder_card .card_item:hover {
  opacity: 1;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
}
.yn_herder_card .card_item:last-child {
  margin-right: 0;
}
.yn_herder_card .card_item img {
  width: 48px;
  height: 48px;
  margin-top: 14px;
  margin-bottom: 4px;
}
.yn_herder_card .card_item .text {
  font-size: 18px;
  text-align: center;
  color: #ffffff;
}

.yn_tip {
  padding: 40px 0;
  background: url("../images/frame194789.jpg") no-repeat center;
  background-size: cover;
}
.yn_tip_box {
  background: linear-gradient(
          180deg,
          rgba(35, 134, 238, 0.8) 0%,
          rgba(35, 134, 238, 0.4) 100%
  );
  opacity: 0.9;
  border-radius: 8px;
  padding: 16px 24px;
  box-sizing: border-box;
}
.yn_tip_box .tip_title {
  margin: 0 43px 0 20px;
  width: 74px;
}
.yn_tip_box .tip_title img {
  width: 64px;
  height: 64px;
}
.yn_tip_box .tip_title .text {
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
}
.yn_tip_box .rollText {
  flex: 1;
  height: 174px;
  background: rgba(0, 104, 221, 0.4);
  border-radius: 4px;
  padding: 12px 32px;
  overflow: hidden;
  color: #ffffff;
  box-sizing: border-box;
}
.yn_tip_box .rollText .textBox.scroll-container {
  overflow-y: hidden;
  height: 150px;
}
.scroll-content {
  position: relative; /* 添加相对定位 */
  animation: scroll 10s linear infinite;
  transition: transform 1s ease-in-out;
  padding-bottom: 40px;
}
@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
.scroll-container:hover .scroll-content {
  animation-play-state: paused; /* 鼠标悬停时暂停动画 */
}
.yn_main_content {
  padding: 40px 0 60px 0;
}
.yn_main_content_1 {
  padding: 32px;
  background: #ffffff;
}
.yn_article {
  margin-right: 20px;
  flex: 1;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  overflow: hidden;
}
.yn_article.self {
  margin-right: 0;
}
.yn_article_1 {
  overflow: hidden;
  margin-right: 32px;
  flex: 1;
  background: #ffffff;
}
.yn_aside {
  width: 396px;
}
.yn_aside_1 {
  width: 456px;
}
/* 默认标题 */
.yn_default_title {
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e6eb;
}
/* 普通tab */
.yn_tab_default {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e6eb;
  margin-bottom: 24px;
}
.yn_tab_default .yn_tab_title {
  display: flex;
  align-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.yn_tab_default .yn_tab_title .tab_title_href {
  padding: 0 0 12px;
}
.yn_tab_default .yn_tab_title .tab_title_href {
  padding: 0 0 12px;
  margin-right: 48px;
}
.yn_tab_default .yn_tab_title .tab_title_href:last-child {
  margin-right: 0;
}
.yn_tab_default .yn_tab_title .tab_title_href:hover {
  color: #2386ee;
}
.yn_tab_default .yn_tab_title .choice {
  color: #2386ee;
  border-bottom: 4px solid #2386ee;
  padding-bottom: 8px;
}
.yn_more_text {
  color: #2386ee;
  text-align: center;
  display: block;
  font-weight: normal;
  font-size: 14px;
}
.yn_more_text:hover {
  color: #0068dd;
}
/* 普通tab end*/

/* 滚动圆形tab */
.yn-tab-buttons {
  width: 100%;
  background: #e8f3ff;
  border-radius: 80px;
  margin-bottom: 24px;
  position: relative;
}
.yn-tab-buttons .yn_tab_circular {
  width: calc(100% - 108px);
  background: none;
  border-radius: 0;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}
.yn-tab-buttons .yn-scroll-btn {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  top: 8px;
}
.yn-tab-buttons .yn-scroll-btn:hover {
  background-color: #f8f9fc;
}
.yn-tab-buttons .yn-scroll-btn.yn-left {
  right: 60px;
  background-image: url(../images/saas/left.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.yn-tab-buttons .yn-scroll-btn.yn-right {
  right: 24px;
  background-image: url(../images/saas/right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}

/* 圆形tab */
.yn_tab_circular {
  background: #e8f3ff;
  border-radius: 80px;
  margin-bottom: 24px;
  width: 100%;
}
.yn_tab_circular .yn_tab_title {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.yn_tab_circular .yn_tab_title .tab_title_href {
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  padding: 0 16px;
  white-space: nowrap;
}
.yn_tab_circular .yn_tab_title .tab_title_href:last-child {
  /* margin-right:0; */
}
.yn_tab_circular .yn_tab_title .tab_title_href:hover {
  color: #2386ee;
}
.yn_tab_circular .yn_tab_title .choice.tab_title_href:hover {
  color: #ffffff;
}
.yn_tab_circular .yn_tab_title .choice {
  background: #2386ee;
  border-radius: 80px;
  color: #ffffff;
  padding: 0 24px;
}
/* 圆形tab end*/

.yn_tab_contentBox {
  margin-bottom: 16px;
}
.yn_project_card_box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.yn_project_card {
  width: 48.5%;
  padding: 24px 32px;
  border: 1px solid #e5e6eb;
  border-radius: 4px;
  background: #ffffff;
  box-sizing: border-box;
  margin-bottom: 24px;
}
.yn_project_card .card_top {
  padding-bottom: 24px;
  border-bottom: 1px solid #f2f3f5;
  margin-bottom: 24px;
}
.yn_project_card .card_top .title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 8px;
  height: 56px;
  overflow: hidden;
}
.yn_project_card .card_top .unit {
  color: #4b5667;
  margin-bottom: 8px;
  height: 22px;
  overflow: hidden;
}
.yn_project_card .card_top .time {
  color: #86909c;
  margin-bottom: 8px;
}
.yn_project_card .card_top .annex {
  color: #86909c;
}
.w-file {
  width: 18px;
  height: 18px;
  background: url("../images/saas/w-file.svg") no-repeat center;
  margin: 0 4px;
}
.y-file {
  width: 18px;
  height: 18px;
  background: url("../images/saas/y-file.svg") no-repeat center;
  margin: 0 4px;
}
.file_icon {
  width: 24px;
  height: 24px;
  background: url("../images/saas/file_icon.svg") no-repeat center;
  margin: 0 4px;
}

/*  */
.yn_notice_download {
  box-sizing: border-box;
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
}
.yn_notice {
  max-height: 450px;
  overflow: hidden;
}
.yn_notice::-webkit-scrollbar {
  width: 6px;
  border-radius: 16px;
}
.yn_notice::-webkit-scrollbar-thumb {
  background-color: #e5e6eb;
  width: 6px;
  border-radius: 16px;
}
.yn_notice .yn_notice_item {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed #e5e6eb;
}
.yn_notice .yn_notice_item:hover {
  color: #2386ee;
}
.yn_notice .yn_notice_item .text {
  width: 240px;
}
.yn_notice .yn_notice_item .time {
  color: #86909c;
  flex-shrink: 0;
}

.yn_small_banner {
  margin-top: 24px;
  background: url("../images/frame194786.jpg") no-repeat center;
  background-size: 100%;
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  padding: 30px 40px;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
}
.yn_small_banner span {
  font-weight: bold;
  font-size: 22px;
  color: #2386ee;
  margin-bottom: 4px;
}

.yn_footer {
  background: #e5e6eb;
  padding: 32px 0;
}
/* 底部样式一 */
.yn_footer_workingHours,
.yn_footer_technology {
  text-align: center;
}
.yn_footer_technology {
  margin-top: 8px;
  color: #86909c;
}
.yn_footer .hover:hover {
  cursor: pointer;
  color: #2386ee;
}
.yn_footer_workingHours span,
.yn_footer_technology span {
  margin-right: 32px;
}
.yn_footer_workingHours span:last-child,
.yn_footer_technology span:last-child {
  margin-right: 0;
}
/* 底部样式二 */
.yn_footer .yn_footer_top {
  padding-bottom: 20px;
  border-bottom: 1px dashed #c9cdd4;
  color: #4b5667;
}
.yn_footer select {
  border: 0;
  color: #4b5667;
  background: transparent;
  margin-right: 64px;
}
.yn_footer select:focus-visible {
  outline: none;
  border: 0;
}
.yn_footer .yn_footer_button {
  color: #4b5667;
  margin-top: 20px;
}
.yn_footer .yn_footer_button .images img {
  margin-left: 20px;
}

/* 气泡提示 */
.tooltip_item {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}
.tooltip_item .tooltip_content {
  background: #4b5667;
  padding: 0 10px;
  height: 32px;
  line-height: 32px;
  border-radius: 2px;
  white-space: nowrap;
  color: #ffffff;
}
.trigger_popup {
  position: absolute;
  top: 100%;
  padding-top: 8px;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s;
  font-size: 14px;
}
.tooltip_item .trigger_arrow {
  width: 0;
  height: 0;
  border-bottom: 5px solid #4b5667;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 3px;
  left: calc(50% - 5px);
}
.tooltip_item .trigger_arrow.leftSpecial_a {
  width: 0;
  height: 0;
  border-bottom: 5px solid #4b5667;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  position: absolute;
  top: 3px;
  left: 15px;
  /* 提示居左特殊处理 */
}
/* 鼠标经过 */
.tooltip_item:hover .trigger_popup {
  opacity: 1;
  transform: scale(1);
}

/* tag标签 */
.tag_label {
  display: inline-block;
  padding: 0 8px;
  height: 24px;
  line-height: 24px;
  border-radius: 2px;
  white-space: nowrap;
  color: #ffffff;
  box-sizing: border-box;
  cursor: default;
}
.tag_label_primary {
  background: rgba(35, 134, 238, 0.1);
  color: #2386ee;
}
.tag_label_success {
  background: rgba(27, 196, 125, 0.1);
  color: #1bc47d;
}
.tag_label_second {
  background: rgba(250, 140, 22, 0.1);
  color: #fa8c16;
}
.tag_label_info {
  background: rgba(75, 86, 103, 0.1);
  color: #4b5667;
}
.tag_label_error {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
}

.file_icon_pdf {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/saas/file_icon_pdf.svg") no-repeat center center;
  background-size: 100%;
}
.file_icon_world {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("../images/saas/file_icon_world.svg") no-repeat center
  center;
  background-size: 100%;
}

/* 气泡卡片 */
.popover_item {
  position: relative;
  cursor: pointer;
  display: flex;
  width: fit-content;
}
.popover_item:hover .popover_popup {
  opacity: 1;
  transform: scale(1);
}
.popover_item .popover_popup {
  position: absolute;
  top: 100%;
  min-width: 240px;
  padding-top: 10px;
  box-sizing: border-box;
  z-index: 1;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s;
  /* left: calc(50% - 400px); */
}
.popover_item .popover_content {
  padding: 16px;
  border: 1px solid #e5e6eb;
  border-radius: 4px;
  box-shadow: 0px 4px 12px rgba(75, 86, 103, 0.15);
  background-color: #fff;
  text-align: left;
}

.popover_item .popover_arrow {
  width: 10px;
  height: 10px;
  position: absolute;
  background: #fff;
  border-right: 1px solid #e5e6eb;
  border-top: 1px solid #e5e6eb;
  border-left: 0;
  top: 5px;
  left: calc(50% - 6px);
  transform: rotate(-45deg);
}
/* 气泡卡片在上 */
.popover_item.top_center .popover_popup {
  top: auto;
  bottom: 100%;
  padding-top: inherit;
  padding-bottom: 10px;
}
.popover_item.top_center .popover_arrow {
  transform: rotate(135deg);
  top: auto;
  bottom: 5px;
}

.yn_stepBar {
  display: flex;
  align-items: center;
  position: relative;
}
.yn_stepBar::before {
  content: " ";
  width: 100%;
  height: 3px;
  position: absolute;
  top: calc(50% - 18px);
  left: 0;
  background-image: url(../images/saas/dashed.svg);
  background-repeat: repeat-x;
}
.yn_stepBar_item {
  min-width: 136px;
  text-align: center;
  position: relative;
}
.yn_stepBar_item:first-child::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
}
.yn_stepBar_item:last-child::before {
  content: " ";
  position: absolute;
  width: 50%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 50%;
}
.yn_stepBar_item:hover .text {
  color: #2386ee;
}
.yn_stepBar_item:hover .origin {
  background: #e8f3ff;
}
.yn_stepBar_item .origin {
  width: 32px;
  height: 32px;
  text-align: center;
  line-height: 32px;
  background: #ffffff;
  border: 1px solid #2386ee;
  border-radius: 32px;
  margin: 0 auto 12px;
  color: #2386ee;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  z-index: 1;
}
.yn_stepBar_item .text {
  color: #4b5667;
  position: relative;
}

/* 格列表页左右布局 */
.yn_businessCard {
  padding: 32px;
  background: url("../images/card.png") no-repeat right;
  background-size: cover;
  margin-bottom: 48px;
}
.yn_businessCard img {
  width: 88px;
  height: 88px;
  border-radius: 80px;
  border: 1px solid #e5e6eb;
  margin-right: 24px;
  box-sizing: border-box;
}
.yn_businessCard .title .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 100%;
}
.yn_businessCard .title .school {
  margin-bottom: 8px;
  color: #4b5667;
}
.yn_businessCard .title .mailbox {
  color: #4b5667;
}
.yn_businessCard .title .mailbox .item {
  margin-right: 24px;
}
.yn_businessCard .title .mailbox .item img {
  width: 32px;
  height: 32px;
  padding: 6px;
  margin-right: 8px;
  background: #e8f3ff;
  border-radius: 50%;
  border: 0;
}

.public_table_box {
  margin-bottom: 48px;
}
.public_table_box .box_title,
.aside_1_contenrBox .title_one {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 24px;
}
.public_table_box .box_subTitle,
.aside_1_contenrBox .box_subTitle {
  color: #4b5667;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
}

.aside_1_contenrBox .contenrBoxList {
  border: 1px solid #e5e6eb;
  padding: 0 24px;
}
.aside_1_contenrBox .contenrBoxList .list_item {
  padding: 24px 0;
  border-bottom: 1px dashed #e5e6eb;
}
.aside_1_contenrBox .contenrBoxList .list_item:last-child {
  border-bottom: 0;
}
.aside_1_contenrBox .contenrBoxList .list_item .list_item_l {
  width: 300px;
}
.aside_1_contenrBox .contenrBoxList .list_item .list_item_l .title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 0;
}
.aside_1_contenrBox .contenrBoxList .list_item .list_item_l .sbuTitle {
  margin-bottom: 8px;
}
.aside_1_contenrBox .contenrBoxList .list_item .list_item_l .time {
  color: #86909c;
}

.yn_full_display {
  position: relative;
  cursor: pointer;
}
.yn_full_display:hover .tip_content {
  display: block;
}
.yn_full_display .tip_content {
  display: none;
  position: absolute;
  top: 16px;
  left: 0;
  background-color: pink;
}

/* 页面小于1440时版心和底部栏的上下左右间隔统一为24px */
@media screen and (max-width: 1440px) {
  .yn_aside {
    width: 384px;
  }
  /* .yn_tab_circular .yn_tab_title .tab_title_href{
  padding:0 8px;
}
.yn_tab_circular .yn_tab_title .choice{
  padding: 0 12px;
} */
  .yn_tab_default .yn_tab_title .tab_title_href {
    margin-right: 32px;
  }
  .yn_herder .yn_operate .yn_operate_li {
    margin-right: 8px;
  }
  .yn_logon_btn.yn_btn{
    margin-left: 8px;
  }
  .logo-left span:nth-child(1){
    font-size: 20px !important;
    white-space: nowrap;
  }
  .logo-left span:nth-child(2){
    font-size: 7px !important;
    white-space: nowrap;
  }
  .logo-right{
    font-size: 20px !important;
  }
  .city_tab_box{
    margin-left: 0;
  }

}
