/* 导航栏样式 */
* {
  padding: 0;
  margin: 0;
}
#aff-im-root div{
  display: none !important;
}

html {
  font-size: 20px;
}

body {
  width: 100%;
  overflow-y: overlay;
  /* overflow-x: hidden; */
}

.layui-fluid {
  padding: 0;
  /* overflow: hidden; */
}

.my-nav {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  box-shadow: 0 2px 5px 0 #ededed;
}

.my-nav > div {
  width: 100%;
  height: 4.5rem;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.nav-right {
  padding-left: 6rem;
  min-width: 40rem;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: start;
  -moz-justify-content: start;
  -webkit-justify-content: start;
  justify-content: start;
}

.nav-box li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 1.6rem;
  font-size: 0.9rem;
  font-family: MicrosoftYaHei;
  color: #000000;
  text-align: left;
  position: relative;
}

.nav-box li a::after {
  content: "";
  display: none;
  width: 1.2rem;
  height: 0.15rem;
  position: absolute;
  bottom: -0.4rem;
  left: 50%;
  margin-left: -0.6rem;
  background-color: #da251c;
}

.nav-box li:hover a::after,
.nav-box li a.active::after {
  display: block;
}

.nav-box li a:hover {
  color: #000000;
}

.nav-box .phone-box {
  font-size: 14px;
}

.nav-box .phone-box > div {
  margin: 5px 0;
}

.appMenu {
  display: none;
}

.layui-nav.layui-nav-tree {
  display: none;
}

/* 下拉菜单样式 */
.dropdown-box {
  width: 100%;
  min-height: 16.1rem;
  background-color: #f0f0f0;
  position: fixed;
  top: 4.5rem;
  left: 0;
  z-index: 900;
  display: none;
}

.dropdown-box > div {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: start;
  -moz-justify-content: start;
  -webkit-justify-content: start;
  justify-content: start;
  margin-left: 11.8rem;
}

.dropdown-box .drop-left {
  max-width: 8.6rem;
  min-height: 16rem;
  /* line-height: 100%; */
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 3.5rem;
  text-align: center;
  position: relative;
  /* vertical-align: center; */
}

/* 分割线 */
.dropdown-box .drop-left::after {
  content: "";
  width: 1px;
  height: 80%;
  border-right: 1px solid #b2b2b2;
  position: absolute;
  right: 0;
  top: 10%;
}

.dropdown-box .drop-left .drop-title {
  font-size: 0.9rem;
  color: #000000;
}

.dropdown-box .drop-left .drop-text {
  font-size: 0.8rem;
  color: #666666;
  margin: 0.7rem 0 0.6rem;
}

.dropdown-box .drop-left .drop-btn {
  width: 6.4rem;
  height: 1.8rem;
  margin: 0 auto;
  line-height: 1.8rem;
  color: #ffffff;
  font-size: 0.9rem;
  background-color: #da251c;
  -webkit-border-radius: 0.9rem;
  -ms-border-radius: 0.9rem;
  -o-border-radius: 0.9rem;
  -moz-border-radius: 0.9rem;
  border-radius: 0.9rem;
}

.dropdown-box .drop-right {
  padding-left: 0.8rem;
  padding-top: 2.5rem;
  width: auto;
  /* ie不兼容felx:1的写法 */
  /* -prefix-Box-flex: 1;
  -webkit-Box-flex: 1;
  -webkit-flex: 1;
  -moz-Box-flex: 1;
  -ms-flex: 1;
  flex: 1; */
}

.dropdown-box .drop-right ul {
  list-style: none;
}

.dropdown-box .drop-right ul li {
  display: inline-block;
  width: 10rem;
  text-align: center;
  margin-bottom: 2rem;
  /* padding-right: 6.8rem; */
  color: #333333;
  font-size: 0.9rem;
  vertical-align: top;
}

.dropdown-box .drop-right ul .text-box {
  text-align: left;
  min-height: 15rem;
  padding: 0 1rem;
  border-right: 1px dashed #b2b2b2;
}

.dropdown-box .drop-right ul .text-box:nth-child(5n + 5) {
  border-right: 0;
}

.dropdown-box .drop-right ul .text-box .text-title {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #b9b9b9;
}

.dropdown-box .drop-right ul li .droptext {
  font-size: 0.7rem;
  margin: 0.6rem 0;
  color: #333333;
  padding-bottom: 10px;
  border-bottom: 1px dashed #dedede;
}

/* 轮播图样式 */
.carousel {
  width: 100%;
  margin-top: 4.5rem !important;
  height: calc(100vw / 4);
}

#test1 {
  margin: 0 auto;
}

.layui-carousel {
  width: 100%;
  height: 100% !important;
  position: relative;
}

/* 箭头 */
.layui-carousel-arrow {
  width: 1.2rem;
  height: 1.8rem;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 400;
}

/* 角标 */
.layui-carousel-ind ul {
  background-color: rgba(0, 0, 0, 0);
}

.layui-carousel-ind li {
  width: 1.6rem;
  height: 3px;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

.layui-carousel-ind li.layui-this {
  background-color: #da251c;
}

.carousel-btn {
  position: absolute;
  bottom: 5rem;
  width: 5rem;
  left: 50%;
  margin-left: -2.5rem;
}

/* 首页公告 */
.tips {
  width: 100%;
  height: 1.8rem;
  font-size: 0.8rem;
  line-height: 1.8rem;
  background-color: #f5f5f5;
}

.tips .content {
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

/* 业务 */
.index-list {
  padding: 2.5rem 0;
  min-height: 15rem;
}

.index-list > div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.index-list a {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.index-list a img {
  display: inline-block;
  width: 40%;
  object-fit: contain;
}

.index-list .index_list_btn {
  margin: 20px 0;
  width: 80%;
  height: 50px;
  border-radius: 5px;
  background-color: #ededed;
  display: flex;
  justify-content: center;
  align-items: center;
}

.list-item {
  width: 25%;
  height: 14.4rem;
  position: relative;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */

  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.list-item img {
  max-width: 100%;
}

.list-item .layui-icon {
  font-size: 4.8rem;
  color: #da251c;
}

/* 分割线 */
/* 前3个元素 */
.list-item::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 3.5rem;
  width: 1px;
  height: 8.8rem;
  z-index: 20;
  border-right: 1px dashed #b2b2b2;
}

.list-item:nth-child(4n + 4):after {
  border: 0;
}

.product .app-product-list {
  display: none;
}

/* 大标题 */
.product .title,
.solution_index .title,
.news .title,
.cooperation .title,
.cerSearch .content .r-content .title {
  text-align: center;
  font-size: 1.5rem;
  color: #000000;
  position: relative;
}

.product .appTitle,
.solution_index .appTitle {
  position: relative;
}

.product .title::after,
.solution_index .title::after,
.news .title::after,
.cooperation .title::after,
.cerSearch .content .r-content .title::after,
.product .appTitle::after,
.solution_index .appTitle::after {
  content: "";
  width: 4.2rem;
  height: 3px;
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  background-color: #da251c;
  margin-left: -2.1rem;
}

/* 产品 */
.product {
  height: 28rem;
  background-color: #ededed;
  padding-top: 2.6rem;
}

/* 标签页 */
.product .tab {
  margin: 1rem 0;
}

.product .tab .content {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: start;
  -moz-justify-content: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: start;
  -moz-align-items: start;
  -webkit-align-items: start;
  align-items: start;
  min-height: 11.8rem;
}

.product .tab .content .labels {
  width: 20%;
}

/* 表头 */
.product .labels-title {
  height: 2rem;
  line-height: 2rem;
  font-size: 0.8rem;
  background-color: #a0a0a0;
  color: white;
  text-align: center;
}

.product .text-title {
  height: 2rem;
  line-height: 2rem;
  font-size: 0.8rem;
  background-color: #da251c;
  color: white;
  text-align: center;
}

/* 左侧li样式 */
.product .tab .content .labels ul {
  list-style: none;
  min-width: 4.5rem;
  height: 13.5rem;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */

  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -moz-align-items: start;
  -webkit-align-items: start;
  align-items: start;
  z-index: 10;
}

.product .tab .content .labels ul li {
  width: 100%;
  height: 2.9rem;
  /* max-width: 100%; */
  line-height: 2.9rem;
  padding-left: 0.5rem;
  margin: 2px 0;
  background-color: #dedede;
}

/* 选中的li样式 */
.active-label {
  background-color: #f8f8f8 !important;
}

/* 右侧内容样式 */
.product .tab .content .texts {
  width: 100%;
  z-index: 0;
}

.product .tab .content .texts .text {
  min-width: 80px;
  min-height: 13.5rem;
  padding: 30px 0;
  /* margin: 4px 0; */
  background-color: #f8f8f8;
}

.product .tab .content .texts .active > div {
  max-width: 100%;
}

.product .tab .content .texts .content-title {
  width: 100%;
  text-align: center;
}

/* 各个标签页内容 */
.product .tab .content .texts .first-tab {
  width: 100%;
  overflow: hidden;
}

.first-tab > div {
  width: 20%;
  float: left;
  text-align: center;
}

.first-tab > div a {
  padding: 2rem;
}

.first-tab > div > div {
  max-width: 100%;
}

.first-tab i {
  font-size: 2.4rem;
  margin: 1rem 0;
}

.first-tab .tab-text {
  margin: 0.5rem auto;
  font-size: 0.8rem;
  text-align: center;
  width: 60%;
}

/* 解决方案 */
.solution_index {
  min-height: 20rem;
  background-color: #ffffff;
  padding-top: 2rem;
}

.solution_index .content {
  margin: 1.5rem 0;
  text-align: center;
}

.solution_index .content .content-title,
.news .content .content-title,
.cooperation .content .content-title {
  color: #000000;
  font-size: 0.9rem;
}

.solution_index .content .content-body {
  padding: 2.2rem 0;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */

  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;

  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.solution_index .content .content-body > div {
  width: 10%;
  /* height: 12.5rem; */
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  background-color: #f8f8f8;
  position: relative;
}

.solution_index .content .content-body .matte {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25%;
  line-height: 25%;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #000000;
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.7);
}

/* 了解更多按钮样式 */
.solution_index .content .content-btn .layui-btn-primary,
.news .content .content-btn .layui-btn-primary {
  width: 15%;
  height: 2.3rem;
  padding: 0 3px;
  border: 1px solid #da251c;
  color: #da251c;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 0 auto;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.solution_index .content .content-btn .layui-btn-primary img,
.news .content .content-btn .layui-btn-primary img {
  margin: 0 0.25rem;
}

/* 新闻 */
.news {
  height: 32.3rem;
  background-color: #f3f3f3;
  padding-top: 2.1rem;
}

.news .content {
  margin: 1.5rem 0;
  text-align: center;
}

.news .content .content-body {
  padding: 1.3rem 0;
}

.news .content .content-body .content-img {
  height: 13.2rem;
  overflow: hidden;
}

.news .content .content-body .content-text {
  text-align: left;
  margin-bottom: 1rem;
}

.news .content .content-body .content-text .text-title {
  margin: 1rem;
  font-size: 0.9rem;
  color: #333333;
  word-break: break-all;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */

  overflow: hidden;
}

.news .content .content-body .content-text .texts {
  padding: 0 1rem;
  font-size: 0.6rem;
  color: #505050;
  word-break: break-all;

  text-overflow: ellipsis;

  display: -webkit-box;

  -webkit-box-orient: vertical;

  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */

  overflow: hidden;
}

/* 合作企业 */

.dowebok,
.dowebok1,
.dowebok2 {
  display: none;
}

.cooperation {
  padding-top: 1.5rem;
  background-color: #f3f3f3;
}

.cooperation .content {
  display: block;
  margin-top: 1.5rem;
  /* padding: 0 10%; */
  padding-bottom: 6.4rem;
  text-align: center;
}

.cooperation .content .content-body {
  margin: 1rem 0;
}

/* 快捷栏 */
.search {
  height: 2.6rem;
  line-height: 2.6rem;
  color: #ffffff;
  background-color: #da251c;
  font-size: 0.9rem;
}

.search {
  text-align: center;
}

.search .content {
  margin: 0 auto;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  flex-wrap: nowrap;
}

.search .layui-btn-primary {
  width: 5.2rem;
  height: 1.3rem;
  line-height: 1.3rem;
  font-size: 0.8rem;
  color: #ffffff;
  border: 1px solid #ffffff;
  -webkit-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  padding: 0 !important;
}

.search i {
  margin: 0 5px;
  font-size: 0.9rem;
}

/* 页脚 */
.footer {
  width: 100vw;
  /* height: 19.3rem; */
  background-color: #1f1f1f;
}

.footer .footer-content {
  color: #ffffff;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: start;
  -moz-justify-content: start;
  -webkit-justify-content: start;
  justify-content: start;
  -webkit-box-align: start;
  -moz-align-items: start;
  -webkit-align-items: start;
  align-items: start;
}

.footer .footer-content .foot-col1 {
  margin-right: calc(85 / 1920 * 100vw);
}

.footer .footer-content .foot-col2 {
  margin-right: calc(110 / 1920 * 100vw);
}

.footer .footer-content .foot-col3 {
  margin-right: calc(68 / 1920 * 100vw);
}

.footer .footer-content .foot-col4 {
  margin-right: calc(115 / 1920 * 100vw);
}

.footer .footer-content .foot-col5 {
  margin-right: calc(62 / 1920 * 100vw);
  position: relative;
}

.footer .footer-content .foot-title {
  min-width: 5rem;
  margin-top: 1.5rem;
  padding: 0.9rem 0 4px 0;
  font-size: 0.8rem;
  font-family: MicrosoftYaHeiLight;
}

.footer .footer-content ul {
  list-style: none;
}

.footer .footer-content ul li {
  margin: 0.7rem 0;
  font-size: 0.6rem;
  flex-wrap: nowrap;
  word-break: break-all;
  min-width: 5rem;
  overflow: hidden;
  color: #ffffff;
}

.footer .footer-bottom {
  margin-top: 1rem;
  text-align: center;
  color: #ffffff;
}

.footer .footer-bottom ul {
  list-style: none;
  width: 100%;
}

.footer .footer-bottom .lines {
  margin: 0 auto;
}

.footer .footer-bottom .lines li {
  display: inline-block;
  margin-right: 20px;
}

.footer .footer-bottom .lines li a {
  color: #dedede;
}

.footer .footer-bottom .lines li a:hover {
  color: #ededed;
}

.footer .footer-bottom .ICP {
  margin: 1rem 0 0.5rem;
}

.footer .footer-bottom .ICP img {
  margin: 0 0.25rem;
}

.footer .footer-bottom .end {
  padding: 0 30%;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */

  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */

  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.appCliServices {
  display: none;
}

/* 客服悬窗 */
.cliServices {
  position: fixed;
  right: 0;
  bottom: 10rem;
}

.cliServices .infomation {
  width: 2.5rem;
  background-color: #ffffff;
  border-radius: 5px;
  text-align: center;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: cenetr;
}

.cliServices .infomation .info {
  width: 100%;
  padding: 0.5rem 0;
  position: relative;
}

/* 鼠标悬浮展示电话号 */
.cliServices .infomation .info .show-phone {
  display: none;
  position: absolute;
  width: 180px;
  height: 20px;
  line-height: 20px;
  border-radius: 5px;
  left: -210px;
  top: 50%;
  margin-top: -10px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ededed;
  box-shadow: 0 8px 12px 0 rgb(0 0 0 / 10%);
  /*opera或ie9*/
}

.cliServices .infomation .info:nth-child(-n + 1):hover .show-phone {
  display: block;
}

/* 鼠标悬浮展示二维码 */
.cliServices .infomation .info .show-code,
.footer .show-code {
  display: none;
  position: absolute;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 5px;
  left: -130px;
  top: 50%;
  margin-top: -50px;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #ededed;
  box-shadow: 0 8px 12px 0 rgb(0 0 0 / 10%);
}

.footer .appPhone {
  display: none;
}

.footer .foot-col5 .show-code {
  top: auto;
  left: 30%;
  bottom: -100%;
}

.cliServices .infomation .info:last-child:hover .show-code {
  display: block;
}

.footer .foot-hover {
  position: relative;
}

.footer .foot-hover:hover .show-code {
  display: block;
  left: 1rem;
  bottom: 0;
  margin-top: 1.5rem;
}

/* 前两个框加分割线 */
.cliServices .infomation .info:nth-child(-n + 2) {
  border-bottom: 1px dashed #b2b2b2;
}

.cliServices .infomation .info:nth-child(-n + 2) > a > div {
  width: 40px;
  margin: 5px auto;
}

.cliServices .infomation .info > div {
  padding: 0 3px;
}

.cliServices .backOld {
  margin-top: 10px;
  padding: 10px 0;
  width: 90%;
  word-wrap: break-word;
  background-color: #fff;
  color: gray;
  text-align: center;
}

.cliServices .backOld span {
  display: inline-block;
  width: 70%;
  margin: 0 auto;
}

.cliServices .toTop {
  margin-top: 0.5rem;
  height: 2.5rem;
  border-radius: 5px;
  text-align: center;
  line-height: 2.5rem;
  background-color: #da251c;
}

#newBridge {
  display: none !important;
}

/* 用户服务页面公共样式 */
/* 顶部图片 */
.header-img {
  max-height: 11.5rem;
  margin-top: 4.5rem;
  text-align: right;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.header-img > div {
  line-height: 11.5rem;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}

.header-img .header-content {
  position: absolute;
  top: 0;
  left: 18rem;
}

.header-img .header-right {
  position: absolute;
  top: 0;
  right: 18rem;
  color: #ffffff;
}

.header-img .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-me {
  min-height: 15rem;
}

/* 右边 */
.cus-content .content-right {
  -webkit-flex: 1;
  /* Chrome */
  -ms-flex: 1;
  /* IE 10 */
  flex: 1;
  /* NEW, Spec - Opera 12.1, Firefox 20+ */
  -webkit-box-flex: 1;
  /* OLD - iOS 6-, Safari 3.1-6 */
  -moz-box-flex: 1;
  /* OLD - Firefox 19- */
  padding: 0 2rem;
  padding-left: 15.8rem;
  /* min-height: 40rem; */
}

/* 帮助中心、下载中心、网站受理点标题样式 */
.cus-content .content-right .help .title,
.cus-content .content-right .download .title,
.cus-content .content-right .dot .title,
.tips1 .content-right .title,
.search-site .content-right .title,
.about-me .intorduction .title,
.about-me .power .title,
.about-me .friend .title {
  position: relative;
  height: 2.9rem;
  line-height: 2.9rem;
  font-size: 1.1rem;
  color: #000000;
  background-color: #ededed;
  padding: 0 1.3rem;
}

.cus-content .content-right .help .title::before,
.cus-content .content-right .download .title::before,
.cus-content .content-right .dot .title::before,
.tips1 .content-right .title::before,
.search-site .content-right .title::before,
.about-me .intorduction .title::before,
.about-me .power .title::before,
.about-me .friend .title::before {
  content: "";
  width: 8px;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.7rem;
  background-color: #da251c;
}

.cus-content .content-right .help ul {
  padding: 1.1rem 0.7rem;
  font-size: 0.9rem;
  color: #000000;
}

.cus-content .content-right .help ul li {
  height: auto;
  line-height: 2.4rem;
  border-bottom: 1px dashed #dedede;
}

.cus-content .content-right .help ul li .li-title {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cus-content .content-right .help ul li .i-border {
  width: 1.1rem;
  height: 1.1rem;
  border: 1px solid #dedede;
  border-radius: 50%;
  padding: 2px;
  text-align: center;
  line-height: 1.1rem;
}

.cus-content .content-right .help ul li .li-text {
  padding: 1.1rem 0;
  font-size: 0.7rem;
  color: #000000;
  line-height: 0.9rem;
}

/* 修改layui折叠面板样式 */
.cus-content .content-right .help .layui-collapse,
.tips1 .content-right .tip-list .layui-collapse {
  border: 0;
  padding: 0;
}

.cus-content .content-right .help .layui-colla-item,
.tips1 .content-right .tip-list .layui-colla-item {
  margin: 0 0.8rem;
  border: 0;
  border-bottom: 1px dashed #dedede;
}

.cus-content .content-right .help .layui-colla-content,
.tips1 .content-right .tip-list .layui-colla-content,
.layui-colla-item {
  border-top: 0;
}

.cus-content .content-right .help .layui-colla-title,
.tips1 .content-right .tip-list .layui-colla-title {
  padding: 0;
  height: 2.4rem;
  line-height: 2.4rem;
  font-size: 0.9rem;
  color: #000000;
  background-color: #ffffff;
}

.cus-content .content-right .help .layui-colla-icon,
.tips1 .content-right .tip-list .layui-colla-icon {
  left: auto;
  right: 0.75rem;
  width: 0.75rem;
  height: 0.75rem;
  text-align: center;
  top: 50%;
  margin-top: -0.375rem;
  line-height: 0.75rem;
  /* padding:2px; */
  border: 1px solid #000000;
  border-radius: 9px;
}

.cus-content .content-right .help .layui-colla-content,
.tips1 .content-right .tip-list .layui-colla-content {
  padding: 1.25rem 0;
}

/* 自助服务平台行业数据悬浮展示简介 */
.classContent {
  position: relative;
}

.classContent .classIntroduction {
  display: none;
  position: absolute;
  top: 10;
  left: 200px;
  font-size: 14px;
  color: #666666;
  background-color: #fff;
  border: 1px solid #000000;
  z-index: 10;
}

.classContent:hover .classIntroduction {
  display: block;
}

/* 修改layui选项卡样式 */
.cus-content .content-right .download .layui-tab-title {
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.cus-content .content-right .download .layui-tab-title li {
  width: 100%;
  background-color: #ededed;
  margin: 0 3px;
}

/* 选中样式 */
.cus-content .content-right .download .layui-tab-title .layui-this {
  background-color: #da251c;
  color: #ffffff;
}

/* 选项卡内容样式 */
/* li样式 */
.cus-content .content-right .download .layui-tab-content {
  padding-top: 2.1rem;
}

.cus-content .content-right .download .layui-tab-content .layui-tab-item ul li {
  width: 100%;
  height: 6rem;
  border-bottom: 1px dashed #dedede;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 主标题 */
.cus-content
  .content-right
  .download
  .layui-tab-content
  .layui-tab-item
  ul
  li
  .li-title
  .main-title {
  font-size: 0.9rem;
  color: #000000;
}

/* 副标题 */
.cus-content
  .content-right
  .download
  .layui-tab-content
  .layui-tab-item
  ul
  li
  .li-title
  .sub-title {
  width: 15rem;
  margin: 1.25rem 0;
  font-size: 0.7rem;
  color: #666666;
  display: -webkit-box;
  /* 老版本语法: Safari, iOS, Android browser, older WebKit browsers. */
  display: -moz-box;
  /* 老版本语法: Firefox (buggy) */
  display: -ms-flexbox;
  /* 混合版本语法: IE 10 */
  display: -webkit-flex;
  /* 新版本语法: Chrome 21+ */
  display: flex;
  /* 新版本语法: Opera 12.1, Firefox 22+ */
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

/* 查看按钮 */
.cus-content
  .content-right
  .download
  .layui-tab-content
  .layui-tab-item
  ul
  li
  .btn
  .layui-btn {
  width: 2.7rem;
  height: 1.3rem;
  line-height: 1.3rem;
  text-align: center;
  padding: 0;
  font-size: 0.7rem;
  border: 1px solid #000000;
  color: #000000;
  background-color: #ffffff;
}

/* 下载按钮 */
.cus-content
  .content-right
  .download
  .layui-tab-content
  .layui-tab-item
  ul
  li
  .btn
  .download-btn {
  width: 3.6rem;
  height: 1.3rem;
  line-height: 1.3rem;
  text-align: center;
  padding: 0;
  border: 1px solid #da251c;
  color: #ffffff;
  background-color: #da251c;
}

/* .dot .layui-form{
      width: 800px;
  } */
.dot .layui-form-label {
  width: 5.5rem;
  padding: 0.45rem 0.75rem;
  text-align: left;
  font-size: 0.8rem;
  color: #000000;
}

.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #da251c !important;
}

.loading {
  width: 100vw;
  height: 100vh;
  background-color: #393d49;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  overflow: hidden;
}

.loading img {
  max-width: 1024px;
  object-fit: contain;
}

.loading .layui-anim-rotate {
  animation-duration: 3s;
}

.loading i {
  font-size: 72px;
  font-weight: 700;
}

.product .appTitle,
.solution_index .appTitle,
.cooperation .appTitle {
  display: none;
}

/* 超小设备（手机及平板，小于 1024px） */
/* Bootstrap 中默认情况下没有媒体查询 */
@media (max-width: 1024px) {
  html {
    font-size: 12px;
  }

  .layui-fluid {
    overflow-x: hidden;
  }

  /* 版心 */
  .my-nav > div,
  .tips > div,
  .index-list > div,
  .product > div,
  .solution_index > div,
  .news > div,
  .cooperation > div,
  .search > div,
  .footer > div,
  .cerSearch > div,
  .cus-content,
  .tips1,
  .search-site,
  .cerhandle > div {
    width: calc(100vw - 30px);
    padding: 0 10px;
    margin: 0 auto !important;
  }

  /* nav */
  .my-nav > div {
    padding: 0;
    margin: 0 10px !important;
  }

  .nav-left {
    width: 50px;
  }

  .nav-right {
    padding-left: 30%;
    min-width: none;
  }

  .nav-box li {
    font-size: 18px;
    padding: 0;
  }

  .nav-box li {
    display: none;
  }

  /* .nav-box li:last-child{
    display: flex;
    justify-content: center;
    align-items: center;
  } */
  .nav-box li:last-child img {
    width: 18px !important;
  }

  .nav-box .phone-box > div {
    margin: 0 10px;
  }

  /* 移动端导航栏 */
  .appMenu {
    display: block;
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 900;
    /* max-height: 100vh;
    overflow-y: scroll; */
  }

  .layui-nav.layui-nav-tree {
    position: fixed;
    top: 4.5rem;
    left: 0;
    z-index: 990;
    width: 100%;
    height: calc(100vh - 130px);
    overflow: hidden;
    overflow-y: scroll;
    /* padding-top: 4.5rem; */
    background-color: rgba(0, 0, 0, 0);
  }

  .layui-nav-item {
    background-color: #fff;
  }

  .layui-nav-item a {
    color: #000 !important;
    border-bottom: 1px solid #dedede;
  }

  .layui-nav-itemed {
    border-bottom: 1px solid #dedede;
  }

  .layui-nav-itemed > .layui-nav-child {
    padding-left: 10px;
    background-color: #fff !important;
  }

  .layui-nav-itemed > .layui-nav-child a {
    border-top: 0;
    border-bottom: 0 !important;
  }

  .child-menu .layui-nav-more {
    right: 25px !important;
  }

  .layui-nav-tree .layui-nav-child dd.layui-this,
  .layui-nav-tree .layui-nav-child dd.layui-this a,
  .layui-nav-tree .layui-this,
  .layui-nav-tree .layui-this > a,
  .layui-nav-tree .layui-this > a:hover {
    background-color: #ececec !important;
    color: #fff;
  }

  .carousel {
    height: 240px;
  }

  .layui-carousel-arrow {
    width: 20px;
    height: 50px;
  }

  .tips .content {
    font-size: 18px;
    padding: 10px 0;
  }

  .tips .content .layui-icon {
    font-size: 18px !important;
  }

  /* 业务列表 */
  .index-list {
    background-color: #f8f8f8;
    padding-top: 10px;
  }

  .index-list > div {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
  }

  .index-list .index_list_btn {
    margin: 5px 0;
    height: 30px;
  }

  .index-list .index_list_text {
    font-size: 12px;
  }

  .list-item {
    width: 49% !important;
    background-color: #fff;
    margin: 0;
    padding: 20px 0;
  }

  .list-item a {
    background-color: #fff;
    padding: 20px 0;
  }

  .list-item:nth-child(odd) {
    margin-right: 1%;
  }

  .list-item:nth-child(even) {
    margin-left: 1%;
  }

  .list-item:nth-child(-n + 2) {
    margin-bottom: 10px;
  }

  .list-item:after {
    border: 0;
  }

  /* 悬浮窗 */
  .cliServices {
    display: none;
  }

  .solution,.cus-content,.business{
    margin-bottom: 80px !important;
  }

  .appCliServices {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
    background-color: #fff;
    border-top: 1px solid #ececec;
    position: fixed;
    left: 0;
    bottom: 0;
    /* height: 5rem; */
  }

  .appCliServices img {
    margin: 5px 0;
  }

  .appCliServices div {
    width: 100%;
    margin-top: 10px 0;
    text-align: center;
  }

  .appCliServices > div:nth-child(2n-2) {
    border-left: 1px dashed #ccc;
    border-right: 1px dashed #ccc;
  }

  .appCliServices .phone,
  .appCliServices .wechat {
    position: relative;
  }

  .appCliServices .phone .phone-dialog,
  .appCliServices .wechat .wechat-dialog {
    display: none;
    position: absolute;
    width: 100vw;
    /* padding: 0 10px; */
    /* background-color: #fff; */
    /* border: 1px solid #dedede; */
  }

  .appCliServices .phone .phone-dialog {
    bottom: 60px;
    left: 0;
    width: 100vw;
    text-align: left;
    white-space: nowrap;
  }

  .appCliServices .phone .phone-dialog > a {
    display: block;
    margin: 5px auto;
    width: 90vw;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    color: #409eff;
    background-color: #fff;
    box-shadow: 0 8px 12px 0 rgb(0 0 0 / 10%);
  }

  .appCliServices .wechat i {
    font-size: 28px;
    margin: 5px 0;
  }

  .product .title,
  .solution_index .title,
  .news .title,
  .cooperation .title,
  .cerSearch .content .r-content .title {
    font-size: 24px;
  }

  .product .title,
  .solution_index .title {
    display: none;
  }

  .product .appTitle,
  .solution_index .appTitle,
  .cooperation .appTitle {
    display: block;
    font-size: 24px;
    text-align: center;
  }

  .solution_index .content .content-title,
  .news .content .content-title,
  .cooperation .content .content-title {
    font-size: 18px;
  }

  /* 产品 */
  .product {
    height: auto;
    padding-bottom: 20px;
  }

  .product .tab {
    display: none;
  }

  .product .app-product-list {
    display: block;
  }

  .product .app-product-list .layui-collapse {
    /* background-color: #fff; */
    margin: 20px 0;
  }

  .product .app-product-list .layui-collapse .layui-colla-item:first-child {
    border-top: 2px solid #da251c !important;
  }

  .product .app-product-list .layui-collapse .layui-colla-item {
    margin-bottom: 2px;
  }

  .product
    .app-product-list
    .layui-collapse
    .layui-colla-item
    .layui-colla-title {
    padding: 0 15px;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
  }

  .product
    .app-product-list
    .layui-collapse
    .layui-colla-item
    .layui-colla-icon {
    left: auto;
    right: 15px;
  }

  .product
    .app-product-list
    .layui-collapse
    .layui-colla-item
    .layui-colla-content {
    background-color: #fff;
  }

  .product
    .app-product-list
    .layui-collapse
    .layui-colla-item
    .layui-colla-content
    .product-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .product
    .app-product-list
    .layui-collapse
    .layui-colla-item
    .layui-colla-content
    .product-list
    > div {
    width: 33%;
    text-align: center;
    margin: 5px 0;
  }

  .solution_index .content .content-body {
    flex-wrap: wrap;
  }

  .solution_index .content .content-body > div {
    width: 24% !important;
    margin: 5px 0;
  }

  .solution_index .content .content-body .matte {
    font-size: 16px;
  }

  .cooperation .content .content-body {
    display: none;
  }

  .cooperation .content {
    overflow: hidden;
    padding-bottom: 20px;
  }

  .dowebok,
  .dowebok1,
  .dowebok2 {
    display: block;
    min-height: 80px;
  }

  .dowebok img,
  .dowebok1 img,
  .dowebok2 img {
    width: 50vw;
    object-fit: contain;
    margin: 0 20px 10px 0 !important;
  }

  .dowebok img {
    margin-top: 10px !important;
  }

  .dowebok2 img {
    margin-bottom: 0;
  }

  .search {
    height: auto;
  }

  .search .content {
    flex-wrap: wrap;
  }

  .search .layui-btn-primary {
    font-size: 14px;
    height: auto;
  }

  .search .content > div {
    font-size: 16px;
    height: auto;
    width: 30%;
    text-align: left;
  }

  .search .layui-btn-primary {
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0 !important;
    margin: 5px 0;
  }

  .layui-btn {
    padding: 0;
  }

  .footer {
    padding-bottom: 70px;
  }

  .footer .appPhone {
    display: block;
    padding: 0;
    padding-top: 10px;
    width: 100%;
    font-size: 18px;
    text-align: center;
    color: #fff;
  }

  .footer .appPhone > div {
    margin: 0 30px 10px;
    padding: 10px;
    border: 1px dashed #ccc;
    border-radius: 10px;
  }

  .footer .footer-content > div {
    display: flex;
  }

  .footer .footer-bottom .lines {
    text-align: center;
    /* display: flex;
    justify-content: start;
    flex-wrap: wrap; */
  }

  .footer .footer-bottom .lines li {
    display: inline;
    margin: 5px;
    color: #fff;
    font-size: 12px;
  }

  .footer .footer-bottom .lines li:not(:first-child) {
    color: #dedede;
  }

  .footer .footer-bottom .end {
    padding: 0;
  }

  .footer .footer-content .foot-title {
    font-size: 16px;
    margin: 0;
  }

  .footer .foot-col1,
  .footer .foot-col2,
  .footer .foot-col3,
  .footer .foot-col4,
  .footer .foot-col6 {
    display: none !important;
  }

  .footer .foot-col5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer .foot-col5 {
    width: 100%;
  }

  .footer .foot-col5 ul {
    display: flex;
    justify-content: center;
    /* flex-wrap: wrap; */
    width: 100%;
    margin: 0;
  }

  .footer .foot-col5 ul > img {
    width: 40px !important;
    display: inline-block;
    margin: 10px 20px !important;
  }

  .footer .foot-col5 .show-code {
    /* padding: 0; */
    display: none;
    left: 50%;
    bottom: -130%;
  }

  .foot-col5 ul .show-code img {
    width: 100% !important;
    object-fit: contain;
  }

  /* .footer .footer-bottom .lines{ */
  /* display: flex; */
  /* justify-content: left;
    align-items: center;
    flex-direction: column; */
  /* flex-wrap: wrap; */
  /* text-align: left; */
  /* } */
  /* .footer .footer-bottom .lines li:not(:first-child){
    font-size: 14px;
  } */
  .footer .footer-l {
    width: 100%;
    padding: 0 5px;
  }

  .footer .footer-bottom {
    font-size: 16px;
  }

  /* .footer .footer-bottom>div:first-child */
  .footer .footer-bottom > div:not(:first-child) {
    font-size: 12px;
  }

  /* 根证书页样式 */
  .cerSearch {
    padding: 80px 10px;
    height: auto !important;
    margin-bottom: 0 !important;
  }

  .cerSearch .header-right {
    padding-right: 1rem !important;
  }

  .cerSearch .content .r-content .layui-row img {
    width: 3.4rem !important;
    object-fit: contain;
  }

  .cerSearch .content .r-content .form {
    padding: 0 !important;
  }

  /* 收费标准 */
  .header-img .header-content {
    left: 20px !important;
  }

  .header-img .bg img {
    width: auto !important;
    height: 100% !important;
  }

  .header-img .header-content .title {
    font-size: 20px !important;
    font-weight: 700;
  }

  .business .business-content {
    padding: 20px 0 !important;
  }

  .business .business-content img {
    width: 100% !important;
  }

  .business .business-content .content > div {
    text-align: left;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    word-break: break-all;
  }
}

/* 小型设备（平板电脑，768px 起） */
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

  /* 版心 */
  .my-nav > div,
  .tips > div,
  .index-list > div,
  .product > div,
  .solution_index > div,
  .solution > div,
  .news > div,
  .cooperation > div,
  .search > div,
  .footer > div,
  .cerSearch > div,
  .cus-content,
  .tips1,
  .search-site,
  .cerhandle > div {
    width: calc(100vw - 30px);
    margin: 0 auto !important;
  }

  .my-nav > div {
    padding: 0;
    margin: 0 10vw !important;
  }

  .index-list .index_list_btn {
    margin: 10px 0;
    height: 50px;
    font-size: 20px;
  }

  .index-list .index_list_text {
    font-size: 18px;
  }

  .product .tab {
    margin-top: 2rem !important;
  }

  /* 根证书页样式 */
  .cerSearch {
    padding: 140px 10px;
  }
}

@media (max-width: 1200px) {
  .cerSearch .content .r-content {
    padding-top: 0;
  }
}

/* 中型设备（台式电脑，992px 起） */
@media (min-width: 992px) {
  html {
    font-size: 18px;
  }

  /* 版心 */
  .my-nav > div,
  .tips > div,
  .index-list > div,
  .product > div,
  .solution_index > div,
  .solution > div,
  .news > div,
  .cooperation > div,
  .search > div,
  .footer > div,
  .cerSearch > div,
  .cus-content,
  .tips1,
  .search-site,
  .cerhandle > div {
    width: calc(100vw - 30px);
    margin: 0 auto !important;
  }

  .my-nav > div {
    padding: 0;
    margin: 0 10vw !important;
  }

  .cerSearch .content .r-content {
    padding-top: 2rem;
  }
}

/* 大型设备（大台式电脑，1200px 起） */
@media (min-width: 1200px) {
  html {
    font-size: 20px;
  }

  /* 版心 */
  .my-nav > div,
  .tips > div,
  .index-list > div,
  .product > div,
  .solution_index > div,
  .news > div,
  .cooperation > div,
  .search > div,
  .footer > div,
  .cerSearch > div,
  .cus-content,
  .tips1,
  .search-site,
  .cerhandle > div,
  .about-me > div {
    width: 1448px;
    margin: 0 auto !important;
  }

  .my-nav > div {
    padding: 0;
    margin: 0 10vw !important;
  }

  .solution > div {
    width: 1200px;
  }

  /* .solution>div,
     .about-me>div{
        width: 60rem;
        margin: 0 auto !important;
        min-height:25rem;
        padding: 1rem 0;
     } */
  /* 根证书页样式 */
  /* .cerSearch{
        padding: 140px 10%;
       } */
}
