﻿html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
}

a {
  text-decoration: none;
}

body {
  width: 100%;
  min-width: 1200px;
  margin: 0 auto !important;
}

button {
  outline: none;
}

[v-cloak] {
  display: none;
}


/* 导航栏公共部分 */
#index-container>.head-wrapper {
  width: 100%;
  position: relative;
}

#index-container .head-wrapper>img {
  width: 100%;
  min-height: 400px;
}

#index-container>.head-wrapper>.navbar {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 1200px;
  height: 100%;
}

#index-container>.head-wrapper>.navbar>.nav-head {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 5px;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 18px;
}

#index-container>.head-wrapper>.navbar img {
  margin-left: 10px;
  height: 60%;
}

#index-container>.head-wrapper>.navbar ul>li {
  float: left;
  margin: 0 20px;
  padding: 10px 8px;
}

#index-container>.head-wrapper>.navbar ul>li:hover {
  background-color: rgb(253, 212, 124);
  border-radius: 2px;
  cursor: pointer;
}

#index-container>.head-wrapper>.navbar ul>li:hover>a {
  color: #fff;
}

#index-container>.head-wrapper>.navbar ul>li>a {
  color: #999;
  font-weight: 600;
}

#index-container>.head-wrapper>.navbar ul>li.active {
  border-bottom: 2px solid #E4A61B;
}

#index-container>.head-wrapper>.navbar ul>li.active>a {
  color: #EA9C00;
}


/* footer */
footer {
  width: 100%;
  margin-top: 30px;
  background-color: #EEEEEE;
}

footer>div {
  width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
  box-sizing: border-box;
  padding-top: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

footer>div .foot-left,
footer>div .foot-right {
  width: 50%;
  box-sizing: border-box;
}

footer img {
  height: 40px;
}

footer>div .foot-left h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 20px;
}

footer>div .foot-left ul,
footer>div .foot-right ul {
  float: left;
  margin-right: 70px;
}

footer ul li {
  font-size: 14px;
  color: #444444;
  margin: 8px 0;
}

footer ul li a {
  color: #444;
}

footer h2 {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid #ccc;
  font-size: 14px;
  padding: 10px 0;
  color: #444;
}

footer ul>li.tel {
  color: #EA9C00;
  font-size: 26px;
  font-weight: 800;
}

/* 段落文字 */
.text-repeat {
  text-align: center;
  margin-top: 30px;
}

.text-repeat h2 {
  font-size: 24px;
  font-weight: 600;
  color: #000;
}

.text-repeat hr {
  width: 30px;
  border-top: 3px solid #E4A61B;
}

.text-repeat span {
  font-size: 16px;
  color: #999;
}

.text-repeat h5 {
  width: 70%;
  background-color: #F6F6F6;
  margin: 0 auto;
  font-size: 16px;
  color: #444444;
  margin-top: 20px;
  text-align: left;
  box-sizing: border-box;
  padding: 10px 18px;
  border-radius: 10px;
}






/* hover动画 */
/* Grow */
.hvr-grow {
  display: inline-block;
  vertical-align: middle;
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  transition-duration: 0.3s;
  transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
  transform: scale(1.1);
}

/* Grow Shadow */
.hvr-grow-shadow {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  transition-duration: 0.3s;
  transition-property: box-shadow, transform;
}

.hvr-grow-shadow:hover,
.hvr-grow-shadow:focus,
.hvr-grow-shadow:active {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}

/* Hang */
@-webkit-keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang {
  0% {
    transform: translateY(8px);
  }

  50% {
    transform: translateY(4px);
  }

  100% {
    transform: translateY(8px);
  }
}

@-webkit-keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

@keyframes hvr-hang-sink {
  100% {
    transform: translateY(8px);
  }
}

.hvr-hang {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-hang:hover,
.hvr-hang:focus,
.hvr-hang:active {
  -webkit-animation-name: hvr-hang-sink, hvr-hang;
  animation-name: hvr-hang-sink, hvr-hang;
  -webkit-animation-duration: .3s, 1.5s;
  animation-duration: .3s, 1.5s;
  -webkit-animation-delay: 0s, .3s;
  animation-delay: 0s, .3s;
  -webkit-animation-timing-function: ease-out, ease-in-out;
  animation-timing-function: ease-out, ease-in-out;
  -webkit-animation-iteration-count: 1, infinite;
  animation-iteration-count: 1, infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-direction: normal, alternate;
  animation-direction: normal, alternate;
}