body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
ol,
ul {
  list-style: none;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}
fieldset,
img {
  border: none;
}
input,
button {
  vertical-align: middle;
  color: #6b5f53;
  outline: none;
}
a {
  text-decoration: none;
  color: #333;
}
a:hover {
  color: #11285a;
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
* {
  box-sizing: border-box;
}
body,
html {
  font: 0.26rem 'Microsoft YaHei', '微软雅黑', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  color: #333333;
}
.index-bg {
  background: url(../images/bg.jpg?v=1) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 100vh;
}
.index-box {
  width: 618px;
  max-width: 90%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index-box .title {
  font-size: 38px;
  text-align: center;
  margin: 0;
  margin-bottom: 40px;
  color: #fff;
  font-weight: bold;
}
.index-box .title img {
  vertical-align: middle;
  margin-right: 10px;
}
.index-box .list li {
  position: relative;
  border-radius: 80px;
  background-color: #fff;
  margin: 7% 0;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.index-box .list li:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.index-box .list li:hover:after {
  right: 30px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.index-box .list li:after {
  content: "";
  width: 50px;
  height: 50px;
  background: url(../images/ico-arrow2.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 50%;
  right: 50px;
  margin-top: -25px;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}
.index-box .list li:nth-child(2) {
  margin-right: 0;
  background-color: #f0bb18;
  color: #fff;
}
.index-box .list li:nth-child(2):after {
  background-image: url(../images/ico-arrow.png);
}
.index-box .list li:nth-child(2) .p {
  color: #fff;
}
.index-box .list li > a {
  display: block;
  padding: 30px 50px;
}
.index-box .list li .icon {
  display: inline-block;
  vertical-align: middle;
  width: 80px;
}
.index-box .list li .icon img {
  max-width: 100%;
}
.index-box .list li .p {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  vertical-align: middle;
  color: #173066;
}
@media screen and (max-width: 1440px) {
  .index-box {
    width: 550px;
  }
  .index-box .title {
    font-size: 32px;
  }
  .index-box .list li:after {
    width: 40px;
    right: 40px;
  }
  .index-box .list li > a {
    padding: 25px 45px;
  }
  .index-box .list li .icon {
    width: 60px;
    margin-right: 10px;
  }
  .index-box .list li .p {
    font-size: 20px;
  }
}
