/* 公共样式css */

/*滚动条样式*/

*::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 0px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 4px;
}

*::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 5px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.15);
  background: rgba(0, 0, 0, 0.6);
}

*::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  background: rgba(0, 0, 0, 0.1);
}

/* 不换行超出部分自动生成省略号 */

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 强制换行 */

.break {
  word-wrap: break-word;
  white-space: pre-wrap;
  word-break: break-all;
}

/* 底部公共部分 */

.c-footer-box {
  width: 100%;
  min-width: 1400px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  line-height: 30px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}

.c-footer-box .center-box {
  width: 1400px;
  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-family: SourceHanSansCN-Regular;
}
/* 顶部内容 */

.c-header-box {
  width: 100%;
  min-width: 1400px;
}

.c-header-box .nav-top-fixed {
  width: 100%;
  z-index: 9999;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
}

.c-header-box .nav-top-fixed .center-box {
  width: 100%;
  max-width: 1400px;
  height: 80px;
  margin: auto;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.c-header-box .nav-top-fixed .center-box .logo-img {
  width: 183px;
  height: 60px;
}

.c-header-box .nav-top-fixed .center-box .right-box {
  display: flex;
  color: #ffffff;
  overflow: hidden;
}

.c-header-box .nav-top-fixed .center-box .right-box li {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 0;
  margin-left: 85px;
  border-bottom: 3px solid rgba(225, 225, 225, 0);
}

.c-header-box .nav-top-fixed .center-box .right-box li.active {
  border-bottom: 3px solid #ffffff;
}

.c-header-box .nav-top-fixed .center-box .right-box li:first-child {
  margin: 0;
}

.c-header-box .banner-box {
  position: relative;
  min-width: 1400px;
}

.banner-box.index-box {
  min-height: 700px;
  height: 100vh;
  background: url("../image/banner.jpg") no-repeat center;
  background-size: cover;
}

.c-header-box .banner-box .banner-img {
  width: 100%;
  min-width: 1400px;
}

/* 案例展示标题动画效果 */

.animated {
  opacity: 0;
}

.animated.rubberBand,
.animated.wobble,
.animated.swing,
.animated.bounceInUp,
.animated.fadeInLeftBig,
.animated.fadeInRightBig,
.animated.fadeInDownBig,
.animated.fadeInUpBig,
.animated.rotateIn,
.animated.bounceInDown,
.animated.bounceInLeft,
.animated.bounceInRight,
.animated.bounceIn {
  opacity: 1;
}

/* 首页遮罩层 */

.c-back-nake {
  min-width: 1400px;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* 首页部分css 开始*/
.c-position-box {
  width: 1400px;
  height: 352px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #fff;
  padding-left: 90px;
}

.c-position-box .c-text-1 {
  font-size: 30px;
  line-height: 60px;
  color: #ffffff;
}

.c-position-box .c-text-2 {
  font-size: 60px;
  color: #ffffff;
  margin-top: 40px;
}

.c-position-box .c-line-1 {
  width: 560px;
  height: 2px;
  background-color: #ffffff;
  margin-top: 30px;
}

.c-position-box .c-text-3 {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 2px;
  color: #ffffff;
  margin-top: 30px;
}

.c-position-box .c-tag-1 {
  padding: 14px;
  display: inline-block;
  border: solid 2px #ffffff;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 1px;
  color: #ffffff;
  margin-top: 30px;
  cursor: pointer;
}

.c-position-box .c-tag-1:hover {
  background: #ffffff;
  color: #212129;
}
