/* 动态效果 */
html {
  /*overflow-x: hidden*/
}

[class*="anim"]:hover,
[class*="anim"] * {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

/* 鼠标经过时字体颜色变化*/
.animhover:hover {
  color: #1362fe !important;
}

/* 鼠标经过时背景色变化*/
.animbtn:hover {
  color: #fff !important;
  border-color: #1362fe !important;
  background-color: #1362fe !important;
  /* background-image: linear-gradient(to right, #ff902e, #5a49f8); */
}

/* 鼠标经过时放大*/
.animlarge:hover {
  transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

/* 鼠标经过时图片放大 */
.animenlarge:hover img {
  transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

/* 鼠标经过时旋转*/
.animrotate:hover {
  transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
}

/* 鼠标经过时图片旋转 */
.animrevolve:hover img {
  transform: rotate(-360deg);
  -o-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  -moz-transform: rotate(-360deg);
  -webkit-transform: rotate(-360deg);
}

/* 鼠标经过时边框阴影变化*/
.animbsh:hover {
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

.animbsh2:hover {
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}

/* 鼠标经过时上移*/
.animmove:hover {
  transform: translate(0, -10px);
  -o-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  -moz-transform: translate(0, -10px);
  -webkit-transform: translate(0, -10px);
}

/* 鼠标经过时右边移*/
.animmoverg:hover {
  transform: translate(10px, 0px);
  -o-transform: translate(10px, 0px);
  -ms-transform: translate(10px, 0px);
  -moz-transform: translate(10px, 0px);
  -webkit-transform: translate(10px, 0px);
}

/* 动态效果end */

/* 首页 */
.col1362 {
  color: #1362fe;
}
.col4449 {
  color: #444948 !important;
}
.col8a8e {
  color: #8a8e99;
}
.bge9f {
  background-color: #e9f0fc;
}
.bgf6f7 {
  background-color: #f6f7fa;
}
.bgtr {
  background-color: transparent !important;
}
.bg-radient {
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}
.borele {
  border: 1px solid #e1e6f1;
}
.bshadow-radient {
  box-shadow: 0 3px 6px 0 rgba(255, 106, 0, 0.45);
  -o-box-shadow: 0 3px 6px 0 rgba(255, 106, 0, 0.45);
  -ms-box-shadow: 0 3px 6px 0 rgba(255, 106, 0, 0.45);
  -moz-box-shadow: 0 3px 6px 0 rgba(255, 106, 0, 0.45);
  -webkit-box-shadow: 0 3px 6px 0 rgba(255, 106, 0, 0.45);
}
.ptb20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.ptb60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.plr30 {
  padding-left: 30px;
  padding-right: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.container {
  width: 1200px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
*,
*:before,
*:after {
  box-sizing: border-box;
  outline: 0;
}

/* 首页 */
header {
  height: 72px;
  padding: 0 40px;
  background-color: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}
header .pic {
  width: 180px;
  height: 42px;
}
.pic img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.inNav {
  margin-left: 100px;
}
.inNav .layui-nav .layui-nav-item a {
  color: #333;
}
.inNav .layui-nav .layui-nav-item a:hover,
.inNav .layui-nav .layui-this a {
  color: #1362fe;
}
.inNav .layui-nav .layui-this:after {
  width: 40%;
  left: 30%;
  bottom: -6px;
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}
.inNav .layui-nav-bar {
  height: 0;
}
header .layui-btn {
  width: 90px;
  height: 34px;
  line-height: 34px;
}
.inban .swiper-slide {
  height: 470px;
  background-repeat: no-repeat;
  background-position: center 0;
}
.inban .swiper-slide .dflex {
  flex-direction: column;
  justify-content: center;
}
.inban .swiper-slide * {
  color: #fff;
}
.inban h3 {
  font-size: 53px;
}
.inban p {
  font-size: 20px;
  line-height: 38px;
  margin-top: 30px;
  padding-right: 320px;
}
.inban .swiper-pagination-bullet {
  opacity: 1;
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}
.inban .swiper-pagination-bullet-active {
  width: 42px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 1);
}
.smartUse {
  padding: 60px 0;
}
.inTitle h3 {
  color: #000;
  font-size: 32px;
}
.inTitle p {
  color: #999;
  font-size: 14px;
  margin-top: 30px;
}
.smartUse .layui-tab {
  margin-top: 40px;
  margin-bottom: 0;
}
.smartUse .layui-tab-title {
  height: auto;
  border-bottom: 0;
  margin-bottom: 30px;
}
.smartUse .layui-tab-title li {
  color: #333;
  font-size: 16px;
  line-height: 33px;
}
.smartUse .layui-tab-title li + li {
  margin-left: 30px;
}
.smartUse .layui-tab-title .layui-this {
  color: #fff;
  border-radius: 30px;
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}
.smartUse .layui-tab-title .layui-this:after {
  border: 0;
}
.smartUse .wrap {
  margin-left: -30px;
}
.smartUse .use-box {
  width: 380px;
  height: 270px;
  overflow: hidden;
  margin-left: 30px;
  margin-bottom: 30px;
}
.use-box h5 {
  color: #fff;
  font-size: 20px;
}
.use-box h5.pat {
  left: 30px;
  bottom: 33px;
}
.use-box:hover h5.pat {
  display: none;
}
.smart-hover {
  top: 100%;
  left: 0;
  opacity: 0;
  display: flex;
  padding: 66px 30px 30px;
  background-color: rgba(0, 0, 0, 0.8);
}
.use-box:hover .smart-hover {
  top: 0;
  opacity: 1;
  z-index: 3;
}
.smart-hover p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  margin-top: 10px;
  margin-bottom: 50px;
}
.smart-hover .layui-btn {
  height: 30px;
  line-height: 28px;
  border: 1px solid #fff;
}
.moreBtn {
  padding-top: 20px;
}
.moreBtn .layui-btn {
  height: 34px;
  line-height: 32px;
  border: 1px solid;
}
.smartPlan {
  padding: 60px 0;
  background-color: #f6f7fa;
}
.smartPlan .layui-tab {
  margin-top: 30px;
}
.smartPlan .tab-item {
  width: 20%;
  margin: 30px 0;
}
.smartPlan .tab-item > .prt:after {
  content: "";
  bottom: -60px;
  left: 0;
  opacity: 0;
  z-index: 9;
  display: none \9;
  position: absolute;
  border-bottom: 15px solid #0069fb;
  border-left: transparent solid 15px;
  border-right: transparent solid 15px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.smartPlan .tab-item.on > .prt:after {
  left: calc(50% - 14px);
  opacity: 1;
}
.smartPlan .tab-item .picbox {
  width: 76px;
  height: 76px;
  margin: 0 auto;
}
.smartPlan .picbox .pic {
  width: 100%;
  height: 100%;
}
.smartPlan .tab-item.on .pic01 {
  display: none \9;
  opacity: 0;
  -webkit-transition: all 1700ms ease-in-out;
  transition: all 1700ms ease-in-out;
}
.smartPlan .tab-item .pic02 {
  opacity: 0;
  display: none \9;
  top: 0;
  left: 0;
  position: absolute;
  -webkit-transform: translateY(100px);
  -ms-transform: translateY(100px);
  transform: translateY(100px);
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
}
.smartPlan .tab-item.on .pic02 {
  opacity: 1;
  display: block \9;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.smartPlan .pic + h5 {
  font-size: 16px;
  margin-top: 10px;
}
.smartPlan .subitem {
  height: 780px;
  display: none;
  margin-top: 60px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.smartPlan .on .subitem {
  display: block;
}
.smartPlan .subitem .container {
  top: auto;
  left: 0;
  z-index: -10;
  padding: 42px;
  height: 780px;
  overflow: hidden;
  background: url(../images/bg-plan-item.jpg) no-repeat center 0;
}

.person {
  position: relative;
  z-index: 200;
}
.xia-btn .tip-info1 {
  height: fit-content;
  border: none;
  margin-left: 10px;
  display: inline-block;
}
.tip-info {
  cursor: pointer;
  height: 85px;
  border-bottom: 1px solid #dddddd;
  gap: 9px;
  align-items: center;
}
.info-list {
  box-sizing: border-box;
  padding: 20px;
}
.xia-btn {
  position: relative;
}
.xia-btn .tip-info-avator1 {
  width: 23px;
  height: 23px;
  display: inline-block;
}
.info-list li {
  align-items: center;
  display: flex;
  gap: 10px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 7px 0;
  text-align: center;
  cursor: pointer;
}
.info-list li:hover span {
  color: #0155ff;
}
.moreBt {
  transform: rotate(180deg);
  width: 8px;
  height: 5px;
}
.tip-info-avator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.tip-info-name {
  flex: 1;
  max-width: 75%;
  display: inline-block;
}
.tip-info-name h2 {
  font-size: 16px;
  color: #333333;
}
.tip-info-name h2,
.tip-info-name p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.person-tip {
  text-align: center;
  padding: 18px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  position: absolute;
  right: -20px;
  z-index: 100;
  top: 56px;
  width: 158px;

  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}

.smartPlan .on .subitem .container {
  z-index: 1;
}
.smartPlan .subitem * {
  color: #fff;
}
.tab-item .container > div {
  -webkit-animation: mymove 1000ms ease-in-out;
  animation: mymove 1000ms ease-in-out;
}
@keyframes mymove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes mymove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.itemTop h3 a {
  font-size: 24px;
}
.itemTop h3 + p {
  color: #b7d1f9 !important;
  height: 72px;
  line-height: 24px;
  font-size: 14px;
  margin: 15px 0 20px;
}
.itemTop .layui-btn {
  width: 140px;
  height: 40px;
  border: 1px solid;
}
.smartPlan .subitem .layui-btn:hover {
  opacity: 1;
  color: #555;
  background-color: #fff !important;
}
.itemTop h5 a {
  font-size: 18px;
}
.itemTop h5:hover a {
  font-weight: bold;
}
.itemTop h5 + p {
  color: #b7d1f9 !important;
  font-size: 14px;
  line-height: 24px;
  margin-top: 5px;
}
.itemTop .wd40 > div + div {
  margin-top: 20px;
}
.tab-item .plan-box {
  width: 237px;
  height: 418px;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
}
.plan-box.active {
  width: 387px;
}
.tab-item .plan-box + div {
  margin-left: 6px;
}
.plan-box .plan-1 {
  top: 0;
  left: 0;
  padding: 230px 14px 17px;
  background-color: rgba(0, 0, 0, 0.2);
}
.plan-box.active .plan-1 {
  display: none;
}
.plan-box .plan-1 p {
  opacity: 0.9;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 3px;
}
.plan-box h5 {
  height: 48px;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
}
.unfold {
  width: 26px;
  height: 26px;
  padding-left: 3px;
  margin-top: 30px;
  border: 2px solid;
}
.plan-box .plan-2 {
  top: 5%;
  left: 0;
  opacity: 0;
  z-index: -1;
  padding: 45px 20px 17px;
  background-color: rgba(0, 0, 0, 0.6);
}
.plan-box.active .plan-2 {
  top: 0;
  opacity: 1;
  z-index: 1;
}
.plan-box .plan-2 p {
  height: 220px;
  line-height: 20px;
}
.plan-box .plan-2 .layui-btn {
  width: 112px;
  height: 40px;
  margin-top: 16px;
  border: 1px solid;
}
.smartCase {
  padding: 60px 0;
}
.smartCase .layui-tab-title {
  height: 60px;
  border-color: #c9cacd;
}
.smartCase .layui-tab-title li {
  color: #333;
  font-size: 20px;
  line-height: 60px;
  padding: 0 45px;
}
.smartCase .layui-tab-title .layui-this {
  color: #0155ff;
  font-size: 24px;
}
.smartCase .layui-tab-title .layui-this:after {
  top: -2px;
  left: 20%;
  width: 60%;
  height: 61px;
  border-width: 5px;
  border-color: #0155ff;
}
.smartCase .layui-tab-bar {
  display: none;
}
.smartCase .case-1 .pic {
  width: 872px;
  height: 558px;
}
.smartCase .case-1 .txts {
  left: 0;
  bottom: 0;
  height: 100px;
  display: block;
  padding: 26px 35px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.smartCase .case-2 {
  width: 320px;
  height: 558px;
  margin-right: -10px;
}
.case-2 .swiper-wrapper {
  overflow-y: scroll;
  overflow-x: hidden;
  flex-direction: column;
}
.scrobar::-webkit-scrollbar {
  width: 5px;
}
.scrobar::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
}
.smartCase .case-2 .swiper-slide {
  width: 310px;
  height: 174px;
}
.case-2 .swiper-slide + .swiper-slide {
  margin-top: 20px;
}
.smartCase .case-2 .pic {
  width: 310px;
  height: 174px;
}
.smartCase .case-2 .txts {
  left: 0;
  bottom: 0;
  height: 70px;
  display: block;
  padding: 16px 15px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.smartCase .case-2 .swiper-scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 50;
  width: 5px;
  height: 100%;
}
.smartView {
  padding: 60px 0;
  background: url(../images/bg-p4.jpg) no-repeat center 0;
}
.smartView .view-1 {
  width: 488px;
  height: 742px;
  padding: 0 24px;
}
.smartView .vTitle {
  height: 60px;
  border-bottom: 1px solid #dcdcdc;
}
.smartView .vTitle h3 {
  padding: 0 12px;
  line-height: 60px;
}
.smartView .vTitle h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #0155ff;
}
.icon-more {
  width: 14px;
  height: 12px;
  background-image: url(../images/icon-more.png);
}
.smartView .view-1 .dflex.prt:before {
  content: "";
  position: absolute;
  top: 22px;
  left: -8px;
  width: 27px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.view-1 .first.prt:before {
  background-image: url(../images/icon-rank-1.png);
}
.view-1 .second.prt:before {
  background-image: url(../images/icon-rank-2.png);
}
.view-1 .third.prt:before {
  background-image: url(../images/icon-rank-3.png);
}
.smartView .vTitle + div > a + a {
  height: 136px;
  border-top: 1px dashed #dcdcdc;
}
.smartView .view-1 .pic {
  width: 130px;
  height: 97px;
}
.smartView .view-1 .txts {
  width: 290px;
}
.smartView .view-1 h5 {
  color: #333;
  font-size: 18px;
  line-height: 26px;
}
.view-1 a.dflex:hover h5 {
  color: #0155ff;
}
.smartView .view-2 {
  width: 696px;
  height: 742px;
  padding: 0 24px;
}
.view-2 .layui-tab-title li {
  color: #999;
  padding: 0;
  margin-right: 40px;
}
.view-2 .layui-tab-title .layui-this {
  color: #333;
  font-size: 18px;
}
.view-2 .layui-tab-title .layui-this:after {
  border: 0;
}
.view-2 .layui-tab-item h5 {
  line-height: 28px;
}
.view-2 .layui-tab-item > div:hover h5 a {
  color: #0155ff;
}
.view-2 .layui-tab-item h5 + p {
  line-height: 24px;
}
.view-2 .layui-tab-item > div + div {
  border-top: 1px dashed #dcdcdc;
}
.cooperation {
  padding: 60px 0;
}
.honeycomb {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 70px;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
.honeycomb-cell {
  flex: 0 1 170px;
  max-width: 170px;
  height: 200px;
  margin: -70px 0 20px;
  z-index: 1;
  background: url(../images/bg-honeycomb.png) no-repeat center;
}
.honeycomb-cell:nth-child(11n + 6),
.honeycomb-cell:nth-child(11n + 9):nth-last-child(2) {
  margin-right: calc(1%);
}
.honeycomb-cell .pic {
  width: 160px;
  height: 110px;
}
.honeycomb__placeholder {
  display: none;
  opacity: 0;
  width: 170px;
}
.honeycomb__placeholder:nth-child(11n + 3),
.honeycomb__placeholder:nth-child(11n + 5),
.honeycomb__placeholder:nth-child(11n + 7),
.honeycomb__placeholder:nth-child(11n + 9),
.honeycomb__placeholder:nth-child(11n + 11) {
  display: block;
}

footer {
  background-color: #1e1e1e;
}
footer .fweb-1 {
  height: 176px;
}
.footer-web .dflex > div + div {
  margin-top: 12px;
}
.fweb-1 li + li {
  margin-left: 24px;
}
.fweb-1 li + li:before {
  content: "";
  position: absolute;
  top: 1px;
  left: -12px;
  width: 1px;
  height: 15px;
  border-left: 1px solid #bfbfbf;
}
.fweb-1 li a {
  color: #bfbfbf;
  font-size: 12px;
}
footer .fweb-2 {
  height: 106px;
  border-top: 1px solid #a2a2a5;
}
.fweb-2 p,
.fweb-2 a {
  color: #fff;
  font-size: 14px;
}

/* 智能+应用 */
.secondary {
  margin-top: 10px;
}
.secondary .inban {
  height: 370px;
  margin-top: -10px;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: 100% 100%;
}
.secondary .chobox {
  padding-top: 25px;
  padding-left: 25px;
  padding-right: 25px;
}
.chobox .search-box .layui-input {
  width: 286px;
  height: 34px;
  border-radius: 5px;
}
.chobox .search-box a.pat {
  top: calc(50% - 8px);
  right: 10px;
}
.chobox .search-box .layui-icon-search {
  color: #44546c;
}
.chobox .layui-form-label {
  width: 76px;
  padding: 4px 0;
  text-align: left;
}
.chobox .layui-form-label + div {
  width: calc(100% - 80px);
}
.chobox .layui-form-radio {
  margin: 0;
}
.chobox .layui-unselect .layui-icon {
  display: none;
}
.chobox .layui-form-radio div,
.chobox .layui-form-checkbox span {
  color: #252b3a;
  font-size: 14px;
  padding: 0 14px;
  position: relative;
  border-radius: 20px;
}
.chobox .wrap .layui-form-radioed div,
.chobox .wrap .layui-form-radio div:hover,
.chobox .wrap .layui-form-checked span,
.chobox .wrap .layui-form-checkbox span:hover {
  color: #fff;
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}

.layui-laypage a,
.layui-laypage span {
  height: 34px;
  line-height: 34px;
  font-size: 14px;
  margin: 0;
}
.layui-laypage a:hover {
  color: #0155ff;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}
.layui-laypage span,
.layui-laypage .layui-laypage-refresh {
  background-color: transparent;
}
.layui-laypage select {
  height: 28px;
}
.layui-laypage .layui-laypage-skip,
.layui-laypage button,
.layui-laypage input {
  height: 36px;
  line-height: 36px;
}
.layui-laypage input {
  width: 60px;
}
.layui-laypage input:focus,
.layui-laypage select:focus {
  border-color: #0155ff !important;
}
.layui-laypage .layui-laypage-btn {
  color: #0155ff;
  border-color: #0155ff;
  padding: 0 15px;
}

/* 智能+应用-详情 */
.describe-use {
  padding: 25px;
}
.describe-use .pic {
  width: 230px;
  height: 163px;
}
.describe-use .txts {
  width: calc(100% - 260px);
}
.describe-use .txts .icon {
  width: 56px;
  height: 40px;
}
.describe-use .icon {
  max-height: 100%;
}
.details-use > div {
  padding-left: 55px;
  padding-right: 55px;
}
.title-1 h3 {
  line-height: 55px;
}
.title-1 h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background-color: #0155ff;
  background-image: linear-gradient(to right, #0155ff, #387bfc);
}
.btn-use {
  margin: 52px 0;
}
.btn-use .layui-btn {
  width: 172px;
  height: 54px;
  line-height: 54px;
}

/* 智能+方案 */
.chnav .layui-form-radio div:after {
  content: "";
  display: inline-block;
  position: relative;
  top: -2px;
  width: 9px;
  height: 6px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/icon-arrow-down.png);
}
.chnav .layui-form-radioed div:after,
.chnav .layui-form-radio div:hover:after {
  background-image: url(../images/icon-arrow-down-on.png);
}
.layui-sub-nav {
  width: 82%;
  height: auto;
  margin-top: 16px;
  padding-left: 10px;
  background-color: #eef1fc;
}
.chobox .layui-nav-child {
  top: 0;
  line-height: 28px;
  position: relative;
  box-shadow: none;
  border: none;
  background-color: transparent;
}
.chobox .layui-nav-child.selected {
  display: block;
}
.layui-nav-child .layui-form-radio div {
  color: #333;
  padding: 0 20px;
}
.layui-nav-child .layui-form-radioed div,
.layui-nav-child .layui-form-radio div:hover {
  color: #38579f;
}
.plan-lists div.bgfff {
  padding: 25px;
}
.plan-lists div.bgfff + div {
  border-top: 1px solid #e8e8e8;
}
.secondary .mark {
  top: 45px;
  left: 50px;
  width: 84px;
  height: 36px;
  line-height: 36px;
  z-index: 5;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  background-color: #ff3d19;
}
.plan-lists .pic {
  width: 391px;
  height: 256px;
}
.plan-lists .txts {
  width: calc(100% - 417px);
}
.secondary .tags span {
  display: block;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  color: #0155ff;
  background-color: #eef1fc;
}
.tags span + span {
  margin-left: 7px;
}
.plan-lists .infor span {
  width: 72px;
}
.plan-lists .infor p {
  width: calc(100% - 72px);
  overflow: hidden;
  max-height: 80px;
}
.plan-lists .layui-btn {
  width: 115px;
  height: 36px;
  line-height: 36px;
}

/* 智能+方案-详情 */
.dep-left {
  padding: 26px;
  width: 822px;
}
.icon-eye {
  width: 16px;
  height: 14px;
  background-image: url(../images/icon-eye.png);
}
.dep-left .layui-btn {
  width: 172px;
  height: 52px;
  line-height: 52px;
}
.dep-right {
  width: 358px;
  margin-left: 20px;
}
.depSwiper {
  padding: 12px;
}
.swi-btn-1 {
  color: #fff;
  width: 17px;
  height: 44px;
  top: calc(50% - 16px);
  --swiper-navigation-size: 12px;
  background-color: rgba(0, 0, 0, 0.5);
}
.depSwiper .swiper-button-next {
  right: 0;
}
.depSwiper .swiper-button-prev {
  left: 0;
}
.depSwiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 0.4;
  margin: 0 2.5px;
  background-color: #fff;
}
.depSwiper .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.title-2 {
  padding: 0 24px;
  line-height: 50px;
}
.title-2:before {
  content: "";
  position: absolute;
  top: calc(50% - 11px);
  left: 0;
  width: 5px;
  height: 22px;
  background-color: #0155ff;
}
.hot-plan a {
  padding: 20px 24px;
}
.hot-plan a + a {
  border-top: 1px solid #ededed;
}
.hot-plan .pic {
  width: 102px;
  height: 73px;
  border: 1px solid #ededed;
}
.hot-plan .txts {
  width: calc(100% - 115px);
}
.hot-plan .txts h5 {
  line-height: 22px;
}
.page-plan {
  height: 156px;
  padding-left: 65px;
  padding-right: 65px;
}
.page-plan a {
  padding-left: 20px;
}
.page-plan a.prt:before {
  content: "";
  position: absolute;
  top: 43%;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #0155ff;
}

/* 智能+案例 */
.case-lists .wrap {
  margin-left: -13px;
}
.case-lists .wrap > div {
  width: calc(33.33% - 13px);
  height: 372px;
  margin-left: 13px;
  margin-bottom: 14px;
}
.secondary .field {
  top: 20px;
  left: 20px;
  z-index: 10;
  width: 169px;
  height: 38px;
  padding: 1px 2px;
  border-radius: 30px;
  background-color: rgba(0, 0, 0, 0.3);
}
.secondary .field .mark + span {
  width: 50%;
}
.case-lists .image {
  width: 100%;
  height: 236px;
}
.case-lists .wrap > div:hover h5 a {
  color: #0155ff;
}

/* 智能+案例-详情 */
.details-plan .video {
  padding: 12px;
}
.details-plan .video .image {
  width: 334px;
  height: 202px;
}
.video .image + div.pat {
  top: 12px;
  left: 12px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  background-color: rgba(0, 0, 0, 0.5);
}
.icon-video {
  width: 57px;
  height: 57px;
  background-image: url(../images/icon-video.png);
}
.recom .case-lists .wrap {
  margin-left: -20px;
}
.recom .case-lists .wrap > div {
  width: calc(25% - 20px);
  margin-left: 20px;
}

/* 最新政策 */
.plr40 {
  padding-left: 40px;
  padding-right: 40px;
}
.col3378 {
  color: #3378fc !important;
}
.bg3378 {
  background-color: #3378fc;
}
.bor3378 {
  border: 1px solid #3378fc;
}
.file-box .chobox {
  padding-left: 40px;
  padding-right: 40px;
}
.chobox .layui-form-item .layui-input-inline {
  width: auto;
}
.input-date {
  width: 286px;
  padding-left: 36px;
  border-radius: 5px;
  background: url(../images/icon-date.png) no-repeat 14px center;
}
.chobox .layui-form-mid {
  float: none;
  margin-left: 10px;
}
.chobox .flex-between .layui-btn {
  width: 76px;
  height: 34px;
  line-height: 32px;
  border-radius: 5px;
  border: 1px solid #3378fc;
}
.file-box .file-lists {
  border-top: 1px dashed #dadde4;
}
.file-box .file-lists .ptb20 {
  border-bottom: 1px dashed #dadde4;
}
.file-box .file-lists a:hover {
  padding-left: 20px;
}
.file-box .file-lists a:hover:before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #3378fc;
}
.file-box .file-lists a + a {
  margin-top: 12px;
}
.file-box .file-lists a p {
  width: calc(100% - 120px);
}
.file-box .file-lists a:hover * {
  color: #3378fc;
}

/* 最新政策详情 */
.title-file .file-btn {
  width: 64px;
  height: 24px;
  line-height: 22px;
  padding: 0;
  margin-left: 13px;
  font-size: 12px;
  border: 1px solid;
  border-radius: 3px;
}
.btn-sc {
  color: #3378fc !important;
  background-color: #e9f1ff;
}
.btn-zx {
  color: #3fb085 !important;
  background-color: #e8faf3;
}
.icon-zx {
  width: 14px;
  height: 14px;
  background-image: url(../images/icon-zx.png);
}
.secondary .borbtmdash {
  border-color: #dadde4;
}
.details-nr * {
  font-size: inherit;
}
.details-nr .layui-btn {
  width: 69px;
  height: 69px;
  line-height: normal;
  font-size: 14px;
  border: 1px solid;
  border-radius: 100%;
  background-color: transparent;
}
.details-nr .layui-btn + .layui-btn {
  margin-left: 20px;
}
.details-nr .layui-btn * {
  color: inherit;
}
.opt-btn-1 {
  color: #f8ac53 !important;
}
.opt-btn-2 {
  color: #0a5bfe !important;
}
.opt-btn-3 {
  color: #3dc791 !important;
}
.icon-zx-2 {
  width: 22px;
  height: 22px;
  background-image: url(../images/icon-zx-2.png);
}
.details-nr .layui-btn span {
  margin-top: 5px;
}

/* 行业资讯 */
.infor-box .chobox {
  padding-left: 40px;
  padding-right: 40px;
}
.infor-box .search-box .layui-input {
  width: 978px;
  height: 46px;
  padding-left: 40px;
  border-radius: 2px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: #1e69fd !important;
}
.infor-box .search-box .layui-btn {
  width: 144px;
  height: 46px;
  line-height: 46px;
  background-color: #0457ff;
}
.infor-box .layui-btn .layui-icon {
  color: #fff;
}
.infor-lists > div {
  padding-top: 30px;
  padding-bottom: 30px;
}
.infor-lists > div.prt:before {
  content: "";
  position: absolute;
  top: 46px;
  left: 27px;
  width: 43px;
  height: 29px;
  background-repeat: no-repeat;
  background-position: 0 center;
}
.infor-lists .first.prt:before {
  background-image: url(../images/icon-no-1.png);
}
.infor-lists .second.prt:before {
  background-image: url(../images/icon-no-2.png);
}
.infor-lists .third.prt:before {
  background-image: url(../images/icon-no-3.png);
}
.infor-lists .pic {
  width: 284px;
  height: 173px;
}
.infor-lists .pic + div {
  width: calc(100% - 314px);
}
.infor-lists h5 {
  height: 132px;
}
.infor-lists > div:hover h5 a {
  color: #0457ff;
}
.infor-lists .index {
  color: #cd3521;
  padding-left: 26px;
  background: url(../images/icon-fire.png) no-repeat 0 center;
}

/* 行业资讯详情 */
.details-nr img {
  width: auto;
  max-width: 100%;
  display: block;
  margin: 40px auto;
}

/* 联系我们2 */
.contact {
  height: 740px;
  margin-top: -10px;
  padding-top: 90px;
  background: url(../images/bg-contact.png) no-repeat center 0;
}
.relate-box {
  width: 1108px;
  height: 577px;
  margin: 0 auto;
  border-radius: 12px;
}
.rel-left {
  width: 467px;
  padding-top: 60px;
  background: url(../images/bg-hands.png) no-repeat 0 center;
}
.rel-right {
  width: calc(100% - 467px);
  padding: 50px 98px;
}
.contact .layui-input {
  height: 46px;
  padding-left: 26px;
  border-color: #dadde4;
}
.layui-input::-webkit-input-placeholder {
  color: #ccc;
}
.layui-input::-ms-input-placeholder {
  color: #ccc;
}
.layui-input:-ms-input-placeholder {
  color: #ccc;
}
.layui-input::-moz-placeholder {
  color: #ccc;
}
.layui-input:-moz-placeholder {
  color: #ccc;
}
.layui-input::placeholder {
  color: #ccc;
}
.contact .yzm {
  top: 11px;
  right: 17px;
  width: 74px;
  height: 23px;
}
.contact .layui-textarea {
  height: 134px;
  padding-top: 10px;
}
.contact .layui-btn {
  width: 346px;
  height: 52px;
  line-height: 52px;
  margin-top: 30px;
  border-radius: 5px;
}

/* 翼企造 */
.board {
  height: 100vh;
  background: url(../images/bg-kanban.jpg) no-repeat center 0;
  background-size: 100% 100%;
}
.board-title {
  height: 10vh;
}
.board img {
  max-width: 100%;
  max-height: 100%;
}
.board-content {
  height: 90vh;
  padding: 0.3vh 1.3vw 3.3vh;
}
.board-content > div {
  flex-direction: column;
}
.board-left {
  width: 30vw;
}
.kuang-box {
  height: 27vh;
  padding: 1.3vh 0.5vw;
  background: url(../images/bg-kuang.png) no-repeat center 0;
  background-size: 100% 100%;
}
.kuang-title {
  width: 14vw;
  height: 4vh;
  line-height: 4vh;
  background: url(../images/bg-kuang-title.png) no-repeat center 0;
  background-size: 100% 100%;
}
.kuang-title h3 {
  color: #00cdff;
  font-size: 2.2vh;
  padding: 0 1vw;
}
.kuang-infor {
  height: calc(100% - 4vh);
}
.state-box {
  height: calc(100% - 5vh);
  padding-top: 2vh;
}
.state-box > div + div {
  margin-left: 3.65vw;
}
.state-box span {
  color: #0bfdf5;
  font-size: 2.2vh;
  display: block;
  padding-bottom: 1vh;
}
.state-box .pic {
  width: 3.7vw;
  height: 4.53vh;
}
.state-box p {
  color: #fff;
  font-size: 1.8vh;
  padding-top: 0.5vh;
}
#chart1 {
  height: 5vh;
}
.board-right {
  width: 70vw;
  padding: 0 5vw;
}
.data-box .pic {
  width: 11.67vh;
  height: 10.92vh;
  margin-right: 1.3vw;
}
.data-box .pic + div {
  width: 13vh;
}
.data-box span {
  color: #0bfdf5;
  font-size: 3.8vh;
  font-weight: bold;
}
.data-box p {
  color: #fff;
  font-size: 2.2vh;
  margin-top: 1vh;
}
.pass-box {
  height: 68vh;
}
.pass-title {
  width: 37vh;
  height: 4.26vh;
  margin: 0 auto 4.5vh;
}
.pass-box > .prt {
  width: 103.889vh;
  max-width: 100%;
  height: 52.41vh;
  margin: 0 auto;
  background: url(../images/bg-pass.png) no-repeat center 0;
  background-size: 100% 100%;
}
.pass-1 {
  top: 3.6vh;
  left: 0;
}
.piece-box {
  width: 15.37vh;
  height: 16.574vh;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(../images/bg-piece.png);
  background-size: contain;
}
.piece-box span {
  color: #fff;
  font-size: 2.59vh;
  font-weight: bold;
}
.piece-box p {
  color: #0bfdf5;
  font-size: 2.04vh;
  margin-top: 0.6vh;
}
.fsv18 {
  font-size: 1.67vh !important;
}
.pass-2 {
  left: auto;
  bottom: -3.6vh;
  width: 83.2%;
}

.btmbtnwrap {
  bottom: 0;
  left: 0;
  width: 100%;
}
.smart-hover {
  background: rgba(0, 0, 0, 0);
}
.btmbtnwrap .layui-btn {
  width: 50%;
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  color: #fff;
  border-radius: 0;
  border: none !important;
}
.btmbtnwrap .layui-btn + .layui-btn {
  margin-left: 0;
}
.bgblue11 {
  background: #0096ff !important;
}
.bgblue12 {
  background: #006ef0 !important;
}

/* 应用详情新增板块 */
.col0457 {
  color: #0457ff;
}
.bg0457 {
  background-color: #0457ff;
}
.bor0457 {
  border-color: #0457ff;
}
.yycp-box {
  padding: 45px 53px;
}
.yycp-box .swiper-slide {
  height: 202px;
  border: 1px solid #b6b6b6;
}
.yycp-box .swiper-slide .borbtm {
  border-color: #b6b6b6;
}
.yycp-box .swiper-slide .pic {
  width: 135px;
  height: 135px;
  background-color: #e4e4e4;
}
.yycp-box .swiper-slide .txts {
  width: calc(100% - 145px);
  padding: 13px 20px;
}
.yycp-box .borbtm + div {
  padding: 0 20px;
  height: calc(100% - 135px);
}
.yycp-box .swiper-slide .layui-btn {
  width: 90px;
  height: 34px;
  line-height: 32px;
  margin-left: 14px;
}

/* 应用产品详情 */
.bge4e4 {
  background-color: #e4e4e4;
}
.pro-info {
  width: 775px;
  height: 350px;
}
.pro-info .pic-box {
  width: 230px;
}
.pro-info .pic-top {
  height: 230px;
}
.pro-info .swiper-slide {
  overflow: hidden;
  background-color: #e4e4e4;
  background-size: cover;
}
.pro-info .pic-thumbs {
  height: 70px;
  padding: 10px 0;
}
.pic-thumbs .swiper-slide-thumb-active {
  border: 2px solid #1362fe;
}
.pro-info .txts-box {
  width: calc(100% - 260px);
  height: 100%;
}
.pro-info .option .layui-tab-title {
  height: auto;
  border-bottom: 0;
  margin-left: -10px;
}
.option .layui-tab-title li {
  padding: 0 13px;
  line-height: 22px;
  margin-left: 10px;
  border-radius: 3px;
  border: 1px solid #c0c4cc;
}
.option.layui-tab-brief > .layui-tab-title .layui-this {
  color: #333;
  border-color: #0256ff;
}
.option .layui-tab-title .layui-this:after {
  top: auto;
  left: auto;
  right: -1px;
  bottom: 0;
  width: 14px;
  height: 15px;
  border-bottom: 0;
  background: url(../images/bg-check.png) no-repeat center;
}
.price-tag {
  height: 44px;
  padding: 0 16px;
  background-color: #eaf0fb;
}
.count-box {
  width: 164px;
  height: 34px;
  border: 1px solid #c0c4cc;
}
.count-box .count-btn {
  width: 42px;
  height: 100%;
  padding-bottom: 4px;
  color: #b5becb;
  background-color: #fff;
  border-color: #c0c4cc !important;
}
.count-decrease {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.count-increase {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.count-box .hidetip {
  background-color: #f1f2f5;
}
.count-box .count-number {
  height: 100%;
  padding-left: 13px;
  width: calc(100% - 84px);
}
.txts-box .layui-btn {
  width: 90px;
  height: 34px;
  line-height: 32px;
}
.company-info {
  width: 394px;
  height: 350px;
}
.company-info .pic {
  width: 135px;
  height: 78px;
}
.company-info .layui-btn {
  height: 44px;
  line-height: 42px;
  color: #0457ff;
  border-color: #0457ff;
}
.specific-box .layui-tab {
  margin: 0;
}
.specific-box .layui-tab .layui-tab-title {
  height: auto;
}
.specific-box .layui-tab .layui-nav-item {
  color: #333;
  font-size: 18px;
  line-height: 60px;
  padding: 0 30px;
}
.specific-box .layui-tab-title li + li {
  margin-left: 30px;
}
.specific-box .layui-tab .layui-this {
  color: #333;
}
.specific-box .layui-tab-title .layui-this:after {
  top: auto;
  bottom: 1px;
  left: 20%;
  width: 60%;
  height: 4px;
  border-bottom-color: #0457ff;
}
.specific-box .layui-tab-content {
  min-height: 200px;
}

/* 订单确认页面 */
.colc0c0 {
  color: #c0c0c0;
}
.colcc14 {
  color: #cc1414;
}
.bgc0c4 {
  background-color: #c0c4cc;
}
.form-title {
  height: 65px;
  border-bottom: 1px solid #e8e8e8;
}
.confirm-form {
  padding: 46px 83px 10px;
}
.cp-info .pic {
  width: 170px;
  height: 170px;
}
.cp-info .txts {
  width: calc(100% - 220px);
}
.cp-info .txts h5 + p {
  width: 52%;
}
.confirm-form .icon-box div + div {
  margin-left: 45px;
}
.icon-company {
  width: 18px;
  height: 18px;
  background-image: url(../images/icon-company.png);
}
.icon-location {
  width: 18px;
  height: 22px;
  background-image: url(../images/icon-location.png);
}
.confirm-form .layui-form-item {
  padding-left: 70px;
  margin-bottom: 26px;
}
.confirm-form .layui-form-label {
  width: 210px;
  text-align: left;
}
.confirm-form .layui-input-block {
  width: 316px;
  margin-left: 216px;
}
.confirm-form .layui-input {
  color: #333;
  padding-left: 24px;
  border-color: #c0c0c0;
}
.confirm-form .unit {
  width: 91px;
  height: calc(100% - 2px);
  top: 1px;
  right: 1px;
  border-left: 1px solid #c0c0c0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.form-end {
  height: 76px;
  border-top: 1px solid #e8e8e8;
}
.form-end .layui-btn {
  width: 120px;
  height: 40px;
}
.layui-btn.col0457 {
  color: #0457ff;
}

/* 订单确认页面-查看 */
.form-see .count-box {
  border: 0;
}
.form-see .confirm-form .layui-input {
  border: 0;
}
.form-see .layui-input-block.prt .layui-input {
  width: auto;
}
.form-see .confirm-form .unit {
  color: #333;
  width: auto;
  right: 240px;
  border-left: 0;
  background-color: transparent;
}
.payment span {
  padding-left: 36px;
}
.payment .active {
  background: url(../images/icon-payment-2.png) no-repeat 0 center;
  background-size: 15px 14px;
}
/* 首页1 */
.home1-container {
  width: 1300px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}
.home1-header {
  display: flex;
  padding-top: 32px;
  padding-bottom: 19px;
}
.header-left p:nth-child(1) {
  font-family: SourceHanSerifCN-Heavy;
  font-size: 26px;
  line-height: 25px;
  letter-spacing: 0px;
  color: #2654ff;
  font-weight: 700;
}
.header-left p:nth-child(2) {
  font-family: SourceHanSansCN-Normal;
  font-size: 13px;
  line-height: 25px;
  letter-spacing: 5px;
  color: black;
}
.m17 {
  margin-left: 17px;
}
.m39 {
  margin-left: 39px;
}
.header-centre {
  margin-left: 85px;
  margin-right: 235px;
  padding-top: 10px;
}
.header-centre a {
  font-size: 22px;
  line-height: 26px;
  padding-bottom: 25px;
  margin-right: 26px;
}
.header-centre a:hover {
  color: #2654ff;
  font-weight: 700;
  border-bottom: 5px solid;
  border-image: linear-gradient(to right, #2556ff, #367afd) 1;
}
.header-right {
  padding-top: 10px;
}
.header-right button {
  width: 82px;
  height: 32px;
  border: none;
}
.header-right button:nth-child(1) {
  background-image: linear-gradient(55deg, #2556ff 0%, #367afd 100%),
    linear-gradient(#2654ff, #2654ff);
  color: white;
  margin-left: 8px;
}
.header-right button:nth-child(2) {
  background-color: rgba(38, 84, 255, 0.15);
  color: #2654ff;
}
.banner {
  background: url("../images/home1-banner.jpg") no-repeat;
  background-size: cover;
  width: 100%;
  height: 401px;
  margin-bottom: 154px;
}
.banner-centre {
  position: relative;
}
.banner-centre .banner-centre-top {
  position: absolute;
  top: 140px;
  left: 117px;
}
.banner-centre-top p:nth-child(1) {
  font-size: 40px;
  color: white;
}
.banner-centre-top p:nth-child(2) {
  font-size: 16px;
  color: #859fff;
}
.banner-centre-bottom {
  display: flex;
  position: absolute;
  top: 321px;
  width: 100%;
  align-items: center;
  height: 139px;
  border-radius: 10px;
  background: url("../images/home1-bj1.png");
  background-color: white;
  text-align: center;
  box-shadow: 0px 2px 15px 0px rgba(3, 36, 86, 0.15);
}
.banner-centre-bottom div p:nth-child(1) {
  font-family: DIN-Bold;
  font-size: 40px;
  color: #2654ff;
  font-weight: 700;
}
.banner-centre-bottom div p:nth-child(2) {
  font-size: 18px;
  color: #aaaaaa;
}
.menu-top {
  position: relative;
  text-align: center;
  color: #000000;
}
.menu-top::after {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 36px;
  height: 5px;
  background-color: #2654ff;
  border-radius: 3px;
}
.menu-center {
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
  margin-bottom: 66px;
}
.menu-center > div {
  box-sizing: border-box;
  width: 295px;
  height: 422px;
  background-color: #ffffff;
  border-radius: 40px;
  border: solid 2px #2654ff;
  padding: 0 27px;
}
.menu-center > div:hover {
  cursor: pointer;
  background-image: linear-gradient(55deg, #2556ff 0%, #367afd 100%),
    linear-gradient(#2654ff, #2654ff);
  box-shadow: 0px 5px 18px 3px rgba(3, 36, 86, 0.28);
  border-image: linear-gradient(to right, #2556ff, #367afd) 0.5;
  /* border: none; */
}
.menu-center > div:hover p {
  color: white !important;
}
.menu-bottom {
  width: 126px;
  height: 40px;
  border-radius: 20px;
  border: solid 1px #666666;
  text-align: center;
  line-height: 40px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.menu-bottom:hover {
  cursor: pointer;
  background-image: linear-gradient(55deg, #2556ff 0%, #367afd 100%),
    linear-gradient(#2654ff, #2654ff);
  color: white;
  border: none;
}
.menu-center > div div {
  margin-top: 54px;
  width: 107px;
  height: 107px;
  background-color: #f8f8f8;
  border-radius: 50%;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-bottom: 30px;
}
.menu-center > div p:nth-child(2) {
  text-align: center;
  font-size: 22px;
  color: #333333;
}
.menu-center > div p:nth-child(3) {
  width: 240px;
  height: 64px;
  font-size: 16px;
  color: #666666;
  margin-top: 51px;
  text-align: center;
}
.menu-icon-one {
  background: url("../images/home1-icon1.png") no-repeat center;
}
.menu-icon-two {
  background: url("../images/home1-icon2.png") no-repeat center;
}
.menu-icon-three {
  background: url("../images/home1-icon3.png") no-repeat center;
}
.menu-icon-four {
  background: url("../images/home1-icon4.png") no-repeat center;
}
.home1-carousel {
  height: 889px;
  background: url("../images/home1-bj2.jpg") no-repeat;
  background-size: cover;
  padding-top: 62px;
  padding-bottom: 48px;
  box-sizing: border-box;
}
.carousel-top {
  margin-bottom: 60px;
}
.home1-carousel .layui-carousel-arrow {
  width: 51px;
  height: 51px;
  background-color: #ffffff;
  box-shadow: 0px 5px 26px 5px rgba(3, 36, 86, 0.08);
}
.home1-carousel .layui-carousel {
  position: relative;
  background: none;
}
.home1-carousel .layui-this {
  background: none;
}
.home1-carousel .layui-carousel .layui-carousel-arrow {
  position: absolute;
  color: #999999;
  font-size: 19px;
  font-weight: 700;
}
.home1-carousel .layui-carousel .layui-carousel-arrow:nth-child(3) {
  left: -108px;
}
.home1-carousel .layui-carousel .layui-carousel-arrow:nth-child(4) {
  right: -108px;
}
.home1-carousel .layui-carousel-ind ul {
  position: absolute;
  bottom: -51px;
  background: none;
  transform: translateX(-50%);
}
.home1-carousel
  .layui-carousel[lay-indicator="outside"]
  .layui-carousel-ind
  ul {
  background: none;
}
.home1-carousel .layui-carousel-ind li {
  width: 75px;
  height: 6px;
  background-color: #fff;
  border-radius: 0px;
  margin: 0 15px 0 0;
}
.home1-carousel .layui-carousel-ind ul .layui-this {
  background-color: #2654ff;
}
.carousel-left {
  position: relative;
  box-sizing: border-box;
  width: 1005px;
  background-color: white;
  padding: 85px 0 0 69px;
  height: 100%;
}

.carousel-right {
  position: absolute;
  top: 32px;
  right: 0;
  display: block;
  width: 536px;
  height: 428px;
  border-radius: 10px;
}
.carousel-left p:nth-child(1) {
  font-size: 31px;
  color: #333333;
  margin-bottom: 41px;
}
.carousel-left p:nth-child(2) {
  font-size: 18px;
  width: 630px;
  color: #999999;
  margin-bottom: 93px;
}
.carousel-left div {
  width: 180px;
  height: 40px;
  border: solid 1px #666666;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  color: #3f3e3e;
  font-size: 16px;
}
.carousel-left div:hover {
  cursor: pointer;
  background-image: linear-gradient(55deg, #2556ff 0%, #367afd 100%),
    linear-gradient(#2654ff, #2654ff);
  color: white;
}
.home1-carousel-but {
  width: 126px;
  height: 40px;
  border-radius: 20px;
  margin-top: 134px;
  border: solid 1px #666666;
  text-align: center;
  line-height: 40px;
  margin-left: 50%;
  transform: translateX(-50%);
}
.home1-news {
  display: flex;
  justify-content: space-between;
  padding: 88px 0 120px;
  background-color: #fff;
}
.home1-news > div {
  box-sizing: border-box;
  width: 630px;
  padding: 35px 30px;
  box-shadow: 0px 5px 26px 5px rgba(3, 36, 86, 0.08);
}
.home1-news-left-top,
.home1-news-right-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dcdcdc;
}
.home1-news-left-top p,
.home1-news-right-top p {
  font-size: 30px;
  padding-bottom: 17px;
  border-bottom: 2px #2654ff solid;
}
.home1-news-left-top a,
.home1-news-right-top a {
  position: relative;
  font-size: 16px;
  padding-right: 26px;
}
.home1-news-left-top a::before,
.home1-news-right-top a::before {
  position: absolute;
  top: 5px;
  right: 0px;
  content: "";
  display: block;
  width: 14px;
  height: 12px;
  background-image: url("../images/home1-icon5.jpg");
}
.home1-news-left-center {
  padding: 40px 0 23px 0;
  border-bottom: 1px dashed #e0e0e0;
}
.home1-news-left-center a:nth-child(1) {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  color: #333333;
  margin-bottom: 6px;
}
.home1-news-left-center a:nth-child(2) {
  line-height: 32px;
  font-size: 16px;
  color: #999999;
}
.home1-news-left-bottom {
  padding-top: 27px;
}
.home1-news-left-bottom ul,
.home1-news-left-bottom ul li {
  font-size: 16px;
}
.home1-news-left-bottom ul {
  position: relative;
}
.home1-news-left-bottom ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 32px;
}
.home1-news-left-bottom ul li::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  transform: translateY(-75%);
  background-color: #2654ff;
  border-radius: 50%;
}
.home1-news-left-bottom ul li a:nth-child(1) {
  font-weight: bold;
  display: inline-block;
  width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home1-news-left-bottom ul li a:nth-child(2) {
  position: absolute;
  right: 0;
  text-align: right;
  color: #999999;
}
.home1-news-left-bottom ul li:last-child {
  margin-bottom: 0px;
}

.home1-news-right-center {
  padding-top: 47px;
}
.news-right-center-top {
  padding-bottom: 40px;
  border-bottom: 1px dashed;
  color: #e0e0e0;
}
.news-right-center-top,
.news-right-center-bot {
  display: flex;
  justify-content: space-between;
}
.news-right-center-top div:nth-child(1),
.news-right-center-bot div:nth-child(1) {
  width: 245px;
  height: 141px;
  margin-right: 23px;
}
.news-right-center-top div:nth-child(2),
.news-right-center-bot div:nth-child(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
}
.news-right-center-top div img {
  width: 100%;
}
.news-right-center-top div a,
.news-right-center-bot div a {
  font-weight: 700;
  color: #333333;
  font-size: 20px;
}
.news-right-center-top div p,
.news-right-center-bot div p {
  font-size: 16px;
  color: #999999;
}
.news-right-center-bot {
  padding-top: 47px;
}
.home1-footer {
  padding: 38px 0 22px;
  background-color: #1e1e1e;
}
.home1-footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 43px;
}
.home1-footer-top a,
.home1-footer-top p {
  display: block;
  font-size: 14px;
  color: white;
  line-height: 32px;
}
.home1-footer-top a:nth-child(1) {
  margin-bottom: 15px;
}
.home1-footer-top p {
  width: 363px;
}
.home1-footer-bot {
  line-height: 24px;
  letter-spacing: 0px;
  color: #ffffff;
  font-size: 14px;
  margin-top: 26px;
  text-align: center;
}
.home1-news-left-center:hover a:nth-child(1) {
  color: #007aff;
}
.home1-news-left-bottom ul li a:hover {
  color: #007aff;
}
.news-right-center-top div a:hover {
  color: #007aff;
}
.news-right-center-bot div a:hover {
  color: #007aff;
}
.home1-news-left-top a:hover {
  color: #007aff;
}
.home1-news-right-top a:hover {
  color: #007aff;
}
.home1-carousel-but:hover {
  cursor: pointer;
  background-image: linear-gradient(55deg, #2556ff 0%, #367afd 100%),
    linear-gradient(#2654ff, #2654ff);
  color: white;
  border: none;
}
.header-right button:hover {
  cursor: pointer;
}
