/* main */
* {
  margin: 0;
  padding: 0;
}
html,body {
  width: 100%;
  height: 100%;
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: #333;
}

a:hover {
  color: #999;
}

.header {
  width: 1000px;
  margin: 0 auto;
}
.footer {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  background-color: #333;
}
.footer .content {
  margin: 30px auto 0;
  line-height: 60px;
  color: #999;
}

.banner {
  width: 100%;
  height: 400px;
  background-image: url("../img/banner.jpg");
  background-position: 50% 0px;
  background-repeat: no-repeat;
}
.banner .banner-img {
  width: 100%;
}

.content {
  position: relative;
  width: 1000px;
  margin: 30px auto;
  display: flex;
  justify-content: space-between;
}
.content .left {
  position: absolute;
  left: 600px;
  top: 0px;
}
.introduce {
  width: 400px;
}
.introduce .label {
  font-size: 24px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.news-list li {
  height: 30px;
  line-height: 30px;
}

.red {
  color: red;
}

.pay {
  font-size: 20px;
}

/* pay */
.go-pay-content {
  position: relative;
  width: 1000px;
  margin: 30px auto;
}


.go-pay-content .desc {
  width: 100%;
  margin-top: 40px;
  padding: 30px;
  box-sizing: border-box;
  border: 1px solid #333;
  text-align: center;
}

.go-pay-content .desc a {
  color: #FF7A45;
}
.go-pay-content .desc a:hover {
  color: #999;
}

.go-pay-content .go-back {
  position: absolute;
  right: 0;
  top: 5px;
}

/* payment */
.choose-bank {
  margin-top: 40px;
  padding: 10px 0;
  border: 1px dashed #333;
}

.bank-list {
  display: flex;
  flex-wrap: wrap;
  height: 200px;
}
.bank-item {
  float: left;
  display: flex;
  align-items: center;
  height: 70px;
  margin: 10px 20px 10px 5px;
}
.bank-radio {
  margin-right: 10px;
}
.go-pay {
  width: 120px;
  height: 40px;
  float: right;
  margin-top: 30px;
  line-height: 40px;
  text-align: center;
  background-color: #FF7A45;
  color: #fff;
}
.go-pay a {
  color: #fff;
}

/* artical */
.artical-content {
  position: relative;
  width: 1000px;
  min-height: 600px;
  margin: 30px auto;
}
.artical-content .title {
  width: 100%;
  margin-bottom: 20px;
  font-size: 28px;
  text-align: center;
}
.artical-content p {
  text-indent: 2em;
  line-height: 30px;
}
.artical-content h2 {
  margin: 20px 0;
}
.artical-content h3 {
  margin: 10px 0;
}
.artical-content .go-back {
  position: absolute;
  right: 0;
  top: 30px;
}
.artical {
  border: 1px solid;
  padding: 10px;
  border-image: -webkit-linear-gradient( #FF7A45, #999) 20 20;
  border-image: -moz-linear-gradient( #FF7A45, #999) 20 20;
  border-image: linear-gradient( #FF7A45, #999) 20 20;
}
.artical-banner {
    width: 100%;
    height: 200px;
    background-image: url("../img/artical-banner.jpg");
    background-position: 50% 0px;
    background-repeat: no-repeat;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}