.kv {
  position: relative;
}
.kv .bg {
  width: 100%;
}
.kv .bg img {
  width: 100%;
}
.kv .title {
  top: 1.36rem;
  left: 1.55rem;
  font-size: 0.52rem;
  color: #fff;
  font-weight: 500;
  position: absolute;
  z-index: 1;
}

.section2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0.75rem 1.6rem;
}
.section2 .left-box {
  width: 44%;
}
.section2 .left-box .t {
  font-size: 0.25rem;
  color: #000;
  padding-top: 0.3rem;
  border-top: 0.04rem solid #000;
}
.section2 .left-box .list {
  margin-top: 0.54rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section2 .left-box .list .box {
  position: relative;
}
.section2 .left-box .list .box .nums {
  display: flex;
  align-items: flex-end;
  line-height: 1;
}
.section2 .left-box .list .box .nums .num {
  font-size: 0.45rem;
  font-weight: 500;
  color: #60636c;
  line-height: 1;
}
.section2 .left-box .list .box .nums .unit {
  color: #60636c;
  font-size: 0.21rem;
  line-height: 1;
  padding-bottom: 0.06rem;
  padding-left: 0.1rem;
}
.section2 .left-box .list .box .d {
  font-size: 0.17rem;
  margin-top: 0.3rem;
}
.section2 .left-box .list .box::after {
  position: absolute;
  right: -50%;
  top: 50%;
  content: "";
  transform: translateY(-50%);
  width: 1px;
  height: 70%;
  background-color: #e7e7e7;
}
.section2 .left-box .list .box:nth-last-of-type(1)::after {
  display: none;
}
.section2 .right-box {
  flex: 1;
  margin-left: 2rem;
  background-color: #fafafa;
  padding: 0.46rem 0.27rem 0 0.7rem;
  position: relative;
}
.section2 .right-box .content {
  font-size: 0.22rem;
}
.section2 .right-box .s-btn {
  position: absolute;
  width: 2.5rem;
  height: 0.55rem;
  right: 0;
  bottom: 0;
  background-color: #434a52;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.26rem;
  cursor: pointer;
  transition: all 0.5s;
}
.section2 .right-box .s-btn:hover{
  background-color: #2d3033;
  transition: all 0.5s;
}
.section2 .right-box .s-btn .t {
  color: #fff;
  font-size: 0.15rem;
}
.section2 .right-box .s-btn .d {
  color: #fff;
  font-size: 0.26rem;
}

.section3 {
  padding: 0.84rem 1.6rem;
}
.section3 .tit {
  font-size: 0.4rem;
  font-weight: 500;
}
.section3 .sec-content {
  margin-top: 0.57rem;
  display: flex;
  align-items: stretch;
}
.section3 .sec-content .left-box {
  width: 56%;
}
.section3 .sec-content .left-box img {
  width: 100%;
}
.section3 .sec-content .right-box {
  padding-left: 0.65rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section3 .sec-content .right-box .box {
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 0.3rem;
}
.section3 .sec-content .right-box .box .l .t {
  font-size: 0.22rem;
  font-weight: 500;
}
.section3 .sec-content .right-box .box .l .d {
  font-size: 0.17rem;
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
}
.section3 .sec-content .right-box .box .r {
  width: 0.18rem;
  position: relative;
  flex-shrink: 0;
}
.section3 .sec-content .right-box .box .r img{
    width: 0.18rem;
}
.section3 .sec-content .right-box .box .r img:nth-of-type(1){
    opacity: 1;
}
.section3 .sec-content .right-box .box .r img:nth-of-type(2){
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px){
  .section3 .sec-content .right-box .box:hover .r img:nth-of-type(1){
      opacity: 0;
  }
  .section3 .sec-content .right-box .box:hover .r img:nth-of-type(2){
      opacity: 1;
  }
}

.section3 .sec-content .right-box .box .r::after {
  position: absolute;
  /* content: "+"; */
  right: 0;
  font-size: 0.3rem;
}
.section3 .sec-content .right-box .box:hover .r::after{
    font-size: 0.42rem;
}
@media (min-width: 768px){
  .section3 .sec-content .right-box .box:hover {
    padding-bottom: 0.68rem;
  }
  .section3 .sec-content .right-box .box:hover .l .d {
    max-height: 5rem;
    transition: all 0.5s ease;
  }
  .section3 .sec-content .right-box .box:hover .r::after {
    /* content: "-"; */
  }
}

@media (max-width: 768px){
  .section3 .sec-content .right-box .box.active {
    padding-bottom: 0.68rem;
  }
  .section3 .sec-content .right-box .box.active .l .d {
    max-height: 5rem;
    transition: all 0.5s ease;
  }
  .section3 .sec-content .right-box .box.active .r::after {
    /* content: "-"; */
    /* font-size: 0.58rem; */
  }
  .section3 .sec-content .right-box .box .r img:nth-of-type(1){
      opacity: 1;
  }
  .section3 .sec-content .right-box .box .r img:nth-of-type(2){
      opacity: 0;
  }
  .section3 .sec-content .right-box .box.active .r img:nth-of-type(1){
      opacity: 0;
  }
  .section3 .sec-content .right-box .box.active .r img:nth-of-type(2){
      opacity: 1;
  }
}

.section4 {
  display: flex;
  margin: 0 1.6rem;
  background-color: #fafafa;
  justify-content: space-between;
  padding: 0.5rem 1.8rem 0 0.67rem;
  overflow: hidden;
}
.section4 .left-box {
  width: 80%;
}
.section4 .left-box img {
  width: 100%;
  position: relative;
}
.section4 .right-box {
  padding-left: 0.85rem;
  padding-top: 0.5rem;
  width: 20%;
}
.section4 .right-box .tit {
  font-size: 0.38rem;
  font-weight: 500;
}
.section4 .right-box .list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.section4 .right-box .list .box {
  display: flex;
  margin-bottom: 0.57rem;
}
.section4 .right-box .list .box .t {
  font-size: 0.2rem;
  position: relative;
}
.section4 .right-box .list .box .t:nth-of-type(1) {
  font-weight: 500;
  padding-right: 0.5rem;
}
.section4 .right-box .list .box .t:nth-of-type(1)::after {
  width: 1px;
  content: "";
  height: 70%;
  top: 50%;
  transform: translateY(-50%);
  background-color: #7d7d7d;
  position: absolute;
  right: 25%;
}

.section5 {
  padding: 1rem 1.6rem;
}
.section5 .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section5 .head .l {
  font-size: 0.4rem;
  font-weight: 500;
}
.section5 .head .r {
  width: 2.74rem;
  height: 0.55rem;
  background-color: #60656b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.18rem;
  cursor: pointer;
  transition: all 0.5s;
}
.section5 .head .r:hover{
  background-color: #2d3033;
  transition: all 0.5s;
}
.section5 .list {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}
.section5 .list .box {
  width: 20%;
}
.section5 .list .box .num {
  font-size: 0.58rem;
  font-weight: 500;
}
.section5 .list .box .line {
  width: 100%;
  background-color: #b2b2b2;
  height: 2px;
  margin-top: 0.2rem;
  position: relative;
}
.section5 .list .box .line::after {
  position: absolute;
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  background-color: #606569;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section5 .list .box .line::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 0.4rem;
  background-color: #606569;
  border-radius: 50%;
  left: 0.05rem;
  top: 0.2rem;
  transform: translateY(-50%);
}
.section5 .list .box .line .arrow-right {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid #60636a;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.section5 .list .box .t {
  margin-top: 0.67rem;
  font-weight: 500;
  font-size: 0.29rem;
}
.section5 .list .box .d {
  font-size: 0.15rem;
  margin-top: 0.4rem;
  width: 80%;
  line-height: 2.3;
}
.section5 .list .box .d a{
    color: #3775df;
}

.section6 {
  padding: 0.3rem 1.6rem 0;
}
.section6 .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section6 .head .l {
  font-size: 0.4rem;
  font-weight: 500;
}
.section6 table {
  margin-top: 0.55rem;
  width: 100%;
  border: 1px solid #e8e8e8;
  border-bottom: 0;
  padding: 0;
  box-sizing: border-box;
  border-spacing: 0;
}
.section6 table tr {
  margin: 0;
  padding: 0;
}
.section6 table tr td {
  text-align: center;
  height: 0.7rem;
  border-bottom: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  font-size: 0.16rem;
}
.section6 table tr td:nth-last-of-type(1) {
  border-right: 0;
}
.section6 table tr:nth-of-type(1) td {
  background-color: #f5f5f5;
  height: 1.38rem;
  text-align: center;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  font-size: 0.2rem;
  font-weight: 500;
}
.section6 table tr:nth-of-type(1) td:nth-last-of-type(1) {
  border-right: 0;
}
.section6 table tr:nth-of-type(2) td:nth-of-type(1) {
  background-color: #f5f5f5;
}
.section6 table tr:nth-of-type(5) td:nth-of-type(1) {
  background-color: #f5f5f5;
}
.section6 .remarks {
  height: 0.5rem;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  font-size: 0.14rem;
  padding-left: 0.4rem;
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.section7 {
  display: flex;
  margin: 1.05rem 1.6rem 1rem;
  background-color: #f5f5f5;
  padding: 0.83rem 1.5rem 0 0.8rem;
}
.section7 .left-box {
  display: flex;
  justify-content: flex-end;
}
.section7 .left-box img {
  width: 2.3rem;
  -o-object-fit: cover;
  object-fit: cover;
}
.section7 .right-box {
  flex: 1;
  padding-left: 0.75rem;
  padding-bottom: 0.5rem;
}
.section7 .right-box .top-box .t {
  font-size: 0.42rem;
  font-weight: 500;
}
.section7 .right-box .top-box .d {
  font-size: 0.2rem;
  margin-top: 0.24rem;
}
.section7 .right-box .top-box .d a{
    color: #3775df
}
.section7 .right-box .bottom-box {
  display: flex;
  margin-top: 1.14rem;
  justify-content: flex-start;
}
.section7 .right-box .bottom-box .box {
  position: relative;
  width: 33.33%;
}
.section7 .right-box .bottom-box .box:nth-last-of-type(1){
    display: none;
}
.section7 .right-box .bottom-box .box::after {
  content: "";
  height: 80%;
  width: 1px;
  position: absolute;
  background-color: #d7d7d7;
  right: 33.33%;
  top: 50%;
  transform: translateY(-50%);
}
.section7 .right-box .bottom-box .box:nth-last-of-type(1)::after,
.section7 .right-box .bottom-box .box:nth-last-of-type(2)::after {
  display: none;
}
.section7 .right-box .bottom-box .box .tit {
  display: flex;
  align-items: center;
}
.section7 .right-box .bottom-box .box .tit .l {
  width: 0.33rem;
}
.section7 .right-box .bottom-box .box .tit .l img {
  width: 100%;
}
.section7 .right-box .bottom-box .box .tit .r {
  font-size: 0.16rem;
  padding-left: 0.13rem;
}
.section7 .right-box .bottom-box .box .desc {
  margin-top: 0.4rem;
  font-size: 0.2rem;
  font-weight: 500;
}
.section7 .right-box .bottom-box .box .sec-btn {
  display: flex;
  align-items: center;
  width: 3.04rem;
  background-color: #60656b;
  height: 0.55rem;
  cursor: pointer;
  padding: 0 0.24rem;
  transition: all 0.5s;
}
.section7 .right-box .bottom-box .box .sec-btn:hover{
  background-color: #2d3033;
  transition: all 0.5s;
}
.section7 .right-box .bottom-box .box .sec-btn .t {
  color: #fff;
  font-size: 0.17rem;
}
.section7 .right-box .bottom-box .box .sec-btn img {
  width: 0.24rem;
  margin-left: 0.2rem;
}
.section7 .right-box .bottom-box .box .d {
  font-size: 0.15rem;
  margin-top: 0.2rem;
}


.page2_area_table{
    width: calc(100% - 3.2rem);
    margin: 0.45rem auto 0
}
.page2_area_table .tit{
    font-size: 0.4rem;
    font-weight: 500;
    margin-bottom: 0.55rem

}
.page2_area_table table:nth-last-of-type(1){
    margin-top: .5rem
}
.page2_area_table p{
    font-size: .14rem;
    line-height: .28rem;
    color: #000;
    font-weight: 300;
    margin-top: .32rem
}
.page2_area_table table{
    width: 100%
}
.page2_area_table .tb-title{
    height: .7rem;
    background: #bda392;
    padding-left: .9rem;
    color: #fff;
    font-size: .24rem
}
.page2_area_table table thead tr:nth-last-of-type(1){
    height: .7rem;
    background: #ededed
}

.page2_area_table table thead tr:nth-last-of-type(1) td {
    text-align: center;
    border-right: 1px solid #e5e5e5;
    color: #000;
    font-size: .2rem
}
.page2_area_table tbody{
    border: 1px solid #e5e5e5;
    border-top: none;
    font-size: .18rem;
    color: #000
}
.page2_area_table tbody tr{
    height: .7rem;
    background: #fff;
    text-align: center;
}
.page2_area_table tbody tr td{
     border: 1px solid #e5e5e5;
}
.page2_area_table td, 
.page2_area_table th,
.page2_area_table tr{
     padding: 0;
     margin: 0
}
.page2_area_table table{
    border-spacing:0
}
.page2_area_table td{
    display: table-cell;
    vertical-align: inherit;
    unicode-bidi: isolate;
}

@media (max-width: 768px) {
  .kv .title {
    font-size: 0.48rem;
    left: 50%;
    top: 2.5rem;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }
  .section2 {
    flex-direction: column;
    padding: 0.6rem 0.35rem;
  }
  .section2 .left-box {
    width: 100%;
  }
  .section2 .left-box .list{
    padding: 0 0.4rem;
  }
  .section2 .left-box .list .box .nums .num {
    font-size: 0.42rem;
  }
  .section2 .left-box .t {
    font-size: 0.32rem;
  }
  .section2 .left-box .list .box .d {
    font-size: 0.2rem;
  }
  .section2 .right-box {
    margin-left: 0;
    width: 100%;
    margin-top: 0.44rem;
    padding: 0.32rem 0.32rem 0.9rem;
  }
  .section2 .right-box .content {
    font-size: 0.26rem;
  }
  .section2 .right-box .s-btn {
    width: 3.05rem;
    height: 0.68rem;
  }
  .section2 .right-box .s-btn .t {
    font-size: 0.2rem;
  }
  .section2 .right-box .s-btn .d {
    font-size: 0.32rem;
    padding-bottom: 0.1rem;
  }
  .section3 {
    flex-direction: column;
    padding: 0.87rem 0.35rem;
  }
  .section3 .tit {
    font-size: 0.37rem;
  }
  .section3 .sec-content {
    flex-direction: column;
    margin-top: 0.3rem;
  }
  .section3 .sec-content .left-box {
    width: 100%;
  }
  .section3 .sec-content .right-box {
    padding-left: 0;
    margin-top: 0.42rem;
  }
  .section3 .sec-content .right-box .box .l .t {
    font-size: 0.28rem;
    padding-top: 0.3rem;
  }
  .section3 .sec-content .right-box .box .l .d {
    font-size: 0.22rem;
  }
  .section3 .sec-content .right-box .box .r::after {
    top: 0.2rem;
    font-size: 0.4rem;
  }
  .section4 {
    margin: 0;
    padding: 0.66rem 0.35rem;
    flex-direction: column-reverse;
  }
  .section4 .right-box {
    width: 100%;
    padding: 0;
  }
  .section4 .right-box .list {
    margin-top: 0.4rem;
    justify-content: space-between;
  }
  .section4 .right-box .list .box {
    margin-bottom: 0;
  }
  .section4 .left-box {
    width: 100%;
    padding: 1.1rem 0.36rem 0;
  }
  .section4 .left-box img{
    width: 100%;
    position: relative;
    top: 0;
  }
  .section4 .right-box .list .box .t {
    font-size: 0.25rem;
  }
  .section5 {
    padding: 0.66rem 0.35rem;
  }
  .section5 .list {
    width: 100%;
    overflow-x: auto;
    margin-top: 0.7rem;
  }
  .section5 .list .box {
    flex: none;
    width: 3.2rem;
  }
  .section5 .list .box .num {
    font-size: 0.4rem;
  }
  .section6 {
    padding: 0.66rem 0.35rem;
  }
  .section7 {
    margin: 0rem 0.35rem;
    position: relative;
    padding: 0.64rem 0.3rem 0.9rem 2.2rem;
  }
  .section7 .left-box {
    position: absolute;
    left: -0.3rem;
    bottom: 0.9rem;
  }
  .section7 .right-box {
    padding-left: 0;
  }
  .section6 table tr:nth-of-type(1) td {
    height: 0.9rem;
  }
  .section7 .right-box .bottom-box .box {
    width: 50%;
  }

  .section7 .right-box .bottom-box {
    margin-top: 0.8rem;
  }

  .section7 .right-box .bottom-box .box .desc {
    margin-top: 0.26rem;
    font-size: 0.16rem;
  }
  .section7 .right-box .bottom-box .box::after {
    right: 18%;
  }
  .section7 .right-box .bottom-box .box:nth-of-type(2)::after {
    display: none;
  }
  .section7 .right-box .bottom-box .box:nth-last-of-type(1) {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
  }
  .section7 .right-box .bottom-box .box .d {
    display: none;
  }
  .section7 .right-box .bottom-box .box .sec-btn {
    width: 100%;
    height: 0.9rem;
    justify-content: center;
  }
  .section7 .right-box .bottom-box .box .sec-btn .t {
    font-size: 0.24rem;
  }
  .section7 .right-box .bottom-box .box .sec-btn img {
    width: 0.36rem;
  }

  .section5 .list .box .d{
      font-size: 0.18rem;
      margin-top: 0.4rem;
      width: 94%; 
  }
  .page2_area_table{
      
    width: calc(100% - 0.7rem);
  }
}
