/*****************************************************************************/
.server {
  position: relative;
  margin-top: -10.0rem;
  z-index: 2;
}

.server .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.server .body .item {
  width: 29%;
}

.server .body .item .box {
  margin-top: 3.125rem;
  padding: 1.25rem;
  background-color: var(--text-color-white);
  border-radius: 0.375rem;
  -webkit-box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1.732px 60px 0px rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.server .body .item .box .ico {
  margin: 3.125rem 0;
  width: 10.0rem;
  height: 10.0rem;
  color: var(--text-color-blue);
  background-image: url("../images/icon-bg.png");
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  border-radius: 50%;
  text-align: center;
  line-height: 10.0rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.server .body .item .box .ico i {
  font-size: 5.0rem;
}

.server .body .item .box .icon {
  width: 6.25rem;
  height: 7.5rem;
  margin: 3.125rem auto;
  position: relative;
}

.server .body .item .box .icon i {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.server .body .item .box .icon i img {
  width: 6.25rem;
}

.server .body .item .box .icon .bg {
  bottom: 0;
}

.server .body .item .box .icon .ico1 {
  top: 0;
}

.server .body .item .box .title {
  font-weight: 400;
  font-size: 1.75rem;
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #e6e6e6;
  -o-border-image: -o-linear-gradient(left, rgba(255, 255, 255, 0), #e6e6e6, rgba(255, 255, 255, 0)) 30 20 30;
  -moz-border-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0), #e6e6e6, rgba(255, 255, 255, 0)) 30 20 30;
  border-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(#e6e6e6), to(rgba(255, 255, 255, 0))) 30 20 30;
  border-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0), #e6e6e6, rgba(255, 255, 255, 0)) 30 20 30;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0), #e6e6e6, rgba(255, 255, 255, 0)) 30 20 30;
  width: 100%;
  text-align: center;
}

.server .body .item .box .text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  padding: 1.875rem 0;
}

.server .body .item .box .text li {
  width: 48%;
  font-weight: 300;
  line-height: 2.5rem;
}

.server .body .item .box .text li a {
  color: var(--text-color-grey);
  transition: all .3s;
}

.server .body .item .box .text li a i {
  margin-right: 0.3125rem;
  color: var(--text-color-blue);
}

.server .body .item .box .text li a:hover {
  color: var(--text-color-blue);
}

.server .body .item .box .more {
  font-weight: 500;
  padding: 0.625rem 5.0rem;
  background-color: #f3f3f3;
  margin-bottom: 1.875rem;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
}

.server .body .item .box .more a {
  color: var(--text-color-blue);
}

.server .body .item:hover .ico {
  background-image: url("../images/icon-bg-hover.png");
}

.server .body .item:hover .ico i {
  color: var(--text-color-white);
}

.server .body .item:hover .more {
  background-color: var(--text-color-blue);
  color: var(--text-color-white);
}

.server .body .item:hover .more a {
  color: #fff;
}

/*****************************************************************************/
.case {
  padding: 6.25rem 0;
}

.case .body {
  position: relative;
  z-index: 3;
  width: 100%;
  left: 0;
  top: 0;
  padding: 6.25rem 0;
}

.case .title {
  font-size: 2.5rem;
  color: var(--text-color-white);
  text-align: center;
  font-weight: 300;
}

.case .etitle {
  font-family: Noto Sans SC;
  font-size: 1.875rem;
  font-weight: 100;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 1.875rem;
}

.case .caseul {
  padding-top: 6.25rem;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.case .caseul li {
  width: 32%;
  margin: 1% 0;
}

.case .caseul li img {
  width: 100%;
}

/*****************************************************************************/
.about {
  height: auto;
  overflow: hidden;
  padding-top: 6.25rem;
}

.about .title {
  text-align: center;
}

.about .etitle {
  text-align: center;
  padding-top: 1.875rem;
  color: var(--text-color-grey-6);
}

.about .card_box {
  margin: 6.25rem 0;
  position: relative;
}

.about .card_box::after {
  content: '';
  background: -webkit-repeating-linear-gradient(135deg, #114abc, #114abc 10px, var(--text-color-white) 10px, var(--text-color-white) 20px, #bf2010 20px, #bf2010 30px, var(--text-color-white) 30px, var(--text-color-white) 40px);
  background: -moz-repeating-linear-gradient(135deg, #114abc, #114abc 10px, var(--text-color-white) 10px, var(--text-color-white) 20px, #bf2010 20px, #bf2010 30px, var(--text-color-white) 30px, var(--text-color-white) 40px);
  background: -o-repeating-linear-gradient(135deg, #114abc, #114abc 10px, var(--text-color-white) 10px, var(--text-color-white) 20px, #bf2010 20px, #bf2010 30px, var(--text-color-white) 30px, var(--text-color-white) 40px);
  background: repeating-linear-gradient(-45deg, #114abc, #114abc 10px, var(--text-color-white) 10px, var(--text-color-white) 20px, #bf2010 20px, #bf2010 30px, var(--text-color-white) 30px, var(--text-color-white) 40px);
  padding: 1.25rem;
  -webkit-box-shadow: 1px 1px 6px 1px rgba(76, 66, 47, 0.75);
  box-shadow: 1px 1px 6px 1px rgba(76, 66, 47, 0.75);
  width: -webkit-calc(100% - 24px);
  width: -moz-calc(100% - 24px);
  width: calc(100% - 24px);
  height: -webkit-calc(100% - 24px);
  height: -moz-calc(100% - 24px);
  height: calc(100% - 24px);
  position: absolute;
  top: -8px;
  left: -8px;
  z-index: -1;
}

.about .card_box .background_pattern .background_pattern_gradient {
  background: var(--text-color-white);
  -webkit-filter: none;
  filter: none;
}

.about .card_box .box {
  position: relative;
  z-index: 3;
  padding-bottom: 1.25rem;
}

.about .card_box .box .code-postmark {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.625rem;
}

.about .card_box .box .code-postmark .code {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.about .card_box .box .code-postmark .code .ip span {
  border: 1px solid red;
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  text-align: center;
  margin-right: 0.3125rem;
}

.about .card_box .box .code-postmark .code .info {
  font-size: 14px;
  color: #666;
  width: 100%;
  font-weight: 100;
  padding-top: 0.3125rem;
}

.about .card_box .box .code-postmark .postmark i {
  font-size: 4.375rem;
}

.about .card_box .box .text-img {
  width: 95%;
  margin: 0 auto;
  padding-top: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about .card_box .box .text-img .text {
  width: 58%;
}

.about .card_box .box .text-img .text p {
  background-image: url("../images/line.png");
}

.about .card_box .box .text-img .text p.info {
  margin-top: 0.9375rem;
  line-height: 1.875rem;
}

.about .card_box .box .text-img .text p.atitle {
  font-size: 1.625rem;
  /* font-weight: 300;*/
  padding-bottom: 0.3125rem;
  background-position: left bottom;
  background-repeat: repeat-x;
}

.about .card_box .box .text-img .img {
  width: 40%;
}

.about .card_box .box .text-img .img img {
  width: 100%;
}

/*****************************************************************************/
.purpose {
  padding: 6.25rem 0 9.375rem;
  background-image: url("../images/case_bg.png");
}

.purpose .title {
  text-align: center;
}

.purpose .etitle {
  text-align: center;
  padding-top: 1.875rem;
  color: var(--text-color-grey-6);
}

.purpose .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.purpose .body .item {
  width: 24%;
}

.purpose .body .item .box {
  -webkit-filter: drop-shadow(0px 10px 5px #ccc);
  filter: drop-shadow(0px 10px 5px #ccc);
  border-radius: 0 1.875rem 1.875rem 1.875rem;
  position: relative;
  overflow: hidden;
}

.purpose .body .item .box .box-body {
  background-color: var(--text-color-white);
  padding: 1.625rem;
  border-radius: 0 1.625rem 1.625rem 1.625rem;
  -webkit-transition: all .6s ease-out 0s;
  -o-transition: all .6s ease-out 0s;
  -moz-transition: all .6s ease-out 0s;
  transition: all .6s ease-out 0s;
  position: relative;
  overflow: hidden;
}

.purpose .body .item .box .box-body::after {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  visibility: hidden;
  z-index: 0;
  opacity: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--wave-color-blue-5)), to(var(--wave-color-green-5)));
  background: -webkit-linear-gradient(bottom, var(--wave-color-blue-5) 0%, var(--wave-color-green-5) 100%);
  background: -moz-linear-gradient(bottom, var(--wave-color-blue-5) 0%, var(--wave-color-green-5) 100%);
  background: -o-linear-gradient(bottom, var(--wave-color-blue-5) 0%, var(--wave-color-green-5) 100%);
  background: linear-gradient(0deg, var(--wave-color-blue-5) 0%, var(--wave-color-green-5) 100%);
  -webkit-transition: all .6s ease-out 0s;
  -o-transition: all .6s ease-out 0s;
  -moz-transition: all .6s ease-out 0s;
  transition: all .6s ease-out 0s;
}

.purpose .body .item .box .box-body:hover::after {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.purpose .body .item .box .box-body:hover .body-content .thumb img {
  -webkit-transform: scale(1.28);
  -moz-transform: scale(1.28);
  -ms-transform: scale(1.28);
  -o-transform: scale(1.28);
  transform: scale(1.28);
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}

.purpose .body .item .box .box-body:hover .body-content .bt,
.purpose .body .item .box .box-body:hover .body-content .info {
  color: var(--text-color-white);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.purpose .body .item .box .box-body .body-content {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.purpose .body .item .box .box-body .body-content .thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 0 1rem 1rem 1rem;
}

.purpose .body .item .box .box-body .body-content .thumb img {
  width: 100%;
  height: auto;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
}

.purpose .body .item .box .box-body .body-content .bt {
  padding-top: 2.5rem;
  font-size: 1.625rem;
  text-align: center;
  color: var(--text-color-blue-6);
  font-weight: 500;
}

.purpose .body .item .box .box-body .body-content .bt i {
  font-size: 1.625rem;
  padding-right: 5px;
}

.purpose .body .item .box .box-body .body-content .info {
  padding-top: 1.875rem;
  text-align: center;
  line-height: 30px;
}

/*****************************************************************************/
.news {
  padding: 6.25rem 0;
  position: relative;
}

.news [class*=rect] {
  z-index: -1;
  position: absolute;
}

.news [class*=rect] i {
  display: block;
}

.news .rect1 {
  left: 25%;
  top: 10%;
  -webkit-animation: rotate3d 4s linear infinite;
  -moz-animation: rotate3d 4s linear infinite;
  -o-animation: rotate3d 4s linear infinite;
  animation: rotate3d 4s linear infinite;
  opacity: .4;
}

.news .rect1 i {
  font-size: 1.875rem;
  color: purple;
}

.news .rect2 {
  top: 10%;
  right: 20%;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}

.news .rect2 i {
  font-size: 2.1875rem;
  color: #83cbfc;
}

.news .rect3 {
  top: 45%;
  right: 5%;
  -webkit-animation: rotate 10s linear infinite;
  -moz-animation: rotate 10s linear infinite;
  -o-animation: rotate 10s linear infinite;
  animation: rotate 10s linear infinite;
}

.news .rect3 i {
  font-size: 3.125rem;
  color: #f0c8e3;
}

.news .rect4 {
  top: 45%;
  left: 5%;
  -webkit-animation: star 10s linear infinite;
  -moz-animation: star 10s linear infinite;
  -o-animation: star 10s linear infinite;
  animation: star 10s linear infinite;
}

.news .rect4 i {
  font-size: 5.0rem;
  color: #fd9aaf;
}

.news .title {
  text-align: center;
}

.news .etitle {
  text-align: center;
  padding-top: 1.875rem;
  color: var(--text-color-grey-6);
}

.news .body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 6.25rem;
}

.news .body .item {
  width: 32%;
}

.news .body .item figure {
  background-color: var(--text-color-grey-6);
}

.news .body .item figure img {
  width: 100%;
  height: 100%;
}

.news .body .item .arc-title {
  font-size: 1.25rem;
  padding: 0.9375rem 0;
  text-transform: capitalize;
}

.news .body .item .arc-title a {
  color: var(--text-color-grey);
}

.news .body .item .arc-param {
  font-size: 0.875rem;
  font-weight: 100;
}

.news .body .item .arc-param i {
  color: var(--text-color-blue);
  padding: 0 0.5rem;
}

.news .body .item .arc-param i:first-child {
  padding-left: 0;
}

.news .body .item .arc-info {
  padding-top: 0.75rem;
}

.news .body .item .arc-info a {
  color: var(--text-color-grey-6);
}

.news .body .item .arc-list li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border: 0.0625rem solid #ccc;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 5.625rem;
  margin-bottom: 0.625rem;
  position: relative;
  overflow: hidden;
}

.news .body .item .arc-list li::before {
  content: '';
  position: absolute;
  top: 0;
  right: -webkit-calc(100% - 5.0rem);
  right: -moz-calc(100% - 5.0rem);
  right: calc(100% - 5.0rem);
  width: 100%;
  height: 100%;
  background-color: var(--text-color-blue-6);
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  transition: ease 0.5s;
  z-index: -1;
}

.news .body .item .arc-list li:hover::before {
  right: 0;
  visibility: visible;
  -webkit-transition: ease 0.5s;
  -o-transition: ease 0.5s;
  -moz-transition: ease 0.5s;
  transition: ease 0.5s;
}

.news .body .item .arc-list li:hover .text .list-title {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.news .body .item .arc-list li:hover .text .list-title a {
  color: white;
}

.news .body .item .arc-list li:hover .text .list-info {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.news .body .item .arc-list li:hover .text .list-info a {
  color: rgba(255, 255, 255, 0.8);
}

.news .body .item .arc-list li:last-child {
  margin-bottom: 0;
}

.news .body .item .arc-list li .time {
  width: 5.0rem;
  height: 100%;
  color: var(--text-color-white);
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news .body .item .arc-list li .time p {
  font-size: 1.25rem;
}

.news .body .item .arc-list li .text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0.625rem;
}

.news .body .item .arc-list li .text .list-title {
  font-size: 1.125rem;
  text-transform: capitalize;
}

.news .body .item .arc-list li .text .list-title a {
  color: var(--text-color-grey);
}

.news .body .item .arc-list li .text .list-info {
  font-size: 0.875rem;
  padding-top: 0.3125rem;
}

.news .body .item .arc-list li .text .list-info a {
  color: var(--text-color-grey-6);
}

/*****************************************************************************/
.cooperation {
  padding-top: 6.25rem;
  background-color: #f9f9f9;
}

.cooperation .title {
  text-align: center;
}

.cooperation .etitle {
  text-align: center;
  padding-top: 1.875rem;
  color: var(--text-color-grey-6);
}

.cooperation .flag {
  margin: 6.25rem auto 3.125rem;
  text-align: center;
}

.cooperation .flag span {
  background-color: var(--text-color-blue-6);
  color: #fff;
  font-size: 2.1875rem;
  font-weight: 400;
  padding-left: 0.625rem;
}

.cooperation .body {
  margin-top: 100px;
  position: relative;
  z-index: 3;
  color: var(--text-color-white);
  padding-bottom: 6.25rem;
}

.cooperation .body .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.cooperation .body .step li {
  width: 15%;
  background-color: var(--text-color-white);
  border-radius: 0.3125rem;
  color: var(--text-color-grey-6);
  padding: 1.875rem 0;
  -webkit-filter: drop-shadow(0px 30px 15px rgba(5, 117, 230, 0.5));
  filter: drop-shadow(0px 30px 15px rgba(5, 117, 230, 0.5));
  position: relative;
  overflow: hidden;
}

.cooperation .body .step li:before {
  font-family: Noto Sans SC;
  font-weight: 900;
  content: counter(list-item, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2.9375rem;
  font-size: 3.75rem;
  color: #f3f3f3;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.cooperation .body .step li:hover::before {
  top: -1.5625rem;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.cooperation .body .step li:hover i {
  background-image: url("../images/icon-bg-hover.png");
  color: #fff;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.cooperation .body .step li i {
  width: 7.5rem;
  height: 7.5rem;
  display: block;
  text-align: center;
  line-height: 7.5rem;
  font-size: 3.75rem;
  background-image: url("../images/icon-bg.png");
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  border-radius: 50%;
  margin: 0 auto;
  color: var(--text-color-blue-6);
  -webkit-transition: .5s;
  -o-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}

.cooperation .body .step li .step-title {
  text-align: center;
  font-size: 1.875rem;
  padding: 1.25rem 0;
  font-weight: 300;
  color: var(--text-color-grey);
}

.cooperation .body .step li .step-info {
  text-align: center;
  padding: 0 0.625rem;
  color: var(--text-color-grey-6);
  line-height: 2em;
}

.cooperation .body .info {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 2.5em;
  margin-top: 6.25rem;
}

.cooperation .wave_background .background_pattern {
  top: inherit;
  bottom: 0;
  height: 70%;
}

.cooperation .wave_background .background_pattern .background_pattern_gradient {
  -webkit-filter: none;
  filter: none;
}

/*****************************************************************************/


/*********************************************************************************/
@media screen and (max-width: 750px) {
  .title {
    font-size: 1.875rem;
  }
  .etitle {
    font-size: 1.25rem;
  }
  .banner {
    height: 40.625rem;
  }
  .banner .swiper-slide .text .inner h4 {
    font-size: 2.1875rem;
  }
  .banner .swiper-slide .text .inner p {
    font-size: 1.125rem;
  }
  .banner .swiper-slide .text .inner .btn {
    font-size: 1rem;
    width: 12.5rem;
  }
  .server .body {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .server .body .item {
    width: 95%;
  }
  .server .body .item .box .ico {
    margin: .9375rem 0;
  }
  .server .body .item .box .ico i {
    font-size: 4.375rem;
  }
  .server .body .item .box .title {
    padding-bottom: .9375rem;
  }
  .server .body .item .box .text {
    padding: .9375rem 0;
  }
  .server .body .item .box .text li {
    font-size: .875rem;
    line-height: 1.875rem;
  }
  .server .body .item .box .more {
    margin-bottom: .9375rem;
    font-size: .875rem;
  }
  .server .body .item .box:hover {
    margin-top: 3.125rem;
  }
  .case .title {
    font-size: 1.875rem;
  }
  .case .etitle {
    font-size: 1.25rem;
  }
  .case .caseul li {
    width: 94%;
    margin: 1.5% auto;
  }
  .about .card_box {
    width: 90%;
    margin: 3.125rem auto;
  }
  .about .card_box .box .code-postmark .code {
    width: 100%;
  }
  .about .card_box .box .code-postmark .code .ip span {
    width: 1.1875rem;
    height: 1.1875rem;
    font-size: .875rem;
    margin-right: 0;
    line-height: normal;
  }
  .about .card_box .box .code-postmark .postmark {
    display: none;
  }
  .about .card_box .box .text-img {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .about .card_box .box .text-img .img {
    width: 100%;
  }
  .about .card_box .box .text-img .text {
    width: 100%;
    margin-top: 1.25rem;
  }
  .about .card_box .box .text-img .text p.atitle {
    font-size: 1.125rem;
  }
  .about .card_box .box .text-img .text p.info {
    font-size: .875rem;
  }
  .purpose .body {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .purpose .body .item {
    width: 48%;
  }
  .purpose .body .item .box {
    margin-bottom: .9375rem;
  }
  .purpose .body .item .box .box-body {
    padding: .625rem;
  }
  .purpose .body .item .box .box-body .body-content .bt {
    font-size: 1rem;
  }
  .purpose .body .item .box .box-body .body-content .bt i {
    font-size: 1rem;
  }
  .purpose .body .item .box .box-body .body-content .info {
    font-size: .875rem;
  }
  .news .body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .news .body .item {
    width: 96%;
    margin: 0 auto .625rem auto;
  }
  .news .body .item:nth-child(1) {
    margin-bottom: 1.25rem;
  }
  .news .body .item .arc-list li .text .list-title {
    font-size: 1rem;
  }
  .cooperation {
    display: none;
  }
  .contact .body .item .old p {
    font-size: 1.25rem;
  }
  .contact .body .item .old .btn {
    font-size: .875rem;
  }
  .contact .body .item .new p {
    font-size: 1.25rem;
  }
  .contact .body .item .new .btn {
    font-size: .875rem;
  }
  .contact .price a {
    font-size: 1.125rem;
    padding: .625rem 1.875rem;
  }
  .link {
    display: none;
  }
  .contact .body {
    padding-top: 0;
  }
}

/*********************************************************************************/
