

/* 顶部 */
.top {
  position: relative;
  width: 100%;
  height: 345px;
  background-image: url(/images/jinrongjijin/trz-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 110px;
}
  
  .top h3 {
    font-size: 36px;
    font-weight: bold;
    color: white;
  }
  .top p {
    width: fit-content;
    color: #fff;
    font-size: 19px;
    text-align: start;
    margin: 15px auto 0;
    line-height: 1.4;
  }
  .top .btns {
    margin-top: 30px;
  }
  .top .btns a {
    display: inline-block;
    width: 150px;
    background-color: #fff;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 2.5;
  }
  .top .btns a:nth-child(1) {
    background-color: #ffe100;
    margin-right: 15px;
  }
  
  /* 中部 */
  .middle {
    width: 100%;
    height: 420px;
    background-color: #ffffff;
    text-align: center;
    padding-top: 60px;
  }
  
  .middle h3 {
    font-size: 36px;
    font-weight: bold;
    color: #a6202f;
  }
  
  
  .middle .subView {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
  }
  
  .middle .subView .middleItem {
    width: 220px;
    height: 200px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .middle .subView .middleItem img {
    width: 110px;
    height: 110px;
    margin-top: 20px;
  }
  
  .middle .subView .middleItem .text1 {
    font-size: 24px;
    color: #000000;
    font-weight: bold;
    margin-top: 20px;
  }
  
  .middle .subView .middleItem .text2 {
    font-size: 15px;
    color: #666666;
    margin-top: 5px;
  }
  
  /* 底部 */
.bottom {
    width: 100%;
    height: 450px;
    background-color: #f3f0ef;
    text-align: center;
    padding-top: 60px;
  }
  
  .bottom h3 {
    font-size: 36px;
    font-weight: bold;
    color: #a6202f;
  }
  
  .bottom h5 {
    font-size: 20px;
    color: #666666;
    margin-top: 10px;
  }
  
  .bottom .subView {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
  }
  
  .bottom .subView .bottomItem {
    width: 260px;
    height: 200px;
    margin-left: 20px;
    margin-right: 20px;
  }
  
  .bottom .subView .bottomItem img {
    width: auto;
    height: 270px;
  }
  
  .bottom .subView .bottomItem .left {
    text-align: right;
    margin-top: 20px;
  }
  
  .bottom .subView .bottomItem .right {
    text-align: left;
    margin-top: 20px;
  }
  
  .bottom .subView .bottomItem .text1 {
    font-size: 20px;
    color: #000000;
    font-weight: bold;
  }
  
  .bottom .subView .bottomItem .text2 {
    font-size: 15px;
    color: #666666;
    margin-top: 5px;
  }
  


  /*          弹窗样式             */
.number {
  position: fixed;
  margin: 0 auto;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 400px;
  height: 230px;
  border-radius: 10px;
  background-color: #fff;
  display: none;
  z-index: 998;
  box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.7);
  transition: 1s;
  -webkit-transition: 1s;
  -moz-transition: 1s; 
  -ms-transition: 1s; 
  -o-transition: 1s; 
}
.number h3 {
  font-size: 16px;
  text-align: center;
  line-height: 3;
  color: #FF4136;
  font-weight: bold;
  margin-top: 12px;
}
.number li {
  text-align: center;
  font-size: 16px;
  line-height: 3;
}
.number li:nth-child(4) {
  width: 45%;
  margin: 15px auto 0;
}
.number li:nth-child(4) input {
  display: block;
  float: left;
  color: #ffffff;
  background-color: #0074D9;
  border-radius: 20px;
  border: 0px;
  width: 70px;
  height: 30px;
  cursor: pointer;
  font-size: 15px;
  transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s; 
  -ms-transition: .3s; 
  -o-transition: .3s; 
}
.number li:nth-child(4) input:nth-child(2) {
  float: right;
}
.number li:nth-child(4) input:hover {
  background-color: #4CAF50;
}
.number li input {
  border: 1px solid;
  border-radius: 5px;
  text-indent: 5px;
  height: 25px;
}
.number::-webkit-input-placeholder {
  text-indent: 5px;
}
.number:-ms-input-placeholder {
  text-indent: 5px;
}
.number:-moz-placeholder {
  text-indent: 5px;
}


/* 弹出提示样式 */

#tanchu{
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-400%);
  width: 400px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
  line-height: 2.5;
  background-color: rgba(0, 0, 0, .6);
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  border-radius: 15px;
  z-index: 999;
}