/*base*/
html {
  font-size: 100px;
  /* radius */
  /* 清楚浮动 */
  /* flex布局 */
  /* 水平轴 */
  /* 垂直轴 */
  /* 换行 */
  /* 对齐模式 */
  /* 轴线对齐 */
  /* 多轴对齐 */
  /* item属性 */
  /* order  项目的排列顺序 默认为0*/
  /* flex-grow   项目的放大比例  默认为0  项目不放大*/
  /* flex-shrink   项目的缩小比例  默认为1  项目缩小 */
  /* flex-basis (px)  项目占据的主轴空间  默认值为auto  即项目的本来大小 */
  /* flex   flex-grow, flex-shrink 和 flex-basis的简写   默认值为0 1 auto */
  /* flex: none | auto;  优先使用*/
  /* align-self 属性允许单个项目有与其他项目不一样的对齐方式，可覆盖align-items属性。默认值为auto */
  /* align-self: auto | flex-start | flex-end | center | baseline | stretch; */
  /* position */
  /* display */
  /* textarea */
  /* input */
  /* checkbox */
  /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  /* ::-webkit-scrollbar
      {
          width: 8px;
          background-color: #F5F5F5;
      } */
  /*定义滚动条轨道 内阴影+圆角*/
  /* ::-webkit-scrollbar-track
      { */
  /* -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
          border-radius: 10px;
          background-color: #F5F5F5; */
  /* } */
  /* 定义滑块 内阴影+圆角 */
  /* ::-webkit-scrollbar-thumb
      { */
  /* border-radius: 10px;
          -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
  /* background:rgba(213,213,213,1);
      } */
}
html body {
  font-size: 12px;
  width: 100%;
}
html * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html ul,
html li {
  list-style-type: none;
}
html a,
html a:hover,
html a:active {
  text-decoration: none;
}
html .bf {
  background: #fff;
}
html .ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
html .overflows {
  overflow: hidden;
}
html .pointers {
  cursor: pointer;
}
html .widths {
  width: 100%;
}
html .heights {
  height: 100%;
}
html .autos {
  margin: 0 auto;
}
html .radius {
  border-radius: 50%;
}
html .radius2 {
  border-radius: 2px;
}
html .radius4 {
  border-radius: 4px;
}
html .radius6 {
  border-radius: 6px;
}
html .radius8 {
  border-radius: 8px;
}
html .clear::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: both;
  display: block;
}
html .clearLeft::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: left;
  display: block;
}
html .clearRight::after {
  content: '';
  height: 0;
  visibility: hidden;
  clear: right;
  display: block;
}
html .flex {
  display: -webkit-flex !important;
  display: flex !important;
}
html .inlineFlex {
  display: -webkit-inline-flex !important;
  display: inline-flex !important;
}
html .flexRow {
  -webkit-flex-direction: row;
  flex-direction: row;
}
html .flexRow-reverse {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
html .flexColumn {
  -webkit-flex-direction: column;
  flex-direction: column;
}
html .flexColumn-reverse {
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
html .flexWrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
html .flexNowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
html .flexWrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
html .justifyStart {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
html .justifyEnd {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
html .justifyCenter {
  -webkit-justify-content: center;
  justify-content: center;
}
html .justifyBetween {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
html .justifyAround {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
html .itemsStart {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
html .itemsEnd {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
html .itemsCenter {
  -webkit-align-items: center;
  align-items: center;
}
html .itemsBaseline {
  -webkit-align-items: baseline;
  align-items: baseline;
}
html .itemsStretch {
  -webkit-align-items: stretch;
  align-items: stretch;
}
html .contentStart {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}
html .contentEnd {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}
html .contentCenter {
  -webkit-align-content: center;
  align-content: center;
}
html .contentBaseline {
  -webkit-align-content: baseline;
  align-content: baseline;
}
html .contentStretch {
  -webkit-align-content: stretch;
  align-content: stretch;
}
html .flexShrink {
  /* flex:1,1,auto; */
  flex-shrink: 1;
  flex-grow: 1;
  flex-basis: auto;
}
html .flexGrow {
  /* flex:0,0,auto; */
  flex-shrink: 0;
  flex-grow: 0;
  flex-basis: auto;
}
html .selfAuto {
  -webkit-align-self: auto;
  align-self: auto;
}
html .selfStart {
  -webkit-align-self: start;
  align-self: start;
}
html .selfEnd {
  -webkit-align-self: end;
  align-self: end;
}
html .selfCenter {
  -webkit-align-self: center;
  align-self: center;
}
html .selfBaseline {
  -webkit-align-self: baseline;
  align-self: baseline;
}
html .selfStretch {
  -webkit-align-self: stretch;
  align-self: stretch;
}
html .relative {
  position: relative;
}
html .absolute {
  position: absolute;
}
html .fixed {
  position: fixed;
}
html .none {
  display: none;
}
html .inlineBlock {
  display: inline-block;
}
html .block {
  display: block;
}
html .nones {
  display: none !important;
}
html .inlineBlocks {
  display: inline-block !important;
}
html .blocks {
  display: block !important;
}
html .middles {
  vertical-align: middle;
}
html .centers {
  text-align: center;
}
html .index-1 {
  z-index: -1;
}
html .index0 {
  z-index: 0;
}
html .index10 {
  z-index: 10;
}
html .index20 {
  z-index: 20;
}
html .index30 {
  z-index: 30;
}
html .index40 {
  z-index: 40;
}
html .index50 {
  z-index: 50;
}
html .index60 {
  z-index: 60;
}
html .index70 {
  z-index: 70;
}
html .index80 {
  z-index: 80;
}
html .index90 {
  z-index: 90;
}
html .index100 {
  z-index: 100;
}
html .index101 {
  z-index: 101;
}
html input[type=checkbox],
html input[type=radio] {
  margin: 0;
}
html textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  resize: none;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  padding: .1rem;
}
html textarea::-webkit-input-placeholder {
  font-size: .12rem;
  font-weight: 400;
  color: #999999;
}
html input {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 0 .1rem;
}
html input::-webkit-input-placeholder {
  font-size: .12rem;
  font-weight: 400;
  color: #999999;
}
html input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  width: .2rem;
  height: .2rem;
  line-height: .2rem;
  border: 1px solid #d5d5d5;
  border-radius: 4px;
  position: relative;
}
html input[type="checkbox"]:checked::after {
  content: '';
  top: .06rem;
  left: .04rem;
  position: absolute;
  background: transparent;
  border: #666 solid 2px;
  border-top: none;
  border-right: none;
  height: .06rem;
  width: .12rem;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
html .delay02 {
  animation-delay: .2s;
  -webkit-animation-delay: .2s;
}
html .delay04 {
  animation-delay: .4s;
  -webkit-animation-delay: .4s;
}
html .delay06 {
  animation-delay: .6s;
  -webkit-animation-delay: .6s;
}
html .delay08 {
  animation-delay: .8s;
  -webkit-animation-delay: .8s;
}
html .delay10 {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
html .delay12 {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
html .delay14 {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
html .delay16 {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
html .delay18 {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
html .opacity0 {
  opacity: 0;
}
html .opacity1 {
  opacity: .1;
}
html .opacity2 {
  opacity: .2;
}
html .opacity3 {
  opacity: .3;
}
html .opacity4 {
  opacity: .4;
}
html .opacity5 {
  opacity: .5;
}
html .opacity6 {
  opacity: .6;
}
html .opacity7 {
  opacity: .7;
}
html .opacity8 {
  opacity: .8;
}
html .opacity9 {
  opacity: .9;
}
html .opacity1 {
  opacity: 1;
}

.section-padding {
  padding:0px 100px;
}
.main {
  position: relative;
  z-index: 0;
}
/* brand */
.main.brand {
  background: #fff;

}
.main.brand .record-top {
  position: relative;
  height:410px;
  overflow: hidden;
}
.main.brand .record-top .record-text {
  
    padding: 0px 100px;
    margin: 0px auto;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.main.brand .record-top .record-text p {
  font-size: 60px;
  color: #fff;
  margin-bottom: 20px;
}
.main.brand .record-top .record-text span {
  font-size: 18px;
  color: #bab8bf;
  letter-spacing: 1px;
}
.main.brand .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.brand .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.brand .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.brand .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.brand .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.brand .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.brand .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.brand .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.brand .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.brand .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.brand .section3 .section-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.main.brand .section3 .indexes {
  
  padding: 40px 100px;
  margin: 0px auto;
}
.main.brand .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.brand .section3 .indexes .ac {
  color: #ec0000;
}
.main.brand .section3 .section-next{ padding: 0px 100px; margin: 0px auto;}
.main.brand .section3 .section-next .next-l {
  width: 57.5%;
}
.main.brand .section3 .section-next .next-l img {
  width: 100%;
}
.main.brand .section3 .section-next .next-r {
  width: 42.5%;
  padding-left: 10%;
}
.main.brand .section3 .section-next .next-r .r-title {
  margin-bottom: 46px;
}
.main.brand .section3 .section-next .next-r .r-title p {
  font-size: 36px;
  color: #333;
  padding-bottom: 16px;
}
.main.brand .section3 .section-next .next-r .r-title .i {
  display: block;
  width: 36px;
  height: 2px;
  background: #e2070b;
  margin-bottom: 16px;
}
.main.brand .section3 .section-next .next-r .r-title span {
  font-size: 24px;
  color: #999;
}
.main.brand .section3 .section-next .next-r .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.main.brand .section3 .section-next .next-r .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
.main.brand .section3 .section-next .next-r .r-brief .btn:hover{ background: #d91c1b; color: #fff;}
.main.brand .section4 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
}
.main.brand .section4 .section-title span {
  font-size: 16px;
  color: #999;
}

.main.brand .section4 .section-area{ padding: 0px 100px; margin: 0px auto;}

.main.brand .section4 .section-area .item {
  width: 25%;
  padding: 0 10px;
  padding-top: 90px;
  padding-bottom: 70px;
}
.main.brand .section4 .section-area .item .item-img {
  margin-bottom: 40px;
}
.main.brand .section4 .section-area .item .item-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}
.main.brand .section4 .section-area .item .item-text span {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main.brand .section5 {
  height: 860px;
}
.main.brand .section5 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.brand .section5 .section-title {
  padding-top: 50px;
}
.main.brand .section5 .section-title p {
  font-size: 35px;
  color: #fff;
  margin-bottom: 22px;
}
.main.brand .section5 .section-title span {
  font-size: 16px;
  color: #fff;
}
.main.brand .section5 .section-swiper {
  height: 715px;
}
.main.brand .section5 .section-swiper .swiper-container {
  position: absolute;
  bottom: -66px;
  left: 0;
  padding: 0 70px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-img {
  position: relative;
  width: 57.5%;
  overflow: hidden;
  border-radius: 10px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text {
  width: 42.5%;
  padding: 0 15px;
  padding-left: 85px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title {
  margin-bottom: 46px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title p {
  font-size: 36px;
  color: #fff;
  padding-bottom: 16px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title .i {
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title span {
  font-size: 24px;
  color: #fff;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-brief p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  margin-bottom: 40px;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
  background: #fff;
}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-brief .btn:hover{ background: #d91c1b; color: #fff;}
.main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide:last-child {
  margin-right: 20%;
}
.main.brand .section5 .section-swiper .swiper-button-prev,
.main.brand .section5 .section-swiper .swiper-button-next {
  background: none;
}
.main.brand .section5 .section-swiper .swiper-button-prev::before {
  position: absolute;
  left: 50%;
  top: -30%;
  transform: translate(-50%, 0%) rotate(45deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #fff;
}
.main.brand .section5 .section-swiper .swiper-button-prev::after {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, 0%) rotate(135deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #fff;
}
.main.brand .section5 .section-swiper .swiper-button-next::before {
  position: absolute;
  left: 50%;
  top: -30%;
  transform: translate(-50%, 0%) rotate(-45deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #fff;
}
.main.brand .section5 .section-swiper .swiper-button-next::after {
  position: absolute;
  left: 50%;
  top: 35%;
  transform: translate(-50%, 0%) rotate(-135deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #fff;
}
.main.brand .section6 {
  padding-top: 66px;
  padding-bottom: 60px;
}
.main.brand .section6 .section-bg {
  position: absolute;
  top: -140px;
  right: 0;
  transform: translate(0%, 0%);
  z-index: -1;
}
.main.brand .section6 .section-title {
  padding: 50px 0 80px 0;
}
.main.brand .section6 .section-title p {
  font-size: 40px;
  color: #333;
  margin-bottom: 22px;
}
.main.brand .section6 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.brand .section6 .section-area {
  padding-bottom: 200px;
}
.main.brand .section6 .section-area .area-text {
  padding: 0px 100px;
  margin: 0px auto;
}
.main.brand .section6 .section-area .area-text p {
  font-size: 36px;
  color: #555;
  margin-bottom: 50px;
}
.main.brand .section6 .section-area .area-text span {
  font-size: 16px;
  color: #999;
  margin-bottom: 55px;
}
.main.brand .section6 .section-area .area-text .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
  background: #fbfbfb;
}
.main.brand .section6 .section-area .area-text .btn:hover{ background: #d91c1b; color: #fff;}
.main.brand .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.brand .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.brand .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.brand .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.brand .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.brand .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.brand .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.brand .record-quote {
  position: relative;
  height: 250px;
}
.main.brand .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.brand .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.brand .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.brand .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.brand .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.brand .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.brand .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.brand .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.brand .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.brand .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.brand .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.brand .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.brand .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.brand .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.brand .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.brand .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.brand .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* chain */
.main.chain {
  background: #f2f2f2;
}
.main.chain .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.chain .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.chain .record-top .record-text p {
  font-size: 48px;
  color: #fff;
  margin-bottom: 20px;
}
.main.chain .record-top .record-text span {
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
}
.main.chain .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.chain .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.chain .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.chain .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.chain .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.chain .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.chain .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.chain .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.chain .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.chain .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.chain .section3 {
  background: #f5f9fa;
}
.main.chain .section3 .indexes { margin: 0px auto; padding: 20px 100px;
}
.main.chain .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.chain .section3 .indexes .ac {
  color: #ec0000;
}
.main.chain .section3 .section-next {
  padding: 40px 0px;
}
.main.chain .section3 .section-next .next-u {
  width: 80%;
 margin: 0px auto; padding: 0px 100px;
}
.main.chain .section3 .section-next .next-u p {
  font-size: 35px;
  color: #333;
  margin-bottom: 30px;
}
.main.chain .section3 .section-next .next-u span {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  text-align: justify;
}
.main.chain .section3 .section-next .next-d{
 margin: 0px auto; padding: 0px 100px;}
.main.chain .section3 .section-next .next-d img {
  max-width: 100%;
}
.main.chain .section4 {
  background: #f5f9fa;
}
.main.chain .section4 .section-title {
padding: 40px 0px;
}
.main.chain .section4 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
}
.main.chain .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.chain .section4 .section-area {
 margin: 0px auto; padding: 0px 100px;
}
.main.chain .section4 .section-area .item1,
.main.chain .section4 .section-area .item3 {
  width: 36.9%;
  position: relative;
  z-index: 1;
}
.main.chain .section4 .section-area .item2 {
  width: 26.2%;
  position: relative;
}
.main.chain .section4 .section-area .item2 img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main.chain .section4 .section-area .item1 .im p,
.main.chain .section4 .section-area .item1 .im span {
  text-align: end;
}
.main.chain .section4 .section-area .item .im {
  padding-bottom: 120px;
}
.main.chain .section4 .section-area .item .im p {
  font-size: 28px;
  color: #333;
  margin-bottom: 25px;
}
.main.chain .section4 .section-area .item .im span {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  height: 98px;
}
.main.chain .section6 {
  padding-bottom: 50px;
  background: #000;
  padding-right: 0 !important;
}
.main.chain .section6 .section-title {
  padding: 40px 0px;
}
.main.chain .section6 .section-title p {
  font-size: 35px;
  color: #fff;
}
.main.chain .section6 .section-title span {
  font-size: 16px;
  color: #999;
}

.main.chain .section6 .section-area{ margin: 0px auto; padding: 0px 100px;}

.main.chain .section6 .section-area .area-l {
  width: 466px;
  position: relative;
  z-index: 1;
}
.main.chain .section6 .section-area .area-l .item {
  margin-bottom: 1px;
}
.main.chain .section6 .section-area .area-l .item .item-title {
  background: #0f27bc;
  height: 74px;
  padding: 0 25px 0 44px;
}
.main.chain .section6 .section-area .area-l .item .item-title p {
  font-size: 22px;
  color: #fff;
}
.main.chain .section6 .section-area .area-l .item .item-title .arr-wU {
  display: none;
}
.main.chain .section6 .section-area .area-l .item .item-title .arr-wD {
  display: block;
}
.main.chain .section6 .section-area .area-l .item .item-text {
  border: 1px solid #0f27bc;
  border-top: none;
  padding: 20px 42px 30px 42px;
}
.main.chain .section6 .section-area .area-l .item .item-text p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.8;
}
.main.chain .section6 .section-area .area-l .item .item-text:last-child p {
  margin-bottom: 0;
}
.main.chain .section6 .section-area .area-l .item:last-child {
  margin-bottom: 0;
}
.main.chain .section6 .section-area .area-l .active {
  margin-bottom: 0;
}
.main.chain .section6 .section-area .area-l .active .item-title {
  cursor: pointer;
}
.main.chain .section6 .section-area .area-l .active .item-title .arr-wU {
  display: block;
}
.main.chain .section6 .section-area .area-l .active .item-title .arr-wD {
  display: none;
}
.main.chain .section6 .section-area .area-l .active .item-text {
  display: block;
}
.main.chain .section6 .section-area .area-r {
  padding-left: 466px;
  margin-left: -466px;
  height: 666px;
}
.main.chain .section6 .section-area .area-r .swiper-chain {
  margin-left: 9%;
}
.main.chain .section6 .section-area .area-r .swiper-slide {
  padding: 0 20px;
}
.main.chain .section6 .section-area .area-r .swiper-slide .slide-img {
  position: relative;
}
.main.chain .section6 .section-area .area-r .swiper-slide .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
}
.main.chain .section7 {
  background: #f5f7fd;
}
.main.chain .section71 {
margin: 0px auto; padding: 40px 100px;
}
.main.chain .section7 .next-l {
  width: 40%;
  position: relative;
  z-index: 1;
}
.main.chain .section7 .next-l .l-title {
  margin-bottom: 30px;
}
.main.chain .section7 .next-l .l-title p {
  font-size: 35px;
  color: #333;
}
.main.chain .section7 .next-l .l-title span {
  font-size: 20px;
  color: #999;
}
.main.chain .section7 .next-l .l-brief {
  margin-bottom: 60px;
}
.main.chain .section7 .next-l .l-brief p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
.main.chain .section7 .next-l .btn {
  font-size: 20px;
  color: #fff;
  width: 300px;
  height: 70px;
  line-height: 70px;
  border-radius: 86px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
  background: #0f40bc;
}
.main.chain .section7 .next-r {
  width: 60%;
  position: relative;
  height: 100%;
}
.main.chain .section7 .next-r img{ width: 100%;}
.main.chain .section8 {
  background: webkit-linear-gradient(top, #1a1cd1, #136ae0);
  background: linear-gradient(to top, #136ae0, #1a1cd1);
  padding-bottom: 50px;
}
.main.chain .section8 .section-bg {
  position: absolute;
  left: 10%;
  top: 0px;
  width: 90%;
}
.main.chain .section8 .section-title {
  padding: 50px 0px;
}
.main.chain .section8 .section-title p {
  font-size: 35px;
  color: #fff;
}
.main.chain .section8 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.chain .section8 .section-area {
  position: relative;
  z-index: 1;
 margin: 0px auto; padding: 0px 100px;
}
.main.chain .section8 .section-area .item {
  width: 25%;
  padding: 0 24px;

  border: 1px solid #fff;
  border-right: none;
}
.main.chain .section8 .section-area .item .item-text i {
  display: block;
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1;
}
.main.chain .section8 .section-area .item .item-text p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.main.chain .section8 .section-area .item .item-text span {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  height: 230px;
}
.main.chain .section8 .section-area .item:last-child {
  border-right: 1px solid #fff;
}
.main.chain .section9 {
  padding-bottom: 50px;
}
.main.chain .section9 .section-title {
  padding: 50px 0px;
}
.main.chain .section9 .section-title p {
  font-size: 35px;
  color: #333;
}
.main.chain .section9 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.chain .section9 .section-area{ margin: 0px auto; padding: 0px 100px;}
.main.chain .section9 .section-area .item {
  width: 33.33%;
  padding:50px;
  margin-right: 1px;
}
.main.chain .section9 .section-area .item .item-img {
  margin-bottom: 30px;
}
.main.chain .section9 .section-area .item .item-img img{ width: 80px; height: 80px;}
.main.chain .section9 .section-area .item .item-text p {
  font-size: 22px;
  color: #333;
  margin-bottom: 22px;
}
.main.chain .section9 .section-area .item .item-text span {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  height: 98px;
}
.main.chain .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.chain .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.chain .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.chain .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.chain .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.chain .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.chain .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.chain .record-quote {
  position: relative;
  height: 250px;
}
.main.chain .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.chain .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.chain .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.chain .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.chain .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.chain .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.chain .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.chain .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.chain .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.chain .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.chain .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.chain .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.chain .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.chain .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.chain .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.chain .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.chain .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* commerce */
.main.commerce {
  background: #f2f2f2;
}
.main.commerce .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.commerce .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.commerce .record-top .record-text p {
  font-size: 60px;
  color: #fff;
  margin-bottom: 20px;
}
.main.commerce .record-top .record-text span {
  font-size: 18px;
  color: #bab8bf;
  letter-spacing: 1px;
}
.main.commerce .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.commerce .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.commerce .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.commerce .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.commerce .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.commerce .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.commerce .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.commerce .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.commerce .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.commerce .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.commerce .section3 {
  background: #f5f9fa;
}
.main.commerce .section3 .indexes {
 margin: 0px auto; padding: 40px 100px;
}
.main.commerce .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.commerce .section3 .indexes .ac {
  color: #ec0000;
}
.main.commerce .section3 .section-next {
  padding: 0px 100px;
  padding-bottom: 50px;
}
.main.commerce .section3 .section-next .section-title {
  padding-bottom: 50px;
}
.main.commerce .section3 .section-next .section-title p {
  font-size: 35px;
  color: #333;
}
.main.commerce .section3 .section-next .section-title span {
  font-size: 16px;
  color: #999;
}
.main.commerce .section3 .section-next .section-area .item {
  width: 25%;
  padding: 0 15px;
  padding-top: 50px;
  padding-bottom: 40px;
  margin-right: 1px;
}
.main.commerce .section3 .section-next .section-area .item .item-img {
  height: 130px;
  margin-bottom: 25px;
}
.main.commerce .section3 .section-next .section-area .item .item-img img{ max-width: 90px; width: 50%;}
.main.commerce .section3 .section-next .section-area .item .item-text p {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.main.commerce .section3 .section-next .section-area .item .item-text span {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
.main.commerce .section4 {
  padding-bottom: 40px;
}
.main.commerce .section4 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 100%;
  min-width: 100%;
}
.main.commerce .section4 .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
}
.main.commerce .section4 .section-title p {
  font-size: 35px;
  color: #fff;
}
.main.commerce .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.commerce .section4 .section-area {
  
  margin: 0px auto;
  padding: 0px 100px;
}
.main.commerce .section4 .section-area .item {
  width: 16.66%;
  padding: 1%;
  cursor: pointer;
}
.main.commerce .section4 .section-area .item .item-img {
  position: relative;
  padding: 25px;
  margin-bottom: 20px;
}

.main.commerce .section4 .section-area .item .item-img::after{ display: block; position: absolute; left: 0px; top:0px; width: 100%; height: 100%; content: ''; background: rgba(255, 255, 255, 0); z-index: -1; border-radius: 50%;}
.main.commerce .section4 .section-area .item:hover .item-img::after{ background: rgba(255, 255, 255, 0.3); animation: borderani 1s infinite;}

@keyframes borderani {
  0% {
    background: rgba(255, 255, 255, 0);
  }
  80% {
    background: rgba(255, 255, 255, 0.3);
  }
}


.main.commerce .section4 .section-area .item .item-img img {
  width:100%;
  height: auto;
}
.main.commerce .section4 .section-area .item .item-text{}
.main.commerce .section4 .section-area .item .item-text p {
  font-size: 18px;
  color: #fff;
}
.main.commerce .section4 .section-area .item .item-text span {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
  height: 50px;
}
.main.commerce .section4 .section-area .item:hover .item-img {
  

}
.main.commerce .section4 .section-area .item:hover .item-img img {
  width:100%;
  height: auto;
 max-width: 190px;
  border-radius: 50%;
  box-sizing: content-box;
  animation: borderani 1s infinite;
}


.main.commerce .section5 {
  padding-bottom: 50px;
}
.main.commerce .section5 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 100%;
  min-width: 100%;
}
.main.commerce .section5 .section-title {
  padding-top: 50px;
}
.main.commerce .section5 .section-title p {
  font-size: 35px;
  color: #fff;
}
.main.commerce .section5 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.commerce .section5 .section-area {
  margin: 0px auto; padding: 0px 100px;
}
.main.commerce .section5 .section-area .area-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 100px 200px;
}
.main.commerce .section5 .section-area .area-line {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 110px calc(12.5% + 34px);
}
.main.commerce .section5 .section-area .area-line p {
  border: 1px dashed #fff;
  width: 100%;
  height: 100%;
}
.main.commerce .section5 .section-area .item {
  width: 25%;
  padding: 35px 15px;
  position: relative;
}
.main.commerce .section5 .section-area .item .item-blue {
  background: linear-gradient(to top, #3575f5, #3536f5);
}
.main.commerce .section5 .section-area .item .item-red {
  background: linear-gradient(to top, #f5358f, #f53535);
}
.main.commerce .section5 .section-area .item .arr-a::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  content: '';
  width: 20px;
  height: 15px;
  display: block;
  background: url('../image01/i-arr.png') no-repeat center center;
}
.main.commerce .section5 .section-area .item .arr-d::after {
  position: absolute;
  bottom: 0;
  left: calc(50% +  3px);
  transform: translate(-50%, 50%) rotate(90deg);
  content: '';
  width: 20px;
  height: 15px;
  display: block;
  background: url('../image01/i-arr.png') no-repeat center center;
}
.main.commerce .section5 .section-area .item .arr-b::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%) rotate(180deg);
  content: '';
  width: 20px;
  height: 15px;
  display: block;
  background: url('../image01/i-arr.png') no-repeat center center;
}
.main.commerce .section5 .section-area .item .arr-u::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '更好地支持运营';
  display: block;
  font-size: 18px;
  color: #fff;
  white-space: nowrap;
}
.main.commerce .section5 .section-area .item .item-padding {
  padding: 0 26px;
  height: 150px;
}
.main.commerce .section5 .section-area .item .item-padding .item-img {
  width: 70px;
}
.main.commerce .section5 .section-area .item .item-padding .item-img img {
  width: 100%;
}
.main.commerce .section5 .section-area .item .item-padding .item-text {
  padding-left: 90px;
  margin-left: -70px;
}
.main.commerce .section5 .section-area .item .item-padding .item-text p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.main.commerce .section5 .section-area .item .item-padding .item-text span {
  font-size: 16px;
  color: #fff;
}
.main.commerce .section6 {
  padding-bottom: 50px;
}
.main.commerce .section6 .section-title {
  padding-top: 50px;
  padding-bottom: 50px;
}
.main.commerce .section6 .section-title p {
  font-size: 35px;
  color: #333;
}
.main.commerce .section6 .section-title span {
  font-size: 16px;
  color: #999;
}

.main.commerce .section6 .section-area .item {
  width: 20%;
  height: 620px;
  border-right: 1px solid #f2f2f2;
  cursor: pointer;
  overflow: hidden;
  transition: width 0.3s ease-in-out;
}
.main.commerce .section6 .section-area .item .item-l {
  width: 100%;
  padding: 0 30px;
  display: flex;
  justify-content:center;
}
.main.commerce .section6 .section-area .item .item-l .item-img {
  height: 160px;
}
.main.commerce .section6 .section-area .item .item-l .item-img .icon-s {
  display: block;
}
.main.commerce .section6 .section-area .item .item-l .item-img .icon-h {
  display: none;
}
.main.commerce .section6 .section-area .item .item-l .item-text {
  padding-bottom: 60px;
}
.main.commerce .section6 .section-area .item .item-l .item-text p {
  font-size:26px;
  color: #333;
  margin-bottom: 30px;
}
.main.commerce .section6 .section-area .item .item-l .item-text span {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  height: 50px;
}
.main.commerce .section6 .section-area .item .item-r {
  width: 0%;
  background: #ff2223;
  padding: 20px;
}
.main.commerce .section6 .section-area .item .item-r .im-area .im {
  padding-top: 16px;
}
.main.commerce .section6 .section-area .item .item-r .im-area .im img {
  margin-bottom: 10px; width: 38px;
}
.main.commerce .section6 .section-area .item .item-r .im-area .im p {
  font-size: 20px;
  color: #fff;
  margin-bottom: 12px;
}
.main.commerce .section6 .section-area .item .item-r .im-area .im span {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  height: 65px;
  overflow: hidden;
}
.main.commerce .section6 .section-area .item .item-r .item-btn {
  margin: 0 10px;
  border: 4px solid #fff;
  border-radius: 56px;
  height: 56px;
  padding: 0 30px;
}
.main.commerce .section6 .section-area .item .item-r .item-btn p {
  font-size: 18px;
  color: #fff;
}
.main.commerce .section6 .section-area .active {
  width: 40%;
  margin-right: 1px;
}
.main.commerce .section6 .section-area .active .item-l {
  background: #ea1415;
  width: 50%;
  padding: 0 30px;
}
.main.commerce .section6 .section-area .active .item-l .item-img {
  margin-bottom: 60px;
  order: 1;
}
.main.commerce .section6 .section-area .item-l .item-img img{ width: 80%; max-width: 110px;}
.main.commerce .section6 .section-area .active .item-l .item-img .icon-s {
  display: none;
}
.main.commerce .section6 .section-area .active .item-l .item-img .icon-h {
  display: block;
}
.main.commerce .section6 .section-area .active .item-l .item-text {
  order: 2;
  padding-bottom: 0;
}
.main.commerce .section6 .section-area .active .item-l .item-text p {
  color: #fff;
}
.main.commerce .section6 .section-area .active .item-l .item-text span {
  color: #fff;
}
.main.commerce .section6 .section-area .active .item-r {
  width: 50%;
  display: flex !important;
}
.main.commerce .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.commerce .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.commerce .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.commerce .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.commerce .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.commerce .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.commerce .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.commerce .record-quote {
  position: relative;
  height: 250px;
}
.main.commerce .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.commerce .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.commerce .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.commerce .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.commerce .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.commerce .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.commerce .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.commerce .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.commerce .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.commerce .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.commerce .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.commerce .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.commerce .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.commerce .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.commerce .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.commerce .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.commerce .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* development */
.main.development {
  background: #f2f2f2;
}
.main.development .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.development .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.development .record-top .record-text span {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  display: block;
}
.main.development .record-top .record-text p {
  font-size: 48px;
  color: #fff;
}
.main.development .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.development .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.development .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.development .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.development .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.development .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.development .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.development .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.development .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.development .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.development .section3 .section-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.main.development .section3 .indexes {

   margin: 0px auto; padding: 40px 100px;
}
.main.development .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.development .section3 .indexes .ac {
  color: #ec0000;
}
.main.development .section3 .section-next {
  padding-bottom: 50px;
}
.main.development .section3 .section-next .section-title {
  padding: 0px 0 40px 0;
}
.main.development .section3 .section-next .section-title p {
  font-size: 35px;
  color: #333;
}
.main.development .section3 .section-next .section-title span {
  font-size: 16px;
  color: #999;
}

.main.development .section3 .section-next .section-area{  margin: 0px auto; padding: 0px 100px;}


.main.development .section3 .section-next .section-area .area-up .item {
  width: 50%;
  padding: 30px;
}
.main.development .section3 .section-next .section-area .area-up .item .item-img {
  height: 90px;
}

.main.development .section3 .section-next .section-area .area-up .item .item-img img{ height: 100%;}

.main.development .section3 .section-next .section-area .area-up .item .item-text span {
  height: 130px;
  overflow: hidden;
}

.main.development .section3 .section-next .section-area .area-down .item {
  width: 33.33%;
  padding: 30px;
}
.main.development .section3 .section-next .section-area .area-down .item .item-img {
  height: 90px;
}
.main.development .section3 .section-next .section-area .area-down .item .item-img img{ height: 100%;}
.main.development .section3 .section-next .section-area .area-down .item .item-text span {
  height: 90px;
  overflow: hidden;
}
.main.development .section3 .section-next .section-area .item1 {
  background: #272727;
}
.main.development .section3 .section-next .section-area .item2 {
  background: #444444;
}
.main.development .section3 .section-next .section-area .item3 {
  background: #444444;
}
.main.development .section3 .section-next .section-area .item4 {
  background: #343434;
}
.main.development .section3 .section-next .section-area .item5 {
  background: #272727;
}
.main.development .section3 .section-next .section-area .item .item-img {
  margin-bottom: 20px;
}
.main.development .section3 .section-next .section-area .item .item-text p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.main.development .section3 .section-next .section-area .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
.main.development .section4 {
  background: url(../image01/development-bg01.jpg) no-repeat center bottom; padding-bottom: 50px;
}
.main.development .section4 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.development .section4 .section-title {
  padding: 50px 0;
}
.main.development .section4 .section-title p {
  font-size: 35px;
  color: #333;
}
.main.development .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.development .section4 .section-area {
  margin: 0px auto; padding: 0px 100px;
}
.main.development .section4 .section-area .item {
  width: 16.66%;
  cursor: pointer;

}
.main.development .section4 .section-area .item .flip-container {
  height: 180px;
  margin-bottom: 0px;
  transform-style: preserve-3d;
}
.main.development .section4 .section-area .item .flip-container:hover .back {
  transform: rotateY(0deg);
}
.main.development .section4 .section-area .item .flip-container:hover .front {
  transform: rotateY(180deg);
}
.main.development .section4 .section-area .item .flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
.main.development .section4 .section-area .item .front,
.main.development .section4 .section-area .item .back {
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}
.main.development .section4 .section-area .item .back img{ width: 180px; height: auto;}
.main.development .section4 .section-area .item .front {
  z-index: 2;
  transform: rotateY(0deg);
}
.main.development .section4 .section-area .item .front img{ width: 180px; height: auto;}
.main.development .section4 .section-area .item .back {
  transform: rotateY(-180deg);
}
.main.development .section4 .section-area .item .vertical.flip-container {
  position: relative;
}
.main.development .section4 .section-area .item .vertical .back {
  transform: rotateX(180deg);
}
.main.development .section4 .section-area .item .vertical.flip-container:hover .back {
  transform: rotateX(0deg);
}
.main.development .section4 .section-area .item .vertical.flip-container:hover .front {
  transform: rotateX(180deg);
}
.main.development .section4 .section-area .item .item-text {
  height: 54px;
}
.main.development .section4 .section-area .item .item-text p {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.main.development .section4 .section-area .item .item-text span {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main.development .section4 .section-area .item:hover .item-text p {
  color: #1281ff;
}
.main.development .section4 .section-area .item:hover .item-text img {
  display: block;
}
.main.development .section6 {
  padding-bottom: 86px;
}
.main.development .section6 .section-title {
  padding:50px 0px;
}
.main.development .section6 .section-title p {
  font-size: 35px;
  color: #333;
}
.main.development .section6 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.development .section6 .section-area{  padding: 0px 100px; margin: 0px auto;}
.main.development .section6 .section-area .item {
  width: 33.33%;
  padding: 0 1%;
}
.main.development .section6 .section-area .item .item-padding {
  padding: 0 11px;
  padding-top: 40px;
  padding-bottom: 15px;
}
.main.development .section6 .section-area .item .item-padding .item-top p {
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
}
.main.development .section6 .section-area .item .item-padding .item-top span {
  width: 20px;
  height: 4px;
  background: #e2070b;
  display: block;
}
.main.development .section6 .section-area .item .item-padding .item-im .im {
  width: 33.33%;
  padding: 10px 0px;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .flip-container {
  width: 90%;
  height: 0;
  padding-bottom: 90%;
  perspective: 1000;
  transform-style: preserve-3d;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .flip-container:hover .back {
  transform: rotateY(0deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im .flip-container:hover .front {
  transform: rotateY(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im .flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .front,
.main.development .section6 .section-area .item .item-padding .item-im .im .back {
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .front {
  z-index: 2;
  transform: rotateY(0deg);
  border: 8px solid #fff;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .front img{ max-width: 120px;}
.main.development .section6 .section-area .item .item-padding .item-im .im .back {
  transform: rotateY(-180deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im .vertical.flip-container {
  position: relative;
}
.main.development .section6 .section-area .item .item-padding .item-im .im .vertical .back {
  transform: rotateX(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im .vertical.flip-container:hover .back {
  transform: rotateX(0deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im .vertical.flip-container:hover .front {
  transform: rotateX(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-im .im p {
  font-size: 15px;
  color: #333;
  padding-top:10px;
  line-height: 20px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im {
  width: 33.33%;
  padding: 40px 0;
  padding: 10px 0px;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .flip-container {
  width: 90%;
  height: 0;
  padding-bottom: 90%;
  perspective: 1000;
  transform-style: preserve-3d;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .flip-container:hover .back {
  transform: rotateY(0deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .flip-container:hover .front {
  transform: rotateY(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .front,
.main.development .section6 .section-area .item .item-padding .item-nx .im .back {
  backface-visibility: hidden;
  transition: 0.6s;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .front {
  z-index: 2;
  transform: rotateY(0deg);
  border: 8px solid #fff;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .back {
  transform: rotateY(-180deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .vertical.flip-container {
  position: relative;
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .vertical .back {
  transform: rotateX(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .vertical.flip-container:hover .back {
  transform: rotateX(0deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im .vertical.flip-container:hover .front {
  transform: rotateX(180deg);
}
.main.development .section6 .section-area .item .item-padding .item-nx .im p {
  font-size: 15px;
  color: #333;
  padding-top: 10px;
  line-height: 20px;
  height: 50px;
  overflow: hidden;
  text-align: center;
  width: 100%;
}
.main.development .section7 {
 background: url(../image01/development-bg02.jpg) no-repeat; background-size: cover; padding: 50px 0px; margin-bottom: 50px;
}
.main.development .section7 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.development .section7 .section-title {
  padding-bottom: 40px;
}
.main.development .section7 .section-title p {
  font-size: 35px;
  color: #fff;
}
.main.development .section7 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.development .section7 .section-area {
  height: 500px;
  border: 1px solid #f4f4f4;
}
.main.development .section7 .section-area .area-l {
  position: relative;
  z-index: 1;
  width: 356px;
  background: rgba(0, 0, 0, 0.8);
}
.main.development .section7 .section-area .area-l .item {
  border-right: 1px solid #f4f4f4;
  border-bottom: 1px solid #f4f4f4;
  padding: 0 38px 0 42px;
  height: 83px;
  cursor: pointer;
}
.main.development .section7 .section-area .area-l .item .item-prev p {
  font-size: 20px;
  color: #fff;
  padding: 0 12px;
}
.main.development .section7 .section-area .area-l .active {
  background: url('../image01/development-02.jpg') no-repeat center center;
  background-size: 100% 100%;
}
.main.development .section7 .section-area .area-l img{ width: auto; height: 30px;}
.main.development .section7 .section-area .area-l .item:last-child {
  border-bottom: none;
}
.main.development .section7 .section-area .area-r {
  padding-left: 356px;
  margin-left: -356px;
}
.main.development .section7 .section-area .area-r .slide-area {
  height: 100%;
}
.main.development .section7 .section-area .area-r .slide-area .slide-text {
  background: rgba(0, 0, 0, 0.4);
  width: 44.9%;
  padding: 0 7.5%;
}
.main.development .section7 .section-area .area-r .slide-area .slide-text p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 40px;
}
.main.development .section7 .section-area .area-r .slide-area .slide-text span {
  font-size: 15px;
  color: #fff;
  line-height: 2;
}
.main.development .section7 .section-area .area-r .slide-area .slide-img {
  width: 55.1%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.main.development .section7 .section-area .area-r .slide-area .slide-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}
.main.development .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.development .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.development .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.development .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.development .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.development .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.development .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.development .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.development .record-quote {
  position: relative;
  height: 250px;
}
.main.development .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.development .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.development .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.development .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.development .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.development .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.development .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.development .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.development .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.development .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.development .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.development .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.development .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.development .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.development .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.development .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.development .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* digital */
.main.digital {
  background: #f2f2f2;
}
.main.digital .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.digital .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.digital .record-top .record-text p {
  font-size: 24px;
  color: #fff;
}
.main.digital .record-top .record-text .text {
  font-size: 48px;
  color: #fff;
}
.main.digital .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.digital .indexes {
 margin: 0px auto; padding: 40px 100px;
}
.main.digital .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.digital .indexes .ac {
  color: #ec0000;
}

.main.digital .operation .titles {
padding-bottom: 50px;
  font-size: 35px;
  color: #333;
}
.main.digital .operation .operation-area {
 margin: 0px auto; padding: 0px 100px; padding-bottom: 40px;
}
.main.digital .operation .operation-area .oper-l {
  width: 40%;
  padding-right: 92px;
  min-width: 570px;
}
.main.digital .operation .operation-area .oper-l .handles {
  width: 520px;
  position: relative;
}
.main.digital .operation .operation-area .oper-l .handles .items {
  cursor: pointer;
  position: relative;
  width: 260px;
  height: 260px;
}
.main.digital .operation .operation-area .oper-l .handles .items p {
  font-size: 18px;
  color: #fff;
}
.main.digital .operation .operation-area .oper-l .handles .items .circle {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #2160d3;
  position: absolute;
  z-index: -1;
  transition: all .2s linear;
}
.main.digital .operation .operation-area .oper-l .handles .items .circle1 {
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
}
.main.digital .operation .operation-area .oper-l .handles .items .circle2 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}
.main.digital .operation .operation-area .oper-l .handles .items .circle3 {
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}
.main.digital .operation .operation-area .oper-l .handles .items .circle4 {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.main.digital .operation .operation-area .oper-l .handles .items1 p {
  transform: rotate(-45deg);
}
.main.digital .operation .operation-area .oper-l .handles .items2 p {
  transform: rotate(45deg);
}
.main.digital .operation .operation-area .oper-l .handles .items3 p {
  transform: rotate(-135deg);
}
.main.digital .operation .operation-area .oper-l .handles .items4 p {
  transform: rotate(135deg);
}
.main.digital .operation .operation-area .oper-l .handles .active .circle {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: #ff782e;
  position: absolute;
}
.main.digital .operation .operation-area .oper-l .handles .active.items1 {
  bottom: 10px;
  right: 10px;
}
.main.digital .operation .operation-area .oper-l .handles .active.items2 {
  bottom: 10px;
  left: 10px;
}
.main.digital .operation .operation-area .oper-l .handles .active.items3 {
  top: 10px;
  right: 10px;
}
.main.digital .operation .operation-area .oper-l .handles .active.items4 {
  top: 10px;
  left: 10px;
}
.main.digital .operation .operation-area .oper-l .handles .circles {
  width: 264px;
  height: 264px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main.digital .operation .operation-area .oper-l .handles .circles p {
  width: 50%;
  text-align: center;
  line-height: 2;
  font-size: 32px;
  color: #333;
}
.main.digital .operation .operation-area .oper-r {
  width: 60%;
}
.main.digital .operation .operation-area .oper-r .items {
  padding: 20px 30px;
  transition: all .2s linear;
  cursor: pointer;
}
.main.digital .operation .operation-area .oper-r .items .item-t {
  font-size: 20px;
  margin-bottom: 12px;
}
.main.digital .operation .operation-area .oper-r .items p {
  font-size: 14px;
  color: #b8b9ba;
  line-height: 1.5;
}
.main.digital .operation .operation-area .oper-r .active {
  background: #fff;
}
.main.digital .operation .operation-area .oper-r .active p {
  color: #333;
}
.main.digital .operation-category {
  padding: 50px 0px;
}
.main.digital .operation-category .titles {
  font-size: 32px;
  color: #333;
  padding-bottom: 40px;
}
.main.digital .operation-category .category-area {
  margin: 0 -12px;
}
.main.digital .operation-category .category-area .item {
  width: 20%;
  padding: 12px;
  cursor: pointer;
}
.main.digital .operation-category .category-area .item .item-padding:hover img {
  transition: transform .3s linear;
  transform: scale(1.05);
}
.main.digital .operation-category .category-area .item .item-padding:hover .item-mask {
  transition: transform .3s linear;
  transform: scale(1.05);
}
.main.digital .operation-category .category-area .item .item-padding {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.main.digital .operation-category .category-area .item .item-padding img {
  width: 100%;
}
.main.digital .operation-category .category-area .item .item-padding .item-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.main.digital .operation-category .category-area .item .item-padding .item-mask p {
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 0 10px;
  line-height: 1.2;
}
.main.digital .packages-fee {
  padding: 50px 0px;
}
.main.digital .packages-fee .titles {
  font-size: 32px;
  color: #333;
  margin-bottom: 60px;
}
.main.digital .packages-fee .packages-area{  margin: 0px auto; padding: 0px 100px;}
.main.digital .packages-fee .packages-area .item {
  width: 33.33%;
  padding: 20px;
  transition: transform .2s linear;
}
.main.digital .packages-fee .packages-area .item .item-padding {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 142%;
  position: relative;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-t {
  padding: 15px 0;
  width: 55%;
  border-bottom: 1px solid #dedede;
  font-size: 22px;
  color: #333;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text {
  padding: 20px 0 10px 0;
  position: absolute;
  top: 92px;
  left: 0;
  height: calc(100% -  196px);
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text .description {
  padding: 0 20px;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text .description p {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text .description::-webkit-scrollbar {
  width: 1px;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text .description::-webkit-scrollbar-track {
  background: #fce6e6;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-text .description::-webkit-scrollbar-thumb {
  background: #e2070b;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-buy {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  padding-top: 58px;
  width: 55%;
  border-top: 1px solid #dedede;
}
.main.digital .packages-fee .packages-area .item .item-padding .item-buy a {
  width: 130px;
  height: 40px;
  line-height: 40px;
  border-radius: 23px;
  background: #f3f3f3;
  font-size: 16px;
  color: #333;
}
.main.digital .packages-fee .packages-area .active {
  box-shadow: 0px 0px 40px 0px #e2070b;
  z-index: 8;
  transform: scale(1.05);
  background: #fbf6f6;
  border: 1px solid #e2070b;
}
.main.digital .packages-fee .packages-area .active .item-padding .item-t {
  color: #e2070b;
}
.main.digital .packages-fee .packages-area .active .item-padding .item-buy {
  padding-top: 30px;
}
.main.digital .packages-fee .packages-area .active .item-padding .item-buy a {
  background: #5596de; display: block;
  color: #fff;
}
.main.digital .articles {
  position: relative;
  height: 732px;
}
.main.digital .articles .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.digital .articles .articles-area .items-area {
  width: 60%;
  position: relative;
}
.main.digital .articles .articles-area .items-area .items {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main.digital .articles .articles-area .items-area .items .item {
  font-size: 24px;
  color: #fff;
}
.main.digital .articles .articles-area .articles-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 75px solid rgba(255, 255, 255, 0.1);
}
.main.digital .articles .articles-area .articles-text .text-border {
  background: #fff;
  border-radius: 50%;
}
.main.digital .articles .articles-area .articles-text .text-border p {
  font-size: 42px;
  color: #eb3b3b;
  margin-bottom: 22px;
}
.main.digital .articles .articles-area .articles-text .text-border span {
  font-size: 14px;
  color: #eb3b3b;
}
.main.digital .operation-plan {
  position: relative;
  height: 0;
  padding-bottom: 26.7%;
  margin-bottom: 50px;
}
.main.digital .operation-plan .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.digital .operation-plan .titles {
  font-size: 35px;
  color: #333;
  padding: 50px 0;
}
.main.digital .operation-plan .plan-padding {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.main.digital .operation-plan .plan-padding .plan-area {
  margin: 0 -20px;
}
.main.digital .operation-plan .plan-padding .plan-area .item {
  width: 33.33%;
  padding: 0 20px;
  position: relative;
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding {
  width: calc(100% -  40px);
  padding-bottom: 44%;
  height: 0;
  position: relative;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  overflow: hidden;
  transition: padding-bottom 0.2s linear;
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding .item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  z-index: -1;
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding .item-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding .item-mask div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 20px;
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding .item-mask div p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 0;
  width: 100%;
  text-align: center;
}
.main.digital .operation-plan .plan-padding .plan-area .item .item-padding .item-mask div span {
  display: none;
  font-size: 13px;
  color: #fff;
  width: 100%;
  text-align: start;
  text-indent: 1.5em;
  line-height: 1.8;
}
.main.digital .operation-plan .plan-padding .plan-area .active .item-padding {
  padding-bottom: 52%;
}
.main.digital .operation-plan .plan-padding .plan-area .active .item-padding .item-mask div {
  position: static;
  transform: none;
  padding-top: 30px;
}
.main.digital .operation-plan .plan-padding .plan-area .active .item-padding .item-mask div p {
  margin-bottom: 15px;
}
.main.digital .operation-plan .plan-padding .plan-area .active .item-padding .item-mask div span {
  display: block;
}
.main.digital .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.digital .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.digital .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.digital .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.digital .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.digital .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.digital .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.digital .record-quote {
  position: relative;
  height: 250px;
}
.main.digital .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.digital .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.digital .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.digital .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.digital .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.digital .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.digital .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.digital .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.digital .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.digital .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.digital .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.digital .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.digital .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.digital .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.digital .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.digital .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.digital .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* email */
.main.email {
  background: #f2f2f2;
}
.main.email .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.email .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.email .record-top .record-text p {
  font-size: 24px;
  color: #fff;
}
.main.email .record-top .record-text .text {
  font-size: 48px;
  color: #fff;
}
.main.email .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.email .indexes {
 margin: 0px auto; padding: 40px 100px;
}
.main.email .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.email .indexes .ac {
  color: #ec0000;
}
.main.email .email-packages .titles {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
}
.main.email .email-packages > span {
  font-size: 14px;
  color: #999;
  margin-bottom: 70px;
}
.main.email .email-packages .packages-area {
 margin: 0px auto; padding: 0px 100px;  padding-bottom: 70px;
}
.main.email .email-packages .packages-area .item {
  width: 25%;
  padding: 0 20px;
  border: 1px solid #dedede;
  margin-right: -1px;
  transition: transform .2s linear;
  cursor: pointer;
}
.main.email .email-packages .packages-area .item .item-padding {
  padding: 10px 0 20px 0px;
}
.main.email .email-packages .packages-area .item .item-padding .item-top {
  padding: 10px 0;
  border-bottom: 1px solid #dedede;
}
.main.email .email-packages .packages-area .item .item-padding .item-top p {
  font-size: 18px;
  color: #333;
  margin-bottom: 14px;
}
.main.email .email-packages .packages-area .item .item-padding .item-top span {
  font-size: 14px;
  color: #999;
}
.main.email .email-packages .packages-area .item .item-padding .item-text {
  height: 350px;
  overflow: hidden;
}
.main.email .email-packages .packages-area .item .item-padding .item-text .description {
  font-size: 15px;
  color: #333;
  line-height: 32px;
}
.main.email .email-packages .packages-area .item .item-padding .item-text .description p {
  font-size: 16px;
  color: #333;
  line-height: 32x;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main.email .email-packages .packages-area .item .item-padding .item-text .description .i {
  color: #e2070b;
}
.main.email .email-packages .packages-area .item .item-padding .item-buy {
  padding-top: 20px;
  border-top: 1px solid #dedede;
}
.main.email .email-packages .packages-area .item .item-padding .item-buy .price {
  font-size: 20px;
  color: #e2070b;
  margin-bottom: 20px;
}
.main.email .email-packages .packages-area .item .item-padding .item-buy .price > span {
  font-size: 40px;
}
.main.email .email-packages .packages-area .item .item-padding .item-buy .buy {
  width: 80%;
  max-width: 180px;
  height: 40px;
  line-height: 40px;
  border-radius: 23px;
  background: #5495de;
  font-size: 16px;
  color: #fff;
}
.main.email .email-packages .packages-area .item .item-padding .item-buy > span {
  font-size: 14px;
  color: #fff;
}
.main.email .email-packages .packages-area .active {
  box-shadow: 0px 0px 40px 0px #e2070b;
  z-index: 8;
  transform: scale(1.15, 1.08);
  background: #e2070b;
  border: 1px solid #e2070b;
}
.main.email .email-packages .packages-area .active .cloud {
  display: block;
  width: 200px;
  position: absolute;
  top: 28px;
  right: -93px;
}
.main.email .email-packages .packages-area .active .person {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 0);
  width: 100px;
}
.main.email .email-packages .packages-area .active .item-padding .item-top p {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-top span {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-text .description {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-text .description p {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-text .description .i {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-buy .price {
  color: #fff;
}
.main.email .email-packages .packages-area .active .item-padding .item-buy .buy {
  background: #fff;
  color: #e2070b;
  margin-bottom: 14px;
}
.main.email .email-packages .packages-area .active .item-padding .item-buy > span {
  display: block;
}
.main.email .email-superiority .titles {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
}
.main.email .email-superiority > span {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}
.main.email .email-superiority .superiority-area {
 margin: 0px auto; padding: 40px 100px;
}
.main.email .email-superiority .superiority-area .item {
  width: 33.33%;
  border: 1px solid #e4e4e4;
  margin-right: -1px;
  margin-bottom: -1px;
}
.main.email .email-superiority .superiority-area .item .item-padding {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 70.8%;
  position: relative;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: none;
  z-index: -1;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img {
  height: 0;
  padding-bottom: 42.6%;
  position: relative;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 40px;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text {
  padding: 0 70px;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 30px;
}
.main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  height: 50px;
  overflow: hidden;
}
.main.email .email-superiority .superiority-area .item:hover .item-padding .item-bg {
  display: block;
}
.main.email .email-superiority .superiority-area .item:hover .item-padding .item-area {
  background: none;
}
.main.email .email-superiority .superiority-area .item:hover .item-padding .item-area .item-text p {
  color: #fff;
}
.main.email .email-superiority .superiority-area .item:hover .item-padding .item-area .item-text span {
  color: #fff;
}
.main.email .email-func {
  padding: 50px 0px 0px 0px;
  background: url(../image01/email-bg01.jpg) no-repeat center center; background-size: cover;
}
.main.email .email-func .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.email .email-func .titles {
  font-size: 35px;
  color: #fff;
  margin-bottom: 15px;
}
.main.email .email-func > span {
  font-size: 14px;
  color: #fff;
  margin-bottom: 50px;
}
.main.email .email-func .func-area .item {
  width: 33.33%;
  cursor: pointer;
  padding-bottom: 50px;
}
.main.email .email-func .func-area .item .item-padding {
  width: 100%;
  height: auto;
  position: relative;
  max-width: 240px;
  margin: 0 auto;
}
.main.email .email-func .func-area .item .item-padding .item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: none;
  z-index: -1;
}
.main.email .email-func .func-area .item .item-padding .item-area .item-img {
  height: 0;
  padding-bottom: 44.6%;
  position: relative;
}
.main.email .email-func .func-area .item .item-padding .item-area .item-img .padding-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.main.email .email-func .func-area .item .item-padding .item-area .item-text p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.main.email .email-func .func-area .item .item-padding .item-area .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
.main.email .section6 {
  padding-top: 50px;
}
.main.email .section6 .section-bg {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 100%;
  z-index: -1;
}
.main.email .section6 .section-top p {
  font-size: 35px;
  color: #333;
  margin-bottom: 15px;
}
.main.email .section6 .section-top span {
  font-size: 14px;
  color: #999;
}
.main.email .section6 .section-area {
 margin: 0px auto; padding: 40px 100px;
}
.main.email .section6 .section-area .item {
  width: 33.33%;
  padding: 20px;
}
.main.email .section6 .section-area .item .item-padding {
  padding: 45px 0px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.16);
}
.main.email .section6 .section-area .item .item-padding .item-bg {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  transition: all .6s linear;
}
.main.email .section6 .section-area .item .item-padding .item-bg p {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  border-radius: 50%;
  transition: background .6s linear;
}
.main.email .section6 .section-area .item .item-padding p {
  font-size: 45px;
  color: #333;
  text-align: center;
  width: 40%;
}
.main.email .section6 .section-area .item .item-padding span {
  font-size: 22px;
  color: #333;
  text-align: center;
  width: 60%;
}
.main.email .section6 .section-area .item:hover .item-padding .item-bg {
  width: 150%;
  height: 150%;
  left: 50%;
}
.main.email .section6 .section-area .item:hover .item-padding .item-bg p {
  background: #e2070b;
}
.main.email .section6 .section-area .item:hover .item-padding p {
  color: #fff;
}
.main.email .section6 .section-area .item:hover .item-padding span {
  color: #fff;
}
.main.email .section7 {
  margin-bottom: 100px;
  display: flex;
  height: 600px;
}
.main.email .section7 .section-l {
  background: -webkit-linear-gradient(top, #212ae7, #3a79fc);
  background: linear-gradient(to bottom, #212ae7, #3a79fc);
  width: 61%;
  margin-right: -20%;
  position: relative;
}
.main.email .section7 .section-l .l-area {
  width: 65%;
  padding: 5%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.main.email .section7 .section-l .l-area .l-title {
  margin-bottom: 30px;
}
.main.email .section7 .section-l .l-area .l-title p {
  font-size: 35px;
  color: #fff;
  margin-bottom: 15px;
}
.main.email .section7 .section-l .l-area .l-title span {
  font-size: 14px;
  color: #fff;
}
.main.email .section7 .section-l .l-area .l-text p {
  font-size: 25px;
  color: #fff;
  margin-bottom: 30px;
}
.main.email .section7 .section-l .l-area .l-text span {
  font-size: 15px;
  color: #fff;
  line-height: 2;
  overflow: hidden;
  display: block;
}
.main.email .section7 .section-r {
  width: 61%;
  padding: 0px 0px;
}
.main.email .section7 .section-r .swiper-container {height: 100%;
}
.main.email .section7 .section-r .swiper-container .swiper-wrapper .swiper-slide {
  width: 80%;
  overflow: hidden;
}
.main.email .section7 .section-r .swiper-container .swiper-wrapper .swiper-slide .slide-img {
  position: relative;
}
.main.email .section7 .section-r .swiper-container .swiper-wrapper .swiper-slide .slide-img h2{ display: block;}
.main.email .section7 .section-r .swiper-container .swiper-wrapper .swiper-slide .slide-img h2 img {
 width: 100%;
  height: calc(100% - 40px);
}
.main.email .section7 .section-r .swiper-container .swiper-wrapper .swiper-slide:last-child {
  margin-right: 20%;
}
.main.email .section7 .section-r .swiper-paginations {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-50px, 50px);
  width: 80px;
  z-index: 11;
  cursor: pointer;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs {
  width: 100%;
  position: relative;
  height: 100px;
  background-color: #fff;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs::before {
  position: absolute;
  left: 50%;
  top: 12%;
  transform: translate(-50%, 0%) rotate(45deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #333;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs::after {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, 0%) rotate(135deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #333;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs.active {
  background-color: #4037fa;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts {
  width: 100%;
  position: relative;
  height: 100px;
  background-color: #fff;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts.active {
  background-color: #4037fa;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts::before {
  position: absolute;
  left: 50%;
  top: 13%;
  transform: translate(-50%, 0%) rotate(-45deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #333;
}
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts::after {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, 0%) rotate(-135deg);
  content: '';
  display: block;
  height: 45px;
  width: 4px;
  background: #333;
}
.main.email .section7 .section-r .swiper-paginations .active::before,
.main.email .section7 .section-r .swiper-paginations .active::after {
  background: #fff;
}
.main.email .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.email .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.email .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.email .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.email .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.email .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.email .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.email .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.email .record-quote {
  position: relative;
  height: 250px;
}
.main.email .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.email .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.email .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.email .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.email .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.email .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.email .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.email .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.email .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.email .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.email .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.email .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.email .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.email .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.email .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.email .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.email .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* enterprise */
.main.enterprise {
  background: #fff;
}
.main.enterprise .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.enterprise .record-top .record-text {

 padding: 0px 100px; margin: 0px auto; height: 100%; position: relative; z-index: 2; display: flex; justify-content: center; flex-direction: column;

}
.main.enterprise .record-top .record-text p {
  font-size: 80px;
  color: #fff;
  margin-bottom: 20px;
}
.main.enterprise .record-top .record-text span {
  font-size: 18px;
  color: #bab8bf;
  letter-spacing: 1px;
}
.main.enterprise .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
   width: 100%;
   height: 100%;
}
.main.enterprise .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.enterprise .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.enterprise .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.enterprise .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.enterprise .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.enterprise .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.enterprise .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.enterprise .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.enterprise .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.enterprise .section3 {
  background: url(../image01/enterprise-01.png) no-repeat left top; background-size:cover;
}
.main.enterprise .section3 .section-bg {
  position: absolute;
  top: 0;
  left: 0;

}
.main.enterprise .section3 .indexes {
  
  padding: 40px 100px;
  font-size: 14px;
  margin: 0px auto;
}

.main.enterprise .section3 .section-next {
  
	margin: 0px auto;
	width: 100%;
  padding: 20px 100px;
  margin: 0px auto;
}
.main.enterprise .section3 .section-next .next-l {
  width: 35%;
}
.main.enterprise .section3 .section-next .next-l .r-title {
  margin-bottom: 46px;
}
.main.enterprise .section3 .section-next .next-l .r-title p {
  font-size: 36px;
  color: #333;
  padding-bottom: 16px;
}
.main.enterprise .section3 .section-next .next-l .r-title .i {
  display: block;
  width: 36px;
  height: 2px;
  background: #e2070b;
  margin-bottom: 16px;
}
.main.enterprise .section3 .section-next .next-l .r-title span {
  font-size: 24px;
  color: #999;
}
.main.enterprise .section3 .section-next .next-l .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.main.enterprise .section3 .section-next .next-l .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
.main.enterprise .section3 .section-next .next-l .r-brief .btn:hover{  background: #e2070b; color: #fff;}
.main.enterprise .section3 .section-next .next-r {
  width: 65%;
  padding-left: 70px;
}
.main.enterprise .section3 .section-next .next-r img {
  width: 100%;
}
.main.enterprise .section4 {
  padding-top: 50px;
}
.main.enterprise .section4 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
}
.main.enterprise .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.enterprise .section4 .section-area{  padding: 0px 50px; margin: 0px auto;}
.main.enterprise .section4 .section-area .item {
  width: 25%;
  padding: 0 10px;
  padding-top: 50px;
  padding-bottom: 40px;
  cursor: pointer;
}
.main.enterprise .section4 .section-area .item .item-img {
  margin-bottom: 40px;
}
.main.enterprise .section4 .section-area .item .item-img img {
  transition: transform .3s linear;
}
.main.enterprise .section4 .section-area .item .item-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}
.main.enterprise .section4 .section-area .item .item-text span {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main.enterprise .section4 .section-area .item:hover .item-img img {
  transform: rotateY(180deg);
}
.main.enterprise .section6 {
  padding-top: 50px;
  padding-bottom: 50px;
}
.main.enterprise .section6 .section-bg {
  position: absolute;
  top: -140px;
  right: 0;
  transform: translate(0%, 0%);
  z-index: -1;
}
.main.enterprise .section6 .section-title {
  padding: 0px 0 80px 0;
}
.main.enterprise .section6 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 22px;
}
.main.enterprise .section6 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.enterprise .section6 .section-area {
  
  padding: 0px 100px;
  padding-bottom: 200px;
  margin: 0px auto;
}

.main.enterprise .section6 .section-area .area-l {
  width: 47.1%;
  position: relative;
  z-index: 1;
}
.main.enterprise .section6 .section-area .area-l .area-text p {
  font-size: 40px;
  color: #555;
  margin-bottom: 50px;
}
.main.enterprise .section6 .section-area .area-l .area-text span {
  font-size: 22px;
  color: #999;
  margin-bottom: 55px;
}
.main.enterprise .section6 .section-area .area-l .area-text .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
  background: #fbfbfb;
}
.main.enterprise .section6 .section-area .area-l .area-text .btn:hover{ background: #d91c1b; color: #fff;}

@media (max-width:1440px) {
  .main.enterprise .section6 .section-area .area-l .area-text p {
    font-size: 32px;
    color: #555;
    margin-bottom: 30px;
  }
  .main.enterprise .section6 .section-area .area-l .area-text span{ font-size: 20px; margin-bottom: 30px;}

  .main.brand .section6 .section-area .area-text p {
    font-size: 32px;
    color: #555;
    margin-bottom: 30px;
  }
  .main.brand .section6 .section-area .area-text span{ font-size: 20px; margin-bottom: 30px;}
}

.main.enterprise .section6 .section-area .area-r {
  width: 52.9%;
  position: absolute;
  top: -220px;
  right: 0;
  height: 100%;
  z-index: -1;
}
.main.enterprise .section6 .section-area .area-r img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: 1040px;
}
.main.enterprise .section7 {
  padding-bottom: 20px;
}
.main.enterprise .section7 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: -1;
}
.main.enterprise .section7 .section-title {
  padding: 50px 0 30px 0;
}
.main.enterprise .section7 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 22px;
}
.main.enterprise .section7 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.enterprise .section7 .section-area{
  
  padding: 0px 100px;
  margin: 0px auto;
}
.main.enterprise .section7 .section-area .area-img {
  width: 51%;
}
.main.enterprise .section7 .section-area .area-img img {
  width: 100%;
}
.main.enterprise .section7 .section-area .area-text {
  width: 49%;
  padding: 0 6%;
}
.main.enterprise .section7 .section-area .area-text .r-title {
  margin-bottom: 40px;
}
.main.enterprise .section7 .section-area .area-text .r-title p {
  font-size: 32px;
  color: #333;
}
.main.enterprise .section7 .section-area .area-text .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 50px;
}
.main.enterprise .section7 .section-area .area-text .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
.main.enterprise .section7 .section-area .area-text .r-brief .btn:hover{ background: #d91c1b; color: #fff;}
.main.enterprise .section8 {
  padding-bottom: 50px;
}
.main.enterprise .section8 .section-title {
  padding: 80px 0;
}
.main.enterprise .section8 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 22px;
}
.main.enterprise .section8 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.enterprise .section8 .section-area{  padding: 0px 100px; margin: 0px auto;}
.main.enterprise .section8 .section-area .item .im {
  margin-bottom: 40px;
}
.main.enterprise .section8 .section-area .item .im .icons {
  width: 76px;
  height: 64px;
  position: relative;
  padding-right: 14px;
}
.main.enterprise .section8 .section-area .item .im .icons img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}
.main.enterprise .section8 .section-area .item .im .icons p {
  font-size: 30px;
  color: #fff;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  margin: 0;
}
.main.enterprise .section8 .section-area .item .im .im-text {
  padding-left: 76px;
  margin-left: -76px;
}
.main.enterprise .section8 .section-area .item .im .im-text .im-title {
  font-size: 30px;
  color: #ff5f06;
  margin-bottom: 12px;
  width: 100%;
}
.main.enterprise .section8 .section-area .item .im .im-text .im-brief p {
  width: 50%;
  font-size: 16px;
  color: #999;
  padding-left: 14px;
  padding-right: 20px;
  position: relative;
  line-height: 1.8;
}
.main.enterprise .section8 .section-area .item .im .im-text .im-brief p:before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ff5f06;
  position: absolute;
  top: 12px;
  left: 0;
}
.main.enterprise .section8 .section-area .item2 {
  width: 38%;
}
.main.enterprise .section8 .section-area .item2 .im {
  width: 38%;
  position: absolute;
  top: -50px;

}
.main.enterprise .section8 .section-area .item2 .area-img {
  position: relative;
  z-index: -1;
}
.main.enterprise .section8 .section-area .item2 .area-img img {
  width: 100%;
}
.main.enterprise .section8 .section-area .item3 .im .im-text {
  padding-left: 0;
  padding-right: 76px;
  margin-right: -76px;
}
.main.enterprise .section8 .section-area .item3 .im .im-text .im-title {
  text-align: end;
}
.main.enterprise .section8 .section-area .item3 .im .im-text .im-brief p {
  width: 100%;
  text-align: end;
}
.main.enterprise .section8 .section-area .item3 .im .im-text .im-brief p:before {
  right: 0;
  left: auto;
}
.main.enterprise .section8 .section-area .item3 .im .im-text .im-brief .p {
  width: auto;
  text-align: start;
}
.main.enterprise .section8 .section-area .item3 .im .im-text .im-brief .p:before {
  left: 0;
  right: auto;
}
.main.enterprise .section8 .section-area .item1,
.main.enterprise .section8 .section-area .item3 {
  width: 31%;
}
.main.enterprise .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.enterprise .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.enterprise .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.enterprise .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.enterprise .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.enterprise .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.enterprise .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.enterprise .record-quote {
  position: relative;
  height: 250px;
}
.main.enterprise .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.enterprise .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.enterprise .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.enterprise .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.enterprise .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.enterprise .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.enterprise .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.enterprise .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.enterprise .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.enterprise .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.enterprise .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.enterprise .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.enterprise .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.enterprise .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.enterprise .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.enterprise .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.enterprise .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* mall */
.main.mall {
  font-family: 'Regular';
  background: #fff;
}
.main.mall .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.mall .record-top .record-text {
  
    padding: 0px 100px;
    margin: 0px auto;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.main.mall .record-top .record-text p {
  font-size: 60px;
  color: #fff;
  margin-bottom: 20px;
}
.main.mall .record-top .record-text span {
  font-size: 18px;
  color: #bab8bf;
  letter-spacing: 1px;
}
.main.mall .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.mall .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.mall .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.mall .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.mall .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.mall .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.mall .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.mall .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.mall .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.mall .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.mall .section3 {
  padding-right: 0 !important;
}
.main.mall .section3 .section-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.main.mall .section3 .indexes {
  
  padding: 40px 100px;
  margin: 0px auto;
}
.main.mall .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.mall .section3 .indexes .ac {
  color: #ec0000;
}

.main.mall .section3 .section-next{  margin: 0px auto; padding: 0px 50px;}

.main.mall .section3 .section-next .next-l {
  width: 32%;
  padding: 0 30px;
}
.main.mall .section3 .section-next .next-l .r-title {
  margin-bottom: 46px;
}
.main.mall .section3 .section-next .next-l .r-title p {
  font-size: 36px;
  color: #333;
  padding-bottom: 16px;
}
.main.mall .section3 .section-next .next-l .r-title .i {
  display: block;
  width: 36px;
  height: 2px;
  background: #e2070b;
  margin-bottom: 16px;
}
.main.mall .section3 .section-next .next-l .r-title span {
  font-size: 24px;
  color: #999;
}
.main.mall .section3 .section-next .next-l .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
}
.main.mall .section3 .section-next .next-l .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
}
.main.mall .section3 .section-next .next-l .r-brief .btn:hover{background: #e2070b; color: #fff;}
.main.mall .section3 .section-next .next-r {
  width: 68%;
  padding: 0 70px;
}
.main.mall .section3 .section-next .next-r img {
  width: 100%;
}
.main.mall .section4 .section-bg {
  position: absolute;
  top: -140px;
  left: 0;
  transform: translate(0%, 0%);
  z-index: -1;
}
.main.mall .section4 .section-title p {
  font-size: 35px;
  margin-top: 50px;
  color: #333;
  margin-bottom: 20px;
}
.main.mall .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.mall .section4 .section-area{  padding: 0px 100px; margin: 0px auto;}
.main.mall .section4 .section-area .item {
  width: 25%;
  padding: 0 10px;
  padding-top: 50px;
  padding-bottom: 40px;
}
.main.mall .section4 .section-area .item .item-img {
  margin-bottom: 40px;
}
.main.mall .section4 .section-area .item .item-text p {
  font-size: 24px;
  color: #333;
  margin-bottom: 16px;
}
.main.mall .section4 .section-area .item .item-text span {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main.mall .section6 {
  padding-top: 50px;
  padding-bottom: 20px;
  position: relative;
}
.main.mall .section6 .section-bg {
  position: absolute;
  top: -140px;
  right: 0;
  transform: translate(0%, 0%);
  z-index: -1;
}
.main.mall .section6 .section-title {
  padding: 0px 0 100px 0;
  position: relative;
  z-index: 1;
}
.main.mall .section6 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 22px;
}
.main.mall .section6 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.mall .section6 .section-area{  padding: 0px 100px; margin: 0px auto;}
.main.mall .section6 .section-area .area-l {
  width: 44%;
  position: relative;
  z-index: 1;
}
.main.mall .section6 .section-area .area-l .area-text p {
  font-size: 40px;
  color: #555;
  margin-bottom: 50px;
}
.main.mall .section6 .section-area .area-l .area-text span {
  font-size: 22px;
  color: #999;
  margin-bottom: 55px;
}
.main.mall .section6 .section-area .area-l .area-text .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  padding: 0;
  background: #fbfbfb;
}
.main.mall .section6 .section-area .area-l .area-text .btn:hover{background: #d91c1b;
  color: #fff;}
.main.mall .section6 .section-area .area-r {
  width: 56%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.main.mall .section6 .section-area .area-r img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.main.mall .section7 {
  padding-bottom: 50px;
}
.main.mall .section7 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.mall .section7 .section-title {
  padding: 150px 0 50px 0;
}
.main.mall .section7 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 22px;
}
.main.mall .section7 .section-title p .i {
  font-size: 50px;
  color: #e2070b;
}
.main.mall .section7 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.mall .section7 .section-area{  margin: 0px auto; padding: 0px 100px;}
.main.mall .section7 .section-area .area-img {
  width: 100%;
}
.main.mall .section7 .section-area .area-img img {
  width: 100%;
}
.main.mall .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.mall .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.mall .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.mall .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.mall .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.mall .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.mall .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.mall .record-quote {
  position: relative;
  height: 250px;
}
.main.mall .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.mall .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.mall .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.mall .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.mall .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.mall .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.mall .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.mall .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.mall .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.mall .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.mall .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.mall .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.mall .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.mall .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.mall .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.mall .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.mall .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* record */
.main.records {
  background: #f2f2f2;
}
.main.records .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.records .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.records .record-top .record-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.main.records .record-top .record-text .text {
  font-size: 48px;
  color: #fff;
}
.main.records .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.records .indexes {
  margin: 0px auto; padding: 40px 100px;
}
.main.records .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.records .indexes .ac {
  color: #ec0000;
}
.main.records .record-process {
  padding-bottom: 50px;
}
.main.records .record-process .title {
padding-bottom: 50px;
  font-size: 35px;
  color: #333;
}
.main.records .record-process .process-area {
max-width: 1360px; margin: 0px auto; padding: 0px 100px;
}
.main.records .record-process .process-area .item {
  width: 20% !important;
  margin: 0 !important;
  padding: 0 42px;
  position: relative;
}
.main.records .record-process .process-area .item .item-text p {
  font-size: 42px;
  color: #333;
  margin-bottom: 14px;
}
.main.records .record-process .process-area .item .item-text .text {
  font-size: 17px;
  white-space: nowrap;
}
.main.records .record-process .process-area .item img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.main.records .record-process .process-area .item:last-child {
  width: auto !important;
}
.main.records .record-ready {
  position: relative;
  height: 367px;
  padding: 45px 0 50px 0;
  margin-bottom: 14px;
}
.main.records .record-ready .ready-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.records .record-ready .title {
  padding: 20px 0;
  font-size: 35px;
  color: #fff;
}
.main.records .record-ready .ready-area {
  padding: 45px 0;
}
.main.records .record-ready .ready-area .item {
  width: 180px;
}
.main.records .record-ready .ready-area .item .item-img {
  height: 80px;
}
.main.records .record-ready .ready-area .item p {
  font-size: 15px;
  color: #fff;
  padding-top: 24px;
  white-space: nowrap;
}
.main.records .record-ready .ready-next {
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translate(-50%, 50%);
}
.main.records .icp-record {
  position: relative;
  padding: 120px 0px;
  margin-bottom: 14px;
}
.main.records .icp-record .ready-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.records .icp-record .title {
  font-size: 35px;
  color: #fff;
}
.main.records .icp-record .icp-area {
  padding: 55px 0;
}
.main.records .icp-record .icp-area .item {
  width: 200px;
}
.main.records .icp-record .icp-area .item .item-img {
  height: 80px;
}
.main.records .icp-record .icp-area .item p {
  font-size: 15px;
  color: #fff;
  padding-top: 20px;
  white-space: nowrap;
}
.main.records .icp-record .ready-next {
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translate(-50%, 50%);
}
.main.records .icp-permission {
  position: relative;
  padding: 120px 0px;
}
.main.records .icp-permission .ready-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.records .icp-permission .title {
  font-size: 35px;
  color: #fff;
  margin-bottom: 10px;
}
.main.records .icp-permission span {
  font-size: 16px;
  color: #fff;
}
.main.records .icp-permission .icp-area {
  padding: 50px 0;
}
.main.records .icp-permission .icp-area .item {
  width: 210px;
}
.main.records .icp-permission .icp-area .item .item-img {
  height: 80px;
}
.main.records .icp-permission .icp-area .item p {
  font-size: 15px;
  color: #fff;
  padding-top: 20px;
  white-space: nowrap;
}
.main.records .icp-permission .ready-next {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 58px);
}
.main.records .record-requirements {
  padding: 50px 0px;
}
.main.records .record-requirements .title {
  font-size: 35px;
  color: #333;
  margin-bottom: 80px;
}
.main.records .record-requirements .requirements-area .requirements-menu {
  width: 40%;
  padding: 0 120px;
}
.main.records .record-requirements .requirements-area .requirements-menu .item {
  height: 85px;
  padding: 0 20px;
  cursor: pointer;
}
.main.records .record-requirements .requirements-area .requirements-menu .item .i1 {
  display: none;
}
.main.records .record-requirements .requirements-area .requirements-menu .item .i2 {
  display: block;
}
.main.records .record-requirements .requirements-area .requirements-menu .item p {
  padding-left: 12px;
  font-size: 20px;
  color: #333;
}
.main.records .record-requirements .requirements-area .requirements-menu .active {
  background: #fff;
}
.main.records .record-requirements .requirements-area .requirements-menu .active .i1 {
  display: block;
}
.main.records .record-requirements .requirements-area .requirements-menu .active .i2 {
  display: none;
}
.main.records .record-requirements .requirements-area .requirements-menu .active p {
  color: #4037fa;
}
.main.records .record-requirements .requirements-area .requirements-pic {
  width: 60%;
  position: relative;
}
.main.records .record-requirements .requirements-area .requirements-pic .record-bg {
  height: 600px;
  width: 100%;
}
.main.records .record-requirements .requirements-area .requirements-pic .pic {
  position: absolute;
  top: -30px;
  left: -30px;
  height: 100%;
}
.main.records .record-quote {
  position: relative;
  height: 250px;
}
.main.records .record-quote .quote-bg {
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.records .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.records .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.records .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.records .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.records .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.records .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.records .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.records .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.records .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.records .record-introduce {
  padding: 45px 120px 70px 120px;
}
.main.records .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.records .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.records .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.records .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.records .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.records .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* tailored */
.main.tailored {
  background: #f2f2f2;
}
.main.tailored .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.tailored .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.tailored .record-top .record-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.main.tailored .record-top .record-text .text {
  font-size: 48px;
  color: #fff;
}
.main.tailored .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.tailored .gradient-area {
  background: -webkit-linear-gradient(top right, #e3e4e9, #e7e3ea, #e3e3e4);
  background: linear-gradient(to top right, #e3e4e9, #e7e3ea, #e3e3e4);
  /* 标准的语法 */
}
.main.tailored .indexes {
   margin: 0px auto; padding: 40px 100px;
}
.main.tailored .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.tailored .indexes .ac {
  color: #ec0000;
}

.main.tailored .tailored .titles {
  font-size: 32px;
  color: #333;
  padding-bottom: 25px;
}
.main.tailored .tailored span {
  font-size: 14px;
  color: #666;
}
.main.tailored .tailored .tailored-area {
   margin: 0px auto; padding: 50px 100px;
}
.main.tailored .tailored .tailored-area .item {
  width: 33.33%;
  padding: 12px;
  cursor: pointer;
}
.main.tailored .tailored .tailored-area .item .item-padding {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 67.3%;
  position: relative;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 50px;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask .titles {
  font-size: 24px;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask .brief {
  display: none;
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask:hover .brief{ display: block;}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask .item-btn {
  display: none !important;
  width: 188px;
  height: 40px;
  border-radius: 25px;
  padding: 0 18px;
  margin: 0px auto;
  margin-top: 8px;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask:hover .item-btn{ display: block;}

.main.tailored .tailored .tailored-area .item .item-padding .item-mask .item-btn p {
  font-size: 14px;
  color: #333;
}
.main.tailored .tailored .tailored-area .item .item-padding .item-mask .item-btn img {
  margin: 0 8px;
}
.main.tailored .tailored .tailored-area .item:hover .item-padding .item-mask {
  background: rgba(0, 0, 0, 0.3);
}
.main.tailored .tailored .tailored-area .item:hover .item-padding .item-mask .titles {
  margin-bottom: 10px;
}
.main.tailored .tailored .tailored-area .item:hover .item-padding .item-mask .brief {
  display: block;
}
.main.tailored .tailored .tailored-area .item:hover .item-padding .item-mask .item-btn {
  display: flex !important;
}
.main.tailored .section2 {
  background: -webkit-linear-gradient(bottom, #d47324, #d91c1b);
  background: linear-gradient(to bottom, #d47324, #d91c1b);
  /* 标准的语法 */
  padding:50px 0px;
}
.main.tailored .section2 .titles {
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
}
.main.tailored .section2 > span {
  font-size: 14px;
  color: #fff;
}
.main.tailored .section2 .section-area {
  
  margin: 0px auto;
  padding: 0px 100px;
  padding-top: 50px;
}
.main.tailored .section2 .section-area .item {
  width: 24%;
}
.main.tailored .section2 .section-area .item .im {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 20px 30px;
  position: relative;
  z-index: 0;
}

.main.tailored .section2 .section-area .item .im p {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
}
.main.tailored .section2 .section-area .item .im span {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  height: 50px;
  overflow: hidden;
}
.main.tailored .section2 .section-area .item .im:last-child {
  margin-bottom: 0;
}
.main.tailored .section2 .section-area .item2 {
  width: 40%;
}
.main.tailored .section2 .section-area .item2 img {
  width: 100%;
}
.main.tailored .section3 {
  padding:50px 0px;
}
.main.tailored .section3 .titles {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
}
.main.tailored .section3 > span {
  font-size: 14px;
  color: #666;
}
.main.tailored .section3 .section-area {
  
  margin: 0px auto;
  padding: 0px 100px;
  padding-top: 50px;
}
.main.tailored .section3 .section-area .item1 {
  width: 25%;
  padding-right: 5.6%;
  height: 500px;
}
.main.tailored .section3 .section-area .item1 .item-padding {
  position: relative;
  background: -webkit-linear-gradient(bottom, #da1b1b, #de3535, #da1b1b);
  background: linear-gradient(to bottom, #da1b1b, #de3535, #da1b1b);
  /* 标准的语法 */
}
.main.tailored .section3 .section-area .item1 .item-img {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
.main.tailored .section3 .section-area .item1 .item-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
}
.main.tailored .section3 .section-area .item1 .item-text {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 32px 20px;
}
.main.tailored .section3 .section-area .item1 .item-text p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
.main.tailored .section3 .section-area .item1 .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
.main.tailored .section3 .section-area .item2 {
  width: 75%;
}
.main.tailored .section3 .section-area .item2 .im {
  width: 33.33%;
  padding: 13px;
}
.main.tailored .section3 .section-area .item2 .im .im-padding {
  background: #eee;
  padding: 12px 20px;
}
.main.tailored .section3 .section-area .item2 .im .im-padding .im-img {
  height: 80px;
  margin: 22px 0;
}
.main.tailored .section3 .section-area .item2 .im .im-padding .im-img  img{ width: 50px; height: auto;}
.main.tailored .section3 .section-area .item2 .im .im-padding .im-text p {
  font-size: 18px;
  color: #333;
  margin-bottom: 14px;
}
.main.tailored .section3 .section-area .item2 .im .im-padding .im-text span {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
  height: 50px;
  overflow: hidden;
}
.main.tailored .section4 {
  padding: 50px 0;
  position: relative;
  background: url(../image01/tailored-bg01.jpg) no-repeat bottom center; background-size: cover;
}
.main.tailored .section4 .titles {
  font-size: 35px;
  color: #fff;
  margin-bottom: 20px;
}
.main.tailored .section4 > span {
  font-size: 14px;
  color: #fff;
}
.main.tailored .section4 .section-area {
  
  margin: 0px auto;
  padding: 50px 100px;
  padding-bottom: 0px;
}
.main.tailored .section4 .section-area .im {
  width: 25%;
  padding: 0px 1.5%;
  margin-bottom: 30px;
}
.main.tailored .section4 .section-area .im .im-padding {
  border: 4px solid #fff;
  height: 120px;
}
.main.tailored .section4 .section-area .im .im-padding .im-img {
  width: 120px;
  height: 120px;
}
.main.tailored .section4 .section-area .im .im-padding .im-text {
  padding-left: 100px;
  margin-left: -120px;
}
.main.tailored .section4 .section-area .im .im-padding .im-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 12px;
}
.main.tailored .section4 .section-area .im .im-padding .im-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
}
.main.tailored .section5 {
  padding: 50px 0px;
  background: #f6f6f6;
  padding-bottom: 0px;
}
.main.tailored .section5 .titles {
  font-size: 35px;
  color: #333;
  margin-bottom: 20px;
}
.main.tailored .section5 > span {
  font-size: 14px;
  color: #666;
}
.main.tailored .section5 .section-area {

margin: 0px auto;
padding: 50px 100px;
}
.main.tailored .section5 .section-area .im {
  width: 16.66%;
  padding: 0 17px;
  cursor: pointer;
}
.main.tailored .section5 .section-area .im .im-padding {
  position: relative;
}
.main.tailored .section5 .section-area .im .im-padding .im-img {
  width: 100%;
  display: block;
}
.main.tailored .section5 .section-area .im .im-padding .ac {
  display: none;
}
.main.tailored .section5 .section-area .im .im-padding .im-text {
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  padding: 0 15%;
}
.main.tailored .section5 .section-area .im .im-padding .im-text p {
  font-size: 24px;
  color: #666;
  margin-bottom: 12px;
}
.main.tailored .section5 .section-area .im .im-padding .im-text span {
  font-size: 24px;
  color: #666;
  line-height: 1.8;
}
.main.tailored .section5 .section-area .im:hover .im-padding .im-img {
  display: none;
}
.main.tailored .section5 .section-area .im:hover .im-padding .ac {
  display: block;
}
.main.tailored .section5 .section-area .im:hover .im-padding .im-text p {
  color: #fff;
}
.main.tailored .section5 .section-area .im:hover .im-padding .im-text span {
  color: #fff;
}
.main.tailored .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.tailored .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.tailored .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.tailored .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.tailored .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.tailored .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.tailored .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.tailored .record-quote {
  position: relative;
  height: 250px;
}
.main.tailored .record-quote .quote-bg {
  position: absolute;
  top: calc(50% -  10px);
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.tailored .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.tailored .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.tailored .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.tailored .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.tailored .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.tailored .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.tailored .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.tailored .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.tailored .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.tailored .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.tailored .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.tailored .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.tailored .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.tailored .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.tailored .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.tailored .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* analysis */
.main.analysis {
  background: #f2f2f2;
}
.main.analysis .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.analysis .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.analysis .record-top .record-text span {
  font-size: 24px;
  color: #fff;
  display: block;
}
.main.analysis .record-top .record-text p {
  font-size: 48px;
  color: #fff;
}
.main.analysis .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.analysis .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.analysis .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.analysis .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.analysis .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.analysis .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.analysis .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.analysis .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.analysis .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.analysis .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.analysis .section3 .section-bg {
  position: absolute;
  top: 0;
  left: 0;
}
.main.analysis .section3 .indexes {
   margin: 0px auto; padding: 40px 100px;
}
.main.analysis .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.analysis .section3 .indexes .ac {
  color: #ec0000;
}
.main.analysis .section3 .section-next .next-l {
  width: 52.4%;
}
.main.analysis .section3 .section-next .next-l .r-title p {
  font-size: 35px;
  color: #333;
  padding-bottom: 30px;
}
.main.analysis .section3 .section-next .next-l .r-title .i {
  display: block;
  width: 36px;
  height: 2px;
  background: #e2070b;
  margin-bottom: 16px;
}
.main.analysis .section3 .section-next .next-l .r-title span {
  font-size: 22px;
  color: #999;
}
.main.analysis .section3 .section-next .next-l .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}
.main.analysis .section3 .section-next .next-l .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
}
.main.analysis .section3 .section-next .next-r {
  width: 47.6%;
}
.main.analysis .section3 .section-next .next-r img {
  width: 100%;
}
.main.analysis .section4 {
  padding-top: 170px;
  height: 500px;
}
.main.analysis .section4 .sec-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
  z-index: -1;
}
.main.analysis .section4 .section-title p {
  font-size: 40px;
  color: #333;
  margin-bottom: 20px;
}
.main.analysis .section4 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.analysis .section4 .section-area {
   margin: 0px auto; padding: 0px 100px;
}
.main.analysis .section4 .section-area p {
  font-size: 24px;
  color: #fff;
  line-height: 1.8;
  width: 80%;
}
.main.analysis .section6 {
  padding: 50px 0px;
}
.main.analysis .section6 .section-title {
  margin-bottom: 30px;
}
.main.analysis .section6 .section-title p {
  font-size:35px;
  color: #333;
}
.main.analysis .section6 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.analysis .section6 .section-area{  margin: 0px auto; padding: 0px 100px;}
.main.analysis .section6 .section-area .item {
  margin: 20px 0;
  width: 20%;
  height: 150px;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}
.main.analysis .section6 .section-area .item .bg {
  position: absolute;
  top: 50%;
  left: 40%;
  transform: translate(-100%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #e6e6e6;
  z-index: -1;
  transition: background .3s linear;
}
.main.analysis .section6 .section-area .item .item-l {
  font-size: 24px;
  color: #333;
  width: 40%;
}
.main.analysis .section6 .section-area .item .item-r {
  width: 60%;
  padding-left: 20px;
}
.main.analysis .section6 .section-area .item .item-r .width50 {
  width: 50%;
}
.main.analysis .section6 .section-area .item .item-r p {
  font-size: 14px;
  color: #666;
  padding: 0 8px;
  position: relative;
  line-height: 2;
}
.main.analysis .section6 .section-area .item .item-r p::before {
  content: '-';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  color: #666;
}
.main.analysis .section6 .section-area .item:hover {
  width: 20%;
  height: 150px;
  overflow: hidden;
  z-index: 0;
}
.main.analysis .section6 .section-area .item:hover .bg {
  background: #ec0000;
}
.main.analysis .section6 .section-area .item:hover .item-l {
  color: #fff;
}
.main.analysis .section7 {
  padding: 50px 0px;
  height: 600px;
}
.main.analysis .section7 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
  z-index: -1;
}
.main.analysis .section7 .section-title {
  padding: 80px 0 30px 0;
}
.main.analysis .section7 .section-title p {
  font-size: 40px;
  color: #333;
  margin-bottom: 22px;
}
.main.analysis .section7 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.analysis .section7 .section-area{  margin: 0px auto; padding: 0px 100px;}
.main.analysis .section7 .section-area .area-text {
  padding-top: 60px;
  width: 32.4%;
}
.main.analysis .section7 .section-area .area-text img{ width: 50px; height: auto;}
.main.analysis .section7 .section-area .area-text .r-title {
  margin-bottom: 50px;
}
.main.analysis .section7 .section-area .area-text .r-title p {
  font-size: 35px;
  color: #fff;
  text-shadow: 2px 2px 3px #888;
}
.main.analysis .section7 .section-area .area-text .r-brief {
  margin-bottom: 50px;
  text-shadow: 2px 2px 3px #888;
}
.main.analysis .section7 .section-area .area-text .r-brief p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
  text-shadow: 2px 2px 3px #888;
}
.main.analysis .section7 .section-area .area-text .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
}
.main.analysis .section8 {
  background: #f9fafb;
  height: 700px;
}
.main.analysis .section8 .section-area{  margin: 0px auto; padding: 0px 100px; position: relative;}
.main.analysis .section8 .section-area .area-img {
  width: 50%;
  position: relative;
  z-index: 0;
}
.main.analysis .section8 .section-area .area-img .cs-hero-image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  display: -webkit-box;
  display: flex;
  width: 932px;
  height: 565px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  color: #333;
  font-size: 32px;
  line-height: 41px;
  font-weight: 400;
}
.main.analysis .section8 .section-area .area-img img {
  border: 0;
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}
.main.analysis .section8 .section-area .area-img .cs-img-10,
.main.analysis .section8 .section-area .area-img .cs-img-11,
.main.analysis .section8 .section-area .area-img .cs-img-12,
.main.analysis .section8 .section-area .area-img .cs-img-13,
.main.analysis .section8 .section-area .area-img .cs-img-14,
.main.analysis .section8 .section-area .area-img .cs-img-8,
.main.analysis .section8 .section-area .area-img .cs-img-9,
.main.analysis .section8 .section-area .area-img .image-835 {
  position: relative;
}
.main.analysis .section8 .section-area .area-img .cs-img-1 {
  left: -15px;
  top: 411px;
  box-shadow: -8px 8px 15px -3px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
}
.main.analysis .section8 .section-area .area-img .cs-img-1:hover {
  box-shadow: none;
}
.main.analysis .section8 .section-area .area-img .cs-img-1,
.main.analysis .section8 .section-area .area-img .cs-img-2 {
  position: relative;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-14 {
  left: 0;
  top: -11px;
  margin-top: 150px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-2 {
  left: -139px;
  top: 274px;
}
.main.analysis .section8 .section-area .area-img .cs-img-3 {
  position: absolute;
  left: 693px;
  top: 305px;
  border-radius: 6px;
  box-shadow: -7px 7px 8px -4px rgba(0, 0, 0, 0.08);
  -webkit-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
}
.main.analysis .section8 .section-area .area-img .cs-img-3:hover {
  box-shadow: -12px 12px 13px -4px rgba(0, 0, 0, 0.08);
}
.main.analysis .section8 .section-area .area-img .cs-img-4 {
  position: relative;
  left: 337px;
  top: 155px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-5 {
  position: absolute;
  left: 694px;
  top: 193px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-6 {
  position: relative;
  left: 40px;
  top: 82px;
  border-radius: 6px;
  box-shadow: -3px 3px 8px -2px rgba(0, 0, 0, 0.11);
}
.main.analysis .section8 .section-area .area-img .cs-img-7 {
  position: absolute;
  left: 236px;
  top: 383px;
  border-radius: 6px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
}
.main.analysis .section8 .section-area .area-img .cs-img-7:hover {
  box-shadow: -8px 8px 20px -2px rgba(0, 0, 0, 0.18);
}
.main.analysis .section8 .section-area .area-img .cs-img-8 {
  left: 59px;
  top: 276px;
}
.main.analysis .section8 .section-area .area-img .cs-img-9 {
  left: 166px;
  top: -47px;
  z-index: 4;
  border-radius: 6px;
  box-shadow: -29px 29px 60px -7px rgba(28, 33, 36, 0.13);
  -webkit-transition: box-shadow 450ms ease;
  transition: box-shadow 450ms ease;
}
.main.analysis .section8 .section-area .area-img .cs-img-9:hover {
  box-shadow: -85px 85px 220px -7px rgba(28, 33, 36, 0.13);
}
.main.analysis .section8 .section-area .area-img .cs-img-10 {
  left: -119px;
  top: -241px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-11 {
  left: -556px;
  top: 220px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-12 {
  left: 27px;
  top: -32px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-img .cs-img-13 {
  left: 45px;
  bottom: 32px;
  border-radius: 6px;
}
.main.analysis .section8 .section-area .area-text {
  width: 50%;
  padding-left:100px;
  padding-top: 30px;
  position: relative;
  z-index: 0;
}
.main.analysis .section8 .section-area .area-text img{ width: 50px; height: auto;}
.main.analysis .section8 .section-area .area-text .r-title {
  margin-bottom: 30px;
}
.main.analysis .section8 .section-area .area-text .r-title p {
  font-size: 35px;
  color: #333;
}
.main.analysis .section8 .section-area .area-text .r-brief {
  margin-bottom: 50px;
}
.main.analysis .section8 .section-area .area-text .r-brief p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}
.main.analysis .section9 {
 padding: 50px 0px;
 height: 600px;
}
.main.analysis .section9 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
  z-index: -1;
}
.main.analysis .section9 .section-title {
  padding: 80px 0 30px 0;
}
.main.analysis .section9 .section-title p {
  font-size: 40px;
  color: #333;
  margin-bottom: 22px;
}
.main.analysis .section9 .section-title span {
  font-size: 16px;
  color: #999;
}
.main.analysis .section9 .section-area{  margin: 0px auto; padding: 0px 100px;}
.main.analysis .section9 .section-area .area-text {
  width: 32.4%;
}
.main.analysis .section9 .section-area .area-text .r-title {
  margin-top: 100px;
  margin-bottom: 30px;
}
.main.analysis .section9 .section-area .area-text .r-title p {
  font-size: 35px;
  color: #fff;
}
.main.analysis .section9 .section-area .area-text .r-brief {
  margin-bottom: 50px;
}
.main.analysis .section9 .section-area .area-text .r-brief p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
}
.main.analysis .section9 .section-area .area-text .r-brief .btn {
  font-size: 16px;
  color: #555;
  width: 180px;
  height: 60px;
  line-height: 60px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  padding: 0;
}

.main.analysis .section9 .section-area .area-text img{ width: 50px; height: auto;}

.main.analysis .section10 {
  background: #26272b;
  height: 650px;
}
.main.analysis .section10 .section-area .area-img {
  width: 50%;
  position: relative;
  z-index: 0;
}
.main.analysis .section10 .section-area .area-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-29%, -50%);
  z-index: -1;
}
.main.analysis .section10 .section-area .area-text {
  width: 50%;
  padding: 0 9%;
  padding-top: 50px;
  position: relative;
  z-index: 0;
}
.main.analysis .section10 .section-area .area-text .r-title {
  margin-bottom: 50px;
}
.main.analysis .section10 .section-area .area-text .r-title p {
  font-size: 35px;
  color: #fff;
}
.main.analysis .section10 .section-area .area-text .r-brief {
  margin-bottom: 80px;
}
.main.analysis .section10 .section-area .area-text .r-brief p {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
}

.main.analysis .section10 .section-area .area-text img{ width: 50px; height: auto;}

.main.analysis .section11 {
  background: #e5e5ed;
  margin-bottom: 50px;
}
.main.analysis .section11 .section-title {
  padding:50px 0px;
}
.main.analysis .section11 .section-title p {
  font-size: 35px;
  color: #333;
}
.main.analysis .section11 .section-area .area-top {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.main.analysis .section11 .section-area .area-top p {
  cursor: pointer;
  margin: 0 55px;
  width: 200px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  font-size: 20px;
  color: #333;
}
.main.analysis .section11 .section-area .area-top .active {
  color: #fff;
  background: #ec0000;
}
.main.analysis .section11 .section-area .area-img {
  position: relative;
  height: 640px;
}
.main.analysis .section11 .section-area .area-img .img-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -12px;
}
.main.analysis .section11 .section-area .area-img .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -56px;
}
.main.analysis .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.analysis .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.analysis .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.analysis .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.analysis .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.analysis .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.analysis .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.analysis .record-quote {
  position: relative;
  height: 250px;
}
.main.analysis .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.analysis .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.analysis .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.analysis .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.analysis .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.analysis .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.analysis .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.analysis .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.analysis .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.analysis .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.analysis .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.analysis .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.analysis .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.analysis .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.analysis .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.analysis .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.analysis .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* service */
.main.service {
  background: #f2f2f2;
}
.main.service .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.service .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main.service .record-top .record-text p {
  font-size: 60px;
  color: #fff;
  margin-bottom: 45px;
}
.main.service .record-top .record-text span {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  white-space: nowrap;
}
.main.service .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.service .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.service .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.service .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.service .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.service .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.service .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.service .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.service .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.service .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.service .section3 {
  background: url(../image01/service-01.png) no-repeat top center #fff; background-size: cover;
}

.main.service .section3 .indexes {
  margin: 0px auto; padding: 40px 100px;
}
.main.service .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.service .section3 .indexes .ac {
  color: #ec0000;
}
.main.service .section3 .section-next {
  padding-bottom: 50px;
  position: relative;
  z-index: 0;
}
.main.service .section3 .section-next .next-l {
  width: 45%;
  padding: 0 6%;
}
.main.service .section3 .section-next .next-l .r-title {
  margin-bottom: 60px;
}
.main.service .section3 .section-next .next-l .r-title span {
  font-size: 24px;
  color: #333;
  margin-bottom: 14px;
  text-align: end;
}
.main.service .section3 .section-next .next-l .r-title img {
  margin-bottom: 20px;
  width: 80%;
}
.main.service .section3 .section-next .next-l .r-title i {
  display: block;
  width: 40px;
  height: 4px;
  background: #e2070b;
}
.main.service .section3 .section-next .next-l .r-brief p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  text-align: end;
}
.main.service .section3 .section-next .next-r {
  width: 58.4%;
  position: relative;
}
.main.service .section3 .section-next .next-r img {

  width: 100%;
}
.main.service .section4 {
  padding: 0px 100px;
}
.main.service .section4 .item{ margin-bottom: 50px;}

.main.service .section4 .item .item-area {
  height: 550px;
  overflow: hidden;
  position: relative;
}
.main.service .section4 .item .item-area .area-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  z-index: -1;
}
.main.service .section4 .item .item-area .area-l,
.main.service .section4 .item .item-area .area-r {
  width: 47%;
  padding: 0 8.6%;
}
.main.service .section4 .item .item-area .area-l p,
.main.service .section4 .item .item-area .area-r p {
  font-size: 40px;
  color: #fff;
  margin-bottom: 40px;
}
.main.service .section4 .item .item-area .area-l span,
.main.service .section4 .item .item-area .area-r span {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  display: block;
  margin-bottom: 40px;
}
.main.service .section4 .item .item-area .area-l .service-btn,
.main.service .section4 .item .item-area .area-r .service-btn {
  cursor: pointer;
  width: 240px;
  height: 58px;
  line-height: 58px;
  border: 4px solid #fff;
  border-radius: 58px;
  padding: 0 60px 0 50px;
}
.main.service .section4 .item .item-area .area-l .service-btn p,
.main.service .section4 .item .item-area .area-r .service-btn p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}
.main.service .section4 .item1 .item-area .area-l p {
  color: #fff;
}
.main.service .section4 .item1 .item-area .area-l span {
  color: #fff;
}
.main.service .section4 .item1 .item-area .area-l .service-btn {
  border: 3px solid #fff;
}
.main.service .section4 .item1 .item-area .area-l .service-btn p {
  color: #fff;
}
.main.service .section4 .item2 .item-area .area-r p {
  color: #fff;
}
.main.service .section4 .item2 .item-area .area-r span {
  color: #fff;
}
.main.service .section4 .item2 .item-area .area-r .ims {
  height: 150px;
}
.main.service .section4 .item2 .item-area .area-r .ims p {
  width: 50%;
  font-size: 15px;
  color: #fff;
  padding-left: 8px;
  margin-bottom: 0;
  position: relative;
  line-height: 35px;
}
.main.service .section4 .item2 .item-area .area-r .ims p::before {
  content: '';
  display: block;
  width: 2px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 16px;
  left: 0;
}
.main.service .section4 .item2 .item-area .area-r .service-btn {
  border: 3px solid #fff;
}
.main.service .section4 .item2 .item-area .area-r .service-btn p {
  color: #fff;
}
.main.service .section4 .item3 .item-area .area-l p {
  color: #333;
}
.main.service .section4 .item3 .item-area .area-l span {
  color: #333;
}
.main.service .section4 .item3 .item-area .area-l .service-btn {
  border: 3px solid #333;
}
.main.service .section4 .item3 .item-area .area-l .service-btn p {
  color: #333;
}
.main.service .section4 .item4 .item-area .area-r p {
  color: #fff;
}
.main.service .section4 .item4 .item-area .area-r span {
  color: #fff;
}
.main.service .section4 .item4 .item-area .area-r .service-btn {
  border: 3px solid #fff;
}
.main.service .section4 .item4 .item-area .area-r .service-btn p {
  color: #fff;
}
.main.service .section4 .item5 .item-area .area-l p {
  color: #333;
}
.main.service .section4 .item5 .item-area .area-l span {
  color: #333;
}
.main.service .section4 .item5 .item-area .area-l .service-btn {
  border: 3px solid #333;
}
.main.service .section4 .item5 .item-area .area-l .service-btn p {
  color: #333;
}
.main.service .section4 .item .item-area .area-l .service-btn:hover,
.main.service .section4 .item .item-area .area-r .service-btn:hover {
  border: 4px solid #e2070b;
  background: #e2070b;
}
.main.service .section4 .item .item-area .area-l .service-btn:hover p,
.main.service .section4 .item .item-area .area-r .service-btn:hover p {
  color: #fff;
}
.main.service .section4 .item .item-area .area-l .service-btn:hover .arrw,
.main.service .section4 .item .item-area .area-r .service-btn:hover .arrw {
  display: block;
}
.main.service .section4 .item .item-area .area-l .service-btn:hover .arrb,
.main.service .section4 .item .item-area .area-r .service-btn:hover .arrb {
  display: none;
}
.main.service .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.service .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.service .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.service .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.service .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.service .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.service .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.service .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.service .record-quote {
  position: relative;
  height: 250px;
}
.main.service .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.service .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.service .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.service .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.service .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.service .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.service .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.service .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.service .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.service .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.service .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.service .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.service .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.service .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.service .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.service .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.service .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
/* visual */
.main.visual {
  background: #f2f2f2;
}
.main.visual .record-top {
  position: relative;
  height: 410px;
  overflow: hidden;
}
.main.visual .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main.visual .record-top .record-text p {
  font-size: 60px;
  color: #fff;
  margin-bottom: 45px;
}
.main.visual .record-top .record-text span {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.9);
  display: block;
  white-space: nowrap;
}
.main.visual .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}
.main.visual .section2 {
  height: 50px;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 8;
}
.main.visual .section2 .section-l .home {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  margin-right: -1px;
}
.main.visual .section2 .section-l .web-menu {
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  width: 250px;
}
.main.visual .section2 .section-l .web-menu .web-current {
  padding: 0 18px;
  cursor: pointer;
}
.main.visual .section2 .section-l .web-menu .web-current p {
  font-size: 16px;
  color: #333;
}
.main.visual .section2 .section-l .web-menu .web-area {
  top: 50px;
  left: 0;
}
.main.visual .section2 .section-l .web-menu .web-area p {
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%;
  text-align: center;
  background: #fff;
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #e5e5e5;
}
.main.visual .section2 .section-l .web-menu .web-area p:hover {
  color: #e2070b;
}
.main.visual .section2 .section-r {
  padding: 0 14px;
  border-left: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
}
.main.visual .section3 {
  padding-left: 0 !important;
}
.main.visual .section3 .sec-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
}
.main.visual .section3 .indexes {
  margin: 0px auto; padding: 40px 100px;
}
.main.visual .section3 .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.visual .section3 .indexes .ac {
  color: #ec0000;
}
.main.visual .section3 .section-next {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 0;
}
.main.visual .section3 .section-next .next-l {
  width: 55%;
  position: relative;
}
.main.visual .section3 .section-next .next-l img {
  width: 100%;
}
.main.visual .section3 .section-next .next-r {
  width: 45%;
  padding: 0 2.5%;
  padding-right: 100px;
}
.main.visual .section3 .section-next .next-r .r-title {
  margin-bottom: 20px;
}
.main.visual .section3 .section-next .next-r .r-title span {
  font-size: 22px;
  color: #333;
  margin-bottom: 14px;
}
.main.visual .section3 .section-next .next-r .r-title p {
  font-size: 70px;
  color: #333;
  margin-bottom: 20px;
}
.main.visual .section3 .section-next .next-r .r-title img {
  margin-bottom: 20px;
  width: 80%;
  max-width: 430px;
}
.main.visual .section3 .section-next .next-r .r-title i {
  display: block;
  width: 40px;
  height: 4px;
  background: #e2070b;
}
.main.visual .section3 .section-next .next-r .r-brief p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
}
.main.visual .section4 {
  padding: 0px 100px;
  padding-top: 50px;
}
.main.visual .section4 .sec-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  min-width: 100%;
  z-index: -1;
}
.main.visual .section4 .section-title {
 margin: 0px auto; padding: 0px 100px; padding-bottom: 40px;
}
.main.visual .section4 .section-title p {
  font-size: 35px;
  color: #333;
  margin-bottom: 10px;
}
.main.visual .section4 .section-title i {
  width: 40px;
  height: 4px;
  display: block;
  background: #e2070b;
  margin-bottom: 10px;
}
.main.visual .section4 .section-title span {
  font-size: 15px;
  color: #999;
}
.main.visual .section4 .item { padding-bottom: 50px;
}
.main.visual .section4 .item .item-area {
  height: 550px;
   margin: 0px auto; padding: 0px 100px;
  overflow: hidden;
  position: relative;
}
.main.visual .section4 .item .item-area .area-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  min-width: 100%;
  z-index: -1;
}
.main.visual .section4 .item .item-area .area-l {
  width: 47%;
  padding-right:8.6%;
}

.main.visual .section4 .item .item-area .area-r {
  width: 47%;
  padding-left:8.6%;
}
.main.visual .section4 .item .item-area .area-l p,
.main.visual .section4 .item .item-area .area-r p {
  font-size: 40px;
  color: #fff;
  margin-bottom: 40px;
}
.main.visual .section4 .item .item-area .area-l span,
.main.visual .section4 .item .item-area .area-r span {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  display: block;
  margin-bottom: 40px;
}
.main.visual .section4 .item .item-area .area-l .service-btn,
.main.visual .section4 .item .item-area .area-r .service-btn {
  cursor: pointer;
  width: 240px;
  height: 58px;
  line-height: 58px;
  border: 4px solid #fff;
  border-radius: 58px;
  padding: 0 60px 0 50px;
}
.main.visual .section4 .item .item-area .area-l .service-btn p,
.main.visual .section4 .item .item-area .area-r .service-btn p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}
.main.visual .section4 .item3 .item-area .area-l p {
  color: #fff;
}
.main.visual .section4 .item3 .item-area .area-l span {
  color: #fff;
}
.main.visual .section4 .item3 .item-area .area-l .service-btn {
  border: 3px solid #fff;
}
.main.visual .section4 .item3 .item-area .area-l .service-btn p {
  color: #fff;
}
.main.visual .section4 .item4 .item-area {
  background: #252d1a;
}
.main.visual .section4 .item4 .item-area .area-l {
  width: 53%;

  position: relative;
  z-index: 0;
}
.main.visual .section4 .item4 .item-area .area-l img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.main.visual .section4 .item4 .item-area .area-r {
  position: relative;
  z-index: 0;
}
.main.visual .section4 .item4 .item-area .area-r p {
  color: #fff;
}
.main.visual .section4 .item4 .item-area .area-r span {
  color: #fff;
}
.main.visual .section4 .item4 .item-area .area-r .service-btn {
  border: 3px solid #fff;
}
.main.visual .section4 .item4 .item-area .area-r .service-btn p {
  color: #fff;
}
.main.visual .section4 .item .item-area .area-l .service-btn:hover,
.main.visual .section4 .item .item-area .area-r .service-btn:hover {
  border: 4px solid #e2070b;
  background: #e2070b;
}
.main.visual .section4 .item .item-area .area-l .service-btn:hover p,
.main.visual .section4 .item .item-area .area-r .service-btn:hover p {
  color: #fff;
}
.main.visual .section4 .item .item-area .area-l .service-btn:hover .arrw,
.main.visual .section4 .item .item-area .area-r .service-btn:hover .arrw {
  display: block;
}
.main.visual .section4 .item .item-area .area-l .service-btn:hover .arrb,
.main.visual .section4 .item .item-area .area-r .service-btn:hover .arrb {
  display: none;
}
.main.visual .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.visual .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.visual .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.visual .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.visual .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.visual .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.visual .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.visual .record-quote {
  position: relative;
  height: 250px;
}
.main.visual .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.visual .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.visual .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.visual .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.visual .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.visual .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.visual .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.visual .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.visual .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.visual .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.visual .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.visual .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.visual .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.visual .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.visual .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.visual .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.visual .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* brand */
@media (max-width: 1680px) {
  .main.brand .record-process .process-area {
    padding: 40px 156px;
  }
  .main.brand .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 1440px) {
  .main.brand .record-process .process-area {
    padding: 40px 156px;
  }
  .main.brand .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1280px) {
  .main.brand .record-process .process-area {
    padding: 40px 106px;
  }
  .main.brand .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.brand .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1024px) {
  .main.brand .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.brand .record-process .process-area {
    padding: 40px 56px;
  }
}
/* chain */
@media (max-width: 1680px) {
  .main.chain .record-process .process-area {
    padding: 40px 156px;
  }
  .main.chain .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.chain .record-process .process-area {
    padding: 40px 156px;
  }
  .main.chain .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.chain .record-process .process-area {
    padding: 40px 106px;
  }
  .main.chain .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.chain .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.chain .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.chain .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.chain .record-process .process-area {
    padding: 40px 56px;
  }
}
/* commerce */
@media (max-width: 1680px) {
  .main.commerce .record-process .process-area {
    padding: 40px 156px;
  }
  .main.commerce .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.commerce .record-process .process-area {
    padding: 40px 156px;
  }
  .main.commerce .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.commerce .record-process .process-area {
    padding: 40px 106px;
  }
  .main.commerce .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.commerce .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.commerce .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.commerce .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.commerce .record-process .process-area {
    padding: 40px 56px;
  }
}
/* development */
@media (max-width: 1680px) {
  .main.development .record-process .process-area {
    padding: 40px 156px;
  }
  .main.development .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.development .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.development .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.development .record-process .process-area {
    padding: 40px 156px;
  }
  .main.development .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.development .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.development .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.development .record-process .process-area {
    padding: 40px 106px;
  }
  .main.development .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.development .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.development .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.development .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.development .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.development .record-process .process-area {
    padding: 40px 56px;
  }
}
/* digital */
@media (max-width: 1680px) {
  .main.digital .record-process .process-area {
    padding: 40px 156px;
  }
  .main.digital .operation-plan {
    padding-bottom: 28.7%;
  }
}
@media (max-width: 1440px) {
  .main.digital .record-process .process-area {
    padding: 40px 156px;
  }
  .main.digital .operation-plan {
    padding-bottom: 30.7%;
  }
}
@media (max-width: 1280px) {
  .main.digital .record-process .process-area {
    padding: 40px 106px;
  }
  .main.digital .operation-plan {
    padding-bottom: 32.7%;
  }
}
@media (max-width: 1024px) {
  .main.digital .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.digital .record-process .process-area {
    padding: 40px 56px;
  }
}
/* email */
@media (max-width: 1680px) {
  .main.email .record-process .process-area {
    padding: 40px 156px;
  }
  .main.email .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }

  .main.mall .section7 .section-title {
    padding: 50px 0 50px 0;
  }

  .main.enterprise .record-top .record-text p{ font-size: 60px;}

}
@media (max-width: 1440px) {
  .main.email .record-process .process-area {
    padding: 40px 156px;
  }
  .main.email .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .main.brand .record-top .record-text p{ font-size: 60px;}
  .main.mall .record-top .record-text p{ font-size: 60px;}

  .main.enterprise .section4 .section-area .item .item-img img{ width: 145px; height: 145px;}
  .main.enterprise .section4 .section-area .item .item-text p{ font-size: 20px;}
  .main.enterprise .section4 .section-area .item .item-text span{ font-size: 14px;}

  .main.brand .section4 .section-area .item .item-img img{ width: 145px; height: 145px;}
  .main.brand .section4 .section-area .item .item-text p{ font-size: 20px;}
  .main.brand .section4 .section-area .item .item-text span{ font-size: 14px;}

  .main.mall .section4 .section-area .item .item-img img{ width: 145px; height: 145px;}
  .main.mall .section4 .section-area .item .item-text p{ font-size: 20px;}
  .main.mall .section4 .section-area .item .item-text span{ font-size: 14px;}


  .main.tailored .section4 .section-area .im .im-padding .im-img{ width: 50px; height: 140px;}
  .main.tailored .section4 .section-area .im .im-padding .im-img img{ width: 60%;}
  .main.tailored .section4 .section-area .im .im-padding .im-text{padding-left: 80px;
     margin-left: -80px; }
     .main.tailored .section4 .section-area .im .im-padding .im-text p{ font-size: 20px;}

     

}
@media (max-width: 1280px) {
  .main.email .record-process .process-area {
    padding: 40px 106px;
  }
  .main.email .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.email .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1024px) {
  .main.email .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.email .record-process .process-area {
    padding: 40px 56px;
  }
}
/* enterprise */
@media (max-width: 1680px) {
  .main.enterprise .record-process .process-area {
    padding: 40px 156px;
  }
  .main.enterprise .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.enterprise .record-process .process-area {
    padding: 40px 156px;
  }
  .main.enterprise .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }

  .main.enterprise .section8 .section-area .item .im .icons{ width: 50px; height: 50px; padding: 0px;}
  .main.enterprise .section8 .section-area .item .im .icons img{ width: 100%; height: 100%;}
  .main.enterprise .section8 .section-area .item .im .icons p{ width: 50px; height: 50px; line-height: 50px; display: block;}
  .main.enterprise .section3 .section-next .next-l .r-title p{ font-size: 32px;}
  .main.enterprise .section3 .section-next .next-l .r-title span{ font-size: 20px;}
  .main.enterprise .section3 .section-next .next-l .r-brief p{ font-size: 14px;}
  .main.enterprise .section7 .section-area .area-text .r-brief p{ font-size: 14px;}

  .main.brand .section3 .section-next .next-r .r-title p{ font-size: 32px;}
  .main.brand .section3 .section-next .next-r .r-title span{ font-size: 20px;}
  .main.brand .section3 .section-next .next-r .r-brief p{ font-size: 14px;}

  .main.mall .section3 .section-next .next-l .r-title{ margin-bottom: 30px;}
  .main.mall .section3 .section-next .next-l .r-title p{font-size: 32px;}
  .main.mall .section3 .section-next .next-l .r-title span{ font-size: 20px;}
  .main.mall .section3 .section-next .next-l .r-brief p{ font-size: 14px;}


  .main.brand .section5 .section-swiper{ height: 685px;}
  .main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title p{ font-size: 32px;}
  .main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-title span{ font-size: 20px;}
  .main.brand .section5 .section-swiper .swiper-container .swiper-wrapper .swiper-slide .slide-text .r-brief p{ font-size: 14px;}


  .main.visual .section3 .section-next {
    align-items: flex-end;
  }

  .main.mall .section6 .section-area .area-l .area-text p {
    font-size: 32px;
    color: #555;
    margin-bottom: 30px;
  }
  .main.mall .section6 .section-area .area-l .area-text span{ font-size: 20px; margin-bottom: 30px;}

  .main.brand .section6 .section-area .area-text p {
    font-size: 32px;
    color: #555;
    margin-bottom: 30px;
  }
  .main.brand .section6 .section-area .area-text span{ font-size: 20px; margin-bottom: 30px;}

}
@media (max-width: 1280px) {
  .main.enterprise .record-process .process-area {
    padding: 40px 106px;
  }
  .main.enterprise .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.enterprise .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.enterprise .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.enterprise .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.enterprise .record-process .process-area {
    padding: 40px 56px;
  }
}
/* mall */
@media (max-width: 1680px) {
  .main.mall .record-process .process-area {
    padding: 40px 156px;
  }
  .main.mall .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.mall .record-process .process-area {
    padding: 40px 156px;
  }
  .main.mall .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.mall .record-process .process-area {
    padding: 40px 106px;
  }
  .main.mall .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.mall .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.mall .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.mall .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.mall .record-process .process-area {
    padding: 40px 56px;
  }
}

/* tailored */
@keyframes borderAni {
  0% {
    border: 0px solid rgba(255, 255, 255, 0.1);
  }
  40% {
    border: 0px solid rgba(255, 255, 255, 0.1);
  }
  100% {
    border: 75px solid rgba(255, 255, 255, 0);
  }
}
@media (max-width: 1680px) {
  .main.tailored .record-process .process-area {
    padding: 40px 156px;
  }
  .main.tailored .section2 .section-area .item {
    width: 30%;
  }
  .main.tailored .section2 .section-area .item2 {
    width: 30%;
  }
  .main.tailored .section3 .section-area .item1 .item-text {
    bottom: 20%;
  }
  .main.tailored .section5 .section-area .im .im-padding .im-text span {
    font-size: 20px;
  }
}
@media (max-width: 1440px) {
  .main.tailored .record-process .process-area {
    padding: 40px 156px;
  }
  .main.tailored .section3 .section-area .item1 .item-text {
    bottom: 15%;
  }
  .main.tailored .section5 .section-area .im .im-padding .im-text span {
    font-size: 18px;
  }
}
@media (max-width: 1280px) {
  .main.tailored .record-process .process-area {
    padding: 40px 106px;
  }
  .main.tailored .section2 .section-area .item {
    width: 40%;
    position: relative;
    z-index: 8;
  }
  .main.tailored .section2 .section-area .item2 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
  }
  .main.tailored .section3 .section-area .item1 .item-text {
    bottom: 20%;
  }
  .main.tailored .section5 .section-area .im .im-padding .im-text span {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.tailored .record-process .process-area {
    padding: 40px 106px;
  }
  .main.tailored .section3 .section-area .item1 .item-text {
    bottom: 20%;
  }
  .main.tailored .section5 .section-area .im .im-padding .im-text span {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .main.tailored .record-process .process-area {
    padding: 40px 56px;
  }
}
/* analysis */
@media (max-width: 1680px) {
  .main.analysis .record-process .process-area {
    padding: 40px 156px;
  }
  .main.analysis .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.analysis .record-process .process-area {
    padding: 40px 156px;
  }
  .main.analysis .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.analysis .record-process .process-area {
    padding: 40px 106px;
  }
  .main.analysis .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.analysis .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.analysis .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.analysis .record-process .process-area {
    padding: 40px 106px;
  }
}
@media (max-width: 768px) {
  .main.analysis .record-process .process-area {
    padding: 40px 56px;
  }
}
/* service */
@media (max-width: 1680px) {
  .main.service .record-process .process-area {
    padding: 40px 156px;
  }
  .main.service .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.service .section8 .section-area .item .im .im-text .im-title {
    font-size: 28px;
  }
  .main.service .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 16px;
  }
}
@media (max-width: 1440px) {
  .main.service .record-process .process-area {
    padding: 40px 156px;
  }
  .main.service .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.service .section8 .section-area .item .im .im-text .im-title {
    font-size: 24px;
  }
  .main.service .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1280px) {
  .main.service .record-process .process-area {
    padding: 40px 106px;
  }
  .main.service .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.service .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .main.service .section8 .section-area .item .im .im-text .im-title {
    font-size: 20px;
  }
  .main.service .section8 .section-area .item .im .im-text .im-brief p {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .main.service .record-process .process-area {
    padding: 40px 106px;
  }
  .main.service .section3 .section-next .next-l .r-title img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main.service .record-process .process-area {
    padding: 40px 56px;
  }
}
/* visual */
@media (max-width: 1680px) {
  .main.visual .record-process .process-area {
    padding: 40px 156px;
  }
  .main.visual .operation-plan {
    padding-bottom: 28.7%;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
}
@media (max-width: 1440px) {
  .main.visual .record-process .process-area {
    padding: 40px 156px;
  }
  .main.visual .operation-plan {
    padding-bottom: 30.7%;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 20px;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1280px) {
  .main.visual .record-process .process-area {
    padding: 40px 106px;
  }
  .main.visual .operation-plan {
    padding-bottom: 32.7%;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img {
    padding-top: 0;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-img .padding-img img {
    transform: scale(0.8);
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-text p {
    margin-bottom: 10px;
  }
  .main.visual .email-superiority .superiority-area .item .item-padding .item-area .item-text span {
    height: 24px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (max-width: 1024px) {
  .main.visual .record-process .process-area {
    padding: 40px 106px;
  }
  .main.visual .section3 .section-next .next-r .r-title img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .main.visual .record-process .process-area {
    padding: 40px 56px;
  }
}



/* server */
.main.server {
  background: #f2f2f2;
}
.main.server .record-top {
  position: relative;
  height: 520px;
}
.main.server .record-top .record-text {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translate(0, -50%);
}
.main.server .record-top .record-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
}
.main.server .record-top .record-text .text {
  font-size: 48px;
  color: #fff;
}
.main.server .record-top img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
.main.server .indexes {
 margin: 0px auto; padding: 40px 100px;
}
.main.server .indexes p {
  font-size: 14px;
  color: #8e94a3;
}
.main.server .indexes .ac {
  color: #ec0000;
}
.main.server .section2 .sec-area {
  height: 375px;
  margin-top: -50px;
  background: url(../image01/server-01.png) no-repeat; background-size: cover; background-position: top right;
}
.main.server .section2 .sec-area .sec-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main.server .section2 .sec-area .sec-text {
  padding-left: 30px;
  height: 375px;
}
.main.server .section2 .sec-area .sec-text p {
  font-size: 40px;
  color: #fff;
  margin-bottom: 32px;
}
.main.server .section2 .sec-area .sec-text span {
  font-size: 16px;
  color: #fff;
  line-height: 1.8;
}
.main.server .email-packages {
  padding: 70px 0 50px 0;
}
.main.server .email-packages .titles {
  font-size: 42px;
  color: #333;
  margin-bottom: 24px;
}
.main.server .email-packages > span {
  font-size: 14px;
  color: #999;
  margin-bottom: 148px;
}
.main.server .email-packages .packages-area{  margin: 0px auto; padding: 0px 100px;}
.main.server .email-packages .packages-area .item {
  width: 25%;
  padding: 0 20px;
  border: 1px solid #dedede;
  margin-right: -1px;
  transition: transform .2s linear;
  cursor: pointer;
}
.main.server .email-packages .packages-area .item .item-padding {
  padding: 20px 0;
}
.main.server .email-packages .packages-area .item .item-padding .item-top {
  padding: 10px 0;
  border-bottom: 1px solid #dedede;
}
.main.server .email-packages .packages-area .item .item-padding .item-top p {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}
.main.server .email-packages .packages-area .item .item-padding .item-top span {
  font-size: 14px;
  color: #999;
}
.main.server .email-packages .packages-area .item .item-padding .item-text {
  padding: 15px 0 15px 0;
  overflow: hidden;
}
.main.server .email-packages .packages-area .item .item-padding .item-text .description {
  font-size: 14px;
  color: #333;
  line-height: 30px;
}
.main.server .email-packages .packages-area .item .item-padding .item-text .description p {
  font-size: 14px;
  color: #333;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main.server .email-packages .packages-area .item .item-padding .item-text .description .i {
  color: #e2070b;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy {
  padding-top: 20px;
  border-top: 1px solid #dedede;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy .new {
  font-size: 16px;
  color: #e2070b;
  margin-bottom: 15px;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy .price {
  font-size: 20px;
  color: #e2070b;
  margin-bottom: 20px;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy .price > span {
  font-size: 40px;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy .buy {
  width: 40%;
  height: 40px;
  line-height: 40px;
  border-radius: 23px;
  background: #5495de;
  font-size: 15px;
  color: #fff;
  display: inline-block;
}
.main.server .email-packages .packages-area .item .item-padding .item-buy > span {
  font-size: 14px;
  color: #fff;
}
.main.server .email-packages .packages-area .active {
  box-shadow: 0px 0px 40px 0px #e2070b;
  z-index: 8;
  transform: scale(1.15, 1.08);
  background: #e2070b;
  border: 1px solid #e2070b;
}
.main.server .email-packages .packages-area .active .cloud {
  display: block;
  width: 185px;
  position: absolute;
  top: -28px;
  right: 0;
}
.main.server .email-packages .packages-area .active .person {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-50%, 0);
}
.main.server .email-packages .packages-area .active .item-padding .item-top p {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-top span {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-text .description {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-text .description p {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-text .description .i {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-buy .new {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-buy .price {
  color: #fff;
}
.main.server .email-packages .packages-area .active .item-padding .item-buy .buy {
  background: #fff;
  color: #e2070b;
  margin-bottom: 14px;
}
.main.server .email-packages .packages-area .active .item-padding .item-buy > span {
  display: block;
}
.main.server .section4 {
  padding: 50px 0px;
}
.main.server .section4 .sec-area {
  padding: 50px 0px;
}
.main.server .section4 .sec-area .sec-l {
  width: 50%;
  height: 100%;
  padding: 0 100px;
  padding-right: 220px;
  border-right: 2px solid #f2f2f2;
}
.main.server .section4 .sec-area .sec-l .sec-title p {
  font-size: 24px;
  color: #333;
  margin-bottom: 24px;
}
.main.server .section4 .sec-area .sec-l .sec-title i {
  width: 65px;
  height: 2px;
  display: block;
  background: #e2070b;
}
.main.server .section4 .sec-area .sec-l .sec-item .item {
  height: 74px;
  border-bottom: 1px solid #f2f2f2;
}
.main.server .section4 .sec-area .sec-l .sec-item .item p {
  font-size: 18px;
  color: #333;
  width: 180px;
  line-height: 1.8;
}
.main.server .section4 .sec-area .sec-l .sec-item .item span {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.main.server .section4 .sec-area .sec-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 30px solid #f2f2f2;
  border-radius: 50%;
}
.main.server .section4 .sec-area .sec-c p {
  font-size: 110px;
  color: #fff;
  background: #e2070b;
  width: 244px;
  height: 244px;
  line-height: 244px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 0 40px 0 rgba(226, 7, 11, 0.4);
}
.main.server .section4 .sec-area .sec-r {
  width: 50%;
  padding: 0 90px;
  padding-left: 220px;
  height: 100%;
}
.main.server .section4 .sec-area .sec-r .sec-title p {
  font-size: 24px;
  color: #333;
  margin-bottom: 24px;
}
.main.server .section4 .sec-area .sec-r .sec-title i {
  width: 65px;
  height: 2px;
  display: block;
  background: #e2070b;
}
.main.server .section4 .sec-area .sec-r .sec-item .item {
  height: 74px;
  border-bottom: 1px solid #f2f2f2;
}
.main.server .section4 .sec-area .sec-r .sec-item .item p {
  font-size: 18px;
  color: #333;
  width: 180px;
  line-height: 1.8;
}
.main.server .section4 .sec-area .sec-r .sec-item .item span {
  font-size: 14px;
  color: #333;
  line-height: 1.8;
}
.main.server .section5 {
  padding-top: 50px;
  padding-bottom: 10px;
}
.main.server .section5 .section-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  z-index: -1;
}
.main.server .section5 .titles {
  font-size: 35px;
  color: #333;
  margin-bottom: 50px;
}
.main.server .section5 > span {
  font-size: 14px;
  color: #fff;
}
.main.server .section5 .func-area{  margin: 0px auto; padding: 0px 60px;}
.main.server .section5 .func-area .item {
  width: 33.33%;
  padding: 0 40px;
  cursor: pointer;
}
.main.server .section5 .func-area .item .item-padding {
  width: 100%;
  height: auto;
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.main.server .section5 .func-area .item .item-padding .item-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  display: none;
  z-index: -1;
}
.main.server .section5 .func-area .item .item-padding .item-area .item-img {
  height: 80px;
  margin-bottom: 15px;
}
.main.server .section5 .func-area .item .item-padding .item-area .item-text {
  margin-bottom: 50px;
}
.main.server .section5 .func-area .item .item-padding .item-area .item-text p {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}
.main.server .section5 .func-area .item .item-padding .item-area .item-text i {
  width: 20px;
  height: 2px;
  display: block;
  background: #e2070b;
  margin-bottom: 15px;
}
.main.server .section5 .func-area .item .item-padding .item-area .item-text span {
  font-size: 15px;
  color: #333;
  line-height: 26px;
}
.main.server .case {
  position: relative;
  height: 511px;
  padding-bottom: 60px;
  margin-bottom: 56px;
}
.main.server .case .articles-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  height: 100%;
  z-index: -1;
}
.main.server .case .titles {
  font-size: 42px;
  color: #fff;
  padding: 70px 0;
}
.main.server .case .case-area .swiper-container {
  padding: 12px 0 92px 0;
}
.main.server .case .case-area .swiper-container .swiper-wrapper {
  margin: 0 -54px;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item {
  padding: 0 54px;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-img {
  width: 260px;
  height: 166px;
  background: #fff;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text {
  width: 100%;
  margin-left: -260px;
  padding-left: 298px;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text p {
  font-size: 24px;
  color: #fff;
  margin-bottom: 24px;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide .item .item-text span {
  font-size: 14px;
  color: #fff;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: block;
  height: 78px;
}
.main.server .case .case-area .swiper-container .swiper-wrapper .swiper-slide:nth-child(even) .item {
  margin-left: 54px;
}
.main.server .case .case-area .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  width: 18px;
  height: 18px;
  margin: 0 14px;
}
.main.server .case .case-area .swiper-pagination-bullet-active {
  background: #ffffff;
}
.main.server .section6 {
  padding: 50px 0px;
}
.main.server .section6 .section-bg {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translate(-50%, 0);
  min-width: 100%;
  z-index: -1;
}
.main.server .section6 .section-top {
  padding-bottom: 40px;
}
.main.server .section6 .section-top p {
  font-size: 35px;
  color: #333;
}
.main.server .section6 .section-top span {
  font-size: 14px;
  color: #999;
}
.main.server .section6 .section-area {
padding: 0px 100px;
  padding-bottom: 30px;
}
.main.server .section6 .section-area .item {
  width: 33.33%;
  padding: 15px;
}
.main.server .section6 .section-area .item .item-padding {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  top: 0;
  transition: top .3s linear;
}
.main.server .section6 .section-area .item .item-padding .item-img {
  padding: 0 60px;
  height: 100px;
}
.main.server .section6 .section-area .item .item-padding .item-text .i-top {
  margin-bottom: 16px;
}
.main.server .section6 .section-area .item .item-padding .item-text .i-top p {
  font-size: 32px;
  color: #333;
  margin-right: 16px;
}
.main.server .section6 .section-area .item .item-padding .item-text .i-top span {
  font-size: 20px;
  color: #333;
}
.main.server .section6 .section-area .item .item-padding .item-text p {
  font-size: 18px;
  color: #333;
}
.main.server .section6 .section-area .item:hover .item-padding {
  top: -12px;
  background: #e2070b;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.16);
}
.main.server .section6 .section-area .item:hover .item-padding .item-text .i-top p {
  color: #fff;
}
.main.server .section6 .section-area .item:hover .item-padding .item-text .i-top span {
  color: #fff;
}
.main.server .section6 .section-area .item:hover .item-padding .item-text p {
  color: #fff;
}
.main.server .section6 .sec-area {
  padding: 0px 100px;
  padding-bottom: 30px;
}
.main.server .section6 .sec-area .item {
  width: 33.33%;
  border-right: 1px solid #e5e5e5;
}
.main.server .section6 .sec-area .item .i-title {
  background: #e41518;
  font-size: 32px;
  color: #fff;
  height: 98px;
  line-height: 98px;
  text-align: center;
}
.main.server .section6 .sec-area .item .i-title span {
  font-size: 18px;
  color: #fff;
}
.main.server .section6 .sec-area .item .sec-im {
  padding: 45px 0;
}
.main.server .section6 .sec-area .item .sec-im p {
  font-size: 18px;
  color: #333;
  height: 50px;
  line-height: 50px;
}
.main.server .section6 .sec-area .item .sec-im2 {
  padding: 35px 0 50px 0;
}
.main.server .section6 .sec-area .item .sec-im2 p {
  font-size: 32px;
  color: #e41518;
  margin-bottom: 10px;
}
.main.server .section6 .sec-area .item .sec-im2 span {
  font-size: 14px;
  color: #999;
}
.main.server .section6 .sec-area .item:last-child {
  border-right: none;
}
.main.server .section6 .other {
  font-size: 14px;
  color: #e41518;
  text-align: center;
}
.main.server .record-quote {
  position: relative;
  height: 250px;
}
.main.server .record-quote .quote-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: -1;
}
.main.server .record-quote .quote-area {
  width: 520px;
  padding-top: 33px;
}
.main.server .record-quote .quote-area p {
  font-size: 30px;
  color: #fff;
  margin-bottom: 24px;
}
.main.server .record-quote .quote-area .item {
  margin: 0 -10px;
  margin-bottom: 14px;
  height: 48px;
}
.main.server .record-quote .quote-area .item input {
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  width: 50%;
  margin: 0 10px;
  padding: 0 22px;
  height: 100%;
}
.main.server .record-quote .quote-area .item input::-webkit-input-placeholder {
  font-size: 14px;
  color: #999;
}
.main.server .record-quote .quote-area .item input[name='description'] {
  width: 80%;
}
.main.server .record-quote .quote-area .item input[type='submit'] {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  border: none;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.server .record-quote .quote-area .item p {
  width: 20%;
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 14px;
  color: #202020;
  margin: 0 10px;
  padding: 0 20px;
  background: #ffd200;
  height: 100%;
  line-height: 48px;
}
.main.server .record-quote .quote-area .item:last-child {
  margin-bottom: 0;
}
.main.server .record-introduce {
  padding-top: 45px;
  padding-bottom: 70px;
}
.main.server .record-introduce .introduce-area {
  padding: 50px 0;
}
.main.server .record-introduce .introduce-area .item {
  width: 33.33%;
  padding: 0 48px;
}
.main.server .record-introduce .introduce-area .item .top {
  padding-bottom: 26px;
  border-bottom: 1px solid #cccccc;
}
.main.server .record-introduce .introduce-area .item .top p {
  font-size: 22px;
  color: #333;
}
.main.server .record-introduce .introduce-area .item .top span {
  font-size: 22px;
  color: #e2070b;
}
.main.server .record-introduce .introduce-area .item .text {
  padding-top: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

@media (max-width:1600px) {

  .main.server .section6 .section-area .item .item-padding .item-img {
    padding: 0 40px;
    height: 80px;
  }
  .main.server .section6 .section-area .item .item-padding .item-text .i-top p{ font-size: 26px;}
  .main.server .section6 .section-area .item .item-padding .item-text .i-top span{ font-size: 16px;}
  .main.server .section6 .section-area .item .item-padding .item-text p{ font-size: 14px;}
  .main.server .section6 .section-area .item .item-padding .item-img img{ height: 100%;}
}

@media (max-width:1600px) {
  .main.server .section6 .section-area .item .item-padding .item-img {
    padding: 0 10px;
    height: 80px;
  }
}

@media (max-width:1600px) {
.main.server .section4 .sec-area .sec-l{ padding-right: 150px;}
.main.server .section4 .sec-area .sec-c p{  width: 200px;
  height: 200px;
  line-height: 200px;}
  .main.server .section4 .sec-area .sec-l .sec-item .item p{ width: 140px; font-size: 16px; display:inline-block;}

  .main.server .section4 .sec-area .sec-r{ padding-left: 150px;}
  .main.server .section4 .sec-area .sec-r .sec-item .item p{ width: 140px; font-size: 16px; display:inline-block;}
}

@media (max-width:1600px) {
.main.records .record-requirements .requirements-area .requirements-menu{ padding: 0px 50px; width: 42%;}
.main.records .record-requirements .requirements-area .requirements-menu .item{ height: 70px;}
.main.records .record-requirements .requirements-area .requirements-pic .record-bg{ height: 500px;}
.main.records .record-requirements .requirements-area .requirements-menu .item p{ font-size: 18px;}

.main.server .section6 .sec-area .item .i-title{ height: 80px; line-height: 80px;}
.main.server .section6 .sec-area .item .sec-im{ padding: 20px 0px;}
.main.server .section6 .sec-area .item .sec-im p{ font-size: 15px; height: 35px; line-height: 35px;}
.main.server .section6 .sec-area .item .sec-im2{ padding: 25px 0px; padding-top: 0px;}
.main.server .section6 .sec-area .item .sec-im2 p{ font-size: 28px;}

.main.server .section2 .sec-area .sec-bg{ width: auto;}

}

@media (max-width:1440px) {
.main.email .email-packages .packages-area .item .item-padding .item-buy .price{ font-size: 14px;}
.main.email .email-packages .packages-area .item .item-padding .item-buy .price > span{ font-size: 35px;}
.main.server .email-packages .packages-area .item .item-padding .item-buy .price{ font-size: 14px;}
.main.server .email-packages .packages-area .item .item-padding .item-buy .price > span{ font-size: 35px;}

.main.email .section6 .section-area .item .item-padding span{ font-size: 18px;}

.main.email .email-packages .packages-area .item .item-padding .item-text .description p{ font-size: 14px; line-height: 32px;}
.main.email .email-packages .packages-area .item .item-padding .item-text{ height: 300px;}

.main.server .email-packages .packages-area .item .item-padding .item-text .description p{ font-size: 14px; line-height: 32px;}

.main.commerce .section5 .section-area .item .item-padding{ padding: 0px 15px; height: 120px;}
.main.commerce .section5 .section-area .item .item-padding .item-img{ width: 50px;}
.main.commerce .section5 .section-area .item .item-padding .item-text p{ font-size: 16px; margin-bottom: 10px;}
.main.commerce .section5 .section-area .item .item-padding .item-text span{ font-size: 14px;}

.main.commerce .section5 .section-area .area-line{padding: 95px calc(12.5% + 34px);}

.main.commerce .section6 .section-area .item .item-l .item-text p{ font-size: 23px;}
.main.commerce .section6 .section-area .item .item-l .item-text span{ font-size: 15px;}
.main.commerce .section6 .section-area .item .item-r .im-area .im span{ font-size: 13px;}


.main.email .email-packages .packages-area .item .item-padding .item-text{ height: 270px;}

.main.email .section7 .section-r .swiper-paginations{ width: 50px; }
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts{ height: 80px;}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs{ height: 80px;}

.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts::before{ height: 35px;}
.main.email .section7 .section-r .swiper-paginations .swiper-button-nexts::after{ height: 35px;}

.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs::before{ height: 35px;}
.main.email .section7 .section-r .swiper-paginations .swiper-button-prevs::after{ height: 35px;}


.main.chain .section8 .section-bg{ top: auto; bottom: 0px;}
.main.chain .section8 .section-area .item .item-text span{ font-size: 14px;}

.main.server .section2 .sec-area{  background-position: top right -150px;}


}