* {
  padding: 0px;
  margin: 0px;
}
body {
  font-size: 14px;
}
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: black;
}
a:hover {
  text-decoration: none;
}
#app {
    padding-bottom: 60px;
}
.clear {
  clear: both;
}
.box_sizing {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.break1 {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  /** 对象作为伸缩盒子模型显示 **/
  -webkit-box-orient: vertical;
  /** 设置或检索伸缩盒对象的子元素的排列方式 **/
  -webkit-line-clamp: 1;
  /** 显示的行数 **/
  overflow: hidden;
  /** 隐藏超出的内容 **/
}
.break2 {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  /** 对象作为伸缩盒子模型显示 **/
  -webkit-box-orient: vertical;
  /** 设置或检索伸缩盒对象的子元素的排列方式 **/
  -webkit-line-clamp: 2;
  /** 显示的行数 **/
  overflow: hidden;
  /** 隐藏超出的内容 **/
}
.flex_row,
.flex {
  display: flex;
  flex-direction: row;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
}
/*项目竖向排列*/
.flex_col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
}
/*flex-shrink  所有项目的flex-shrink: 1; 只有一个为0  则空间不足时，为0不缩小*/
/*项目可换行 默认不换行*/
.flex_grow {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}
/*水平和垂直居中*/
.flex_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
}
/*水平居中*/
.flex_x_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*右对齐*/
.flex_x_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: flex-end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: center;
  justify-content: flex-end;
}
/*两端对齐*/
.flex_x_between,
.flex_between {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
}
/*两侧间距相等对齐*/
.flex_x_around {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-around;
  -webkit-justify-content: space-around;
  -ms-flex-pack: space-around;
  justify-content: space-around;
}
/*Y轴居中*/
.flex_y_center {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
/*底部对齐*/
.flex_y_bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
.item_end {
  align-self: flex-end;
  /*单个项目底部*/
}
.flex_grow_0 {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.flex_grow_1 {
  min-width: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
[v-block] {
  display: none;
}
.rmobile_active {
  background:  rgba(248,248,248,0.9800); 
}
.rmobile_active .line {
  background: #666 !important;
}
.rmobile-header {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 0.88rem;
  width: 100%;
  padding: 0px 0.4rem;
  box-sizing: border-box;
  z-index: 999;
}
.rmobile-header .rlogo img {
  width: 2.93rem;
  height: 0.36rem;
}
.rmobile-header #menus {
  width: 0.35rem;
  height: 0.26rem;
  position: relative;
}
.rmobile-header #menus .line {
  position: absolute;
  display: block;
  background: #fff;
  width: 100%;
  height: 2px;
  left: 0;
  border-radius: 2px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}
.rmobile-header #menus .line.line-2 {
  top: 50%;
}
.rmobile-header #menus .line.line-3 {
  top: 100%;
}
.rmobile-header #menus.active .line-1 {
  top: -0.2rem;
  -webkit-transform: translateY(0.24rem) rotate(45deg);
  transform: translateY(0.24rem) rotate(45deg);
}
.rmobile-header #menus.active .line-2 {
  width: 0;
  opacity: 0;
}
.rmobile-header #menus.active .line-3 {
  top: 0.29rem;
  -webkit-transform: translateY(-0.24rem) rotate(-45deg);
  transform: translateY(-0.24rem) rotate(-45deg);
}
.mobile-banner-box {
  height: 10.8rem;
  width: 100%;
  background: url('../img/bj.jpg') no-repeat center;
  background-size: 100% 100%;
  position: relative;
  padding-top: 0.88rem;
  box-sizing: border-box;
}
.mobile-banner-box .banner1 {
  position: relative;
  z-index: 2;
  margin: 0px auto;
  width: 6.7rem;
  background: rgba(96, 191, 251, 0.8);
  color: #FFFFFF;
  padding: 0.4rem 0px;
  box-shadow: 0px 2px 2px 2px rgba(74, 173, 255, 0.3);
  box-sizing: border-box;
  padding-bottom: 0.4rem;
}
.mobile-banner-box .banner1 h1 {
  font-family: Alibaba PuHuiTi-Bold;
  line-height: 0.66rem;
  text-shadow: 1px 1px 1px #4987fb;
  text-align: center;
  font-size: 0.56rem;
}
.mobile-banner-box .banner1 ul {
  margin-left: 1rem;
  margin-top: 0.4rem;
}
.mobile-banner-box .banner1 ul li {
  margin-bottom: 0.2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
 
  color: #FFFFFF;
  font-size: 0.28rem;
  font-family: Alibaba PuHuiTi-Regular;
}
.mobile-banner-box .banner1 ul li span {
  width: 0.16rem;
  height: 0.16rem;
  background: #FFFFFF;
  box-shadow: 1px 1px 1px #4987fb;
  margin-right: 0.2rem;
  border-radius: 50%;
}
.mobile-banner-box .banner1 .creat {
  width: 5.52rem;
  margin: 0px auto;
  display: block;
  margin-top: 0.2rem;
}
.mobile-banner-box .banner1 .creat img {
  width: 100%;
}
.mobile-banner-box .banner2 {
  position: absolute;
  left: 0px;
  bottom: -8px;
  width: 100%;
  height: auto;
  z-index: 1;
}
.mobile-banner-box .banner2 img {
  width: 100%;
}
.mobile-banner-box .r1-advantage {
  position: absolute;
  bottom: -1.6rem;
  left: 0.4rem;
  width: 6.7rem;
  height: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -webkit-justify-content: space-between;
  -ms-flex-pack: space-between;
  justify-content: space-between;
  z-index: 2;
}
.mobile-banner-box .r1-advantage .r1-aditem {
  width: 2rem;
  height: 2rem;
  background: #FFFFFF;
  box-shadow: 0rem 0.2rem 0.2rem 0rem rgba(38, 145, 255, 0.2);
  border-radius: 0.32rem 0.32rem 0.32rem 0.32rem;
  text-align: center;
  color: #333333;
  font-size: 0.28rem;
  line-height: 0.48rem;
  font-weight: bold;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
}
.mobile-banner-box .r1-advantage .r1-aditem .imgbox {
  width: 1.2rem;
  height: 1rem;
  overflow: hidden;
}
.mobile-banner-box .r1-advantage .r1-aditem .imgbox img {
  width: 100%;
}
.r1-container {
  padding: 0.4rem;
  box-sizing: border-box;
}
.r1-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.r1-title h1 {
  color: #333333;
  font-weight: bold;
  font-size: 0.36rem;
  position: relative;
  padding-bottom: 0.2rem;
}
.r1-title h1::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0.05rem;
  width: 0.12rem;
  height: 0.12rem;
  border-radius: 50%;
  background: #2691ff;
  z-index: -1;
}
.r1-title p {
  color: #999999;
  font-size: 0.28rem;
  text-align: center;
}
.r1-section1 {
  margin-top: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
}
.r1-section1 .r1-circlebox {
  width: 100%;
  width: 6.7rem;
  height: 4.68rem;
  position: relative;
  margin: 0px auto;
  margin-top: 0.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
  text-align: center;
}
.r1-section1 .r1-circlebox h1 {
  font-weight: bold;
  color: #FFFFFF;
  font-size: 0.4rem;
}
.r1-section1 .r1-circlebox p {
  color: #FFFFFF;
  font-size: 0.28rem;
}
.r1-section1 .r1-circle {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
  width: 3.16rem;
  height: 3.16rem;
  background: #4987FB;
  border-radius: 50%;
}
.r1-section1 .circle1 {
  width: 2.5rem;
  height: 2.5rem;
  background: #4987fb;
  opacity: 0.2;
  position: absolute;
  left: -0.42rem;
  top: 0.42rem;
  border-radius: 50%;
  z-index: -1;
}
.r1-section1 .circle2 {
  width: 2.5rem;
  height: 2.5rem;
  background: #4987fb;
  opacity: 0.2;
  position: absolute;
  right: -0.42rem;
  top: 0.42rem;
  border-radius: 50%;
  z-index: -1;
}
.Strength-list .Strength-item {
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
}
.Strength-list .icon {
  width: 0.8rem;
  height: 0.8rem;
}
.Strength-list .span-title {
  line-height: 0.56rem;
  font-size: 0.28rem;
  color: #4987FB;
  font-weight: bold;
}
.Strength-list .Strength-item:nth-child(1) {
  position: absolute;
  top: 0px;
  left: 0.8rem;
}
.Strength-list .Strength-item:nth-child(2) {
  position: absolute;
  top: 1.6rem;
  left: 0px;
}
.Strength-list .Strength-item:nth-child(3) {
  position: absolute;
  bottom: 0rem;
  left: 0.4rem;
}
.Strength-list .Strength-item:nth-child(4) {
  position: absolute;
  top: 0px;
  right: 0.8rem;
}
.Strength-list .Strength-item:nth-child(5) {
  position: absolute;
  top: 1.6rem;
  right: 0px;
}
.Strength-list .Strength-item:nth-child(6) {
  position: absolute;
  bottom: 0rem;
  right: 0.4rem;
}
.r1case-nav {
  padding-left: 0.4rem;
  white-space: nowrap;
  overflow-x: scroll;
}
.r1case-nav li {
  padding: 0.16rem 0;
  margin-right: 1.7rem;
  font-size: 0.32rem;
  display: inline-block;
}
.r1case-nav .active {
  border-bottom: 2px solid #4987FB;
  color: #4987FB;
}
.r1-caselist {
  white-space: nowrap;
  overflow-x: scroll;
  padding: 0.4rem 0px;
  box-sizing: border-box;
}
.r1-caselist .r1-caseitem {
  display: inline-block;
  width: 2.4rem;
  height: 5.2rem;
  margin-right: 0.2rem;
  box-shadow: 0.2rem 0.2rem 0.2rem 0rem rgba(235, 235, 235, 0.5);
  border: 0.1rem solid #fff;
  border-radius: 0.1rem;
  overflow: hidden;
}
.r1-caselist .r1-caseitem img {
  width: 100%;
  height: 100%;
}
.peoplepage {
  margin-top: 0.4rem;
}
.peoplepage .people-list {
  margin: 0.4rem 0px;
  width: 100%;
}
.peoplepage .people-list .people-item {
  background: #FFFFFF;
  box-shadow: 0rem 0rem 0.4rem 0rem rgba(0, 0, 0, 0.1);
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  margin-bottom: 0.4rem;
  display: flex;
  flex-direction: row;
  display: -webkit-box;
  display: -webkit-flex;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  padding: 0.4rem;
  box-sizing: border-box;
}
.peoplepage .people-list .people-item .people-img {
  min-width: 0;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-right: 0.4rem;
}
.peoplepage .people-list .people-item h3 {
  font-size: 0.32rem;
  color: #333;
  margin-bottom: 0.2rem;
}
.peoplepage .people-list .people-item p {
  font-size: 0.28rem;
  color: #666666;
}
.servelist {
  background: #FFFAF2;
  box-shadow: 0px 0px 0.4rem 0px rgba(253, 193, 85, 0.4);
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  opacity: 1;
  border: 0.2rem solid #FFFFFF;
  width: 100%;
  padding: 0.2rem;
  box-sizing: border-box;
}
.servelist .serve-item {
  width: 100%;
  padding: 0.2rem 0px;
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 0.4rem;
}
.servelist .serve-item img {
  width: 1.4rem;
  margin-bottom: 0.2rem;
}
.servelist .serve-item h3 {
  font-weight: bold;
  color: #333333;
  line-height: 0.56rem;
  font-size: 0.32rem;
}
.servelist .serve-item p {
  color: #666666;
  font-size: 0.28rem;
  margin-top: 0.2rem;
}
.servelist .serve-item:nth-child(3) {
  height: 2.8rem;
  background: #FFF5E5;
  border-radius: 0.16rem 0.16rem 0.16rem 0.16rem;
  padding-left: 0.4rem;
  box-sizing: border-box;
  margin: 0.2rem 0px;
}
.servelist .serve-item:nth-child(3) ul {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  padding-left: 0.4rem;
}
.servelist .serve-item:nth-child(3) ul li {
  color: #333333;
  margin: 8px auto;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}
.servelist .serve-item:nth-child(3) ul li::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #FDC155;
  opacity: 1;
  position: absolute;
  left: -0.32rem;
  top: 35%;
  transform: translate(-50%, 0);
  border-radius: 50%;
}
.platform {
  width: 100%;
  height: 2.8rem;
  background: url('../img/platform-bj.png') no-repeat center center;
  background-size: cover;
  padding-top: 0.6rem;
  box-sizing: border-box;
  text-align: center;
}
.platform h1 {
  color: #FFFFFF;
  font-size: 0.28rem;
  line-height: 0.4rem;
}
.platform .establish {
  display: block;
  width: 5.2rem;
  margin: 0px auto;
  margin-top: 0.4rem;
}
.platform .establish img {
  width: 100%;
}
.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.r1foot {
  padding: 20px;
  /*border-bottom: 1px solid #999;*/
  background-color: #F5F8FE;
}
.r1foot .r1foot-code {
    width: 120px;
}
.r1foot h1 {
  color: #000000;
  font-size: 20px;
  margin: 10px auto;
  letter-spacing: 1.5px;
}
.r1foot .ds {
  color: #666666;
 
  font-size: 14px;
  margin: 10px auto;
}
.r1foot .imglist {
 
  margin: 0.2rem auto;
  width: 2.4rem;
  
}
.r1foot .imglist img {
  width:100px;
  height:100px;
  
 
 
  background: #FFFFFF;
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1000);
float: right;
}
.r1foot .btn {
  height: 0.8rem;
  background: #4987FB;
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
  display: block;
  /*margin-bottom: 0.2rem;*/
  width: 100%;
  text-align: center;
  line-height: 0.8rem;
  /*font-weight: bold;*/
  font-size: 0.32rem;
  color: #fff;
}
.r1foot .mtb {
    margin-top: 20px;
    margin-bottom: 10px;
}
.leading {
  margin-top: 0.2rem;
  height: 1.04rem;
  font-size: 0.24rem;
  color: #999;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
  margin-bottom: 60px;
}
.hide {
  display: none;
}
.block {
  display: block;
}
.menu_list {
background: rgba(248,248,248,0.9800);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  z-index: 88;
  padding: 0px 0.4rem;
  box-sizing: border-box;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.menu_list li {
  height: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  line-height: 1.2rem ;
}
.menu_list li a {
  height: 100%;
  color: #333333;
  font-size: 0.28rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.menu_list li a img {
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.22rem;
}
.menu_list .iconyidongduan_caidan_tubiao_youjiantou {
  color: #999999;
  font-size: 0.28rem;
}
.menu_list .add_btn {
  position: absolute;
  left: 0;
  bottom: 0.4rem;
  width: 100%;
  /* padding-right: 60px; */
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -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;
  -ms-grid-row-align: center;
  align-items: center;
}
.menu_list .add_btn .cjbtn {
  width: 6.7rem;
  height: 0.8rem;
  background: #4987FB;
  box-shadow: 0rem 0.08rem 0rem 0rem #1D5CD1;
  border-radius: 0.8rem 0.8rem 0.8rem 0.8rem;
  opacity: 1;
  color: #ffffff;
  font-size: 0.28rem;
  text-align: center;
  line-height: 0.8rem;
}
.menu_list .add_btn .cjbtn .iconWEB_shouye_tedian_mianfeichuangjian {
  font-size: 17px;
  margin-right: 9px;
}

.dibuneir{
   padding: 10px 0;
    /* margin-top: 10px; */
    width: 100%;
    /*height: 40px;*/
    /* line-height: 60px; */
    position: fixed;
    bottom: 0;
    background: rgba(248,248,248,0.82);
    display: flex;
    text-align: center;
    z-index: 9;
}
.kefuwx{
    display: flex;
    width: 120px;
height: 40px;
background: #1AD46B;
box-shadow: 0px 4px 0px 0px #07A44B;
border-radius: 80px 80px 80px 80px;
font-size: 14px;
font-family: Noto Sans SC-Regular, Noto Sans SC;
font-weight: 400;
color: #FFFFFF;
line-height: 40px;
margin: 0 10px;
}
.kefuwx img{
    width:20px;
    height: 20px;
    margin-top: 10px;
    padding: 0 4px 0 20px;
}
.mianfeich{
    width: 225px;
    text-align: center;
    height: 40px;
background: #4987FB;
box-shadow: 0px 4px 0px 0px #1D5CD1;
border-radius: 40px 40px 40px 40px;
font-size: 14px;
font-family: Noto Sans SC-Regular, Noto Sans SC;
font-weight: 400;
color: #FFFFFF;
line-height: 40px;
margin: 0 10px 0 0;
}
.kefuwxtc{
    width: 335px;
height: 344px;
background: #FFFFFF;
position: fixed;
top: calc(50% - 172px);
left: calc(50% - 167.5px);
z-index: 99999;


border-radius:12px;
}
.erweimadax{
   text-align: center;
    width: 180px;
    height: 180px;
    background: #FFFFFF;
    margin:20px auto 10px auto;
  
    
}
.erweimadax img{
   margin: 10px auto;
    width: 160px;
    height: 160px;
}
.kebtxx{
    height: 40px;
background: #FFFFFF;
box-shadow: inset 0px -1px 0px 0px #E5E5E5;
border-radius: 12px 12px 0px 0px;
font-size: 16px;
font-family: Noto Sans SC-Medium, Noto Sans SC;
font-weight: 500;
color: #333333;
line-height: 40px;
text-align: center;
}
.baocunerms{
    height: 20px;
font-size: 14px;
font-family: Noto Sans SC-Regular, Noto Sans SC;
font-weight: 400;
color: #333333;
line-height: 20px;
margin: 10px auto;
text-align: center;
}
.neohaom{
    display: block;
    width: 295px;
height: 44px;
background: #4987FB;
border-radius: 40px 40px 40px 40px;
margin: 0 auto;
text-align: center;
line-height: 44px;;

font-size: 16px;
font-family: Noto Sans SC-Regular, Noto Sans SC;
font-weight: 400;
color: #FFFFFF;

}
.guanbi{
    position: absolute;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
}
.zhezhao{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.guanzhuxd{
    width: 200px;
    float: left;
}
.guanzhuxd img{
    width: 136px;
    height: 18px;
}
