@charset "UTF-8";

* {
  font-family: "Microsoft YaHei", "微软雅黑", "黑体", "宋体", "Arial", sans-serif;
  color: #333333;
  margin: 0px;
  padding: 0px;
}

html,
body {
  overflow-x: hidden;
  max-width: 1920px;
  position: relative;
  margin: 0 auto;
}

:focus {
  outline: none;
}

p,
h1,
h2,
h3,
h4,
h5,
img,
button,
dl,
dt,
dd,
span {
  transition: all .5s;
  font-size: 14px;
}

ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
hr {
  padding: 0;
  margin: 0;
  font-weight: normal;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

button:focus {
  outline: none;
}

a {
  color: #333333;
}

ul {
  list-style: none;
}

ul:before,
ul:after {
  display: none;
}

input {
  outline: none;
  border: none;
  background: none;
}

textarea {
  resize: none;
}

img {
  max-width: 100%;
  display: inline-block;
}

.container {
  width: 1200px;
}

.con1400 {
  width: 1400px;
  margin: 0 auto;
}

.con1760 {
  width: 1760px;
  margin: 0 auto;
}

.con1200 {
  width: 1200px;
  margin: 0 auto;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clearfix,
.clear,
.clearboth {
  clear: both;
}

.flexrow {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.nopadding {
  padding: 0px;
}

input::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
}

input::-webkit-input-placeholder,
input:-moz-placeholder,
input:-ms-input-placeholder,
input::-moz-placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
}

textarea::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #999999;
}
.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.idx_flexstart {
  justify-content: flex-start;
}

/* css 动画 */
@keyframes mymove {
  0% {
    right: -4px;
    top: -4px;
    width: 0px;
    height: 0px;
    opacity: 0;
  }

  100% {
    right: -4px;
    top: -4px;
    width: 56px;
    height: 56px;
    opacity: 1;
  }
}

@keyframes runline {
  0% {
    width: 0px;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

@keyframes run2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes teamrun {
  0% {
    border-width: 0px;
  }

  50% {
    border-width: 50%;
  }

  100% {
    border-width: 100%;
  }
}

@keyframes svgcircle2 {
  0% {
    stroke-dashoffset: 220;
  }

  100% {
    stroke-dashoffset: 0;
  }
}


/* 特殊字体 */
@font-face {
  font-family: Roboto-Black;
  src: url('../fonts/Roboto-Black.ttf'),
    url('../fonts/Roboto-Black.ttf');
  /* IE9+,可以是具体的实际链接 */
}

@media (max-width:1760px) {
  .con1760 {
    width: 95%;
  }
}

@media (max-width:1440px) {
  .con1400 {
    width: 95%;
  }
}

@media (max-width:1220px) {
  .con1200 {
    width: 90%;
  }
}