* {
  margin: 0;
  padding: 0;
  border: 0;
}
.nav-warp {
  height: 57px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}
.nav {
  height: 56px;
  width: 100%;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  position: relative;
  box-shadow: 0px 0px 2px rgba(229, 234, 241, 0.2);
  background: rgb(2, 78, 162);
}
.nav-fixed {
  top: -56px;
  -webkit-transition-property: background-color;
  -webkit-transition-duration: 2s;
  -webkit-transition-timing-function: ease;
  height: 56px;
  background: rgb(2, 78, 162);
}

.main-warp {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.sub-nav {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(95, 126, 209, 0.2);
  width: 100%;
  display: inline;
  white-space: nowrap;
  overflow-x: auto;
  float: left;
  overflow-y: hidden;
  margin-bottom: 60px;
}
.sub-nav li {
  display: inline-block;
  *display: inline;
  zoom: 1;
  color: #fff;
  font-size: 16px;
  line-height: 60px;
}
.sub-nav li a {
  display: block;
  height: 60px;
  color: #181931;
  text-align: center;
  padding: 0 20px;
}
.sub-nav li a.cur,
.sub-nav li a:hover {
  border-bottom: 2px solid #3986ee;
  color: #3986ee;
}
.sub-nav-lg {
  background-color: rgba(0, 0, 0, 0.4);
  margin-top: -70px;
}
.sub-nav-lg li a {
  display: block;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 18px;
}
/*首页*/

.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
/*盒子带容器*/
.slides {
  height: auto;
  /* Simple clear fix */
  overflow: hidden;
  /**	
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  /**
		 * Here is CSS transitions 
		 * responsible for slider animation in modern broswers
		 */
  -webkit-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
.slide {
  height: auto;
  float: left;
  clear: none;
  width: 100%;
}
.slider-arrow {
  position: absolute;
  display: block;
  margin-bottom: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 2em;
  background-color: #181931;
  background-color: rgba(50, 50, 50, 0.3);
  border-radius: 50%;
}
/*左右按钮样式及放置位置*/
.slider-arrow--right {
  bottom: 50%;
  right: 30px;
}
.slider-arrow--left {
  bottom: 50%;
  left: 30px;
}

.slider-nav {
  position: absolute;
  bottom: 100px;
}
.slider-nav__item {
  width: 30px;
  height: 4px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #cccccc;
  opacity: 0.6;
  border-radius: 2px;
}
.slider-nav__item:hover {
  background: #fff;
  opacity: 0.6;
}
.slider-nav__item--current {
  background: #fff;
  opacity: 1;
} /*被选中后的样式*/

@keyframes scaleout {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
  10% {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    opacity: 0;
  }
}

@keyframes animal {
  0% {
    transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-360deg);
    -ms-transform: rotateY(-360deg);
    -webkit-transform: rotateY(-360deg);
    transform: rotateY(-360deg);
  }
}

.section {
  padding: 60px 0;
}
.section h2 {
  font-size: 32px;
  text-align: center;
  color: #181931;
  font-weight: 700;
  padding-bottom: 48px;
  width: 80%;
  margin: 0 auto;
}
.section h3 {
  font-size: 20px;
  text-align: center;
  color: #181931;
  font-weight: 700;
  padding: 20px;
  border-bottom: 1px dotted #dddddd;
  margin-bottom: 30px;
}
.section h2 i {
  display: block;
  width: 98%;
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  font-style: normal;
  color: #8a8e99;
  padding-top: 10px;
}
.section h2 i.msg_left {
  text-align: left;
}
.section h2 a {
  color: #3986ee;
  font-size: 16px;
}
.section h2 a:hover {
  text-decoration: underline;
}
.section .txt {
  line-height: 28px;
  font-size: 14px;
}
.section .img {
  width: 70%;
  margin: 0 auto;
  display: block;
}
.section-bg-black {
  background: #f5f5f5;
  padding-top: 60px;
  margin-bottom: 20px;
}
.section-bg-blue {
  background: #46d7fb;
  padding-top: 60px;
  margin-bottom: 20px;
}
.section-bg-blue h2 {
  color: #fff;
}
.btn-section-more {
  border: 1px solid #3986ee;
  display: inline-block;
  margin: 15px 0;
  height: 30px;
  line-height: 30px;
  color: #3986ee;
  padding: 0 20px;
  border-radius: 30px;
}
.btn-section-more:hover {
  background-color: #3986ee;
  color: #fff;
}

.index-em-bg {
  height: 420px;
}
.index-em-bg h2 {
  font-size: 50px;
  font-weight: bold;
}
.index-em-bg h2 em {
  display: block;
  width: 100%;
  font-style: normal;
  font-size: 30px;
  font-weight: normal;
  color: #8a8e99;
}
.index-em-bg p {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}
.index-em-bg a {
  display: block;
  border: 1px solid #3986ee;
  width: 160px;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  color: #3986ee;
  text-align: center;
  margin: 40px auto;
}
.index-em-bg a:hover {
  background: #3986ee;
  color: #fff;
}
.index-em {
  text-align: center;
}

.index-em img {
  width: 70%;
}
a.btn-h5-login {
  width: 100%;
  background: #3986ee;
  height: 40px;
  line-height: 40px;
  color: #fff;
  font-size: 16px;
  display: none;
  text-align: center;
  margin-top: 55px;
}

.index-data .em,
.index-data .mail,
.index-data .meet,
.index-data .webcast {
  display: block;
  margin: 15px 10px;
  position: relative;
  height: 160px;
  text-align: center;
}
.index-data b {
  display: block;
  font-size: 48px;
  font-weight: normal;
  height: 80px;
  padding-top: 30px;
}
.index-data b font {
  font-size: 18px;
  font-weight: normal;
}
.index-data p {
  font-size: 14px;
  color: #7b7b86;
}

.index-data .em {
  background: #e9f5ff;
}
.index-data .em b {
  color: #31a3ff;
}
.index-data .mail {
  background: #fff1f1;
}
.index-data .mail b {
  color: #eb4856;
}
.index-data .meet {
  background: #f1ffe3;
}
.index-data .meet b {
  color: #4ab10c;
}
.index-data .webcast {
  background: #fff4df;
}
.index-data .webcast b {
  color: #ef9a07;
}

/*奖项*/
.index-honour {
  background-color: #1c1e39;
  padding: 40px 0;
  position: relative;
  z-index: 2;
}
.index-honour .item {
  text-align: center;
}
.index-honour .item img {
  width: 25%;
}
.index-honour .item span {
  display: block;
  padding: 0 20px;
  color: #898b9f;
  font-size: 12px;
  margin-top: 5px;
}

.index-free {
  background: url(../img/reg-banner-newbg.jpg) center center repeat;
  background-attachment: fixed;
  font-size: 18px;
  text-align: center;
  padding: 30px 0;
  position: relative;
  z-index: 2;
}
.index-free p {
  color: #fff;
  font-size: 28px;
  margin: 20px auto 20px auto;
}
.index-free a {
  display: block;
  font-size: 16px;
  margin: 10px auto;
  color: #fff;
  border: 1px solid #fff;
  height: 40px;
  line-height: 40px;
  width: 180px;
  border-radius: 40px;
}
.index-free a:hover {
  background: linear-gradient(90deg, #0dccff 0%, #4760ff 100%);
  color: #fff;
  border: 1px solid #4760ff;
}

.friendLink {
  background: #eeeeee;
  padding: 20px 0;
}
.friendLink .list {
  position: relative;
  padding-left: 80px;
}
.friendLink font {
  display: inline-block;
  color: #181931;
  position: absolute;
  left: 10px;
  top: 2px;
}
.friendLink a {
  color: #7b7b86;
  display: inline-block;
  margin: 2px 10px;
}
.friendLink a:hover {
  color: #3986ee;
}

.friendly-link {
  overflow: hidden;
  display: none;
}
.friendly-link h4 {
  color: #fff;
  opacity: 0.7;
  font-size: 16px;
  font-weight: 600;
}
.friendly-link-list {
  overflow: hidden;
  margin-top: 10px;
}
.friendly-link-list li {
  float: left;
  margin-right: 30px;
  margin-bottom: 10px;
}

.footer {
  background: #1c1e39;
  padding-top: 0px;
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}
.footer-main {
  padding-bottom: 40px;
}
.footer-main div {
  padding-right: 2px;
}
.footer-main div:nth-child(9),
.footer-main div:nth-child(6),
.footer-main div:nth-child(7) {
  padding-right: 0px;
}
.footer a {
  color: #898b9f;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer .hotline {
  position: relative;
}
.footer .hotline i {
  width: 64px;
  height: 64px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.footer .hotline ul {
  display: block;
}
.footer .hotline ul li {
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}
.footer .hotline ul li b {
  font-size: 24px;
  font-weight: normal;
  display: block;
  color: #fff;
  line-height: 36px;
  margin-bottom: 20px;
}
.footer .hotline i {
  background: none;
}
.footer .middle-line {
  width: 7%;
  padding-right: 0px;
}
.footer .middle-line span {
  display: block;
  width: 1px;
  height: 225px;
  border-left: 1px #37395a solid;
  margin-left: 30px;
}

.footer .links i {
  color: #fff;
  font-style: normal;
  display: block;
  padding-bottom: 15px;
  font-size: 16px;
}
.footer .links {
  padding-right: 22px;
}
.footer .links1 li {
  display: inline;
  float: left;
  padding-left: 5px;
}
.footer .links li a {
  color: #898b9f;
  font-size: 14px;
  line-height: 32px;
}
.footer .links li a:hover {
  color: #fff;
  text-decoration: underline;
}
.main-warpcoy .copyright {
  color: #898b9f;
  font-size: 12px;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #37395a;
}
.footer .copyright {
  color: #898b9f;
  font-size: 12px;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #37395a;
}
.footer .copyright .lang {
  text-align: right;
}
.footer .qr-code {
  border-radius: 5px;
  margin-top: 3px;
}

/*产品*/
.product-banner {
  height: 537px;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
}
.product-banner .info {
  padding-top: 180px;
  width: 60%;
}
.product-banner .info h1 {
  font-size: 48px;
  font-weight: normal;
  color: #181931;
}
.product-banner .info p {
  font-size: 14px;
  padding: 10px 0 30px 0;
  display: block;
  max-width: 600px;
  color: #181931;
}
.product-banner .info a.btn-free {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border: 1px solid #3986ee;
  background-color: #3986ee;
  font-size: 16px;
  display: block;
  border-radius: 40px;
}
.product-banner .info a.btn-free:hover {
  background: none;
  color: #3986ee;
}
.product-banner .product-btn-group {
  display: flex;
}
.product-banner .product-btn-group a {
  margin-right: 20px;
}
.product-banner .info-black {
  padding-top: 180px;
  width: 60%;
}
.product-banner .info-black h1 {
  font-size: 48px;
  font-weight: normal;
  color: #fff;
}
.product-banner .info-black p {
  font-size: 14px;
  padding: 20px 0 50px 0;
  display: block;
  color: #fff;
  max-width: 600px;
}
.product-banner .info-black a.btn-speek,
.product-banner .info-black a.btn-free,
.product-banner .info-black a.btn-free-link,
.service-activity-des .tex-button a {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border: 1px solid #3986ee;
  font-size: 16px;
  display: block;
  background: #3986ee;
  border-radius: 40px;
}
.product-banner .info-black a.btn-speek:hover,
.product-banner .info-black a.btn-free:hover,
.product-banner .info-black a.btn-free-link:hover,
.cloudDesc-btn-group a.btn-speek:hover,
.service-activity-des .tex-button a:hover,
.cloudDesc-btn-group a.btn-free:hover {
  background: none;
  color: #3986ee;
  border-color: #3986ee;
}

/* 格式化按钮颜色 */
.product-banner .info-black .product-btn-group a.btn-speek,
.main-warp .cloudDesc-btn-group a.btn-speek,
.product-cloud-desc .cloudDesc-btn-group a.btn-speek,
.service-activity-des .tex .tex-button a.btn-speek {
  background: none;
  color: #3986ee;
  border-color: #3986ee;
}
.product-banner .info-black .product-btn-group a.btn-speek:hover,
.product-banner .info-black .product-btn-group a.btn-free:hover,
.main-warp .cloudDesc-btn-group a.btn-speek:hover,
.main-warp .cloudDesc-btn-group a.btn-free:hover,
.product-cloud-desc .cloudDesc-btn-group a.btn-speek:hover,
.product-cloud-desc .cloudDesc-btn-group a.btn-free:hover,
.service-activity-des .tex .tex-button a.btn-speek:hover,
.service-activity-des .tex .tex-button a.btn-free:hover {
  background: #3986ee;
  color: #fff;
  opacity: 0.9;
}

.medium-banner {
  height: 360px;
  background-position: bottom center;
  background-repeat: no-repeat;
  color: #fff;
  margin-top: 0px;
}
.medium-banner .info {
  padding-top: 250px;
}
.medium-banner .info h1 {
  font-size: 48px;
  font-weight: bold;
  -webkit-text-stroke: 1px black;
}
.medium-banner .info p {
  font-size: 14px;
  padding: 10px 0 30px 0;
  display: none;
}
.medium-banner .info h1 i {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  text-indent: 20px;
  display: inline-block;
}
.medium-banner .info-black h1 {
  color: #181931;
}

.min-banner {
  height: 537px;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
}
.min-banner .info {
  padding-top: 180px;
  width: 40%;
}
.min-banner .info h1 {
  font-size: 48px;
  font-weight: normal;
}
.min-banner .info p {
  font-size: 14px;
  padding: 20px 0 50px 0;
  display: block;
  max-width: 600px;
}

.mini-banner {
  height: 150px;
  background-position: top center;
  background-repeat: no-repeat;
  color: #fff;
  background: #373a41;
  position: relative;
}
.mini-banner .info {
  padding-top: 100px;
  width: 100%;
}
.mini-banner .info h1,
.mini-banner .info b {
  font-size: 32px;
  font-weight: normal;
}
.mini-banner .info h1 i,
.mini-banner .info b i {
  font-size: 12px;
  font-style: normal;
  display: inline-block;
  padding-left: 15px;
}
.mini-banner .info h1 i a,
.mini-banner .info b i a {
  color: #3986ee;
  padding-left: 5px;
}
.mini-banner .info h1 i a:hover,
.mini-banner .info b i a:hover {
  color: #8a8e99;
}

.product-advantage {
  height: 160px;
}
.product-advantage .list {
  height: 160px;
  border-right: 1px solid #dddddd;
  text-align: center;
}
.product-advantage .list img {
  width: 60px;
  margin-top: 40px;
}
.product-advantage .list span {
  text-align: center;
  font-size: 16px;
  display: block;
  box-sizing: border-box;
  padding: 0 5px;
}
.product-advantage .border-0 {
  border: 0;
}

/*带描述*/
.product-advantage-desc .list {
  border-right: 1px solid #dddddd;
  text-align: center;
}
.product-advantage-desc .list img {
  width: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-advantage-desc .list h4 {
  font-size: 20px;
  padding: 10px 0;
  font-weight: 700;
  color: #181931;
}
.product-advantage-desc .list p {
  min-height: 82px;
  font-size: 15px;
  display: block;
  box-sizing: border-box;
  padding: 5px 20px;
  color: #181931;
  word-break: break-all;
  line-height: 24px;
  font-weight: 400;
}
.product-advantage-desc .list p i {
  color: #181931;
}
/* .product-advantage-desc .list p.center{text-align: left;} */
.product-advantage-desc .list .text-center {
  text-align: center;
}
.product-advantage-desc .border-0 {
  border: 0;
}
.product-advantage-desc .large-icon {
  border: 0;
}
.product-advantage-desc .large-icon img {
  width: 100px;
}

.product-text-info p {
  display: block;
  margin: 30px 20px;
  line-height: 25px;
  font-size: 14px;
  color: #7b7b86;
}

.product-functions {
  padding-top: 30px;
}
.product-functions .list {
  height: 120px;
}
.product-functions .list h4 {
  border-left: 4px solid #3986ee;
  padding-left: 10px;
  margin-left: 10px;
  line-height: 18px;
  font-size: 18px;
  color: #181931;
  font-weight: normal;
}
.product-functions .list p {
  padding: 10px 15px 10px 25px;
  color: #7b7b86;
  text-align: justify;
  word-break: break-all;
  line-height: 24px;
}

.product-pic-section img {
  width: 100%;
}
.product-pic-section p {
  display: block;
  width: 80%;
  text-align: center;
  padding-bottom: 30px;
  margin: 0 auto;
  color: #7b7b86;
  font-size: 16px;
}
.product-pic-section p.msg_left {
  text-align: left;
}

.product-custom .list {
  margin: 0 10px 10px 10px;
  background: #fff;
  padding: 30px;
  position: relative;
  height: 340px;
}
.product-custom .list img {
  width: 100%;
}
.product-custom .list b {
  display: block;
  padding: 10px 0;
  font-size: 18px;
  font-weight: normal;
}
.product-custom .list p {
  color: #8a8e99;
}
.product-custom .list .bottom {
  position: absolute;
  bottom: 0;
  height: 50px;
  color: #8a8e99;
  line-height: 50px;
  border-top: 1px dotted #dddddd;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  font-size: 12px;
  text-indent: 30px;
}
.product-custom .list .bottom span {
  position: absolute;
  right: 30px;
  top: 0;
}
.product-custom .list .bottom a {
  color: #3986ee;
}
.product-custom .list .bottom a:hover {
  color: #181931;
}

.product-img-list {
  text-align: center;
}
.product-img-list h4 {
  font-size: 16px;
  padding-top: 15px;
}
.product-img-list p {
  display: block;
  padding: 10px 15px 20px 15px;
  color: #7b7b86;
}
.product-img-list img {
  margin-top: 20px;
  width: 60%;
  max-width: 180px;
}

/*产品页新闻区*/
.product-news {
  padding-top: 20px;
}
.product-news b {
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  width: 90%;
}
.product-news .img-news .list {
  width: 90%;
}
.product-news .img-news .list img {
  width: 100%;
  display: block;
}
.product-news .img-news .list a.title {
  background: #181931;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 18px;
  padding: 20px 10px;
}
.product-news .img-news .list a.title:hover {
  background: #3986ee;
  border-color: #3986ee;
}
.product-news .img-news .list a p {
  display: block;
  padding: 5px;
  font-size: 12px;
  text-align: left;
  color: #8a8e99;
}
.product-news .img-news .list a p span {
  color: #7b7b86;
  font-style: italic;
}
.product-news .img-news .list a:hover p {
  color: #fff;
}
.product-news .img-news .list a:hover p span {
  color: #add7ff;
}
.product-news ul li {
  display: block;
  margin-bottom: 20px;
  padding: 5px;
}
.product-news ul li:hover {
  background: #f5f5f5;
}
.product-news ul li b {
  border-left: 4px solid #3986ee;
  padding-left: 10px;
}
.product-news ul li a {
  display: block;
  color: #181931;
  font-size: 18px;
}
.product-news ul li a:hover {
  color: #3986ee;
}
.product-news ul li a span {
  color: #8a8e99;
  font-style: italic;
  font-size: 12px;
  display: block;
  padding-left: 15px;
  padding-bottom: 5px;
}
.product-news ul li a p {
  font-size: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-left: 15px;
  color: #181931;
}
.product-news a.btn-more {
  height: 32px;
  line-height: 32px;
  background: #f5f5f5;
  border: 1px solid #dddddd;
  display: block;
  text-align: center;
}
.product-news a.btn-more:hover {
  color: #3986ee;
  border-color: #3986ee;
  background: #fff;
}

.section-img-txt .img {
  width: 50%;
  float: left;
  text-align: left;
  box-sizing: border-box;
}
.section-img-txt .img img {
  width: 80%;
}
.section-img-txt .txt {
  width: 50%;
  float: right;
  font-size: 14px;
  color: #7b7b86;
  padding: 100px 30px 0 0;
  box-sizing: border-box;
}
.section-img-txt .txt h4 {
  font-size: 24px;
  color: #181931;
  display: block;
  padding: 10px 0;
  font-weight: normal;
}
.section-img-txt .txt h4 i {
  display: block;
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #8a8e99;
}
.section-img-txt .txt b {
  color: #181931;
  font-weight: normal;
}
.section-img-txt .txt p {
  margin: 10px 0;
  display: block;
}

.section-img-txt .list {
  width: 45%;
  float: right;
  font-size: 14px;
  color: #7b7b86;
  padding: 30px 30px 0 0;
  box-sizing: border-box;
}
.section-img-txt .list li {
  display: block;
  padding: 10px 20px 10px 20px;
  position: relative;
  border-radius: 5px;
}
.section-img-txt .list li i {
  display: none;
  width: 20px;
  height: 20px;
  position: absolute;
  left: -10px;
  transform: rotate(45deg);
  top: 50%;
  background-color: #3986ee;
  margin-top: -10px;
}
.section-img-txt .list li.active {
  background-color: #3986ee;
}
.section-img-txt .list li.active i {
  display: block;
}
.section-img-txt .list li.active h4,
.section-img-txt .list li.active p {
  color: #fff;
}
.section-img-txt .list li h4 {
  font-size: 18px;
  padding: 10px 0;
  font-weight: normal;
  color: #181931;
}
.section-img-txt .list li p {
  margin-top: 0;
  margin-bottom: 10px;
}

.section-img-right .img {
  float: right;
  text-align: right;
}
.section-img-right .txt {
  float: left;
  padding: 100px 0 0 30px;
}
.section-img-right .list {
  float: right;
  width: 50%;
}
.section-img-right .list li i {
  right: -10px;
  left: auto;
}

.section-img-txt-min .img {
  text-align: center;
}
.section-img-txt-min .img img {
  width: 60%;
  margin: 10px auto 20px 0;
}
.section-img-txt-min .txt {
  font-size: 16px;
  padding-top: 70px;
}
.section-img-txt-min .txt h4 {
  padding-left: 0;
  margin-bottom: 0;
  padding: 0;
}

.section-nav {
  display: block;
  border-bottom: 1px solid #dddddd;
  text-align: center;
  margin-bottom: 40px;
}
.section-nav li {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: -2px;
  font-size: 18px;
  color: #8a8e99;
  cursor: pointer;
}
.section-nav li:hover {
  color: #181931;
}
.section-nav li.cur {
  border-bottom: 4px solid #3986ee;
  font-weight: bold;
  color: #181931;
}
.section-nav-con .section-img-txt .txt {
  padding-top: 0;
}
.section-nav-con .section-img-txt .txt h4 {
  font-size: 18px;
  margin-top: 20px;
}

/*邮箱*/
.mail-banner {
  background-image: url(../img/banner-mail.jpg);
}
.mail-service {
  height: 300px;
  background: url(../img/mail-service-bg.png) no-repeat top center;
  padding-top: 60px;
}
.mail-service h2 {
  color: #fff;
}
.mail-service ul {
  position: relative;
  color: #fff;
  font-size: 16px;
  padding-left: 200px;
  display: block;
  margin: 30px 0 0 100px;
}
.mail-service ul .img {
  position: absolute;
  left: 0px;
  top: -10px;
  width: 150px;
  text-align: center;
  font-size: 18px;
}
.mail-service ul .img img {
  width: 110px;
  height: 110px;
  margin-top: 10px;
}
.mail-service ul li {
  position: relative;
  padding-left: 20px;
  display: block;
  height: 30px;
  line-height: 30px;
}
.mail-service ul li span {
  color: #ffe400;
  font-size: 40px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.mail-products a {
  display: block;
  padding: 25px 20px 20px 20px;
  margin: 0px 5% 10px 5%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  min-height: 160px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0);
  margin-top: 0;
  transition-property: margin-top box-shadow;
  transition-duration: 0.5s;
}
.mail-products a h3 {
  font-size: 18px;
  padding: 0;
  border: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 10px;
  font-weight: bold;
  vertical-align: middle;
}
.mail-products a h3 img {
  width: 30px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.mail-products a p {
  font-size: 14px;
  text-align: justify;
  line-height: 22px;
}
.mail-products a:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
  transition-property: margin-top box-shadow;
  transition-duration: 0.5s;
  border-color: #cccccc;
}
.mail-reg {
  background-color: #3587f6;
  color: #fff;
}
.mail-reg .main-warp h2 {
  color: #fff;
}
.mail-reg .main-warp .list {
  position: relative;
  padding-left: 120px;
  margin: 30px 0;
}
.mail-reg .main-warp .list img {
  position: absolute;
  left: 0;
  width: 100px;
  top: -20px;
}
.mail-reg .main-warp .list b {
  font-size: 20px;
}
.mail-reg .main-warp a.btn-free {
  display: block;
  font-size: 16px;
  margin: 10px auto;
  color: #3986ee;
  background-color: #fff;
  border: 1px solid #fff;
  height: 40px;
  line-height: 40px;
  width: 180px;
  border-radius: 40px;
  text-align: center;
}

.mail-customer-say {
  background-image: url(../img/mail-pic61.jpg);
  background-position: center center;
}
.mail-customer-say .list {
  text-align: center;
  font-size: 16px;
  vertical-align: middle;
}
.mail-customer-say .list font {
  text-indent: 30px;
}
.mail-customer-say .list i {
  font-size: 72px;
  font-family: Arial, Helvetica, sans-serif;
  color: #8a8e99;
  vertical-align: middle;
}
.mail-customer-say .list img {
  width: 200px;
}
.mail-customer-say .slide-custom {
  overflow: hidden;
}
.mail-customer-say .slide-custom .slides .slide .box {
  width: 100%;
  height: 60px;
  background: none;
}
.mail-customer-say .slide-custom .slides .slide .box .left {
  width: 49.5%;
  float: left;
}
.mail-customer-say .slide-custom .slides .slide .box .right {
  width: 49.5%;
  float: right;
  text-align: right;
}
.mail-customer-say .slide-custom .slides .slide .box .right img,
.slide-logo .slides .slide .box .left img {
  width: 100%;
  margin-bottom: 5px;
}
.mail-customer-say .slide-custom .slider-nav2 {
  position: absolute;
}
.mail-customer-say .slide-custom .slider-nav__item2 {
  width: 40px;
  height: 4px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #dddddd;
}
.mail-customer-say .slide-custom .slider-nav__item2:hover {
  background: #3986ee;
  opacity: 0.6;
}
.mail-customer-say .slide-custom .slider-nav__item--current2 {
  background: #3986ee;
  opacity: 1;
}

.slide-banner {
  overflow: hidden;
}
.slide-banner .slides .slide .box {
  width: 100%;
  height: 60px;
  background: none;
}
.slide-banner .slides .slide .box .left {
  width: 49.5%;
  float: left;
}
.slide-banner .slides .slide .box .right {
  width: 49.5%;
  float: right;
  text-align: right;
}
.slide-banner .slides .slide .box .right img,
.slide-logo .slides .slide .box .left img {
  width: 100%;
  margin-bottom: 5px;
}
.slide-banner .slider-nav2 {
  position: absolute;
  margin-top: -40px;
}
.slide-banner .slider-nav__item2 {
  width: 40px;
  height: 4px;
  float: left;
  clear: none;
  display: block;
  margin: 0 5px;
  background: #dddddd;
}
.slide-banner .slider-nav__item2:hover {
  background: #3986ee;
  opacity: 0.6;
}
.slide-banner .slider-nav__item--current2 {
  background: #3986ee;
  opacity: 1;
}

/*云卡*/
.cloudcard-footer {
  height: 250px;
  background-image: url(../img/cloudcard-footer.jpg);
  padding-top: 100px;
}
.cloudcard-footer p {
  text-align: center;
  font-size: 20px;
  padding: 10px;
  font-weight: bold;
}
.cloudcard-footer p .logo {
  width: 30%;
  margin-top: 40px;
}
.cloudcard-escort {
  display: none;
}
.cloudcard-escort h2 {
  border-top: 5px solid #3986ee;
  width: 100%;
  padding: 40px 0;
  margin-top: 20px;
}
.cloudcard-escort .list {
  text-align: center;
}
.cloudcard-escort .list h3 {
  margin-bottom: 10px;
}
.cloudcard-escort .list img {
  width: 60%;
}

/*sip*/
.sip-p2 {
  height: 500px;
  background: url(../img/sip-p2.jpg) top center no-repeat;
  overflow: hidden;
  position: relative;
}
.sip-p2 img {
  position: absolute;
  left: 50%;
  margin-left: -530px;
  top: -50px;
}
.sip-p2 h2 {
  margin-top: 200px;
}

.sip-p3 {
  height: 500px;
  background: url(../img/sip-p4.jpg) top center no-repeat;
  overflow: hidden;
  position: relative;
}
.sip-p3 .h2 {
  text-align: left;
  padding: 0;
  margin: 0 0 30px 0;
}
.sip-p4 {
  height: 450px;
  background: url(../img/sip-p5.jpg) top center no-repeat;
  overflow: hidden;
  position: relative;
}
.sip-p4 .h2 {
  text-align: right;
  padding: 0;
  margin: 0 0 30px 0;
  width: auto;
  margin-top: 30px;
}

/*硬件*/
.hard-p1 .item {
  background-image: linear-gradient(to right, #efefef, #e1e1e1);
  margin-bottom: 20px;
}
.hard-p1 .item h4 {
  font-size: 30px;
  margin-top: 10px;
}
.hard-p1 .item p {
  font-size: 24px;
}
.hard-p1 .item a.btn-detail {
  width: 124px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #181931;
  border: 1px solid #181931;
  font-size: 14px;
  display: inline-block;
  border-radius: 40px;
}
.hard-p1 .item a.btn-detail:hover {
  background: #3986ee;
  color: #fff;
  border-color: #3986ee;
}
.hard-p1 .item .txt {
  padding: 100px 0 0 100px;
}
.hard-p1 .item .txt a.btn-detail {
  margin-top: 20px;
}
.hard-p1 .item .right {
  padding: 100px 100px 0 0;
  text-align: right;
}
.hard-p1 .item img {
  width: 100%;
}
.hard-p1 .last {
  margin-bottom: 0;
}

.hard-p2 .item {
  background-color: #fff;
  margin: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.hard-p2 .item img {
  width: 80%;
  margin-top: 24px;
}
.hard-p2 .item h4 {
  font-size: 20px;
}
.hard-p2 .item p {
  text-align: left;
  display: block;
  padding: 5px 20px 30px 20px;
  font-size: 16px;
  min-height: 100px;
  color: #7b7b86;
  text-align: justify;
}

/*智能硬件*/
.hard-vcs6-banner {
  height: 770px;
  background: url(../img/hard-vcs6-bannerbg.jpg) no-repeat top center;
  text-align: center;
  position: relative;
  padding-top: 100px;
  margin-top: 0;
}
.hard-vcs6-banner h1 {
  font-size: 48px;
  color: #3986ee;
  margin-top: 50px;
}
.hard-vcs6-banner h2 {
  font-size: 48px;
  color: #181931;
  font-weight: normal;
}
.hard-vcs6-banner .r360 {
  width: 525px;
  height: 202px;
  background: url(../img/hard-vcs6-banner360.png) no-repeat center center;
  position: absolute;
  left: 100px;
  top: 200px;
}
.hard-vcs6-banner .threesixty {
  position: relative;
  overflow: hidden;
  margin: -140px auto 0 auto;
}
.threesixty .threesixty_images {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}
.threesixty .threesixty_images img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
.threesixty .threesixty_images img.previous-image {
  visibility: hidden;
  width: 0;
}
.threesixty .threesixty_images img.current-image {
  visibility: visible;
  width: 100%;
}
.threesixty .spinner {
  width: 60px;
  display: block;
  margin: 0 auto;
  height: 30px;
  background: #181931;
  background: rgba(0, 0, 0, 0.7);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.threesixty .spinner span {
  font-family: Arial, ms trebuchet, sans-serif;
  font-size: 12px;
  font-weight: bolder;
  color: #fff;
  text-align: center;
  line-height: 30px;
  display: block;
}
.threesixty .nav_bar {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 11;
}
.threesixty .nav_bar a {
  display: block;
  width: 32px;
  height: 32px;
  float: left;
  background: url(/assets/sprites.png) no-repeat;
  text-indent: -99999px;
}
.threesixty .nav_bar a.nav_bar_play {
  background-position: 0 0 !important;
}
.threesixty .nav_bar a.nav_bar_previous {
  background-position: 0 -73px !important;
}
.threesixty .nav_bar a.nav_bar_stop {
  background-position: 0 -37px !important;
}
.threesixty .nav_bar a.nav_bar_next {
  background-position: 0 -104px !important;
}
.threesixty:-webkit-full-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}
.threesixty:-moz-full-screen {
  background: #fff;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding-top: 200px;
}
.hard-vcs6-banner .threesixty .tips {
  bottom: 130px;
  color: #9da9af;
  position: absolute;
  left: 50%;
  margin-left: -100px;
}
.hard-vcs6-banner .vcs6 {
  text-align: center;
  margin-top: 50px;
}
.hard-vcs6-banner .desc {
  background: rgba(0, 120, 215, 0.9);
  height: 200px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  color: #e6f4ff;
  line-height: 26px;
}
.hard-vcs6-banner .desc p {
  display: block;
  padding: 20px;
  margin-top: 20px;
}
.hard-vcs6-banner .desc img {
  width: 270px;
}
.hard-vcs6-p1 {
  height: 600px;
  background: url(../img/hard-vcs6-4.png) no-repeat center bottom #1f2f3c;
  position: relative;
}
.hard-vcs6-p1 h2 {
  font-size: 36px;
  color: #fff;
  font-weight: normal;
  padding-bottom: 15px;
  margin-top: 100px;
}
.hard-vcs6-p1 .desc {
  font-size: 16px;
  text-align: center;
  color: #fff;
  width: 750px;
  margin: 0 auto;
  line-height: 26px;
}
.hard-vcs6-p1 .img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 300px;
  width: 1000px;
  left: 50%;
  margin-left: -500px;
}
.hard-vcs6-p1 .quick-warp {
  width: 100%;
  position: relative;
}
.hard-vcs6-p1 .quick-warp .hdmi {
  width: 88px;
  height: 81px;
  background: #edca09;
  position: absolute;
  left: 178px;
  top: 11px;
  text-align: center;
  padding-top: 20px;
}
.hard-vcs6-p1 .quick-warp .hdmi-line {
  width: 311px;
  height: 58px;
  position: absolute;
  top: 28px;
  left: -145px;
}
.hard-vcs6-p1 .quick-warp .dc {
  width: 44px;
  height: 37px;
  background: #edca09;
  position: absolute;
  right: 85px;
  top: 35px;
  text-align: center;
  padding-top: 7px;
}
.hard-vcs6-p1 .quick-warp .dc-line {
  width: 311px;
  height: 58px;
  position: absolute;
  top: 46px;
  right: -235px;
}
.hard-vcs6-p2 {
  height: 485px;
  background: url(../img/hard-vcs6-10.jpg) no-repeat top center;
  position: relative;
  padding-top: 120px;
}
.hard-vcs6-p2 .computer {
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -700px;
}
.hard-vcs6-p2 h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p2 .desc {
  font-size: 16px;
  width: 500px;
  line-height: 26px;
}
.hard-vcs6-p2 .screen {
  position: absolute;
  right: 50%;
  top: 146px;
  margin-right: -525px;
}
.hard-vcs6-p2 .wifi {
  position: absolute;
  bottom: 235px;
  left: 50%;
  margin-left: -280px;
}
.hard-vcs6-p3 {
  height: 330px;
  background: url(../img/hard-vcs6-14.jpg) no-repeat top center;
  padding: 0;
  text-align: right;
  position: relative;
  padding-top: 240px;
}
.hard-vcs6-p3 h2 {
  font-size: 36px;
  color: #fff;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p3 .desc {
  font-size: 16px;
  color: #fff;
  width: 550px;
  line-height: 26px;
  float: right;
}
.hard-vcs6-p3 .img {
  position: absolute;
  left: 50%;
  top: 205px;
  margin-left: -380px;
}

.hard-vcs6-p4 {
  height: 390px;
  background: url(../img/hard-vcs6-21.jpg) no-repeat top center;
  padding: 0;
  position: relative;
  padding-top: 240px;
}
.hard-vcs6-p4 h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p4 .desc {
  font-size: 16px;
  width: 550px;
  line-height: 26px;
}
.hard-vcs6-p4 .img {
  position: absolute;
  left: 50%;
  width: 700px;
  top: 0px;
  margin-left: -100px;
}
.hard-vcs6-p4 .img ul {
  display: block;
  width: 100%;
  position: relative;
}
.hard-vcs6-p4 .img ul li {
  position: absolute;
}
.hard-vcs6-p4 .img ul li.l1 {
  top: 160px;
  left: 50px;
}
.hard-vcs6-p4 .img ul li.l2 {
  top: 90px;
  left: 300px;
}
.hard-vcs6-p4 .img ul li.l3 {
  top: 145px;
  left: 560px;
}
.hard-vcs6-p4 .img ul li.l4 {
  top: 350px;
  left: 270px;
}
.hard-vcs6-p4 .img ul li.l5 {
  top: 400px;
  left: 540px;
}

.hard-vcs6-p5 {
  height: 620px;
  background: url(../img/hard-vcs6-22.jpg) no-repeat center bottom #fff;
  position: relative;
  text-align: center;
  padding-top: 100px;
}
.hard-vcs6-p5 h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p5 .desc {
  font-size: 16px;
  line-height: 26px;
  margin: 0 auto;
}
.hard-vcs6-p5 .country {
  background: #52abe9;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 16px;
  color: #e6f4ff;
  line-height: 26px;
  padding: 30px 0;
}
.hard-vcs6-p5 .country {
  font-size: 14px;
}
.hard-vcs6-p5 .country h3 {
  font-size: 20px;
  padding-bottom: 10px;
}
.hard-vcs6-p5 .point {
  display: block;
  position: absolute;
  height: 200px;
  z-index: 100;
}
.hard-vcs6-p5 .point ul {
  display: block;
  position: relative;
}
.hard-vcs6-p5 .point li {
  background: #52abe9;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  display: block;
  position: absolute;
}
.hard-vcs6-p5 .point li.l1 {
  top: 115px;
  left: 200px;
}
.hard-vcs6-p5 .point li.l2 {
  top: 95px;
  left: 92px;
}
.hard-vcs6-p5 .point li.l3 {
  top: 182px;
  left: 308px;
}
.hard-vcs6-p5 .point li.l4 {
  top: 235px;
  left: 232px;
}
.hard-vcs6-p5 .point li.l5 {
  top: 200px;
  left: 635px;
}
.hard-vcs6-p5 .point li.l6 {
  top: 140px;
  left: 760px;
}
.hard-vcs6-p5 .point li.l7 {
  top: 260px;
  left: 815px;
}
.hard-vcs6-p5 .point li.l8 {
  top: 60px;
  left: 865px;
}
.hard-vcs6-p5 .point li.l9 {
  top: 116px;
  left: 1002px;
}
.hard-vcs6-p5 .point li.l10 {
  top: 130px;
  left: 1108px;
}

.hard-vcs6-p6 {
  height: 390px;
  background: #142435;
  padding: 0;
  position: relative;
  padding-top: 240px;
  color: #fff;
}
.hard-vcs6-p6 h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p6 .desc {
  font-size: 16px;
  width: 550px;
  line-height: 26px;
}
.hard-vcs6-p6 .img {
  position: absolute;
  left: 50%;
  width: 700px;
  top: 0px;
  margin-left: 50px;
}
.hard-vcs6-p6 .img ul {
  display: block;
  width: 100%;
  position: relative;
}
.hard-vcs6-p6 .img ul li {
  position: absolute;
}
.hard-vcs6-p6 .img ul li.l4 {
  top: 250px;
  z-index: 1;
}
.hard-vcs6-p6 .img ul li.l3 {
  top: 200px;
  left: 170px;
  z-index: 10;
}
.hard-vcs6-p6 .img ul li.l2 {
  top: 180px;
  left: 120px;
  z-index: 20;
}
.hard-vcs6-p6 .img ul li.l1 {
  top: 205px;
  left: 245px;
  z-index: 30;
}

.hard-vcs6-p7 {
  height: auto;
  background: url(../img/hard-vcs6-26.jpg) no-repeat center top #fff;
  position: relative;
  text-align: center;
  padding: 100px 0 70px 0;
}
.hard-vcs6-p7 h2 {
  font-size: 36px;
  font-weight: normal;
  padding-bottom: 15px;
}
.hard-vcs6-p7 .product {
  padding: 40px 0;
}
.hard-vcs6-p7 .product .list img {
  width: 100%;
}
.hard-vcs6-p7 .product .list h3 {
  font-size: 30px;
}
.hard-vcs6-p7 .product .list p {
  font-size: 16px;
}
.hard-vcs6-p7 .advantage {
  border-top: 1px solid #dddddd;
  margin-top: 30px;
  padding-top: 30px;
  padding-bottom: 60px;
}
.hard-vcs6-p7 .advantage div {
  text-align: left;
}
.hard-vcs6-p7 .advantage div p {
  display: block;
  position: relative;
  padding: 10px 0 20px 50px;
}
.hard-vcs6-p7 .advantage div p i {
  border: 2px solid #3986ee;
  width: 32px;
  height: 32px;
  border-radius: 32px;
  display: inline-block;
  text-align: center;
  line-height: 32px;
  color: #3986ee;
  position: absolute;
  left: 0;
  top: 5px;
  font-style: normal;
  font-size: 20px;
}

/*VCX-3*/
.hard-vcs3-banner {
  height: 700px;
  background: url(../img/hard-vcs3-bannerbg.jpg) no-repeat top center;
  text-align: center;
  position: relative;
  padding-top: 100px;
  margin-top: 0;
  overflow: hidden;
}
.hard-vcs3-banner h1 {
  font-size: 48px;
  color: #3986ee;
  margin-top: 80px;
}
.hard-vcs3-banner h2 {
  font-size: 36px;
  color: #181931;
  font-weight: normal;
}
.hard-vcs3-banner .pic1 {
  width: 400px;
  position: absolute;
  left: 50%;
  margin-left: -350px;
  top: 20px;
  z-index: 20;
}
.hard-vcs3-banner .pic2 {
  width: 300px;
  position: absolute;
  left: 50%;
  margin-left: 0px;
  top: 80px;
  z-index: 10;
}
.hard-vcs3-banner .advantage li {
  width: 50%;
  display: block;
  text-align: center;
  float: left;
  margin-top: 40px;
}
.hard-vcs3-banner .advantage li span {
  width: 90px;
  height: 90px;
  display: inline-block;
  border-radius: 10px;
  background: #e8f1f6;
}
.hard-vcs3-banner .advantage li strong {
  color: #181931;
  font-size: 18px;
  font-weight: normal;
  display: block;
  padding: 5px 0;
}
.hard-vcs3-banner .advantage li p {
  width: 85%;
  display: inline-block;
  font-size: 14px;
  color: #7b7b86;
}
.hard-vcs3-banner .advantage .icon img {
  width: 100%;
}

.hard-vcs3-title {
  font-size: 36px;
  color: #181931;
  font-weight: normal;
  margin: 90px 0 30px 0;
}
.hard-vcs3-desc {
  color: #8a8e99;
  font-size: 14px;
}
.hard-vcs3-desc i {
  position: absolute;
  left: 0;
  top: 3px;
  width: 4px;
  height: 35px;
  border-radius: 4px;
  background: #2da2ff;
}
.hard-vcs3-desc strong {
  font-size: 16px;
  color: #181931;
  font-weight: normal;
}
.hard-vcs3-desc li {
  margin-bottom: 20px;
  display: block;
  position: relative;
  padding-left: 20px;
}
.hard-vcs3-icons li {
  width: 64px;
  height: 64px;
  background-image: url(../img/hard-vcs3-icons.png);
  background-repeat: no-repeat;
  background-size: 640px 64px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid #969fa9;
  margin-right: 10px;
}
.hard-vcs3-icons {
  margin-top: 30px;
}
.hard-vcs3-icons li.icon1 {
  background-position: 0 0;
}
.hard-vcs3-icons li.icon2 {
  background-position: -64px 0;
}
.hard-vcs3-icons li.icon3 {
  background-position: -128px 0;
}
.hard-vcs3-icons li.icon4 {
  background-position: -192px 0;
}
.hard-vcs3-icons li.icon5 {
  background-position: -256px 0;
}
.hard-vcs3-icons li.icon6 {
  background-position: -320px 0;
}
.hard-vcs3-icons li.icon7 {
  background-position: -384px 0;
}
.hard-vcs3-icons li.icon8 {
  background-position: -448px 0;
}
.hard-vcs3-icons li.icon9 {
  background-position: -512px 0;
}
.hard-vcs3-icons li.icon10 {
  background-position: -576px 0;
}
.hard-vcs3-p2 {
  height: 600px;
  background: url(../img/hard-vcs3-p2-bg.jpg) no-repeat top center;
  overflow: hidden;
}
.hard-vcs3-p3 {
  height: 600px;
  background: url(../img/hard-vcs3-p3-bg.jpg) no-repeat top center;
  overflow: hidden;
}
.hard-vcs3-p3 .hard-vcs3-title {
  margin-top: 120px;
}
.hard-vcs3-p3 .pics {
  position: relative;
  margin-top: 100px;
}
.hard-vcs3-p3 .pics .pic1 {
  position: absolute;
  left: 253px;
  top: 240px;
}
.hard-vcs3-p3 .pics .pic2 {
  position: absolute;
  left: -50px;
  top: 200px;
}
.hard-vcs3-p3 .pics .pic3 {
  position: absolute;
  left: 371px;
  top: 52px;
  z-index: 20;
}
.hard-vcs3-p3 .pics .pic4 {
  position: absolute;
  left: 348px;
  top: 20px;
  z-index: 10;
}

.hard-vcs3-p4 {
  height: 600px;
  background: url(../img/hard-vcs3-p4-bg.jpg) no-repeat top center;
  overflow: hidden;
}
.hard-vcs3-p4 .hard-vcs3-title,
.hard-vcs3-p4 .hard-vcs3-desc strong {
  color: #fff;
}
.hard-vcs3-p4 .hard-vcs3-desc {
  color: #aaaaaa;
}
.hard-vcs3-p4 .hard-vcs3-title {
  margin-top: 120px;
}
.hard-vcs3-p4 .pics {
  position: relative;
  margin-top: 100px;
}
.hard-vcs3-p4 .pics .pic1 {
  position: absolute;
  left: -20px;
  top: 32px;
  z-index: 10;
}
.hard-vcs3-p4 .pics .pic2 {
  position: absolute;
  left: 250px;
  top: 90px;
  z-index: 20;
}
.hard-vcs3-p4 .pics .pic3 {
  position: absolute;
  left: 220px;
  top: 220px;
  z-index: 30;
}
.hard-vcs3-p4 .pics .pic4 {
  position: absolute;
  left: 280px;
  top: 277px;
  z-index: 40;
}

.hard-vcs3-p5 {
  height: 600px;
  background: url(../img/hard-vcs3-p5-bg.jpg) no-repeat top center;
  overflow: hidden;
}
.hard-vcs3-p5 .hard-vcs3-title {
  margin-top: 140px;
}
.hard-vcs3-p5 .pics {
  position: relative;
  margin-top: 100px;
}
.hard-vcs3-p5 .pics .pic1 {
  position: absolute;
  left: 190px;
  top: 60px;
  z-index: 10;
}
.hard-vcs3-p5 .pics .pic2 {
  position: absolute;
  left: -20px;
  top: 5px;
  z-index: 20;
}

.hard-vcs3-p6 {
  height: 600px;
  background: url(../img/hard-vcs3-p6-bg.jpg) no-repeat top center;
  overflow: hidden;
}
.hard-vcs3-p6 .hard-vcs3-title {
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}
.hard-vcs3-p6 .hard-vcs3-desc {
  color: #aaaaaa;
  text-align: center;
}
.hard-vcs3-p6 .icons {
  padding-top: 40px;
}
.hard-vcs3-p6 .icons .icon {
  background: rgba(0, 0, 0, 0.5);
  width: 90%;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  margin: 5px auto;
}
.hard-vcs3-p6 .icons .icon span {
  background-image: url(../img/hard-vcs3-icons2.png);
  background-repeat: no-repeat;
  background-size: 1000px 80px;
  display: inline-block;
  width: 100px;
  height: 80px;
}
.hard-vcs3-p6 .icons .icon .icon1 {
  background-position: 0 0;
}
.hard-vcs3-p6 .icons .icon .icon2 {
  background-position: -100px 0;
}
.hard-vcs3-p6 .icons .icon .icon3 {
  background-position: -200px 0;
}
.hard-vcs3-p6 .icons .icon .icon4 {
  background-position: -300px 0;
}
.hard-vcs3-p6 .icons .icon .icon5 {
  background-position: -400px 0;
}
.hard-vcs3-p6 .icons .icon .icon6 {
  background-position: -500px 0;
}
.hard-vcs3-p6 .icons .icon .icon7 {
  background-position: -600px 0;
}
.hard-vcs3-p6 .icons .icon .icon8 {
  background-position: -700px 0;
}
.hard-vcs3-p6 .icons .icon .icon9 {
  background-position: -800px 0;
}
.hard-vcs3-p6 .icons .icon .icon10 {
  background-position: -900px 0;
}

.hard-vcs3-p7 {
  background: #f2fcff;
  overflow: hidden;
  padding-bottom: 50px;
}
.hard-vcs3-p7 .hard-vcs3-title {
  margin-bottom: 10px;
  text-align: center;
}
.hard-vcs3-p7 .hard-vcs3-desc {
  text-align: center;
}
.hard-vcs3-p7 .pics .pic {
  text-align: center;
  position: relative;
  width: 90%;
  margin: 10px auto;
}
.hard-vcs3-p7 .pics .pic img {
  width: 100%;
  line-height: 0;
}
.hard-vcs3-p7 .pics .pic i {
  position: absolute;
  z-index: 10;
  height: 40px;
  background: rgba(0, 120, 215, 0.9);
  width: 100%;
  bottom: 4px;
  color: #fff;
  font-style: normal;
  line-height: 40px;
}

/*云视*/
.cloudv-banner {
  background-color: #29588c;
  overflow: hidden;
  background: linear-gradient(to right, #0b416f 0%, #027aff 100%);
}
.cloudv-banner .main-warp {
  position: relative;
}
.cloudv-banner .main-warp .pic {
  position: absolute;
  right: 0;
  top: 0;
}
.cloudv-banner .main-warp .pic img {
  position: absolute;
  right: 0;
  top: 0;
}
.cloudv-banner .main-warp .pic img.logo {
  right: 250px;
  top: 190px;
  z-index: 20;
}
.cloudv-banner .main-warp .pic img.bg {
  top: 10px;
}
.cloudv-banner .main-warp .pic img.hard1 {
  top: 25px;
  right: 75px;
}
.cloudv-banner .main-warp .pic img.hard2 {
  top: 95px;
  right: 179px;
}
.cloudv-banner .main-warp .pic img.hard3 {
  top: 45px;
  right: 70px;
}

.cloudv-p1 .list {
  border: 1px solid #dddddd;
  border-radius: 10px;
  margin: 10px 30px;
  overflow: hidden;
}
.cloudv-p1 .list img {
  width: 100%;
}
.cloudv-p1 .list h4 {
  text-align: center;
  font-size: 16px;
  padding-top: 20px;
}
.cloudv-p1 .list p {
  display: block;
  margin: 20px;
  min-height: 50px;
}
.section-img-txt .txt .cloudv-h4 b {
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 10px;
}

/*Banner*/

.financial-function-img {
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
}
.financial-function-img img {
  width: 100%;
}
.mobile-banner {
  background-image: url(../img/banner-mobile.jpg);
}
.blog-banner {
  background-image: url(../img/banner-blog.jpg);
}
.blog-detail-banner {
  background-image: url(../img/banner-blog-detail.jpg);
}
.about-banner {
  background-image: url(../img/banner-about.jpg);
  background-size: cover;
}
.news-banner {
  background-image: url(../img/newst.jpg);
  background-size: cover;
}
.products-banner {
  background-image: url(../img/banner002.jpg);
  background-size: cover;
}
.contact-banner {
  background-image: url(../img/banner001.jpg);
}
.ir-banner {
  background-image: url(../img/ir.jpg);
  background-size: cover;
}

/*解决方案*/
.solution-text-info {
  background: url(../img/solution-eduinfo-bg.jpg);
  background-position: center center;
  text-align: center;
  font-size: 16px;
}
.solution-text-info p {
  display: block;
  padding: 50px 20px;
}
.solution-nav {
  width: 100%;
  height: 180px;
  z-index: 100;
  background-image: url(../img/banner-help.png);
  position: static;
  -webkit-transition-property: height;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.solution-nav h3 {
  font-size: 26px;
  font-weight: normal;
  padding-top: 75px;
  display: block;
  color: #fff;
}
.solution-nav ul {
  display: block;
  padding-top: 75px;
}
.solution-nav ul li {
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  *display: inline;
  zoom: 1;
  margin-right: 10px;
}
.solution-nav ul li a {
  display: block;
  height: 40px;
  font-size: 16px;
  padding: 0 30px;
  background: #fff;
  border-radius: 40px;
}
.solution-nav ul li a:hover {
  background: #eff8ff;
}
.solution-nav ul li a.cur {
  background: #3986ee;
  color: #fff;
}
.follow-fixed {
  position: fixed;
  height: 140px;
  -webkit-transition-property: height;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}

.solution-company {
  padding-top: 20px;
}
.solution-company .info {
  padding-right: 40px;
  font-size: 14px;
}
.solution-company h3 {
  font-size: 24px;
}
.solution-company .info .logo {
  text-align: center;
  border: 1px solid #dddddd;
  margin-bottom: 10px;
  line-height: 0;
}
.solution-company .info .logo img {
  width: 100%;
}
.solution-company .info .desc {
  color: #7b7b86;
}
.solution-company .info .desc b {
  color: #181931;
}
.solution-company .info .icon {
  padding-top: 20px;
}
.solution-company .info .icon ul li {
  display: block;
  float: left;
  width: 20%;
  text-align: center;
  font-size: 12px;
}
.solution-company .info .icon ul li img {
  width: 80%;
}
.solution-company .info .icon i {
  display: block;
  font-style: normal;
  padding: 0 0 8px 8px;
  font-size: 16px;
}
.solution-company .solution {
  padding-left: 40px;
}
.solution-company .solution h4 {
  padding: 8px 15px;
  line-height: 18px;
  font-size: 16px;
  color: #fff;
  background: #3986ee;
  font-weight: normal;
  display: inline-block;
  border-radius: 3px;
}
.solution-company .solution .h4-red {
  background: #f35b3c;
}
.solution-company .solution p {
  padding: 10px 15px 10px 0px;
  color: #7b7b86;
  text-align: justify;
  word-break: break-all;
  line-height: 24px;
}
.solution-company .solution b {
  font-size: 16px;
  color: #181931;
  display: inline-block;
  padding-bottom: 5px;
}
.solution-event-p1 {
  background: url(../img/solution-event-p1.jpg) no-repeat top center;
}
.solution-event-p1 img {
  width: 100%;
  margin-bottom: 30px;
}
.solution-event-p1 em {
  border-left: 4px solid #3986ee;
  padding-left: 10px;
  margin-left: 10px;
  line-height: 20px;
  font-size: 16px;
  color: #181931;
  font-weight: normal;
  display: block;
  font-style: normal;
}
.solution-event-part .section-img-txt .img img {
  width: 90%;
}
.solution-event-part a.btn-free {
  font-size: 14px;
  height: 30px;
  line-height: 28px;
  display: inline-block;
  color: #3986ee;
  border: 1px solid #3986ee;
  padding: 5px 20px;
  margin-top: 10px;
}
.solution-event-part a.btn-free:hover {
  color: #fff;
  border: 1px solid #3986ee;
  background: #3986ee;
}

.solution-edu-ys2 h4 {
  font-size: 18px;
  padding-left: 30px;
  margin-top: 15px;
}
.solution-edu-ys .list {
  background-color: #ebf0fc;
  padding: 15px;
  margin: 20px;
}
.solution-edu-ys .list p {
  display: block;
  margin: 20px 60px 0 20px;
  line-height: 32px;
}
.solution-edu-ys .list p b {
  font-size: 18px;
}
.solution-edu-ys .list img {
  float: right;
}

.solution-edu-ys2 .list {
  margin: 0 20px;
  background: #fff;
}
.solution-edu-ys2 .list p {
  display: block;
  margin: 30px 0 0 100px;
  line-height: 24px;
}
.solution-edu-ys2 .list p b {
  font-size: 18px;
  line-height: 36px;
}
.solution-edu-ys2 .list p.small {
  margin: 30px 0 0 70px;
  font-size: 14px;
}
.solution-edu-ys2 .list p.small span {
  line-height: 24px;
  padding-top: 8px;
  display: block;
}
.solution-edu-ys2 .list img {
  float: left;
  margin-top: -10px;
}
.solution-edu-ys2 .list .top0 {
  margin-top: 0;
}

.solution-edu-ys3 .list {
  background-color: #fff;
  padding: 15px;
  margin: 20px;
}
.solution-edu-ys3 .list p {
  display: block;
  margin: 20px 20px 0 140px;
  line-height: 24px;
}
.solution-edu-ys3 .list p b {
  font-size: 18px;
}
.solution-edu-ys3 .list img {
  float: left;
  margin: 25px 0 0 20px;
}
/*下载*/
.download-banner {
  background-image: url(../img/banner-download.jpg);
}
.download-list {
  box-sizing: border-box;
}
.download-list .info {
  padding-left: 90px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}
.download-list .info img {
  position: absolute;
  width: 70px;
  height: 70px;
  left: 0px;
  top: 0;
  z-index: 2;
}
.download-list .info h4 {
  color: #181931;
  font-size: 24px;
  font-weight: normal;
  min-height: 32px;
}
.download-list .info p {
  color: #464964;
  margin-top: 10px;
}
.download-list .list {
  padding-top: 30px;
  padding-left: 90px;
}
.download-list .list a.btn-down {
  width: 130px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #3986ee;
  display: inline-block;
  margin-right: 10px;
  color: #3986ee;
  border-radius: 4px;
  position: relative;
}
.download-list .list a.btn-down .code {
  box-sizing: border-box;
  width: 130px;
  height: 130px;
  padding: 10px;
  position: absolute;
  left: 152px;
  bottom: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 27px 0 rgba(0, 10, 25, 0.1);
  display: none;
  z-index: 1000;
}
.download-list .list a.btn-down:hover .code {
  display: block;
}
.download-list .list a.btn-down .code:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 100px;
  right: 130px;
  border: 10px solid transparent;
  border-bottom-color: #fff;
  transform: rotate(270deg);
  transition: all 0.3s;
}
.download-list .list a.btn-down:hover {
  color: #fff;
  background: #3986ee;
}
.download-list .list p {
  font-size: 14px;
  color: #464964;
  padding-top: 20px;
}
.download-list .list p a {
  color: #3986ee;
  display: inline-block;
  margin-top: 10px;
}
.download-list .list p a:hover {
  text-decoration: underline;
}
.download-list .list .qr-code {
  margin-top: 10px;
}
.download-list .middle-line span {
  height: 240px;
  border-right: 1px dashed#464964;
  margin-left: 40px;
  width: 1px;
  opacity: 0.3;
  display: block;
}
.download-doc-banner {
  background-image: url(../img/banner-doc-download.jpg);
}
.download-doc-list .item {
  margin: 20px;
  padding: 15px 25px;
  background: #fff url(../img/ico-download-doc.png) no-repeat;
  box-shadow: 0px 5px 20px 0px rgba(219, 232, 246, 0.75);
  border-radius: 10px;
  background-position: right 30px top 60px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.download-doc-list .item:hover {
  background: #fff url(../img/ico-download-doc-hover.png) no-repeat;
  background-position: right 30px top 60px;
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
}
.download-doc-list .item .txt:hover h4,
.download-doc-list .item .txt:hover h5 {
  color: #3986ee;
}
.download-doc-list .item .txt {
  padding-right: 60px;
}
.download-doc-list .item .txt h4 {
  color: #181931;
  font-size: 24px;
  font-weight: 400;
  padding-top: 15px;
}
.download-doc-list .item .txt h5 {
  color: #181931;
  font-size: 16px;
  font-weight: 400;
  padding: 5px 0;
}
.download-doc-list .item .txt p {
  color: #464964;
}
.download-open-banner {
  background: #181931 url(../img/banner-download-open.jpg) no-repeat;
}
.download-open-box {
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.02);
  border-radius: 8px;
  margin: 0 12px;
  min-height: 250px;
  color: #fff;
  padding: 60px 25px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.download-open-box h4 {
  font-weight: 700;
  line-height: 27px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.download-open-box1 {
  background: url(../img/download-open-pic3.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box2 {
  background: url(../img/download-open-pic2.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box3 {
  background: url(../img/download-open-pic1.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box4 {
  background: url(../img/download-open-pic4.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box5 {
  background: url(../img/download-open-pic6.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box6 {
  background: url(../img/download-open-pic5.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}
.download-open-box7 {
  background: url(../img/download-open-pic5.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: center 235px, center center;
  background-size: 38% auto, 100% 100%;
}

/* 报告下载 */
.download-report-list .light {
  height: 272px;
}

/* 20210813 */
.download-blue-bg {
  background: #f6f8ff;
}
.download-copyright-section {
  background: url(../img/about/download-copyright-bg.png) center bottom
    no-repeat;
  padding-top: 0px;
}
.download-copyright-section .main-warp div {
  padding-top: 160px;
  color: #fff;
  position: relative;
  top: 10px;
}
.download-copyright-section .main-warp div a {
  color: #fff;
}
.download-copyright-section .main-warp div a:hover {
  text-decoration: underline;
}
.download-list .download-box h4 {
  font-size: 24px;
  font-weight: 500;
}
.download-list .download-box-tex {
  padding-left: 90px;
  font-size: 14px;
  position: relative;
  padding-right: 60px;
  min-height: 120px;
}
.download-list .download-box-tex h4 {
  margin-bottom: 8px;
}
.download-list .download-box-tex img {
  position: absolute;
  width: 72px;
  height: 72px;
  left: 0px;
  top: 4px;
}
.download-list .download-box-tex1 {
  margin-top: 70px;
}
.download-list .download-box-tex2 {
  margin-top: 50px;
}
.download-list .download-box-shawx {
  background: #fff;
  box-shadow: 0px 5px 20px 0px rgba(219, 232, 246, 0.75);
  border-radius: 10px;
  text-align: center;
  margin-right: 20px;
  padding: 30px 20px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
  position: relative;
}
.download-list .download-box-shawx:hover {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
}
.download-list .download-box-shawx h4 {
  font-size: 20px;
  margin-top: 10px;
}
.download-list .download-box-shawx .mobile p {
  padding: 2px 0px;
  text-align: center;
  font-size: 16px;
}
.download-list .download-box-shawx .mobile {
  display: none;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  width: 100%;
}
.download-list .download-box-shawx .mobile .qrcode {
  padding-top: 35px;
  padding-bottom: 10px;
}
.download-list .download-box-shawx:hover .mobile {
  display: block;
}
.download-list .download-box-shawx p {
  padding: 20px 0;
  text-align: left;
  font-size: 12px;
}
.download-list .download-box-shawx a.btn-down {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 14px;
  border: 1px solid #3986ee;
  display: inline-block;
  color: #3986ee;
  border-radius: 4px;
}
.download-list .download-box-shawx:hover a.btn-down {
  color: #fff;
  background: #3986ee;
}
.download-list-box {
  margin: 30px 20px;
  min-height: 250px;
}

/*博客*/
.blog-list {
  margin: 15px;
  overflow: hidden;
  -webkit-box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  -moz-box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  border-radius: 5px;
}
.blog-list a {
  display: block;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.blog-list .img {
  width: 100%;
  height: 200px;
  background-position: center center;
  border-radius: 5px 5px 0 0;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  position: relative;
  overflow: hidden;
}
.blog-list .img i {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-repeat: no-repeat;
  background-size: 100%;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.blog-list .txt {
  border-top: 0;
  padding: 10px 20px 20px 20px;
}
.blog-list .txt h4 {
  color: #181931;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 0;
  height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog-list .txt p {
  color: #8a8e99;
  font-size: 12px;
  display: block;
  height: 36px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.blog-list:hover .txt h4 {
  color: #3986ee;
}
.blog-list .img {
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
.blog-list:hover .img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.blog-list:hover .img i.video {
  left: 38px;
}

.quality-list {
  margin: 15px;
  overflow: hidden;
}
.quality-list {
  -webkit-box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  -moz-box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  box-shadow: 6px 6px 10px 6px rgba(20, 34, 67, 0.1);
  border-radius: 5px;
}
.quality-list .img {
  width: 100%;
  height: 100%;
  background-position: center center;
  border-radius: 5px;
  background-size: 100%;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  position: relative;
  overflow: hidden;
}
.quality-list .txt {
  border-top: 0;
  padding: 10px 20px 20px 20px;
}
.quality-list .txt h4 {
  color: #181931;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 0;
  height: 22px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.blog-detail {
  padding: 70px 50px;
  background: #fff;
}
.blog-detail h1 {
  text-align: left;
  width: 100%;
  padding-bottom: 10px;
  font-size: 26px;
  color: #181931;
  font-weight: normal;
}
.blog-detail h2 {
  text-align: left;
  width: 100%;
  padding-bottom: 10px;
}
.blog-detail .time {
  color: #8a8e99;
  font-size: 12px;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 10px;
}
.blog-detail .desc {
  font-size: 12px;
  color: #8a8e99;
  padding: 20px;
  background: #f5f5f5;
  margin: 20px 0;
  line-height: 24px;
}
.blog-detail .desc b {
  color: #181931;
  font-weight: normal;
}
.blog-detail .content {
  line-height: 32px;
  font-size: 16px;
}
.blog-detail .content p {
  margin-bottom: 16px;
  display: block;
  color: #181931;
}
.blog-detail .content img {
  margin: 0 auto;
  max-width: 60%;
  width: auto !important;
  height: auto !important;
}
.blog-detail .content strong {
  font-size: 20px;
  margin-top: 20px;
  color: #181931;
}
.blog-detail .recommend-news {
  border-top: 1px dotted #dddddd;
  margin-top: 60px;
  padding-top: 20px;
}
.blog-detail .recommend-news ul li strong {
  color: #181931;
}
.blog-detail .recommend-news ul li {
  color: #8a8e99;
  display: block;
  padding: 10px 0;
}
.blog-detail .recommend {
  padding-top: 30px;
}
.blog-detail .recommend li {
  width: 32%;
  margin: 10px 10px 0 0;
  float: left;
  background: #f5f5f5;
}
.blog-detail .recommend li a {
  display: block;
  padding-left: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.blog-detail .share {
  border-top: 1px solid #dddddd;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  vertical-align: top;
  height: 50px;
  display: none;
}
.blog-detail .share a {
  height: 64px;
  width: 64px;
  display: inline-block;
  float: right;
  margin: 6px;
}
.blog-detail .share span {
  height: 64px;
  width: 64px;
  display: inline-block;
  line-height: 64px;
  color: #8a8e99;
  float: right;
}
.blog-detail .share .bds_button_more {
  background-image: url(../img/share-icon-weixin.png);
  background-size: 100%;
  background-position: 0 0;
}
.blog-detail .share .bds_button_weixin {
  background-image: url(../img/share-icon-weixin.png);
  background-size: 100%;
  background-position: 0 0;
}
.blog-detail .share .bds_button_weixin:hover {
  background-image: url(../img/share-icon-weixin-hover.png);
  background-position: 0 0;
}
.blog-detail .share .bds_button_tsina {
  background-image: url(../img/share-icon-weibo.png);
  background-size: 100%;
  background-position: 0 0;
}
.blog-detail .share .bds_button_tsina:hover {
  background-image: url(../img/share-icon-weibo-hover.png);
  background-position: 0 0;
}
.blog-detail .share .bds_button_more {
  background-image: url(../img/share-icon-more.png);
  background-size: 100%;
  background-position: 0 0;
}

.new_page {
  display: block;
  text-align: center;
  padding: 30px 0;
}
.new_page a {
  display: inline-block;
  padding: 5px 20px;
  text-align: center;
  border: 1px solid #3986ee;
  color: #3986ee;
  margin: 0 5px;
}
.new_page a:hover {
  color: #fff;
  background: #3986ee;
}
.new_page select {
  border: 1px solid #dddddd;
}

/*新闻*/
.news-list {
  padding: 10px;
  background: #fff;
}
.news-list li {
  display: block;
  border-bottom: 1px solid #dddddd;
  padding: 30px 0;
  text-align: left;
  min-height: 120px;
}
.news-list li .desc {
  line-height: 24px;
}
.news-list li .desc span {
  font-size: 16px;
  font-family: arial;
}
.news-list li h3 {
  text-align: left;
  padding: 1px 0 1px 0;
  border-bottom: 0;
  margin-bottom: 10px;
  font-size: 24px;
  color: #181931;
}
.news-list li h3.title {
  background: url(../img/about/banner-cooper-ico.png) no-repeat left center;
  padding: 1px 0 1px 40px;
}
.news-list li h3.ico1 {
  background-position: 0 0;
}
.news-list li h3.ico2 {
  background-position: 0 -36px;
}
.news-list li h3.ico3 {
  background-position: 0 -74px;
}
.news-list li h3 a {
  font-size: 24px;
  color: #181931;
  text-align: left;
}
.news-list li .desc a {
  color: #7b7b86;
  display: inline-block;
  padding-bottom: 10px;
}
.news-list li h3 a:hover,
.news-list li .desc a:hover {
  color: #3986ee;
}
.news-list li .time {
  color: #8a8e99;
  font-size: 12px;
}
.news-list .border-0 {
  border: none;
}
.news-nav {
  display: block;
  position: absolute;
  bottom: -50px;
  font-size: 12px;
  color: #8a8e99;
}
.news-nav li {
  display: inline-block;
  float: left;
}
.news-nav a {
  color: #181931;
  text-decoration: none;
}
.news-nav a:hover {
  color: #3986ee;
}

/*关于*/
.about-ry {
  overflow-x: scroll;
}
.about-info {
  padding: 5px 10px;
}
.about-info img {
  width: 100%;
}
.about-history .aftificial-flow h4 {
  height: 43px;
  line-height: 30px;
  text-indent: 0px;
}
.about-history .aftificial-flow h4 i {
  width: 10px;
  height: 10px;
}

/*帮助*/
.helpcenter-bg {
  background: url(../img/help-bg.png) top center no-repeat;
  min-height: 400px;
}
.helpcenter-bg .iframe-box {
  padding: 15px;
  position: relative;
  height: 510px;
  width: 610px;
  overflow: hidden;
}
.helpcenter-bg .iframe {
  padding: 0;
  width: 1500px;
  height: 600px;
  margin-left: -445px;
  margin-top: -45px;
}
.helpcenter-bg .service-info {
  background: #fff;
  padding: 20px;
  color: #7b7b86;
  margin-bottom: 10px;
  overflow: hidden;
  position: relative;
}
.helpcenter-bg .service-info b {
  font-size: 16px;
  font-weight: normal;
  color: #181931;
}
.helpcenter-bg .service-info h2 {
  font-size: 18px;
  padding: 10px 0 0px 0;
  text-align: left;
  width: 100%;
}
.helpcenter-bg .service-info .bg-yun-1 {
  background: url(../img/help-yun-1.png) no-repeat;
  width: 100px;
  height: 132px;
  background-size: 100%;
  position: absolute;
  bottom: -40px;
  right: 20px;
}
.helpcenter-bg .service-info .bg-yun-2 {
  background: url(../img/help-yun-2.png) no-repeat;
  width: 100px;
  height: 182px;
  background-size: 100%;
  position: absolute;
  bottom: -40px;
  right: 20px;
}
.helpcenter-bg .service-info .bg-yun-3 {
  background: url(../img/help-yun-3.png) no-repeat;
  width: 100px;
  height: 157px;
  background-size: 100%;
  position: absolute;
  bottom: -40px;
  right: 20px;
}

.helpcenter-product-service {
  width: 800px;
  position: fixed;
  z-index: 20000;
  left: 50%;
  top: 80px;
  height: 80%;
  margin-left: -400px;
  background: #fff;
  display: none;
}
.helpcenter-product-service h2 {
  text-align: center;
  font-size: 24px;
  padding: 30px 0 20px 0;
  position: relative;
}
.helpcenter-product-service .con {
  height: 78%;
  overflow: auto;
}

.helpcenter-product-service .con b {
  display: block;
  font-weight: normal;
  font-size: 18px;
  padding: 10px 0 10px 0;
  text-align: center;
  background: #3986ee;
  width: 700px;
  margin: 10px auto;
  color: #fff;
}
.helpcenter-product-service .btn-close {
  width: 30px;
  height: 30px;
  display: block;
  background: url(../img/btn-fixed-close.png);
  background-size: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/r/cms/www/web2018/img/btn-fixed-close.png', sizingMethod='scale');
}
.helpcenter-product-service .btn-close:hover {
  background: url(../img/btn-fixed-close-hover.png);
  background-size: 100%;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/r/cms/www/web2018/img/btn-fixed-close-hover.png', sizingMethod='scale');
}

.helpcenter-video {
  background: url(../img/helpcenter-video-bg.jpg) top center;
  margin: 80px;
  padding: 0;
}
.helpcenter-video .box {
  height: 460px;
  width: 840px;
  float: right;
  background: #008cff;
  margin: 250px 80px 100px 0;
  border-radius: 30px;
  position: relative;
}
.helpcenter-video .box .left-img {
  position: absolute;
  width: 525px;
  height: 680px;
  background: url(../img/helpcenter-video-left.png);
  top: -120px;
  left: -270px;
}
.helpcenter-video .box .title {
  margin: 80px 0 45px 200px;
}
.helpcenter-video .box .warnning {
  width: 375px;
  height: 105px;
  border-radius: 15px;
  margin: 15px 0 0 230px;
  background: url(../img/helpcenter-video-warning.png) no-repeat #ff7e00;
  background-position: 30px 30px;
  color: #fff;
  font-size: 16px;
  padding: 25px 0 0 145px;
  position: relative;
  display: none;
}
.helpcenter-video .box .warnning span {
  display: block;
  font-size: 48px;
  line-height: 48px;
  padding-top: 12px;
}
.helpcenter-video .box .warnning i {
  font-size: 18px;
  font-style: normal;
  display: block;
  padding-top: 12px;
  line-height: 30px;
}
.helpcenter-video .box .warnning .countdown {
  position: absolute;
  bottom: 40px;
  color: #ff7e00;
  background: #fff600;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 45px;
  font-weight: bold;
  left: 43px;
  display: none;
}
.helpcenter-video .box .join .submit {
  width: 390px;
  height: 75px;
  line-height: 75px;
  color: #181931;
  font-size: 32px;
  background: linear-gradient(#fff, #e7e7e7);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.15);
  display: block;
  margin: 20px 0 0 300px;
  border-radius: 10px;
  text-align: center;
}
.helpcenter-video .box .join em {
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding-left: 30px;
  background: url(../img/helpcenter-video-clock.png) no-repeat left center;
  margin-left: 285px;
  color: #96d1ff;
  font-style: normal;
  font-size: 16px;
  margin-top: 30px;
}
.helpcenter-video .box .join .form {
  margin-left: 300px;
  margin-top: -200px;
  display: none;
}

/*帮助中心*/
.sub-menu {
  border: 1px solid #dddddd;
  margin-right: 30px;
  background-color: #fff;
}
.sub-menu h3 {
  font-size: 16px;
  margin-bottom: 0px;
}
.sub-menu h3 a {
  display: none;
}
.sub-menu ul {
  display: block;
  text-indent: 20px;
  padding: 15px 0;
}
/* .sub-menu ul li{display: ;} */
.sub-menu ul li a {
  height: 36px;
  display: block;
  line-height: 36px;
}
.sub-menu ul li a:hover {
  background-color: #f5f5f5;
}
.sub-menu ul li.cur a {
  background-color: #0078d6;
  color: #fff;
}

/*右侧悬浮客服*/
a.btn-urgent {
  width: 44px;
  padding: 5px 0;
  background: #ff3300;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
  display: block;
  font-size: 14px;
  color: #fff;
  position: fixed;
  right: 20px;
  z-index: 110;
  margin-bottom: -220px;
  bottom: 50%;
  text-align: center;
  border-radius: 22px;
}
a.btn-urgent:hover {
  background: #e72e00;
}

.right-service {
  position: fixed;
  right: 20px;
  bottom: 50%;
  margin-bottom: -85px;
  z-index: 100;
}
.right-service .btn {
  width: 44px;
  height: 145px;
  background: #00aeff;
  background: linear-gradient(#00aeff, #3986ee);
  text-align: center;
  color: #fff;
  font-size: 14px;
  line-height: 16px;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
  cursor: default;
}
.right-service .btn span {
  width: 26px;
  height: 26px;
  display: inline-block;
  margin: 10px 0;
}
.right-service .btn span img {
  width: 100%;
}
.right-service .btn:hover {
  background: #3986ee;
  background: linear-gradient(#3986ee, #00aeff);
}

.right-service .service-detail {
  position: relative;
}
.right-service .service-box {
  visibility: visible !important;
  bottom: 0;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
  display: none;
}
.right-service .service-box {
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  width: 260px;
  min-height: 50px;
  padding: 30px 20px;
  background: #fff;
  box-shadow: 0 6px 12px 0 rgba(0, 0, 0, 0.15);
  z-index: 4;
  bottom: -10;
  right: 52px;
}
.right-service .service-box .box-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  width: 30px;
  height: 22px;
  padding-top: 8px;
  text-align: center;
}
.right-service .service-box .box-close img {
  width: 14px;
  opacity: 0.5;
}
.right-service .service-box .box-close:hover img {
  opacity: 1;
}
.right-service .service-box .content {
  min-height: 24px;
  padding-left: 0;
  transition: all 0.3s;
  transition-delay: 0.1s;
}
.right-service .service-box .content li {
  list-style: none;
  margin-bottom: 20px;
}
.right-service .service-box .content li:last-of-type {
  margin-bottom: 0;
}
.right-service .service-box .content .content-icon {
  width: 40px;
  height: 40px;
  display: inline-block;
  vertical-align: top;
  float: left;
}
.right-service .service-box .content .content-icon img {
  width: 100%;
}
.right-service .service-box .content .content-main {
  display: inline-block;
  vertical-align: top;
  margin-left: 12px;
  float: left;
}
.right-service .service-box .content .content-main .content-title {
  font-size: 14px;
  color: #181931;
}
.right-service .service-box .content .content-main .content-desc {
  font-size: 12px;
  color: #8a8e99;
}
.right-service .service-box .content .content-main .content-phone {
  font-size: 18px;
  padding-bottom: 10px;
}
.right-service .service-box .content .content-main a .content-title {
  text-decoration: none;
  color: #3986ee;
}

.right-bar {
  position: fixed;
  right: 20px;
  bottom: 275px;
  z-index: 100;
  height: 192px;
}
.right-bar .warp {
  position: relative;
  height: 100%;
}
.right-bar .warp a {
  background: #3986ee;
  display: block;
  width: 64px;
  height: 64px;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center 10px;
  white-space: nowrap;
  color: #fff;
  text-align: center;
  display: block;
}
.right-bar .warp a:hover {
  background: #0a6bed;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center 10px;
}
.right-bar .warp a span {
  font-size: 12px;
  color: #fff;
  position: relative;
  top: 38px;
}
.right-bar .warp a.btn-free {
  background-image: url(../img/icon-rightbar-free11.png);
  border-radius: 0 0 4px 4px;
}
.right-bar .warp a.btn-online {
  background-image: url(../img/icon-rightbar-server11.png);
}
.right-bar .warp a.btn-call {
  background-image: url(../img/icon-rightbar-call11.png);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.btn-call-msg {
  width: 150px;
  height: 50px;
  border: 1px solid #ddd;
  border-radius: 4px;
  position: absolute;
  right: 65px;
  top: 0;
  color: #000;
  line-height: 18px;
  background: #fff url(../img/icon-rightbar-call11-on.png) no-repeat 20px center;
  background-size: 24px 24px;
  text-align: left;
  padding-left: 60px;
  padding-top: 14px;
  display: none;
}
.btn-call-msg font {
  color: #3986ee;
}
.right-bar .warp a.btn-call:hover .btn-call-msg {
  display: block;
}
.right-bar-adv {
  position: fixed;
  right: 20px;
  bottom: 405px;
  z-index: 100;
  height: 102px;
}

a.backToTop {
  border: 1px solid #ddd;
  text-align: center;
  font-size: 12px;
  color: #000;
  position: fixed;
  width: 62px;
  height: 62px;
  text-align: center;
  bottom: 200px;
  right: 20px;
  background: #fff;
  cursor: pointer;
  display: none;
  border-radius: 4px;
  z-index: 1000;
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center 12px;
  background-image: url(../img/icon-gotop.png);
}
a.backToTop:hover {
  border: 1px solid #ddd;
  background-color: #fff;
  color: #3986ee;
  background-image: url(../img/icon-gotop-blu.png);
}
a.backToTop img {
  width: 24px;
  margin: 10px 0 auto;
}
a.backToTop span {
  font-size: 12px;
  position: relative;
  top: 36px;
}
.main-right .iframe h2 span {
  display: none;
}

/*浮窗*/
.overlay {
  width: 100%;
  height: 100%;
  background: #181931;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0.5;
  filter: Alpha(Opacity=50);
  display: none;
  _position: absolute;
  z-index: 15000;
}
.fixed-box {
  width: 710px; /*height:570px;*/
  background: #fff;
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -210px 0 0 -355px;
  _margin: -180px 0 0 -355px;
  z-index: 20000;
  display: none;
  _position: absolute;
  padding: 0 10px 4px 10px;
  box-sizing: border-box;
}
.fixed-box .btn-close {
  width: 30px;
  height: 30px;
  display: block;
  background: url(../img/btn-fixed-close.png);
  background-size: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 100;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/r/cms/www/web2018/img/btn-fixed-close.png', sizingMethod='scale');
}
.fixed-box .btn-close:hover {
  background: url(../img/btn-fixed-close-hover.png);
  background-size: 100%;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/r/cms/www/web2018/img/btn-fixed-close-hover.png', sizingMethod='scale');
}
.fixed-box h4 {
  font-size: 18px;
  height: 60px;
  line-height: 60px;
  font-weight: normal;
  text-align: center;
  margin-top: 20px;
}

.video-box {
  width: 640px;
}
.video-box video {
  width: 100%;
  margin-bottom: 0;
}

/*销售查询*/
.topUp_box {
  width: 100%;
  margin: 65px 30px 0 0;
  position: relative;
  border: 1px solid #dddee5;
}
.topUp_box .formDetail {
  display: none;
  padding: 0 0 20px 20px;
}
.topUp_box_top {
  width: 723px;
  height: 6px;
  display: block;
  background: url(../img/images_263/topUp_top.gif) no-repeat;
  position: absolute;
  top: 0px;
  left: 0px;
}
.topUp_box_bottom {
  width: 723px;
  height: 6px;
  display: block;
  background: url(../img/images_263/topUp_bottom.gif) no-repeat;
  position: absolute;
  bottom: 0px;
  _bottom: -11px;
  left: 0px;
}
.topUp_title {
  width: 100%;
  height: 46px;
  position: absolute;
  top: -45px;
  _top: -48px;
  left: 0px;
  z-index: 100;
  padding: 0px;
  margin: 0px;
}
.topUp_title li {
  width: 40%;
  max-width: 232px;
  height: 44px;
  float: left;
  background: #f2f3f5;
  float: left;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border: 1px #dddee5 solid;
  border-bottom: 1px #eaebf1 solid;
  padding: 0;
}
.topUp_title li a {
  width: 100%;
  height: 44px;
  display: block;
  padding-top: 3px;
  font-size: 14px;
  color: #415660;
  text-align: center;
  line-height: 300%;
}
/*.topUp_title li a:hover,*/
.topUp_title_hover {
  background: #fff;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.topUp_title_dis {
  margin-left: 3px;
}
.topUp_boxCont {
  height: 60px;
  margin: 0 auto;
}
.topUp_domain {
  width: 105px;
  height: 32px;
  display: block;
  float: left;
  font-size: 14px;
  color: #282828;
  line-height: 190%;
  text-align: right;
}
.topUp_input {
  width: 90%;
  max-width: 480px;
  height: 32px;
  display: block;
  float: right;
  border: 1px #cbcfd5 solid;
  background: #fff;
  line-height: 200%;
  text-indent: 4px;
  color: #8a8e99;
}
.topUp_explain {
  width: 80%;
  max-width: 480px;
  height: 20px;
  display: block;
  float: right;
  font-size: 12px;
  color: #67777f;
}
.topUp_input:active,
.topUp_input:visited {
  border: 1px #ff4d54 solid;
  box-shadow: 1px 1px 2px #d5d4d4 inset;
}
.topUp_boxDis {
  padding-top: 15px;
}
.topUp_boxHight {
  padding-top: 0px;
  height: 32px;
}
.topUp_boxDis a {
  width: 100px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: block;
  background: #3986ee;
  color: #fff;
  margin-left: 203px;
}
.topUp_boxDis a.lf105 {
  letter-spacing: 5px;
  font-size: 14px;
  border: 1px solid #cbcfd5;
  background: #f0f0f0;
  color: #67777f;
  margin-left: 105px;
}
.topUp_boxHight_next {
  height: 40px;
  padding-bottom: 12px;
}
.topUp_boxDis a:hover {
  background: #006ec5;
}
.topUp_boxDis a:active {
  background: #006ec5;
}
.topUp_boxDis a.lf105:hover {
  border: 1px solid #cbcfd5;
  background: #f0f0f0;
}
.topUp_boxDis a.lf105:active {
  border: 1px solid #cbcfd5;
  background: #f0f0f0;
}
/*楠岃瘉鐮�*/
.topUp_boxDis a.identCode {
  background: #dae8f3;
  display: block;
  width: 90px;
  height: 35px;
  color: #519bd3;
  border: 1px solid #519bd3;
  position: absolute;
  left: 280px;
  top: 3px;
  margin: 0 0 0 25px;
  font-size: 18px;
  font-weight: bold;
  padding-top: 5px;
  letter-spacing: 3px;
}
.topUp_boxDis a.changeIdentCode {
  color: #0063e9;
  display: block;
  width: 150px;
  height: 20px;
  position: absolute;
  left: 370px;
  top: 20px;
  background: none;
  border: 0;
  margin: 0 0 0 25px;
  text-align: left;
  padding-left: 10px;
}
.topUp_boxDis a.changeIdentCode:hover {
  text-decoration: underline;
}
.topUp_boxDis .subBtn {
  width: 82px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: block;
  background: #ff8d00;
  border: 1px solid #e07c00;
  color: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  margin-left: 80px;
  margin-left: 118px;
  cursor: pointer;
}
.topUp_boxDis .subBtn:hover {
  background: #ffa230;
  border: 1px solid #ef9321;
}
.topUp_boxDetail {
  padding-top: 20px;
}
.topUp_boxDetail li {
  height: auto;
  display: inline-block;
  border: 0;
  padding: 0;
  min-height: 30px;
}
.topUp_boxDetail .tit li {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 0 10px 10px;
}
.topUp_boxDetail .len285 {
  width: 100px;
  color: #7b7b86;
}
.topUp_boxDetail div {
  display: block;
  padding: 5px 0;
  background: #e9f5ff;
  margin: 20px 20px 20px 0;
}
.topUp_boxDetail p a {
  color: #fff;
  float: right;
  display: block;
  background: #3986ee;
  text-align: center;
  padding: 3px 10px;
  margin-right: 20px;
}
.topUp_boxDetail .mar10 {
  margin-left: 20px;
}

.pc-show {
  display: block;
}
.case-row ul li {
  width: 50%;
  float: left;
}

/*2021-pyf*/
.pc-hide {
  display: none;
}
.padding-0 {
  padding: 0px;
}
.padding-bottom-0 {
  padding-bottom: 0px;
}
.padding-bottom-20 {
  padding-bottom: 20px !important;
}
.padding-bottom-50 {
  padding-bottom: 50px !important;
}
.padding-top-50 h1 {
  padding-top: 50px;
}
.height60 {
  height: 60px;
}

/* 案例--> */
.case_bg {
  background: #f9faff;
}
/* 案例banner */
.case-banner {
  background: #181931 url(../img/case/banner-case-finance.jpg) no-repeat;
}
.case-government-banner {
  background: #181931 url(../img/case/case-government-banner.jpg) no-repeat;
}
.case-consumer-banner {
  background: #181931 url(../img/case/case-consumer-banner.jpg) no-repeat;
}
.case-education-banner {
  background: #181931 url(../img/case/case-education-banner.jpg) no-repeat;
}
.case-realestate-banner {
  background: #181931 url(../img/case/case-realestate-banner.jpg) no-repeat;
}
.case-medicine-banner {
  background: #181931 url(../img/case/case-medicine-banner.jpg) no-repeat;
}
.case-manufacturing-banner {
  background: #181931 url(../img/case/case-manufacturing-banner.jpg) no-repeat;
}
.case-trade-banner {
  background: #181931 url(../img/case/case-trade-banner.jpg) no-repeat;
}
.case-energy-banner {
  background: #181931 url(../img/case/case-energy-banner.jpg) no-repeat;
}
.case-banner-bg {
  background: linear-gradient(
    90deg,
    #00050f 0%,
    rgba(0, 0, 0, 0.03) 20%,
    rgba(0, 0, 0, 0) 80%,
    #00050f 100%
  );
  height: 537px;
}
.section-pd0 {
  padding-top: 0px !important;
}

.overimg {
  position: relative;
  display: block;
  /* overflow: hidden; */
  box-shadow: 0 0 10px #fff;
}
.light {
  cursor: pointer;
  position: absolute;
  left: -320px;
  top: 0;
  width: 320px;
  height: 208px;
  background-image: -moz-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  background-image: -webkit-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  transform: skewx(-25deg);
  -o-transform: skewx(-25deg);
  -moz-transform: skewx(-25deg);
  -webkit-transform: skewx(-25deg);
}

.ico-toggle-top {
  position: relative;
  top: -2px;
}

/* 水波特效 */
.section-wavesIE img {
  width: 100%;
}
.section-waves {
  overflow: hidden;
}
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px; /*Fix for safari gap*/
  min-height: 130px;
  max-height: 150px;
  background: #fff;
}
.parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}

.txtButton1 a {
  border: 1px solid #45d79e;
  color: #45d79e;
}
.txtButton2 a {
  background: linear-gradient(90deg, #0bbafb 0%, #4285ec 100%);
  color: #fff;
}
.txtButton3 a {
  border: 1px solid #fba980;
  color: #fba980;
}
.txtButtonColor1 {
  background: linear-gradient(135deg, #43ea80, #45d79e);
}
.txtButtonColor2 {
  background: linear-gradient(135deg, #0bbafb, #4285ec);
}
.txtButtonColor3 {
  background: linear-gradient(135deg, #f7cb6b, #fba980);
}
.product-cloudMailbox-desc1 .list {
  min-height: 165px;
  border-radius: 8px;
  padding: 25px 40px 30px 40px;
  margin: 0px 15px 30px 15px;
}
.product-cloudMailbox-desc1 .list:hover h4,
.product-cloudMailbox-desc1 .list:hover p {
  color: #fff;
}
.product-cloudMailbox-desc1 .list h4 {
  font-size: 18px;
  font-weight: 700;
  padding: 8px 0 10px 35px;
}
.product-cloudMailbox-desc1 .list p {
  font-size: 16px;
  color: #818181;
  line-height: 24px;
  margin: 10px 0 20px 0;
  height: 48px;
  overflow: hidden;
}
.product-cloudMailbox-desc1 .list:hover .btn-more-hide {
  display: block;
}
.btn-morer {
  width: 140px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  background: #fff;
  border-radius: 20px;
  display: block;
  font-size: 16px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.btn-more-hide {
  display: none;
}

.h2-absolute {
  position: absolute;
  width: 100%;
  top: 60px;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
}

/*数据归集*/
.product-archiveboss-banner {
  background: #181931 url(../img/product/banner-product-archiveboss.jpg) center
    center no-repeat;
}
.product-archiveboss-box {
  min-height: 140px;
  margin-bottom: 20px;
}
.product-archiveboss-box h4 {
  text-align: left;
}
.product-archiveboss-box1 {
  background: url(../img/product/product-archiveboss-icon2.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 80% 75px, center center;
  background-size: 28% auto, 100% 100%;
}
.product-archiveboss-box2 {
  background: url(../img/product/product-archiveboss-icon4.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: 80% 75px, center center;
  background-size: 28% auto, 100% 100%;
}
.product-archiveboss-box3 {
  background: url(../img/product/product-archiveboss-icon1.png) no-repeat,
    linear-gradient(135deg, #7bd6ff, #24a9ff);
  background-position: 80% 75px, center center;
  background-size: 28% auto, 100% 100%;
}
.product-archiveboss-box4 {
  background: url(../img/product/product-archiveboss-icon3.png) no-repeat,
    linear-gradient(135deg, #f28e26, #fd644f);
  background-position: 80% 75px, center center;
  background-size: 28% auto, 100% 100%;
}
.product-archiveboss-box:hover {
  background-position: 80% 75px, center center;
  background-size: 30% auto, 100% 100%;
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.08);
  border-radius: 8px;
  transform: translate(0, -5px);
  -webkit-transform: translate(0, -5px);
  -moz-transform: translate(0, -5px);
  -o-transform: translate(0, -5px);
  -ms-transform: translate(0, -5px);
}

.product-archiveboss-box5 {
  background: linear-gradient(135deg, #0bbafb, #236eff);
  text-align: center;
  margin: 0 4px;
  padding: 40px 20px;
  height: 260px;
  display: block;
}
.product-archiveboss-box5 .icon {
  width: 40px;
}
.product-archiveboss-box5 p {
  text-align: justify;
}
.product-archiveboss-box5 h4 {
  text-align: center;
  margin-bottom: 16px;
}
.product-archiveboss-box5:hover {
  background: linear-gradient(135deg, #236eff, #0bbafb);
}

/* 现场拍摄 */
.product-service-banner {
  background: #181931 url(../img/product/banner-product-service.jpg) center
    center no-repeat;
}
.service-scene-des img {
  width: 100%;
}
.service-scene-des .list {
  margin: 0 15px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 180px;
}
.service-scene-des .list:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.service-scene-des .list h4 {
  font-size: 16px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80%;
  color: #fff;
  line-height: 50px;
  padding: 0 10%;
}
.service-scene-des .list:hover h4 {
  background: rgba(0, 0, 0, 0.3);
  height: 180px;
  line-height: 180px;
  text-align: center;
  font-size: 24px;
}
.service-activity-des .tex h4 {
  font-size: 24px;
  color: #3986ee;
  border-bottom: 1px solid #e1e6f0;
  padding-bottom: 20px;
}
.service-activity-des .row:hover img {
  opacity: 0.9;
}
.service-activity-des .tex p {
  color: #7b7b86;
}
.service-activity-des .tex {
  line-height: 24px;
  margin: 0 30px 0 20px;
  font-size: 15px;
}
.service-activity-des .tex .tex-box {
  padding: 10px 0;
}
.service-activity-des .tex .tex-box .item {
  padding: 5px 0;
}
.service-activity-des .tex .tex-box .item em {
  color: #7b7b86;
  padding-left: 10px;
  font-size: 14px;
  font-style: normal;
}
.service-activity-des .tex .tex-button {
  display: flex;
}
.service-activity-des .tex .tex-button a {
  margin-right: 20px;
}
.service-activity-des .pic img {
  width: 100%;
  border-radius: 8px;
}
.service-activity-des .pic {
  margin: 0 20px 0 30px;
}
.service-activity-des .pic-top {
  padding-top: 45px;
}
.service-activity-des .margin-0 {
  margin: 0 30px 0 20px;
}
.service-activity-des .margin-1 {
  margin: 0 20px 0 30px;
}
.service-help-desc {
  font-size: 16px;
}
.service-help-desc .list {
  margin: 6px 15px;
}
.service-process-bg {
  background: #fff url(../img/product/service-process-bg.jpg) center center
    repeat fixed;
  background-size: 1920px 600px;
}
.service-process-desc .item {
  height: 190px;
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.02);
  border-radius: 8px;
  margin: 0 15px;
  overflow: hidden;
}
.service-process-desc div:nth-child(1) .item {
  background: linear-gradient(135deg, #0bbafb, #236eff);
}
.service-process-desc div:nth-child(2) .item {
  background: linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
}
.service-process-desc div:nth-child(3) .item {
  background: linear-gradient(135deg, #7cd6ff, #24a9ff);
}
.service-process-desc div:nth-child(4) .item {
  background: linear-gradient(135deg, #f7cb6b, #fba980);
}
.service-process-desc div:nth-child(5) .item {
  background: linear-gradient(-45deg, #7683d9, #d8a0fe);
}
.service-process-desc div:nth-child(6) .item {
  background: linear-gradient(135deg, #ff887c, #b6325f);
}
.service-process-desc div:nth-child(1).swiper-slide {
  background: url(../img/product/service-sanjiao.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc div:nth-child(2).swiper-slide {
  background: url(../img/product/service-sanjiao1.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc div:nth-child(3).swiper-slide {
  background: url(../img/product/service-sanjiao2.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc div:nth-child(4).swiper-slide {
  background: url(../img/product/service-sanjiao3.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc div:nth-child(5).swiper-slide {
  background: url(../img/product/service-sanjiao4.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc div:nth-child(6).swiper-slide {
  background: url(../img/product/service-sanjiao5.png) center center no-repeat;
  width: 270px;
  height: 200px;
}
.service-process-desc {
  height: 248px;
}
.service-process-desc .swiper-wrapper {
  height: 200px;
}
.service-process-desc .item i {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 10px 20px;
}
.service-process-desc .item p {
  overflow: hidden;
  padding: 0 20px;
  color: #fff;
}
.service-process-desc .item h4 {
  font-size: 20px;
  color: #fff;
  padding: 0 20px;
}
.service-process-desc .item p span {
  color: #fff;
  font-weight: normal;
  opacity: 0.3;
  font-size: 48px;
  float: right;
  margin-top: 15px;
  font-weight: 700;
  font-family: arial;
}
.service-process-desc .item:hover p span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #3986ee;
  opacity: 1;
}
.service-process-desc .swiper-pagination-bullet {
  background: url(../img/product/service-download.png) 0 0 no-repeat;
  width: 300px;
  height: 16px;
  border-radius: 0px;
  cursor: pointer;
  margin: 0px !important;
}
.service-process-desc .item:hover h4 {
  margin-top: 0px;
}
.service-process-desc .item:hover .des {
  padding-top: 0px;
  display: block;
}
/* 云视频 */
.product-terminal-banner {
  background: #181931 url(../img/product/banner-product-terminal.jpg) center
    center no-repeat;
}
.product-terminal-desc {
  text-align: center;
}
.product-terminal-desc img {
  width: 94%;
  margin: 0 auto;
}
.box-img {
  overflow: hidden;
}
.product-terminal-desc .list h4 {
  font-size: 21px;
  padding: 0 15px;
  line-height: 40px;
}
.product-terminal-desc .list p {
  font-size: 16px;
  color: #7b7b86;
  padding: 0 15px;
  line-height: 24px;
  word-wrap: break-word;
  white-space: normal;
  word-break: break-all;
}
.product-terminal-desc .list p.desc {
  padding-top: 0px;
}
.product-terminal-desc .list h4.title {
  display: flex;
  margin-bottom: 50px;
  justify-content: space-between;
}
.product-terminal-desc .list h4.title a {
  width: 140px;
  height: 40px;
  background: #f4f4f4;
  border-radius: 20px;
  color: #3986ee;
  line-height: 40px;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}
.product-terminal-desc .list:hover h4.title a {
  background: #3986ee;
  color: #fff;
}
.product-terminal-desc .list:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
}
.product-terminal-desc .list:hover .terminal-tigs {
  display: block;
}
.product-terminal-desc .list {
  position: relative;
}
.product-terminal-desc img.terminal-tigs {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 45px;
  display: none;
}
.product-terminal-bg-0 {
  background: #fff url(../img/product/product-terminal-bg-0.jpg) center center
    no-repeat;
}
.product-terminal-bg-1 {
  background: #fff url(../img/product/product-terminal-bg-1.jpg) center center
    no-repeat;
}
.product-terminal-bg-2 {
  background: #fff url(../img/product/product-terminal-bg-2.jpg) center center
    no-repeat;
}
.product-terminal-bg-3 {
  background: #fff url(../img/product/product-terminal-bg-3.jpg) center center
    no-repeat;
}
/* VCX-9Z */
.product-vcx9z-banner {
  background: #181931 url(../img/product/vcx9z_banner.jpg) center center
    no-repeat;
}
.product-vcx9z-section {
  background: #181931 url(../img/hard-vcs6-26.jpg) top center no-repeat;
}
.product-vcx9z-section2 {
  background: #f9faff url(../img/product/vcx9z_section2.jpg) top center
    no-repeat;
  background-size: 1920px 1080px;
  height: 860px;
}
.product-vcx9z-section3 {
  background: #e6e9f0 url(../img/product/vcx9z_section3.jpg) top center
    no-repeat;
  background-size: 1920px 1080px;
}
.vcx9z-section3-img {
  background: url(../img/product/vcx9z-img3.png) bottom center no-repeat;
  height: 855px;
}
.vcx9z-section3-img h2 {
  color: #fff;
  padding-top: 380px;
}
.vcx9z-section3-img p {
  color: #fff;
  text-align: center;
  font-size: 18px;
  padding-top: 40px;
}
.product-vcx9z-section4 {
  background: #181931 url(../img/product/vcx9z_section4.jpg) top center
    no-repeat;
  background-size: 1920px 1080px;
  height: 960px;
}
.vcx9z-section4-img .desc {
  margin: 0 20px;
  text-align: center;
  color: #fff;
}
.vcx9z-section4-img .desc img {
  width: 100%;
}
.vcx9z-section4-img p {
  padding-top: 10px;
}
.vcx9z-section4-img .desc-img {
  text-align: center;
  position: relative;
  top: -70px;
}
/* .vcx9z-section4-img .desc-img img{width:100%;} */
.product-vcx9z-section5 {
  background: url(../img/product/vcx9z_section5.png) top center no-repeat;
  background-size: 1920px 1080px;
  height: 960px;
}
.product-vcx9z-section6 {
  background: #d4dfe5 url(../img/product/vcx9z_section6.jpg) top center
    no-repeat;
  background-size: 1920px 1080px;
}
.product-vcx9z-section7 {
  background: linear-gradient(135deg, #f5fefc, #e8f8f6);
}
.vcx9z-section7-img {
  background: url(../img/product/vcx9z-look.png) top center no-repeat;
  height: 850px;
  position: relative;
}
.vcx9z_video {
  position: absolute;
  top: 37%;
  left: 0;
}
.vcx9z_phone {
  position: absolute;
  top: 43%;
  right: 90px;
}
.vcx9z_yk {
  position: absolute;
  bottom: 0;
  right: 0;
}
.product-vcx9z-section .list {
  text-align: center;
  margin: 10px;
}
.product-vcx9z-section .list h4 {
  font-size: 20px;
  padding: 10px 0;
  color: #181931;
  font-weight: 700;
}
.product-vcx9z-section .list p {
  font-size: 16px;
  word-break: break-all;
  padding: 5px 20px;
  box-sizing: border-box;
  display: block;
}
.product-vcx9z-section .list img {
  width: 100%;
}
@keyframes warn1 {
  0% {
    transform: scale(0.1);
    -webkit-transform: scale(0.1);
    opacity: 0;
  }
  25% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.3;
  }
  50% {
    transform: scale(0.3);
    -webkit-transform: scale(0.3);
    opacity: 0.5;
  }
  75% {
    transform: scale(0.5);
    -webkit-transform: scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 0;
  }
}
.containerHot {
  top: 0px;
  position: relative;
  z-index: 1;
  left: -50px;
  width: 120px;
  height: 120px;
  margin: 0 auto;
  bottom: 20px;
  color: #fff;
}
.containerHot .img {
  position: absolute;
  top: 84px;
  left: 85px;
  width: 32px;
  height: 32px;
  z-index: 2;
}
.containerHot .img img {
  width: 100%;
}
/* 产生动画（向外扩散变大）的圆圈 第一个圆 */
.pulse {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  top: 0;
  background: #f56c6c;
  border: 1px solid #f56c6c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: warn1 2s linear 0.5s infinite;
  box-shadow: 1px 1px 30px #f56c6c; /* 阴影效果 */
}
/* 产生动画（向外扩散变大）的圆圈 第二个圆 */
.pulse1 {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  top: 0;
  border: 1px solid #f56c6c;
  background: #f56c6c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: warn1 2s linear 1s infinite;
  box-shadow: 1px 1px 30px #f56c6c; /* 阴影效果 */
}
.pulse2 {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  top: 0;
  background: #f56c6c;
  border: 1px solid #f56c6c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: warn1 2s linear 1.5s infinite;
  box-shadow: 1px 1px 30px #f56c6c; /* 阴影效果 */
}
.pulse3 {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 0;
  top: 0;
  background: #f56c6c;
  border: 1px solid #f56c6c;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  animation: warn1 2s linear 2s infinite;
  box-shadow: 1px 1px 30px #f56c6c; /* 阴影效果 */
}

/* 云课 */
.product-class-banner {
  background: #181931 url(../img/product/banner-product-class.jpg) center center
    no-repeat;
}
.PosHeaderNav {
  background: #00184b;
  height: 60px;
  line-height: 60px;
}
.BannerNav {
  height: 60px;
  line-height: 60px;
}
.PosHeaderNav a {
  display: block;
  font-size: 16px;
  color: #fff;
  margin: 0 7%;
  display: inline-block;
  height: 58px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.PosHeaderNav1 a {
  margin: 0 5% !important;
}
.PosHeaderNav2 a {
  margin: 0 4.2% !important;
}
.PosHeaderNav3 a {
  margin: 0 3.2% !important;
}
.PosHeaderWrite {
  background: #fff;
  box-shadow: 0px 0px 14px 0px rgba(95, 126, 209, 0.2);
}
.PosHeaderWrite a {
  margin: 0px;
  padding: 0 20px;
  color: #181931;
}
.PosHeaderNav a:hover,
.PosHeaderNav a.Act {
  border-bottom: 2px solid #3986ee;
}
.PosFixed {
  position: fixed;
  top: 0px;
  z-index: 9999;
  width: 100%;
}
.product-class-section .list {
  margin: 10px 15px;
  opacity: 1;
  height: 100%;
}
.product-class-section .list img {
  width: 100%;
  border-radius: 8px;
}
.product-class-section .list h4 {
  font-size: 16px;
  padding: 10px 0;
  text-align: center;
}
.product-class-section .list:hover {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  opacity: 0.9;
}
.product-class-section1 {
  display: flex;
  border-radius: 8px;
  height: 350px;
}
.product-class-section1 .list {
  padding: 110px 20px;
  text-align: center;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.product-class-section1 .list:hover {
  padding: 46px 20px;
  height: 100%;
  border-radius: 4px;
}
.product-class-section1 .list img {
  height: 40px;
}
.product-class-section1 h4 {
  font-size: 18px;
  margin-top: 25px;
  height: 70px;
}
.ico_class_hover {
  display: none;
}
.product-class-section1 p {
  color: #fefefe;
  font-size: 14px;
  display: none;
  line-height: 21px;
  height: 100px;
  text-align: left;
}
.product-class-section1 .meetBtn {
  display: none;
}
.product-class-section1 .class_box {
  flex: 1;
  background: #fbfbfb;
}
.product-class-section1 .class_box:hover {
  background: #3986ee url(../img/product/class_bg.png) center center no-repeat;
}
.product-class-section1 .class_box:hover .ico_class_hover {
  display: block;
  margin: 0 auto;
}
.product-class-section1 .class_box:hover .meetBtn {
  display: block;
}
.product-class-section1 .class_box:hover h4 {
  color: #fff;
}
.product-class-section1 .class_box:hover p {
  display: block;
}
.product-class-section1 .class_box:hover .ico_class {
  display: none;
}
.product-class-section3 #ulTabr {
  border-bottom: 1px solid #e5eaf1;
  overflow: hidden;
  line-height: 40px;
}
.product-class-section3 #ulTabr li {
  float: left;
  cursor: pointer;
  font-size: 18px;
  margin: 0 7%;
}
.product-class-section3 #ulTabr li.cur {
  border-bottom: 3px solid #3986ee;
  color: #3986ee;
}
.product-class-section3 #xtDesc {
  overflow: hidden;
  margin-top: 40px;
}
.product-class-section3 #xtDesc .list {
  margin: 0 20px;
}
.product-class-section3 #xtDesc .list h4 {
  font-size: 26px;
  margin-top: 50px;
}
.product-class-section3 #xtDesc .list p {
  color: #7b7b86;
  font-size: 16px;
  padding: 30px 0;
}
.product-class-section3 #xtDesc img {
  width: 100%;
}
.cloudVideo-class-bg-0 {
  background: #181931 url(../img/product/cloudVideo-class-bg-0.jpg) center
    center no-repeat;
}
.cloudVideo-class-bg-1 {
  background: #181931 url(../img/product/cloudVideo-class-bg-1.jpg) center
    center no-repeat;
}
.cloudVideo-class-bg-2 {
  background: #181931 url(../img/product/cloudVideo-class-bg-2.jpg) center
    center no-repeat;
}
/* 云会 */
.product-meet-banner {
  background: #181931 url(../img/product/banner-product-meet.jpg) center center
    no-repeat;
}
.product-meet-des .list {
  margin: 0 20px;
  color: #fff;
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.02);
  border-radius: 8px;
  min-height: 220px;
  padding: 40px 30px;
}
.product-meet-des .list:hover {
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.06);
}
.product-meet-des .list h4 {
  font-size: 20px;
  text-align: center;
}
.product-meet-des .list h4.sm-title {
  font-size: 18px;
  padding-top: 10px;
}
.product-meet-des .list p {
  font-size: 16px;
  line-height: 24px;
  padding: 30px 0 40px 0;
  height: 72px;
  overflow: hidden;
}
.product-meet-des .list1 {
  background: linear-gradient(135deg, #0bbafb, #236eff);
}
.product-meet-des .list2 {
  background: linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
}
.product-meet-des .list3 {
  background: linear-gradient(135deg, #7cd6ff, #24a9ff);
}
.product-meet-des .list4 {
  background: linear-gradient(135deg, #f7cb6b, #fba980);
}
.product-meet-des .list5 {
  background: linear-gradient(-45deg, #7683d9, #d8a0fe);
}
.product-meet-des .list6 {
  background: linear-gradient(135deg, #ff887c, #b6325f);
}
.product-meet-des .meetBtn a {
  margin: 0 auto;
  background: none;
  border: 1px solid #fff;
  color: #fff;
}
.product-meet-des .list:hover .meetBtn a {
  background: #fff;
  color: #3986ee;
}

.solution_activity_img img {
  width: 100%;
}
.solution_activity_img .list {
  margin: 0 20px;
}

.section .conference-section-applicat .left-img li {
  border-radius: 0px;
}
.section .conference-section-applicat .right-nav ul li.cur {
  line-height: 112.5px !important;
  height: 112.5px !important;
}
.conference-section-applicat .right-nav ul li i.icon {
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  display: inline-block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  top: 4px;
  margin-right: 10px;
}

.row-item {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.conference-section-applicat p.desc {
  height: auto !important;
}

/* 医药-科室会 */
.solution-medical-section-banner {
  background: #181931 url(../img/solution/banner-solution-medical-section.jpg)
    center center no-repeat;
}
.solution-medical-box1,
.solution-medical-box1:hover {
  background: url(../img/solution/solution-medical-box1.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 195px 205px, center center;
  background-size: 35% auto, 100% 100%;
  margin: 0 20px;
  min-height: 200px;
}
.solution-medical-box2,
.solution-medical-box2:hover {
  background: url(../img/solution/solution-medical-box2.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: 195px 205px, center center;
  background-size: 35% auto, 100% 100%;
  margin: 0 20px;
  min-height: 200px;
}
.solution-medical-box3,
.solution-medical-box3:hover {
  background: url(../img/solution/solution-medical-box3.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: 195px 205px, center center;
  background-size: 35% auto, 100% 100%;
  margin: 0 20px;
  min-height: 200px;
}
.solution-medical-des1 .list1 {
  background: url(../img/solution/solution-medical-img4.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-medical-des1 .list2 {
  background: url(../img/solution/solution-medical-img5.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-medical-des1 .list {
  padding: 40px;
}
.solution-medical-des1 .list .meetBtn a,
.solution-e-commerce-des1 .list .meetBtn a {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.solution-medical-des1 .list:hover .meetBtn a,
.solution-e-commerce-des1 .list:hover .meetBtn a {
  background: #3986ee;
}
.solution-medical-des1 .list .meetBtn,
.solution-e-commerce-des1 .list .meetBtn {
  margin-top: 30px;
}
.solution-medical-des1 h4 {
  text-align: center;
  background: none !important;
  padding: 0 0 12px 0 !important;
  font-size: 24px !important;
}
.service-medical-des h4 {
  margin-top: 60px;
}
/* 学术研讨 */
.solution-medical-academic-banner {
  background: #181931 url(../img/solution/banner-solution-medical-academic.jpg)
    center center no-repeat;
}
/* 手术直播 */
.solution-surgery-academic-banner {
  background: #181931 url(../img/solution/banner-solution-medical-surgery.jpg)
    center center no-repeat;
}

/* 教培 */
.solution-pta-desc .list h4 {
  font-size: 24px;
  margin-top: 80px;
}
.solution-pta-desc .list:hover h4 {
  padding: 20px 0;
}
.solution-training-pta-banner {
  background: rgb(194, 191, 191)
    url(../img/solution/solution-training-pta-surgery.jpg) center center
    no-repeat;
}
.solution-training-pay-banner {
  background: #181931 url(../img/solution/solution-training-pay-surgery.jpg)
    center center no-repeat;
}
.solution-medical-air-banner {
  background: #181931 url(../img/solution/solution-medical-air.jpg) center
    center no-repeat;
}
.solution-openClass-banner {
  background: #181931 url(../img/solution/solution-openClass-banner.jpg) center
    center no-repeat;
}
.training-pta-bg-0 {
  background: #181931 url(../img/solution/training-pta-bg-0.jpg) center center
    no-repeat;
}
.solution-payClass-box1,
.solution-payClass-box1:hover {
  background: url(../img/solution/solution-payClass-box1.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 195px 205px, center center;
  background-size: 35% auto, 100% 100%;
  margin: 0 20px;
  min-height: 200px;
}
.solution-payClass-box2,
.solution-payClass-box2:hover {
  background: url(../img/solution/solution-payClass-box2.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: 195px 205px, center center;
  background-size: 35% auto, 100% 100%;
  margin: 0 20px;
  min-height: 200px;
}
.solution-payClass-des1 .list1 {
  background: url(../img/solution/solution-payClass-img1.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-payClass-des1 .list2 {
  background: url(../img/solution/solution-payClass-img2.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-payClass-des1 .list a {
  color: #fff;
}
.solution-payClass-des1 .list h4 {
  text-align: left;
  font-size: 20px !important;
}
.solution-payClass-des1 .list {
  min-height: 80px;
}
.solution-air-box4 {
  background: url(../img/solution/solution-air-box4.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: 145px 248px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-air-bg-0 {
  background: #181931 url(../img/solution/solution-air-bg-0.jpg) center center
    no-repeat;
}
.solution-air-bg-1 {
  background: #181931 url(../img/solution/solution-air-bg-1.jpg) center center
    no-repeat;
}
.solution-air-bg-2 {
  background: #181931 url(../img/solution/solution-air-bg-2.jpg) center center
    no-repeat;
}
.air-bg-steps {
  background: url(../img/solution/air-bg-steps.png) no-repeat center center;
  background-size: 1920px 400px;
}
.air-steps-padding {
  padding: 20px 0;
  text-align: center;
}
.solution-air-des1 .list a {
  color: #fff;
}
.solution-air-des1 .list .meetBtn a {
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.4);
  color: #fff;
  display: none;
}
.solution-air-des1 .list .meetBtn a:hover {
  background: #3986ee;
}
.solution-air-des1 .list:hover p {
  display: block;
}
.solution-air-des1 .list:hover h4 {
  padding-top: 40px;
}
.solution-air-des1 .list:hover .meetBtn a {
  display: block;
}
.solution-air-des1 .list {
  padding: 10px 40px;
  margin-bottom: 30px;
  min-height: 192px;
}
.solution-air-des1 .list h4 {
  background: none;
  text-align: center;
  padding: 0px;
  font-size: 24px;
  padding-top: 80px;
}
.solution-air-des1 .list p {
  display: none;
  height: 58px;
}
.solution-air-des1 .list1 {
  background: url(../img/solution/solution-air-img4.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-air-des1 .list2 {
  background: url(../img/solution/solution-air-img5.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-air-des1 .list3 {
  background: url(../img/solution/solution-air-img6.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-air-des1 .list4 {
  background: url(../img/solution/solution-air-img7.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-openClass-bg-0 {
  background: #181931 url(../img/solution/solution-openClass-bg-0.jpg) center
    center no-repeat;
}
.solution-openClass-bg-1 {
  background: #181931 url(../img/solution/solution-openClass-bg-1.jpg) center
    center no-repeat;
}
.solution-openClass-bg-2 {
  background: #181931 url(../img/solution/solution-openClass-bg-2.jpg) center
    center no-repeat;
}
.solution-training-pay-black ul li i,
.solution-training-pay-black ul li span {
  background-image: url(../img/solution/solution-pay-icon.png);
}
.solution-openClass-black ul li i,
.solution-openClass-black ul li span {
  background-image: url(../img/solution/solution-openClass-icon.png);
}
/* 金融 */
.solution-finance-webinars-banner {
  background: #181931 url(../img/solution/solution-finance-webinars.jpg) center
    center no-repeat;
}
.solution-finance-pdie-banner {
  background: #181931 url(../img/solution/solution-finance-pdie.jpg) center
    center no-repeat;
}
.solution-finance-live-banner {
  background: #181931 url(../img/solution/solution-finance-live.jpg) center
    center no-repeat;
}
.solution-webinars-des1 .list1 {
  background: url(../img/solution/solution-webinars-img1.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-webinars-des1 .list2 {
  background: url(../img/solution/solution-webinars-img2.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-webinars-des1 .list3D {
  background: url(../img/solution/solution-webinars-img3d.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-webinars-des1 h4 {
  text-align: left;
  font-size: 20px !important;
}
.solution-webinars-des1 p {
  margin-top: 0px !important;
  height: 45px;
  line-height: 20px;
}
.solution-webinars-des1 .list .meetBtn {
  margin-top: 10px !important;
}
.solution-webinars-des1 .list {
  padding: 35px 40px;
}
.solution-webinars-des1 .list .meetBtn a {
  margin: inherit;
}
.solution-pdie-box1,
.solution-pdie-box1:hover {
  background: url(../img/solution/solution-pdie-box1.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 145px 255px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-pdie-box2,
.solution-pdie-box2:hover {
  background: url(../img/solution/solution-pdie-box2.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: 145px 255px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-pdie-box3,
.solution-pdie-box3:hover {
  background: url(../img/solution/solution-pdie-box3.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: 145px 255px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-pdie-box4,
.solution-pdie-box4:hover {
  background: url(../img/solution/solution-pdie-box4.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: 145px 255px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-live-bg-0 {
  background: #181931 url(../img/solution/solution-live-bg-00.jpg) center center
    no-repeat;
}
.solution-live-bg-1 {
  background: #181931 url(../img/solution/solution-live-bg-1.jpg) center center
    no-repeat;
}
.solution-live-bg-2 {
  background: #181931 url(../img/solution/solution-live-bg-2.jpg) center center
    no-repeat;
}
.solution-live-black ul li i,
.solution-live-black ul li span {
  background-image: url(../img/solution/solution-live-icon.png);
}
/* 体制内教育 */
.solution-teacherClass-banner {
  background: #181931 url(../img/solution/solution-teacherClass-banner.jpg)
    center center no-repeat;
}
.solution-mailClass-banner {
  background: #181931 url(../img/solution/solution-mailClass-banner.jpg) center
    center no-repeat;
}
.solution-teacherClass-des1 .list {
  min-height: 100px;
}
.solution-teacherClass-des1 .list a {
  color: #fff;
}
.solution-teacherClass-des1 .list h4 {
  text-align: left;
  font-size: 20px !important;
}
.solution-teacherClass-des1 .list1 {
  background: url(../img/solution/solution-teacherClass-img1.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-teacherClass-des1 .list2 {
  background: url(../img/solution/solution-teacherClass-img2.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-teacherClass-des1 .list3 {
  background: url(../img/solution/solution-teacherClass-img3.png) 0 0 no-repeat;
  background-size: cover;
  margin-top: 40px;
}
.solution-teacherClass-des1 .list4 {
  background: url(../img/solution/solution-teacherClass-img4.png) 0 0 no-repeat;
  background-size: cover;
  margin-top: 40px;
}
.solution-teacherClass-des1 .list5 {
  background: url(../img/solution/solution-teacherClass-img5.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-teacherClass-des1 .list6 {
  background: url(../img/solution/solution-teacherClass-img6.png) 0 0 no-repeat;
  background-size: cover;
}
.solution-teacherClass-des1 .list7 {
  background: url(../img/solution/solution-teacherClass-img7.png) 0 0 no-repeat;
  background-size: cover;
  margin-top: 40px;
}
.solution-teacherClass-des1 .list8 {
  background: url(../img/solution/solution-teacherClass-img8.png) 0 0 no-repeat;
  background-size: cover;
  margin-top: 40px;
}
.solution-onlineClass-banner {
  background: #181931 url(../img/solution/solution-onlineClass-banner.jpg)
    center center no-repeat;
}
.solution-onlineClass-box1 {
  background: url(../img/solution/solution-onlineClass-box1.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-onlineClass-box2 {
  background: url(../img/solution/solution-onlineClass-box2.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-onlineClass-box3 {
  background: url(../img/solution/solution-onlineClass-box3.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-onlineClass-box4 {
  background: url(../img/solution/solution-onlineClass-box4.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: 145px 248px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-mailClass-box1 {
  background: url(../img/solution/solution-mailClass-box1.png) no-repeat,
    linear-gradient(135deg, #0bbafb, #236eff);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-mailClass-box2 {
  background: url(../img/solution/solution-mailClass-box2.png) no-repeat,
    linear-gradient(135deg, #84f5de, #56e8f2, #4cc5f8);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-mailClass-box3 {
  background: url(../img/solution/solution-mailClass-box3.png) no-repeat,
    linear-gradient(135deg, #7cd6ff, #24a9ff);
  background-position: 145px 258px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-mailClass-box4 {
  background: url(../img/solution/solution-mailClass-box4.png) no-repeat,
    linear-gradient(135deg, #f7cb6b, #fba980);
  background-position: 145px 252px, center center;
  background-size: 38% auto, 100% 100%;
}
.solution-onlineClass-black ul li i,
.solution-onlineClass-black ul li span {
  background-image: url(../img/solution/solution-onlineClass-icon.png);
}
/* 20210901---PYF---空中学校 */
.air-school-height40 {
  height: 40px;
}
.air-school-height20 {
  height: 20px;
}
.localized-bg-f2f7fe {
  background: #f2f7fe;
}
.product-advantage-desc .list h4.airschool-blue-title,
.solution-airschool-model h4.airschool-blue-title {
  color: #3986ee;
}
.solution-airschool-banner {
  background: #181931 url(../img/solution/solution-airschool-banner.jpg) center
    center no-repeat;
}
.solution-airschool-desc .list {
  border-radius: 10px;
  padding: 20px 60px 0px 60px;
  margin: 0 20px;
  background: #f2f7fe url(../img/solution/solution-airschool-ico.png) no-repeat;
  border-right: none;
}
.solution-airschool-desc .list:hover {
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.02);
}
.solution-airschool-desc .tex {
  background-position: right 52px;
}
.solution-airschool-desc .tex1 {
  background-position: right -150px;
}
.solution-airschool-model {
  background: #f2f7fe;
  border-radius: 10px;
  margin: 50px 20px 0px 20px;
  padding: 40px 25px;
}
.solution-airschool-model .solution-airschool-part {
  display: flex;
  display: -ms-flex;
}
.solution-airschool-model .solution-airschool-item {
  border-radius: 10px;
  color: #fff;
  flex: 1;
  -ms-flex: 1;
  padding: 35px 30px;
  margin: 0 5px;
  position: relative;
}
.solution-airschool-model .solution-airschool-item:hover {
  transform: translate(0, -6px);
  -webkit-transform: translate(0, -6px);
  -moz-transform: translate(0, -6px);
  -o-transform: translate(0, -6px);
  -ms-transform: translate(0, -6px);
}
.solution-airschool-model .solution-airschool-item i {
  position: absolute;
  width: 90px;
  height: 100px;
  right: -10px;
  bottom: -20px;
  background: url(../img/solution/solution-airschool-ico1.png) no-repeat;
}
.solution-airschool-model .solution-airschool-item h5 {
  font-size: 18px;
  padding-bottom: 5px;
}
.solution-airschool-model .airschool-blue-title {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
}
.solution-airschool-item1 {
  background: linear-gradient(90deg, #236eff 0%, #0bbafb 100%);
}
.solution-airschool-item2 {
  background: linear-gradient(90deg, #02dab6 0%, #45edd1 100%);
}
.solution-airschool-item3 {
  background: linear-gradient(90deg, #ff8322 0%, #ffc180 100%);
}
.solution-airschool-item4 {
  background: linear-gradient(90deg, #e13d3d 0%, #ff8484 100%);
}
.solution-airschool-item5 {
  background: linear-gradient(90deg, #785cb6 0%, #c377ef 100%);
}
.solution-airschool-model .solution-airschool-item1 i {
  background-position: 0 8px;
}
.solution-airschool-model .solution-airschool-item2 i {
  background-position: 0 -88px;
}
.solution-airschool-model .solution-airschool-item3 i {
  background-position: 0 -176px;
}
.solution-airschool-model .solution-airschool-item4 i {
  background-position: 0 -270px;
}
.solution-airschool-model .solution-airschool-item5 i {
  background-position: 0 -352px;
}
.solution-airschool-card .card {
  margin: 0 20px;
  text-align: center;
  position: relative;
}
.solution-airschool-card .card i {
  background: url(../img/solution/solution-airschool-more.png) no-repeat;
  position: absolute;
  right: -30px;
  top: 180px;
  width: 20px;
  height: 13px;
}
.solution-airschool-card .card2 i {
  top: 260px;
}
.solution-airschool-card .card p {
  height: 50px;
  line-height: 50px;
  border-radius: 8px;
  margin: 10px 0;
  font-size: 16px;
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.solution-airschool-card .card p:hover {
  box-shadow: 0px 16px 16px 0px rgba(55, 69, 103, 0.04);
  font-weight: 700;
  opacity: 0.8;
  transform: translate(0, -1px);
  -webkit-transform: translate(0, -1px);
  -moz-transform: translate(0, -1px);
  -o-transform: translate(0, -1px);
  -ms-transform: translate(0, -1px);
}
.solution-airschool-card .card p.title {
  color: #fff;
  font-size: 18px;
  margin: 30px 0;
}
.solution-airschool-card .card p.title1 {
  background: #3986ee;
  color: #fff;
  font-size: 20px;
}
.solution-airschool-card .card1 p {
  background: #c7dfff;
  color: #006cff;
}
.solution-airschool-card .card1 p.title {
  background: #3986ee;
}
.solution-airschool-card .card2 p {
  background: #ccf1db;
  color: #00b849;
}
.solution-airschool-card .card2 p.title {
  background: #00b849;
}
.solution-airschool-card .card3 p {
  background: #fff6e5;
  color: #ffa800;
}
.solution-airschool-card .card3 p.title {
  background: #ffa800;
}
.solution-airschool-card .card4 p {
  background: #e8f2ff;
  color: #009cff;
}
.solution-airschool-card .card4 p.title {
  background: #009cff;
}

/* 20220322虚拟直播 */
.solution-activity-mrlive-banner {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 37.54%;
  background: #001132;
}
.solution-activity-mrlive-banner .info-black {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 17, 50, 0.6)),
    color-stop(50%, rgba(0, 0, 0, 0.1)),
    to(rgba(0, 17, 50, 0.6))
  );
  background-image: -webkit-linear-gradient(
    left,
    rgba(0, 17, 50, 0.6) 0,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 17, 50, 0.6) 100%
  );
  background-image: -o-linear-gradient(
    left,
    rgba(0, 17, 50, 0.6) 0,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 17, 50, 0.6) 100%
  );
  background-image: linear-gradient(
    90deg,
    rgba(0, 17, 50, 0.6) 0,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 17, 50, 0.6) 100%
  );
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 0px;
  flex-direction: column;
}
.solution-activity-mrlive-banner .info-black h1 {
  font-size: 60px;
  color: #fff;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-mr-live__banner__video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.solution-activity-mrlive-banner .product-btn-group a.btn-free {
  width: 300px;
  height: 56px;
  line-height: 56px;
  background: linear-gradient(-90deg, #0dccff 0%, #4760ff 100%);
  font-size: 20px;
  border: none;
  margin-right: 0px;
}
.solution-activity-mrlive-banner .product-btn-group a.btn-free:hover {
  background: linear-gradient(-90deg, #4760ff 0%, #0dccff 100%) !important;
}
.localized-bg-blue-gd {
  background: linear-gradient(90deg, #f5f6fb 0%, #dbeafa 100%);
}
.localized-bg-blue {
  background: #001132;
}
.localized-bg-blue h2.title {
  color: #2879ff;
}
.localized-bg-blue h2.title i {
  color: #fff;
}
.mrlive-block {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.mrlive-block .item {
  width: 180px;
  height: 340px;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease-in-out;
  margin-left: 20px;
}
.mrlive-block .item .mask {
  width: 80%;
  padding: 90px 0;
  box-sizing: border-box;
  display: block;
  height: 100%;
  left: -100%;
  opacity: 0;
  position: absolute;
  transition: left 0.5s;
  transition-delay: 0.22s;
}
.mrlive-block .item .mask > p {
  font-size: 14px;
  font-weight: 500;
  color: hsla(0, 0%, 100%, 0.6);
  margin-top: 24px;
}
.mrlive-block .item .mask > p:hover {
  color: #fff;
}
.mrlive-block .item .mask .text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 34px;
  margin-top: 40px;
}
.mrlive-block .item .mask .icon {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  line-height: 28px;
}
.mrlive-block .item .mask .icon > img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}
.mrlive-block .item .logo {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transition-delay: 0.1s;
}
.mrlive-block .item .logo > img {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
}
.mrlive-block .item .logo > p {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}
.mrlive-block .item:first-of-type {
  background-position-x: 67%;
}
.mrlive-block .item:nth-of-type(2) {
  background-position-x: 30%;
}
.mrlive-block .item:nth-of-type(3) {
  background-position-x: 86%;
}
.mrlive-block .item:nth-of-type(4) {
  background-position-x: 82%;
}
.mrlive-block .item:nth-of-type(5) {
  background-position-x: 100%;
}
.mrlive-block .item.active {
  background-position-x: 0 !important;
  width: 560px;
}
.mrlive-block .item.active .mask {
  left: 50px;
  opacity: 1;
}
.mrlive-block .item.active .logo {
  bottom: -112px;
  opacity: 0;
}
.mrlive-section-applicat video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mrlive-section-applicat p.desc {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(#222530),
    to(rgba(50, 54, 71, 0))
  );
  background-image: -webkit-linear-gradient(
    bottom,
    #222530 0,
    rgba(50, 54, 71, 0) 100%
  );
  background-image: -o-linear-gradient(
    bottom,
    #222530 0,
    rgba(50, 54, 71, 0) 100%
  );
  background-image: linear-gradient(0deg, #222530 0, rgba(50, 54, 71, 0) 100%);
  padding: 36px 36px 26px !important;
  font-size: 16px;
  color: #fff;
  line-height: 26px;
}
.mrlive-section-applicat .left-img li {
  padding: 0px !important;
  background: none;
}
.mrlive-section-applicat .left-img li.img4 {
  background-image: url(../img/solution/263zhdangjian.jpg) !important;
  background-position: center;
}
.mrlive-section-applicat .right-nav {
  background: none !important;
}
.mrlive-section-applicat .right-nav ul {
  width: 92% !important;
}
.mrlive-section-applicat .right-nav ul li {
  line-height: initial;
  background: url(../img/solution/solution-mrliveD3-li.jpg) no-repeat center
    center;
  height: 81px !important;
  line-height: 81px !important;
  border: none !important;
  border-radius: 0px !important;
  text-align: left !important;
  color: #fff;
  font-weight: 700;
  padding: 0 40px;
  font-size: 24px !important;
}
.mrlive-section-applicat .right-nav ul li.cur {
  background: linear-gradient(90deg, #0dccff 0%, #4760ff 100%) !important;
  height: 127px !important;
}
.mrlive-section-applicat .right-nav ul li p {
  font-size: 16px;
  color: #fff;
  display: none;
  line-height: 24px !important;
  font-weight: 400 !important;
  position: relative;
  top: -20px;
}
.mrlive-section-applicat .right-nav ul li.cur p {
  display: block;
}

@-webkit-keyframes scrollToUp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3490px 0;
  }
}
@keyframes scrollToUp {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -3490px 0;
  }
}
.about-data-msg {
  width: 70%;
  margin: 0 auto;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
.about-data-desc {
  background: url(../img/about/why-map.png) center center no-repeat;
  background-size: 1200px 356px;
  height: 300px;
  padding: 28px 200px;
  margin-top: 50px;
}
.about-data-desc h4 {
  color: #3986ee;
  font-size: 24px;
  font-weight: inherit;
}
.about-data-desc h4 b {
  font-size: 56px;
  font-family: arial;
}
.about-data-desc div:nth-child(2) .list {
  margin-top: 80px;
}
.about-data-desc div:nth-child(3) .list {
  margin-top: 50px;
}
/* 20210809 */
.box-width-img {
  width: 100%;
  border-radius: 8px;
}
.about-info-tex {
  line-height: 22px;
}
.about-info-tex p .blue {
  color: #3986ee;
}
.about-info-section {
  margin: 0 20px;
}
.about-warp-section .row {
  position: relative;
  padding: 30px 0;
}
.about-history-more {
  text-align: center;
  font-size: 18px;
  color: #3e89ef;
  padding: 50px 0 0 0;
  cursor: pointer;
}
.team-section-bg {
  background: #2e7ae8 url(../img/about/team-section-bg.jpg) center center
    no-repeat;
  background-size: 1920px 100%;
}
.team-culture-section .blog-list {
  background: #fff;
  border-radius: 8px;
  border: none;
}
.team-culture-section .blog-list .txt {
  border: none;
}
.team-culture-section .swiper-pagination {
  bottom: 0px !important;
}
.team-culture-section .swiper-pagination-bullet-active {
  background: #fff !important;
}
/* 大事件时间轴 */
.timeline {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding-top: 20px;
  background-color: inherit;
}
.timeline:after {
  content: "";
  position: absolute;
  width: 5px;
  background-color: #b3d1ff;
  left: 50%;
  top: 0;
  bottom: 0;
  margin-left: -2px;
}
.timeline--first:after {
  top: 20px;
}
.entry {
  padding: 15px 20px 0px 20px;
  width: 42%;
  position: relative;
  background-color: inherit;
}
.entry--left {
  text-align: right;
}
.entry--right {
  margin-left: 53%;
}
.entry__content {
  position: relative;
}
.entry__content h4 {
  padding-bottom: 5px;
  font-size: 30px;
  font-weight: 700;
  font-family: Arial;
}
.entry__content p {
  color: #464964;
  font-size: 16px;
}
.entry:before {
  content: " ";
  height: 0;
  position: absolute;
  top: 20px;
  width: 0;
  z-index: 1;
}
.entry:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: -34.25px;
  background-color: white;
  border: 3px solid #3986ee;
  top: 24px;
  border-radius: 50%;
  z-index: 1;
}
.entry--right:after {
  right: auto;
  left: -31.25px;
}
/* 关于我们-新闻中心 */
.newsAggr-section .news-cardlist {
  margin: 0 20px;
  position: relative;
}
.newsAggr-section .news-cardlist::before {
  content: "";
  background: url(../img/about/about-news-right.png) 0 0 no-repeat;
  width: 419px;
  height: 115px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.newsAggr-section .news-cardlist li {
  border-bottom: 1px solid #e5eaf1;
}
.newsAggr-section .news-cardlist li a {
  display: block;
  position: relative;
  padding: 32px 36px 32px 185px;
  font-size: 0;
  line-height: 44px;
}
.newsAggr-section .news-cardlist li a:before {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 185px;
  margin: 0;
  border-right: 1px solid #e5eaf1;
}
.newsAggr-section .news-cardlist li a .news-cardlist-date {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 138px;
  height: 44px;
  margin: auto 47px auto 0;
  color: #181931;
}
.newsAggr-section .news-cardlist li a .news-cardlist-date:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  right: 40px;
  height: 22px;
  border-right: solid 1px #7b7b86;
  transform-origin: right top;
  transform: rotate(20deg);
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-date
  .news-cardlist-date-day {
  position: absolute;
  top: 0;
  right: 46px;
  font-size: 40px;
  line-height: 40px;
  text-align: right;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-date
  .news-cardlist-date-day
  span {
  display: none;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-date
  .news-cardlist-date-month {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 16px;
  line-height: 24px;
  text-align: right;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-date
  .news-cardlist-date-year {
  position: absolute;
  top: 28px;
  right: 0;
  font-size: 14px;
  line-height: 14px;
  text-align: right;
}
.newsAggr-section .news-cardlist li a .news-cardlist-content {
  display: inline-block;
  vertical-align: middle;
  padding-left: 52px;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-content
  .news-cardlist-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  color: #181931;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 0.2s;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-content
  .news-cardlist-paragraph {
  max-height: 44px;
  font-size: 14px;
  line-height: 22px;
  color: #7b7b86;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.newsAggr-section
  .news-cardlist
  li
  a
  .news-cardlist-content
  .news-cardlist-title
  + .news-cardlist-paragraph {
  margin-top: 8px;
}
.newsAggr-section .news-cardlist li a:hover .news-cardlist-title {
  color: #3986ee !important;
}
.newsAggr-section .news-cardlist li .link {
  position: absolute;
  right: 40px;
  bottom: 20px;
  font-size: 14px;
  line-height: 22px;
}
/* 关于我们20210708--》 */

/* 首页我们的客户--》 */
.pc-customer p {
  padding: 15px 20px;
}
.pc-customer p:hover {
  background: #f9faff;
}
/* 首页我们的客户--》 */

/*2021-lxg*/
/*Banner优势*/
.index-advantage {
  position: absolute;
  bottom: -20px;
  width: 100%;
  z-index: 9999;
}
.index-advantage ul {
  display: block;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.2) 4px 4px 10px;
  height: 100px;
  border-radius: 8px;
}
.index-advantage ul li {
  height: 42px;
  display: block;
  width: 33%;
  float: left;
  text-align: center;
  margin-top: 32px;
  border-right: 1px solid #dddddd;
  line-height: 42px;
  font-size: 18px;
}

.index-advantage ul li:nth-child(3) {
  border: none;
}
.index-advantage ul li i {
  width: 30px;
  height: 30px;
  background-image: url(../img/index-advantage-icon.png);
  background-size: 30px 120px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.index-advantage ul li i.icon1 {
  background-position: 0 0;
}
.index-advantage ul li i.icon2 {
  background-position: 0 -30px;
}
.index-advantage ul li i.icon3 {
  background-position: 0 -60px;
}
.index-advantage ul li i.icon4 {
  background-position: 0 -94px;
}
/*首页产品*/
.index-products {
  padding-top: 80px;
  padding-bottom: 0px;
}
.index-products .item {
  position: relative;
  box-sizing: border-box;
  background-color: #0063e9;
  height: 280px;
  background-color: #8a8e99;
  margin: 12px;
  background-size: 100%;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  background-position: center center;
  border-radius: 8px;
  overflow: hidden;
}
.index-products .item:hover {
  background-size: 110%;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
}
.index-products .item:hover .footer-bar a.btn {
  background-color: #0063e9;
  color: #fff;
}
.index-products .item .con {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 24, 75, 0.6);
  color: #fff;
  box-sizing: border-box;
  padding: 24px;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.index-products .item:hover .con {
  background: rgba(0, 24, 75, 0.8);
  -webkit-transition-property: background;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
  background-position: center center;
}
.index-products .item .con h2 {
  color: #fff;
  font-size: 24px;
  text-align: left;
  margin: 16px 0 0 0;
  padding: 0;
  font-weight: 800;
  -webkit-transition-property: font-size;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.index-products .item:hover .con h2 {
  font-size: 28px;
  -webkit-transition-property: font-size;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.index-products .item .con .slogan,
.index-products .item .con .desc {
  padding-top: 16px;
}
.index-products .item .con .slogan {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 16px;
}
.index-products .item .tag {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 10px 10px 10px 26px;
  color: #464964;
}
.index-products .item .tag i {
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #8a8e99;
  line-height: 16px;
  font-style: normal;
  color: #e7eeff;
}
.index-products .item .tag i:first-child {
  padding-left: 0;
}
.index-products .item .tag i:last-child {
  border: none;
}
.index-products .item .footer-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.index-products .item .footer-bar a.btn {
  width: 100%;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background-color: #e7eeff;
  color: #3986ee;
  font-size: 14px;
  display: block;
}
.index-products .item .footer-bar a.btn:hover {
  background-color: #3986ee;
  color: #fff;
}
.index-products .item-vison {
  height: 580px;
  background-image: url(../img/index-products-bg-ys.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #fff;
}
.index-products .item-vison .con .slogan {
  border: none;
}
.index-products .item-vison .con h2 {
  padding-top: 0px;
}
.index-products .item-vison .tag {
  background: none;
  padding: 0;
  border: none;
}
.index-products .item-vison .tag i {
  color: #fff;
}
.index-products .item-yb {
  background-image: url(../img/index-products-bg-yb.jpg);
}
.index-products .item-hard {
  background-image: url(../img/index-products-bg-hard.jpg);
  margin-top: 20px;
}
.index-products .item-mail {
  background-image: url(../img/index-products-bg-mail.jpg);
}
.index-products .item-meet {
  background-image: url(../img/index-products-bg-meet.jpg);
  margin-top: 20px;
}

/*数据*/
.index-num {
  background-color: #efefef;
  margin-top: 50px;
  margin-bottom: 50px;
}
.index-num .item {
  text-align: center;
  margin-bottom: 24px;
}
.index-num .item b {
  display: block;
  font-size: 56px;
  color: #ff7e00;
}
.index-num .item b font {
  font-size: 20px;
  font-weight: normal;
}

/*技术实力*/

.index-technology .item {
  width: 560px;
  height: 193px;
  background-size: 100%;
  margin: 0 auto 35px auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background-position: center center;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
}
.index-technology .item h2 {
  font-size: 20px;
  margin-top: 109px;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  padding: 0 32px;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  height: 84px;
  line-height: 84px;
  -webkit-transition-property: font-size background-image;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
  padding-left: 32px;
}
.index-technology .item p {
  font-size: 16px;
  color: #fff;
  padding: 0px 30px;
}
.index-technology .item-1 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/index-technology-img1.jpg);
}
.index-technology .item-2 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/index-technology-img2.jpg);
}
.index-technology .item-3 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
    url(../img/index-technology-img3.jpg);
}
.index-technology .item-4 {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/index-technology-img4.jpg);
}
.index-technology .item-1 h2 {
  background: url() no-repeat 32px center;
}
.index-technology .item-2 h2 {
  background: url() no-repeat 32px center;
}
.index-technology .item-3 h2 {
  background: url() no-repeat 32px center;
}
.index-technology .item-4 h2 {
  background: url() no-repeat 32px center;
}

.index-technology a.btn-more {
  display: inline-block;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border: 1px solid #3986ee;
  background-color: none;
  color: #fff;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 46px;
  margin: 40px 0;
  color: #3986ee;
}
.index-technology a.btn-more:hover {
  background-color: #3986ee;
  color: #fff;
}

.index-technology .item:hover h2 {
  margin-top: 50px;
}
.index-technology .item:hover {
  background-size: 110%;
  -webkit-transition-property: background-size;
  -webkit-transition-duration: 1s;
  -webkit-transition-timing-function: ease;
}
.index-technology .item:hover p {
  position: relative;
  top: -15px;
}

/*地图*/
.index-map {
  background-image: url(../img/index-map.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #191b40;
  height: 480px;
}

.index-map h2 {
  color: #fff;
}
.index-map .dot-box {
  position: relative;
  display: block;
}
.index-map .dot-box span.line {
  width: 556px;
  height: 179px;
  background-size: 556px 179px;
  display: block;
}
.index-map .dot-box li {
  position: absolute;
  width: 10px;
  height: 10px;
  z-index: 10;
}
.index-map .dot-box li span {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}
.index-map .dot-box li i {
  -webkit-box-shadow: inset #00a4ff 0 0 5px;
  box-shadow: inset #00a4ff 0 0 5px;
  display: inline-block;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  top: 50%;
}
.index-map .dot-box li i:nth-child(1) {
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  animation: warn 2s ease-out 0.1s infinite;
}
.index-map .dot-box li i:nth-child(2) {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  animation: warn 3s ease-out 0.1s infinite;
}
.index-map .dot-box li i:nth-child(3) {
  width: 2px;
  height: 2px;
  margin: -1px 0 0 -1px;
  animation: warn 2s ease-out 0.1s infinite;
}
.index-map .dot-box li i:nth-child(4) {
  width: 2px;
  height: 2px;
  margin: -1px 0 0 -1px;
  animation: warn 3s ease-out 0.1s infinite;
}

.index-map .dot-box li.dot-0 {
  left: 826px;
  top: 181px;
  transform: scale(2);
}
.index-map .dot-box li.dot-0 i {
  -webkit-box-shadow: inset #fff600 0 0 5px;
  box-shadow: inset #fff600 0 0 5px;
}
.index-map .dot-box li.dot-1 {
  left: 657px;
  top: 209px;
  transform: scale(0.8);
}
.index-map .dot-box li.dot-2 {
  left: 450px;
  top: 286px;
  transform: scale(1.2);
}
.index-map .dot-box li.dot-3 {
  left: 573px;
  top: 178px;
  transform: scale(1);
}
.index-map .dot-box li.dot-4 {
  left: 630px;
  top: 188px;
  transform: scale(0.6);
}
.index-map .dot-box li.dot-5 {
  left: 745px;
  top: 200px;
  transform: scale(1.2);
}
.index-map .dot-box li.dot-6 {
  left: 640px;
  top: 158px;
  transform: scale(0.8);
}
.index-map .dot-box li.dot-7 {
  left: 805px;
  top: 215px;
  transform: scale(0.8);
}

@-webkit-keyframes warn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  5% {
    opacity: 8;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(10);
    transform: scale(10);
  }
}
@-webkit-keyframes warn2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
  }
  30% {
    opacity: 6;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(6);
    transform: scale(6);
  }
}

/*新闻*/
.index-news .news-list {
  border: 1px solid #e4e4e4;
  box-sizing: border-box;
  padding: 24px 24px 24px 32px;
  border-radius: 8px;
}
.index-news .news-list .title {
  padding: 10px 20px 24px 24px;
}
.index-news .news-list .title b {
  font-size: 20px;
  font-weight: normal;
}
.index-news .news-list .title a {
  float: right;
  margin-top: 8px;
}
.index-news .news-list .item a {
  margin-bottom: 10px;
  display: block;
  padding: 0 24px;
}
.index-news .news-list .item a h4 {
  font-size: 16px;
  color: #181931;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 400;
}
.index-news .news-list .item p {
  overflow: hidden;
  padding: 2px 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  color: #7b7b86;
}
.index-news .news-list .item a:hover h4,
.index-news .news-list .item a:hover p {
  color: #3986ee;
}
.index-news .news-list .item span {
  color: #8a8e99;
}
.index-news .news-list .img {
  width: 100%;
}
.index-news .news-list .border {
  border-left: 1px solid #e4e4e4;
}

/*战略合作*/
.index-cooperate .index-cooperate-bg {
  height: 500px;
}
.index-cooperate-bg img {
  margin: 20px auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
  width: 180px;
}

.product-vshow-p1 .item {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 16px;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 32px;
  font-size: 16px;
  line-height: 24px;
  margin: 10px;
  -webkit-transition-property: margin-top;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.product-vshow-p1 .item h4 {
  font-size: 20px;
  text-align: center;
  padding: 24px 0;
}
.product-vshow-p1 .item p {
  color: #7b7b86;
  line-height: 24px;
}
.product-vshow-p1 .item a.btn-morer {
  margin: 0 auto;
  background: none;
  border: 1px solid #dddddd;
  color: #252b3a;
  margin-top: 24px;
}
.product-vshow-p1 .item:hover a.btn-morer {
  color: #fff;
  border-color: #3986ee;
  background-color: #3986ee;
}
.product-vshow-p1 .item:hover {
  margin-top: -10px;
  -webkit-transition-property: margin-top;
  -webkit-transition-duration: 0.5s;
  -webkit-transition-timing-function: ease;
}
.product-vshow-p1 .item .icon {
  width: 60px;
  height: 60px;
  background-image: url("../img/product-vshow-icons.png");
  background-size: 60px 480px;
  display: block;
  border-radius: 60px;
  margin: 0 auto;
}
.product-vshow-p1 .item .icon-1 {
  background-position: 0 -480px;
  background-color: #ffecee;
}
.product-vshow-p1 .item .icon-2 {
  background-position: 0 -480px;
  background-color: #e1f9f4;
}
.product-vshow-p1 .item .icon-3 {
  background-position: 0 -480px;
  background-color: #eaf1ff;
}

.border-radius-8 {
  border-radius: 8px;
}
.govcloud-img-txt .txt h4 {
  color: #cb1c1d;
}

.mr20 {
  margin-right: 20px;
}

.icon40x40 {
  width: 40px;
  height: 44px;
}
.crad-area-icon1 {
  background-position: 0 0;
}
.crad-area-icon2 {
  background-position: -40px 0;
}
.crad-area-icon3 {
  background-position: -80px 0;
}
.crad-area-icon4 {
  background-position: -120px 0;
}
.card-area {
  margin: 20px auto 0;
  height: 400px;
  width: 1200px;
  position: relative;
}
.card-area .card-item {
  z-index: 4;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s 0.12s;
  position: relative;
  float: left;
  width: 17.5%;
  height: 350px;
  background-color: transparent;
}
.card-area .card-item + .card-item {
  margin-left: -1px;
}
.card-area .card-item .card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), z-index 0s 0.12s;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dceaff;
  top: 20px;
  position: relative;
}
.card-area .card-item.active .card {
  top: 0px;
  position: relative;
}
.card-area .card-item.active {
  z-index: 6;
  width: 65%;
  height: 400px;
  top: -10px;
}
.card-area .card-item.active .card .card-content.content-second {
  transition: all 0.12s cubic-bezier(0.4, 0, 0.2, 1) 0.18s;
  z-index: 3;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=(100));
}
.card-area .card-item.active .content-first,
.card-area .card-item .content-second {
  display: none;
}
.card-area .card-item.active .content-second {
  display: block;
}
.card-area .card-item.active .content-second h4 {
  height: 42px;
  line-height: 42px;
  background: linear-gradient(90deg, #015eea 0%, #00c0fa 100%);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 20px;
  padding: 5px 0;
}
.card-area .card-item.active .main-info {
  padding: 25px 0px;
  overflow: hidden;
}
.card-area .card-item.active .main-info .tex {
  margin: 0 10px;
}
.card-area .card-item.active .main-info .tex img {
  width: 100%;
}
.card-area .card-item .content-first {
  margin-top: 120px;
}
.card-area .card-item .content-first h1 {
  font-size: 20px;
  color: #181931;
  margin-top: 10px;
}

/* 智慧教育 */
.solution-wisdom-edu-banner {
  background: #181931 url(../img/solution/solution-wisdom-edu-banner.jpg) center
    center no-repeat;
}
.localized-wisdom-edu-bg {
  background: #f2f7fe;
}
.solution-wisdom-edu-des1 {
  margin-top: 60px;
}
.solution-wisdom-edu-box {
  margin: 0px 15px 30px 15px;
}
.solution-wisdom-edu-box img {
  width: 100%;
}
.solution-wisdom-edu-box:hover img {
  transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
}

@media screen and (min-width: 1024px) and (max-width: 1400px) {
  /* .right-bar{bottom: 135px;} */
  .right-bar-adv {
    bottom: 320px;
  }
}

.btn-market-activity {
  width: 250px;
  height: 63px;
  line-height: 63px;
  text-align: center;
}
.btn-market-activity:hover {
  opacity: 0.9;
}
.market-activity-main {
  background: #fef4e5;
  border: 10px solid #f6c8a9;
  border-radius: 20px;
}
.market-activity-table {
  text-align: center;
  padding: 40px 0;
}
.market-activity-table ul li {
  padding: 20px 0;
}
.market-activity-table ul li.bg {
  background: rgba(246, 200, 169, 0.2);
}
.market-activity-banner .info-black {
  float: left;
  width: 56%;
  padding-top: 100px;
}
.market-activity-banner .info-black h1 {
  padding-top: 0px;
}
.market-activity-banner .info-black p {
  font-size: 14px;
}
.market-activity-banner .info-black p,
.market-activity-banner .info-black h4 {
  padding: 0px 0 10px 0;
}
.market-activity-msg {
  font-size: 16px;
  padding: 0 20px 60px 20px;
}
.market-activity-msg .list {
  padding: 0 65px;
  min-height: 300px;
  color: #500d0d;
}
.market-activity-msg .list h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.market-activity-msg .list p {
  padding: 10px 0;
}
.market-activity-msg .list p strong {
  display: block;
  margin-bottom: 5px;
}
.market-activity-msg .list1 {
  border-right: 2px dashed rgba(239, 47, 39, 0.3);
}
.activity-right-img {
  width: 44%;
  float: right;
  position: relative;
  height: 100%;
}
.activity-right-img .activity-right-img-nr {
  position: absolute;
  top: 152px;
  z-index: 3;
}
.activity-right-img .activity-right-img-dz {
  position: absolute;
  top: 400px;
  right: 10px;
  z-index: 2;
}
.activity-right-img .activity-right-img-cd {
  position: absolute;
  top: 120px;
  z-index: 1;
}

/* 智慧党建活动浮窗 */
.metaverse-widget {
  position: fixed;
  left: 18px;
  bottom: -131px;
  z-index: 999;
  width: 190px;
  height: 131px;
  background: url(../img/metaverse-widget-bg.png) no-repeat;
  background-size: 190px 131px;
  display: none;
}
.metaverse-widget .widget-close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon-close.svg) no-repeat center;
  background-size: 16px 16px;
  cursor: pointer;
}
.metaverse-widget-link {
  display: block;
  height: 100%;
}

/* 年会直播浮窗 */
.live-widget {
  position: fixed;
  left: 18px;
  bottom: -170px;
  z-index: 999;
  width: 70px;
  height: 170px;
  background: url(../img/index-annuallive-pic-sm.png) no-repeat;
  background-size: 70px 170px;
  display: none;
}
.live-widget .live-close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon-close.svg) no-repeat center;
  background-size: 16px 16px;
  cursor: pointer;
}
.live-widget-link {
  display: block;
  height: 100%;
}

/* 大咖说 */
.tc {
  text-align: center;
}
.c_blue {
  color: #3986ee;
}
.f20 {
  font-size: 20px;
}
.p20 {
  padding: 20px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ellipsis_line2 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/*flex 布局*/
.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flexItem {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.flexCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.flexBetween {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.section-bg-f8f8fa {
  background: #f8f8fa;
}
.section-bg-fcfcfc {
  background: #fcfcfc;
}
.master-notice,
.master-history,
.master-brokerage {
  margin-right: -10px;
  margin-left: -10px;
}
.master-banner {
  background-image: url(../img/v1.3/banner-master.jpg);
}
.master-title-h4 {
  font-size: 30px;
  margin-bottom: 20px;
}
.master-title-h4 a {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  top: 16px;
}
.master-col-2 .list {
  width: 50% !important;
}
.master-col-5 .list {
  width: 20%;
}
.master-col-5 .list .item {
  margin: 10px;
  box-shadow: 0px 5px 10px 0px rgba(4, 0, 0, 0.03);
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.master-col-5 .list .item:hover {
  box-shadow: 0px 5px 10px 0px rgba(4, 0, 0, 0.08);
}
.master-col-5 .list .item .pic img {
  transition: All 0.4s ease-in-out;
  -webkit-transition: All 0.4s ease-in-out;
  -moz-transition: All 0.4s ease-in-out;
  -o-transition: All 0.4s ease-in-out;
}
.master-col-5 .list .item:hover .pic img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}
.master-col-5 .list .item:hover .pic img.icon-big {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
}
.master-col-5 .list .item:hover .tex h4 {
  text-decoration: underline;
  color: #3986ee;
}
.master-col-5 .list .item:hover .tex h4 span.tag {
  text-decoration: inherit;
}
.master-col-5 .list .item .pic {
  width: 100%;
  height: 126px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 5px 5px 0 0;
}
.master-col-5 .list .item .pic .shade img {
  display: none;
}
.master-col-5 .list .item:hover .pic .shade img {
  display: block;
}
.master-col-5 .list .item .pic .shade {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.master-col-5 .list .item .pic .shade-back {
  position: absolute;
  z-index: 2;
  background: #768cae url(../img/v1.3/icon-space-back.png) no-repeat 8px center;
  border-radius: 20px;
  background-size: 12px 12px;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px 2px 25px;
  top: 8px;
  right: 8px;
}
.master-col-5 .list .item .tex {
  padding: 15px 10px 20px 10px;
}
.master-col-5 .list .item .tex h4 {
  font-weight: 400;
  font-size: 16px;
  color: #181931;
  height: 42px;
}
.master-col-5 .list .item .tex h4 span.tag {
  border-radius: 2px;
  padding: 1px 5px;
  font-weight: 700;
  position: relative;
  top: -1px;
  margin-right: 5px;
  font-size: 12px;
}
.master-col-5 .list .item .tex h4 span.video {
  background: rgba(253, 110, 33, 0.1);
  border: 1px solid #fd6e21;
  color: #fd6e21;
}
.master-col-5 .list .item .tex h4 span.mp3 {
  background: rgba(0, 180, 42, 0.1);
  border: 1px solid #00b42a;
  color: #00b42a;
}
.master-col-5 .list .item .tex p {
  color: #787878;
  padding-top: 10px;
  font-size: 12px;
}
.master-col-5 .list .item .tex p span.stateIn {
  color: #e01616;
}
.master-col-5 .list .item .tex p span.stateNot {
  color: #2081eb;
}
.master-col-5 .list .item .tex p span.stateEnd {
  color: #6a7386;
}
.master-col-5 .list .item .tex p span.stateTrue {
  color: #7d7d7d;
}
.master-col-5 .list .item .tex p i.icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  top: 1px;
}
.master-col-5 .list .item .tex p i.icon-space-user {
  background: url(../img/v1.3/ico_space_user.svg) no-repeat center center;
  background-size: 12px 12px;
}
.master-col-5 .list .item .tex p i.icon-space-time {
  background: url(../img/v1.3/ico_space_time.svg) no-repeat center center;
  background-size: 12px 12px;
}

.slide .box a.btn-index-fazx-thanks {
  background: linear-gradient(90deg, #ff5535 0%, #4760ff 100%);
  position: absolute;
  left: 50%;
  margin-left: -120px !important;
  top: 450px;
  border: none;
  width: 240px;
  height: 48px;
  line-height: 48px;
  font-size: 18px;
}

.slide .box .main-warp .nianhui-index-pic0 {
  top: 202px;
  left: 50px;
  z-index: 1;
}
.slide .box .main-warp .nianhui-index-pic1 {
  top: 122px;
  right: 0px;
  z-index: 1;
}
.slide .box .main-warp .nianhui-index-pic2 {
  top: 302px;
  left: 357px;
  z-index: 1;
}
.slide .box .main-warp .nianhui-index-pic3 {
  top: 222px;
  right: 80px;
  z-index: 1;
}
.PosHeaderNavRed {
  background: #d0121b;
}
.PosHeaderNavRed a:hover,
.PosHeaderNavRed a.Act {
  border-bottom: 2px solid #f0d49d;
}

.nianhui-btn-red {
  margin: 5px 0 0 0;
  height: 40px;
  line-height: 40px;
  padding: 0 35px;
  font-size: 16px;
  display: inline-block;
  border-radius: 30px;
  color: #d0121b;
  background-color: #d0121b;
  color: #fff;
  border: 1px solid #d0121b;
}
.nianhui-btn-red:hover {
  color: #d0121b;
  border: 1px solid #d0121b;
  background: #fff;
}
.product-banner .info-black a.btn-free-red,
.product-banner .info-black .product-btn-group a.btn-speek-red:hover,
.service-activity-des .tex .tex-button a.btn-red {
  width: 140px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border: 1px solid #d0121b;
  font-size: 16px;
  display: block;
  background: #d0121b !important;
  border-radius: 40px;
}
.product-banner .info-black a.btn-free-red:hover,
.product-banner .info-black .product-btn-group a.btn-speek-red {
  background: none;
  color: #d0121b;
  border-color: #d0121b;
}
.product_img {
  text-align: center;
}
.service-activity-des .tex .tex-button a.btn-red:hover {
  background: none !important;
  color: #d0121b;
  border-color: #d0121b;
}

.service-activity-des .tex h4.red {
  color: #d0121b;
}

/* 知识主题 */
.mini-banner-list {
  height: auto !important;
  padding-bottom: 10px;
}
.mini-banner-list .info .txt {
  padding-left: 0px;
}
.knowledge-warp .news-list li .tag {
  color: #666;
}
.knowledge-warp .news-list li .tag a {
  color: #2081eb;
}
.knowledge-warp .knowledge-detail {
  padding: 0;
}
.knowledge-warp {
  padding: 10px 40px 70px 40px;
  background: #fff;
}
.knowledge-warp .recommend-news {
  margin-top: 0px;
}
.knowledge-warp .news-list {
  padding: 0px;
}
.knowledge-warp .news-list li:last-of-type {
  border-bottom: none !important;
}

.news_box .ulb {
  text-align: left;
}
.news_box .ulb li {
  margin-top: 22px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.news_box .ulb li a {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  padding: 22px;
  background: #f7f7f7;
  font-size: 0;
}
.news_box .ulb li a:hover {
  text-decoration: none;
}
.news_box .ulb li div {
  width: calc(100% - 122px);
  flex-shrink: 0;
  letter-spacing: 2px;
  padding-right: 46px;
}
.news_box .ulb li div h6 {
  font-size: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-bottom: 14px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  color: #000;
}
.news_box .ulb li div span {
  display: block;
  font-size: 12px;
  color: #ccc;
  margin-bottom: 20px;
}
.news_box .ulb li div dd {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  height: 50px;
  overflow: hidden;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.news_box .ulb li div small {
  display: inline-block;
  font-size: 14px;
  color: #f00;
  margin-top: 16px;
  padding-right: 16px;

  background-size: auto 12px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.news_box .ulb li em {
  width: 122px;
  overflow: hidden;
}
.news_box .ulb li em img {
  width: 100%;
  vertical-align: top;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}

.news_box .swiper-slide:hover em img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news_box .swiper-slide:hover div h6 {
  color: #c01e19;
}
.news_box .swiper-slide:hover div small::after {
  margin-left: 6px;
  opacity: 1;
  width: 8px;
}
.news_box .ulb li:hover {
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.2);
}
.news_box .ulb li:hover div h6 {
  color: #c01e19;
}
.news_box .ulb li:hover div dd {
  padding-left: 18px;
}
.news_box .ulb li:hover em img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.news_box .ulb li:hover div small {
  padding-left: 18px;
  color: #c01e19;
}
.paging_box {
  text-align: center;
  margin-top: 50px;
}
.paging_box a {
  display: inline-block;
  vertical-align: top;
  height: 38px;
  line-height: 38px;
  padding: 0 14px;
  background: #ccc;
  font-size: 14px;
  color: #fff;
  margin: 0 5px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
}
.paging_box a.active {
  background: #e21738;
}
.f-cb:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  overflow: hidden;
  content: ".";
}

@media (max-width: 1200px) {
  .news_box .ulb li a {
    flex-direction: column-reverse;
    padding: 0;
  }
  .news_box .ulb li em {
    width: 100%;
  }
  .news_box .ulb li .pc {
    display: none;
  }
  .news_box .ulb li div {
    padding: 24px 18px;
    width: 100%;
    box-sizing: border-box;
  }
  .news_box .ulb li div span {
    margin-bottom: 16px;
  }
}

.table1 {
  border: 1px solid #dedede;
  border-collapse: collapse;
  margin: 2px 2px auto 2px;
  font-size: 14px;
  width: 100%;
}
.table1 td {
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: solid;
  border-left-style: solid;
  border-top-color: #dedede;
  border-right-color: #dedede;
  border-bottom-color: #dedede;
  border-left-color: #dedede;
  height: 30px;
  padding: 3px 5px;
  text-align: center;
}
.table1 tbody tr:nth-child(2n) {
  background-color: #efefef;
}

.table1 th {
  font-weight: bold;
  color: rgb(255, 255, 255);
  height: 45px;
  border-right-style: none;
  border-top-style: none;
  border-bottom-style: none;
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: rgb(255, 255, 255);
  font-family: Arial, Helvetica, sans-serif, ΢���ź�;
  background: rgb(0, 84, 165);
}

@media (max-width: 768px) {
  .table1 {
    overflow-y: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 1200px;
  }
}

/* 黑白化 */
html.o2_gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-filter: gray;
  filter: gray;
  -webkit-filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
}

.friendly-link {
  display: block;
}

