body,html {
    width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.content {
    width: 750px;
    background-image: url('../../assets/pic/bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.swiper1 {
    width: 100%;
    height: 100%;
    /* text-align: center; */
    /* margin-top: 10px; */
}

.swiper1 img {
    width: 100%;
    height: 100%;
}

.swiper2 {
    width: 680px;
    height: calc(680px/232*80);
    text-align: center;
    position: relative;
    top: 0;
    left: 0;
}

.swiper2 img {
    width: 100%;
    height: 100%;
}

.net {
    width: 680px;
    background-image: url('../../assets/pic/net.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    height: calc(680px/1015*102);
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
}

.pic1 {
    width: 680px;
    background-image: url('../../assets/pic/1.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    height: calc(680px/141*46);
    justify-content: space-between;
    align-items: center;
}

.pic2 {
    width: 680px;
    background-image: url('../../assets/pic/2.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    height: calc(680px/141*46);
    justify-content: space-between;
    align-items: center;
}

.txt {
    color: aliceblue;
    font-size: large;
    width: 170px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    line-height: 1;
}

.line {
    color: #ffffff;
    font-size: x-large;
    font-weight: bolder;
    user-select: none;
}

/* .down {
    width: 500px;
    background-image: url('../../assets/pic/down.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: calc(500px/696*220);
    -webkit-animation: heartbeat 2.5s ease-in-out infinite both;
    animation: heartbeat 2.5s ease-in-out infinite both;
} */

.t {
    margin: 24px 36px;
    font-size: large;
    color: gray;
    text-wrap: normal;
    text-align: center;
}

.cs {
    position: absolute;
    right: 10px;
    top: 28vh;
    width: 90px;
    height: calc(90px/128*195);
    cursor: pointer;
    -webkit-animation: vibrate 1.5s ease-in-out infinite both;
    animation: vibrate 1.5s ease-in-out infinite both;
    user-select: none;
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes vibrate {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}


.search {
    width:680px;
    /* height: 0.7rem; */
    height: 68px;
    border-radius: 34px;
    background: #fffbe8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 34px;
    cursor: pointer;
  }
  .search .serach_input {
    width: 72%;
    height: 100%;
    line-height: 60px;
    padding-left: 30px;
    background: transparent;
    color: #e1b55e;
    font-size: 24px;
    border: none;
    outline: none;
  }
  .search .btn {
    width: 28%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#ffd645),
      to(#fd6b6a)
    );
    background: -o-linear-gradient(top, #ffd645 0%, #fd6b6a 100%);
    background: linear-gradient(180deg, #ffd645 0%, #fd6b6a 100%);
    border-radius: 38px;
    -webkit-box-shadow: 0px -0.04rem 0.1rem 0px #fff0ed inset;
    box-shadow: 0px -0.04rem 0.1rem 0px #fff0ed inset;
    color: #fff;
  }
  .search .btn img {
    width: 40px;
    height: 40px;
    margin-right: 0.1rem;
  }
  .search .btn span {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
  }

  .mark {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  
  .mark .box {
    width: 600px;
    height: 480px;
    margin: 100px auto 0;
    position: relative;
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
  }
  
  .mark .box .success {
    width: 260px;
    height: 160px;
    margin-bottom: 40px;
    margin-top: -45px;
  }
  
  .mark .box .error {
    width: 140px;
    height: 140px;
    margin-bottom: 16px;
  }
  
  .mark .box .dialog_logo {
    width: 162px;
    height: 72px;
    margin-bottom: 40px;
  }
  
  .mark .box .dialog_text {
    color: #151515;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px; /* 128.571% */
  }
  
  .mark .box .dialog_text_url {
    color: #151515;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 120% */
  }
  
  .mark .box .dialog_text:nth-child(2) {
    color: #666;
  }
  
  .mark .close {
    position: relative;
    /* bottom: -0%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -24px; */
    /* cursor: pointer; */
    margin-top: 20px;
  }
  .net {
    width: 100%;
    background-image: url('../../assets/pic/net.png');
    background-repeat: no-repeat;
    background-size: 100% 60px;
    display: flex;
    height: 60px;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
  }
  .landing-page-container{
    width: 100%;
    min-height: 100vh;
  }
  .landing-page-container .main{
    width: 100%;
    height: calc(100% - 60px);
    display: flex;
    justify-content: space-between;
  }
  .landing-page-container .main .main-left{
    /*background-color: #b11810;*/
    background-color: #1b6e01;
    width: 30vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
  }
  .landing-page-container .main .main-left .logo{
    display: flex;
    align-items: center;
  }
  .landing-page-container .main .main-left .logo img{
    width: 100px;
    margin-bottom: 50px;
  }
  .landing-page-container .main .main-left p{
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 10px 0;
  }
  .landing-page-container .main .main-left .down{
    width: 260px;
  }
  .landing-page-container .main .main-left .down img{
    width: 100%;
  }
  .landing-page-container .main .main-left  .website{
    margin-bottom: 3px;
  }
  .landing-page-container .main .main-left .copyRight{
    font-size: 12px;
    font-weight: 500;
    margin-top: 0;
  }
  .landing-page-container .main .main-right{
    width:calc(100% - 30vw);
    min-width:calc(100% - 30vw);
    box-sizing: border-box;
  }
  .landing-page-container .main .main-right img{
    width: 100%;
    /* height: calc(100vh - 60px); */
    min-height: calc(100vh - 60px);
    object-fit: cover;
  }
  
  .bottom-box{
    display: flex;
    height: 60px;
    justify-content: space-between;
    background: url('../../assets/pic/pcBj.png')no-repeat;
    background-size: cover;
    padding: 10px 80px;
    box-sizing: border-box;
  }
  .bottom-box img{
    width: 120px;

  }

  .net-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* 响应式媒体查询 - Add responsive media queries */
  @media screen and (max-width: 1200px) {
    .landing-page-container .main .main-left {
      padding-left: 20px;
      padding-right: 20px;
    }
    
    .net {
      width: 90%;
      max-width: 500px;
    }
    
    .txt {
      font-size: medium;
      width: 120px;
    }
    
    .line {
      font-size: large;
    }
  }

  @media screen and (max-width: 768px) {
    .landing-page-container .main {
      flex-direction: column;
    }
    
    .landing-page-container .main .main-left {
      width: 100%;
      padding: 20px;
    }
    
    .landing-page-container .main .main-right {
      width: 100%;
      min-width: 100%;
    }
    
    .net {
      width: 95%;
      max-width: 400px;
      background-size: 100% 50px;
      height: 50px;
    }
    
    .txt {
      font-size: medium;
      width: 80px;
    }
    
    .line {
      font-size: large;
    }
  }

  @media screen and (max-width: 480px) {
    .landing-page-container .main .main-left p {
      font-size: 12px;
      text-align: center;
    }
    
    .net {
      width: 98%;
      max-width: 320px;
      background-size: 100% 45px;
      height: 45px;
      margin: 5px 0;
    }
    
    .txt {
      font-size: small;
      width: 60px;
    }
    
    .line {
      font-size: medium;
    }
    
    .landing-page-container .main .main-left .logo img {
      width: 80px;
      margin-bottom: 30px;
    }
    
    .landing-page-container .main .main-left .down {
      width: 200px;
    }
    
    .bottom-box {
      padding: 5px 20px;
      flex-wrap: wrap;
      height: auto;
    }
    
    .bottom-box img {
      width: 80px;
      margin: 2px;
    }
  }
  