@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(228, 228, 228);
}

@media (max-device-width: 2560px) {
  body {
    zoom: 1;
  }

  .banner img {
    width: 100%;
    height: 400px;
  }

  .header-title {
    width: 100%;
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    position: absolute;
    top: 80px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.25);
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.1)
    );
    padding: 30px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .title-container {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
  }

  .main-title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
    color: #fff;
    text-transform: uppercase;
  }

  .content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 15px;
    width: 100%;
  }

  .content-left,
  .content-right {
    flex: 1;
    min-width: 300px;
    text-align: center;
    max-width: 350px;
  }

  .tagline {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .divider {
    width: 50px;
    height: 2px;
    background: #00aaff;
    margin: 0 auto 20px;
    border-radius: 2px;
  }

  .features {
    margin-bottom: 20px;
  }

  .feature-text {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

  .core-values {
    margin-bottom: 20px;
  }

  .value-text {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
  }

  .differentiator {
    font-size: 18px;
    color: #ffff00;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }

  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column;
    }
    
    .content-left,
    .content-right {
      min-width: 100%;
    }
  }

  /* 两侧进入的动画效果 */
  .animated-text {
    opacity: 0;
  }

  .animated-text.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
  }

  .animated-text.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  /* 产品功能展示区域 */
  .product-functions {
    width: 100%;
    padding: 60px 0;
    background-color: #fff;
    clear: both;
  }

  .functions-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .functions-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .functions-title h2 {
    font-size: 32px;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
  }

  .functions-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00aaff;
    border-radius: 3px;
  }

  /* 产品特点区域样式 */
  .product-features {
    width: 100%;
    padding: 60px 0;
    background-color: #f8f9fa;
    clear: both;
  }

  .features-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .features-title {
    text-align: center;
    margin-bottom: 40px;
  }

  .features-title h2 {
    font-size: 32px;
    color: #333;
    margin: 0;
    position: relative;
    display: inline-block;
  }

  .features-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #00aaff;
    border-radius: 3px;
  }

  .functions-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 30px;
  }

  .function-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    height: 130px;
    margin-bottom: 10px;
  }

  .function-item:hover,
  .function-item.active {
    background: #00aaff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .function-item:hover .function-name,
  .function-item.active .function-name {
    color: #fff;
  }

  .function-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .function-icon img {
    max-width: 100%;
    max-height: 100%;
  }

  .function-icon .fa {
    font-size: 40px;
    color: #1287d5;
  }

  .function-item:hover .function-icon .fa,
  .function-item.active .function-icon .fa {
    color: #fff;
  }

  .function-name {
    font-size: 14px;
    color: #333;
    margin: 0;
    font-weight: 500;
  }

  /* 产品特点区域样式 */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }

  .feature-item {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
  }

  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
  }

  .feature-icon img {
    max-width: 30px;
    max-height: 30px;
  }

  .feature-icon .fa {
    font-size: 30px;
    color: #1287d5;
  }

  .feature-content h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    color: #333;
  }

  .feature-content p {
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
  }

  .function-content {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 30px;
    min-height: 200px;
  }

  .function-content-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .function-content-image img {
    max-width: 100%;
    max-height: 300px;
    border-radius: 10px;
  }

  .function-content-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .function-content-text h3 {
    font-size: 24px;
    color: #333;
    margin: 0 0 15px 0;
  }

  .function-content-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0 0 15px 0;
  }

  .function-content-text ul {
    padding-left: 20px;
    margin: 0;
  }

  .function-content-text li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #666;
  }

  /* 响应式设计 */
  @media (max-width: 768px) {
    .functions-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .function-item:nth-child(n + 4) {
      margin-top: 15px;
    }

    .function-content {
      flex-direction: column;
    }

    .functions-title h2 {
      font-size: 28px;
    }

    .features-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .feature-item {
      padding: 20px;
    }

    .features-title h2 {
      font-size: 28px;
    }

    .feature-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
    }

    .feature-content h3 {
      font-size: 18px;
    }
  }

  .banner > ol {
    width: 160px;
    height: 15px;
    position: absolute;
    left: 30px;
    top: 350px;
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
  }

  .banner > div {
    width: 40px;
    height: 65px;
    position: absolute;
    top: 200px;
    transform: translateY(-50%);
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
    z-index: 999;
  }

  /*在线咨询*/
  .nb-online-box {
    position: fixed;
    right: 0px;
    bottom: 20%;
    z-index: 999999;
    background-color: #00aef3;
    width: 144px;
    border-radius: 6px;
    text-align: center;
    padding: 8px 0;
  }

  .nb-dingwei .container {
    z-index: 9999;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -81px;
    width: 400px;
    height: 162px;
    background: url("../img/inviteColorBack0.png");
  }

  .guanggao-dbbox {
    width: 240px;
    min-height: 320px;
    padding-bottom: 10px;
    background-color: #ededed;
    position: fixed;
    z-index: 1;
    bottom: 0px;
    left: 0px;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  body {
    zoom: 0.24;
  }

  .banner img {
    width: 100%;
    height: 400px;
  }

  .header-title {
    width: 100%;
    height: 75px;
    text-align: left;
    color: #ffffff;
    position: absolute;
    top: 150px;
  }

  .header-title h1,
  h3 {
    margin-left: 8%;
  }

  .banner > ol {
    width: 160px;
    height: 15px;
    position: absolute;
    left: 30px;
    top: 350px;
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 15px;
  }

  .banner > div {
    width: 40px;
    height: 65px;
    position: absolute;
    top: 200px;
    transform: translateY(-50%);
    background-color: rgba(50, 50, 50, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: white;
  }

  /*在线咨询*/
  .nb-online-box {
    position: fixed;
    right: 0px;
    bottom: 50%;
    z-index: 999999;
    background-color: #00aef3;
    width: 144px;
    border-radius: 6px;
    text-align: center;
    padding: 8px 0;
  }

  .nb-dingwei .container {
    z-index: 9999;
    position: fixed;
    top: 30%;
    left: 50%;
    margin-left: -200px;
    margin-top: -81px;
    width: 400px;
    height: 162px;
    background: url("../img/inviteColorBack0.png");
  }
}

.banner > ul,
ol,
li {
  list-style: none;
}

.banner ul,
ol,
li {
  list-style: none;
}

.banner {
  width: 100%;
  height: 400px;
}

.banner > ul {
  width: 100%;
  height: 400px;
}

.banner > ul > li {
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.banner > ul > li.active {
  opacity: 1;
}

.banner > ol > li {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
}

.banner > ol > li.active {
  background-color: #4349b6;
}

.banner > div.left {
  left: 0;
}

.banner > div.right {
  right: 0;
}

.header {
  width: 100%;
  height: 400px;
}

.nav-box {
  width: 100%;
  height: 60px;
  float: left;
  border-bottom: 1px solid rgb(196, 196, 196, 0.2);
  position: absolute;
  top: 0;
  background-color: #0183FD;
}

.nav-logo {
  width: 20%;
  height: 60px;
  line-height: 60px;
  float: left;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img1 {
  /* width: 120px; */
  height: 60px;
  /* height: auto; */
}

.nav {
  width: 60%;
  height: 60px;
  float: left;
}

.nav ul {
  width: 100%;
}

.nav li {
  list-style: none;
  float: left;
  text-align: center;
  line-height: 60px;
  width: 16%;
}

a {
  color: white;
  padding: 20px;
  margin: 0px;
  text-decoration: none;
}

.nav li:hover {
  border-bottom: 2px solid rgba(0, 136, 255);
}

.nav li:hover .nav-product {
  width: 200px;
  height: 180px;
  display: block;
}

.nav-product {
  width: 200px;
  height: 150px;
  padding-top: 30px;
  margin-top: 2px;
  display: none;
  position: absolute;
  background-color: #ffffff;
  z-index: 100;
}

.nav-product a {
  color: #000000;
  padding: 0;
}

.nav-product li {
  width: 200px;
  height: 30px;
  line-height: 30px;
  text-align: left;
  text-indent: 2em;
  clear: both;
}

.nav-product li:hover {
  background-color: #1287d5;
  border: 0;
}

/* .search {
    width: 20%;
    height: 60px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.in-product {
  width: 1400px;
  margin: auto;
  margin-top: 60px;
  clear: both;
}

.product-title {
  width: 100%;
  height: 50px;
  font-size: 25px;
  font-weight: bold;
  line-height: 50px;
  color: #000000;
  border-left: 5px solid rgba(0, 136, 255);
  text-indent: 1em;
  clear: both;
}

/* .product1 {
    width: 300px;
    margin-top: 40px;
    float: left;
    overflow: hidden;
    margin-left: 40px;
} */

.products {
  width: 1200px;
  height: 400px;
  margin-left: 100px;
  margin-top: 40px;
}

.products a {
  margin: 0;
  padding: 0;
}

.product {
  width: 300px;
  height: 200px;
  /* margin-top: 40px; */
  float: left;
  overflow: hidden;
  /* margin-left: 40px; */
  background-color: rgb(42, 170, 255);
  font-size: 20px;
  color: #fff;
  line-height: 200px;
  text-align: center;
  transition: all 0.5s ease 0.1s;
}

.product:hover {
  font-size: 25px;
  color: rgb(0, 0, 0);
  background-color: rgb(235, 235, 235);
}

/* .product1 img {
    width: 300px;
    height: 200px;
    transition: all .5s ease .1s;
    z-index: -100;
} */

.product img {
  width: 300px;
  height: 200px;
  transition: all 0.5s ease 0.1s;
  z-index: -100;
}

.product img:hover {
  transform: scale(1.1);
}

/* .product1 img:hover {
    transform: scale(1.1);
} */

/* .pro-right {
    margin-right: 30px;
} */

.in-company {
  width: 1400px;
  height: 700px;
  margin: auto;
  margin-top: 60px;
}

.company-title {
  width: 100%;
  height: 50px;
  font-size: 25px;
  font-weight: bold;
  line-height: 50px;
  color: #000000;
  border-left: 5px solid rgba(0, 136, 255);
  text-indent: 1em;
}

.company-left {
  width: 700px;
  height: 500px;
  margin-right: 100px;
  float: left;
}

.company-left span {
  color: #4169e1;
  font-size: 30px;
  font-weight: bold;
}

.company-title2,
.company-title3 {
  margin-top: 30px;
}

.company-title3 {
  text-indent: 2em;
  line-height: 50px;
  color: grey;
}

.company-right {
  width: 600px;
  height: 400px;
  margin-top: 120px;
  float: left;
}

.company-right img {
  margin-left: 25px;
  width: 550px;
  height: 400px;
  z-index: 100;
}

.right-bottom {
  width: 100%;
  height: 300px;
  background-color: #1287d5;
  margin-top: 50px;
  z-index: -100;
  margin-top: -350px;
}

.footer {
  color: #b3b3b3;
  background: #181818;
  margin-top: 30px;
  clear: both;
  position: relative;
  z-index: 10;
}

.footer .footer-wrapper {
  border-bottom: 1px solid #3c3c3c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

.footer .footer-wrapper:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.footer-info {
  margin: 0 40px;
  color: #fff;
  text-align: center;
}

.footer .footer-wrapper .footer-info {
  float: none;
}

.footer .footer-wrapper .footer-nav {
  float: none;
  display: flex;
  justify-content: space-between;
  width: auto;
  margin: 0 40px;
}

.footer-nav {
  margin: 20px 0;
  display: flex;
  gap: 40px;
}

.footer-nav dt {
  margin-left: 0;
  text-align: center;
}

.footer-nav dl {
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer .m-footer-code {
  display: none;
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-info .footer-info-tit {
  margin-bottom: 20px;
  color: #fff;
}

.footer-info .footer-info-tel .p1 {
  font-size: 16px;
}

.footer-info .footer-info-tel .p2 {
  font-size: 24px;
  margin: 5px 0;
  color: #fff;
}

.footer-info-email {
  margin: 5px 0;
}

.footer-nav dd {
  margin: 4px 0; /* 进一步减小dd之间的间距 */
  padding: 0;
  text-align: center; /* 确保dd内容居中 */
}

.footer-nav dd a {
  font-size: 16px;
  display: block;
  line-height: 1.2; /* 减小行高 */
  padding: 2px 0; /* 减小内边距 */
}

.footer-nav dd a span {
  display: block;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-nav dd:hover a span {
  color: #0f6ab4;
  -webkit-transform: translateX(-6px);
  -moz-transform: translateX(-6px);
  -ms-transform: translateX(-6px);
  -o-transform: translateX(-6px);
  transform: translateX(-6px);
}

.copyright {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #000000;
  color: #fff;
  font-size: 14px;
}

.my_kefu {
  position: fixed;
  width: auto;
  top: 40%;
  right: 0px;
  z-index: 99;
}

.my_kefu ul li {
  background: #424242;
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 0px 15px;
}

.my_kefu_item img {
  width: 30px;
}

.my_kefu_item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: white;
}

.my_kefu ul li:hover {
  cursor: pointer;
  background: red;
}

.my_kefu_img {
  display: none;
  width: 140px;
  height: auto;
  position: absolute;
  right: 4rem;
  background: #ffffff;
  color: white;
}

.my_kefu_img img {
  width: 100%;
}

.my_kefu_hidden {
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  z-index: 999;
  height: 50px;
  border-radius: 10px;
  width: auto;
  background: red;
  color: #fff;
  padding: 0px 20px;
}

.my_kefu_hidden img {
  width: 30px;
}

.my_kefu_hidden a {
  display: flex;
  flex-direction: row;
  width: 140px;
  align-items: center;
  color: #fff;
  justify-content: center;
}

.my_kefu_hidden > div {
  display: flex;
  flex-direction: column;
  min-width: 120px;
}

.my_kefu ul li:hover .my_kefu_item {
  display: none;
}

.my_kefu ul li:hover .my_kefu_hidden {
  display: flex;
  flex-direction: row;
  text-align: center;
  position: absolute;
  right: 0px;
}

.my_kefu ul li:hover .my_kefu_img {
  display: flex;
}

#back_top {
  color: #fff;
}

article,
aside,
details,
figcaption,
figure,
dialog,
footer,
header,
menu,
nav,
section {
  display: block;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.changedw {
  left: 50%;
  bottom: 50% !important;
  z-index: 99999;
  margin-left: -120px;
  margin-bottom: -160px;
}

#nb-show,
#nb-gb {
  display: none;
}

.nb-nodeboard-top {
  background: url("../img/boardTop5.png") no-repeat;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 15px;
}

.nb-nodeboard-top .fl {
  color: #000000;
  margin-left: 8px;
}

.nb-nodeboard-top .fr img {
  vertical-align: middle;
}

.nb-nodeboard-text {
  zoom: 1;
  padding: 12px 0;
  line-height: 1.5;
  border-bottom: 1px solid #d5d5d5;
  font-size: 15px;
}

.nb-nodeboard-link {
  color: #999;
  font-size: 12px;
}

.nb-nodeboard-text p {
  padding-left: 10px;
}

#nb_nodeboard_form {
  width: 94%;
  margin: 0 auto;
  display: block;
}

#nb-nodeboard-set-content-js {
  width: 100%;
  height: 79px;
  margin: 10px auto 0px;
  padding: 4px;
  resize: none;
  overflow: hidden;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  text-align: left;
  font-size: 12px;
}

.nb-nodeboard-tips,
.nb-nodeboardphone-tips {
  display: none;
  color: #f00;
  font-size: 12px;
}

.nb-nodeboard-inputbox {
  height: 30px;
  width: 100%;
  line-height: 30px;
  margin: 7px auto 0;
  border: 1px solid #d5d5d5;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

.nb-nodeboard-inputbox input {
  /* width: 190px; */
  border: none;
  /* font-size: 12px; */
}

.nb-nodeboard-icon {
  width: 24px;
  height: 28px;
  display: inline-block;
  text-align: center;
  background-color: #fff;
  vertical-align: top;
  border-right: 1px solid #fff;
}

.nodeName {
  background: #fff url("../img/user.png") no-repeat 9px center;
}

.nodePhone {
  background: #fff url("../img/nodephone.png") no-repeat 9px center;
}

.nb-nodeboard-send-btn {
  height: 35px;
  width: 50%;
  margin-top: 8px;
}

.nb-nodeboard-send-btn button {
  height: 35px;
  width: 100%;
  line-height: 35px;
  border-radius: 2px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background-color: #edb518;
}

.nb-nodeboard-send-btn button:hover {
  background-color: #f49c11;
}

/*商务通跳窗*/
.nb-dingwei {
  display: none;
}

.nb-fd-close {
  position: absolute;
  right: 10px;
  bottom: 105px;
  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;
}

.nb-fd-close:hover {
  cursor: pointer;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}

.nb-fd-content {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  width: 222px;
  height: 108px;
}

.nb-fd-content p {
  color: #fff;
  font-size: 16px;
}

.anniubox {
  margin-top: 15px;
}

.anniubox span {
  border: #fff solid 1px;
  color: #fff;
  height: 34px;
  line-height: 34px;
  width: 80px;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
}

.anniubox .nb-dk {
  margin-left: 10px;
  background-color: #fff;
  color: #329fd7;
}

.nb-online-box h2 {
  font-size: 20px;
  color: #fff;
  text-shadow: 1px 1px 1px #666;
}

.nb-online-box p {
  color: #fff;
  font-size: 12px;
  text-shadow: 1px 1px 1px #666;
}
