
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}
h1{
    font-size: 56px;
}
#container {
    position: absolute;
    left: 0;
    top: 0;
    width: 1920px;
    transform-origin: 0 0;
    transform: scale(1);
    display: none;
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 1920px;
    height: 90px;
    z-index: 2;
    transform-origin: 0 0;
    transform: scale(1);
    display: none;
    overflow: hidden;
}
.navbar.fixed {
    position: fixed;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.7);
}
.logo {
    position: absolute;
    top: 15px;
    left: 160px;
    display: flex;
    align-items: center;

}
.qyb-img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border-radius: 10px;
}
.qyb-text{
    width: 104px;
    height: 36px;
}

.nav-links {
    position: absolute;
    top: 5px;
    right: 160px;
    /* border: 1px solid red; */
    list-style: none;
    display: flex;
    justify-content: space-around;
    width: 700px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    font-size: 26px;
    color: #FFF;
    font-weight: bold;
}

.hero-section {
    position: relative;
    height: 800px;
    display: flex;
    background-image: url('./static/wdyqyzyk.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
/* 左侧文字：从左滑入 */
.slide-in-left {
    position: absolute;
    top: 310px;
    left: 540px;
    width: 560px;
    height: 124px;
    background-image: url('./static/wdyq.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideInLeft 1s ease-out forwards;
    animation-delay: 0.3s;
}
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右侧文字：从右滑入 */
.slide-in-right {
    position: absolute;
    top: 470px;
    left: 820px;
    width: 560px;
    width: 560px;
    height: 124px;
    background-image: url('./static/yzyk.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 1s ease-out forwards;
    animation-delay: 0.3s;
}
@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* 我们是做什么的 */
.content-section {
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: #E5F7F1;
    overflow: hidden;
}
.text-content{
    width: 720px;
}
.text-content h2 {
    font-size: 56px;
    margin-bottom: 20px;
    opacity: 0;
}
.text-content.animate  h2{
    opacity: 0;
    transform: translateY(-200%);
    animation: wmszsmdH2 1s ease-out 0s forwards;

}
@keyframes wmszsmdH2 {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.text-content p {
    color: #0009;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    opacity: 0;
}
.text-content.animate  p{
    opacity: 0;
    transform: translateY(200%);
    animation: wmszsmdP 1s ease-out forwards;
    animation-delay: 0s;

}
@keyframes wmszsmdP {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .image-content {
    border-radius: 10px;
} */
.image-content .bj-che{
    width: 600px;
    height: 666px;
    background-image: url('./static/wm_cheshouji.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* opacity: 0;
    transform: translateX(150%);
    animation: bjche 1s ease-out forwards;
    animation-delay: 0.2s; */
}
@keyframes bjche {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* 我们要解决的问题 */
.jjwt-box{
    margin: 0 auto;
    width: 1600px;
    height: 640px;
    background-image: url('./static/wm_bj_wmyjjdwt.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    text-align: center;
}
.jjwt-box h1{
    padding-top: 80px;
    color: #FFF;
    font-weight: 700;
}
.wt-box{
    display: flex;
    justify-content: space-evenly;
}
.row-box{
    padding: 16px 48px;
    width: calc(320px - 96px);
    height: calc(355px - 32px);
    border-radius: 56px;
    background: #EFF2F1;
    border: 1px solid #34EC4D;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}
.row-box img{
    width: 160px;
    height: 160px;
}
.row-box h4{
    margin: 10px 0;
    color: #000;
    font-size: calc(24px * 1);
    font-weight: 700;
}
.row-box p{
    width: calc(200px * 1);
    font-size: calc(18px * 1);
    font-style: normal;
    font-weight: 400;
    text-align: left;
}
.row-box.animate{
    animation: fadeInUp 1.5s ease-in-out forwards;
}
.block1 {
    animation-delay: 0.2s;
}
.block2 {
    animation-delay: 0.6s;
}
.block3 {
    animation-delay: 0.8s;
}
.block4 {
    animation-delay: 1s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 我们改变了什么 */
.wmgb-box{
    width: 100%;
    height: 900px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.gb-box{
    /* border: 1px solid red; */
    position: relative;
    width: 1600px;
}
.tds2-col{
    position: absolute;
    top: 0px;
    left: 400px;
    width: 600px;
    height: 756px;
    border-radius: 56px;
    background: linear-gradient(180deg, #34EC4D 0%, #2EF4FF 100%);
}
.tds2-table{
    position: absolute;
    top: 0;
    left: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
}
thead th {
    background-color: white;
    color: black;
}
table tr td:nth-child(1),
table tr th:nth-child(1){
    width: 350px;
}
table tr td:nth-child(3) ,
table tr th:nth-child(3) {
    width: 550px;
}
table tr td:nth-child(2),
table tr th:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
    background-color: #ffffff3b;
}
th, td {
    padding: 27px 0;
    padding-left: 50px;
    text-align: left;
    vertical-align: middle;
}

th {
    background-color: #e0e0e0;
    color: #333;
    font-weight: bold;
}
/* 交替行颜色：奇数行为白色，偶数行为浅灰色 */
.td1-col-h {
    background: rgba(0, 0, 0, 0.10);
}
.td1-col-b {
    background-color: #fff;
}
tbody tr:nth-child(odd) {
    background: rgba(0, 0, 0, 0.10);
}
/* 圆角 */
.tr1-td1 {
    border-top-left-radius: 56px; 
}
.tr1-td3 {
    border-top-right-radius: 56px; 
}
.tr7-td1 {
    border-bottom-left-radius: 56px; 
}
.tr7-td3 {
    border-bottom-right-radius: 56px; 
}
/* 微信搜索‘去野吧’ */
.wxsc-box{
    height: 800px;
    display: flex;
    justify-content: center;
}
.wxss-img{
    position: relative;
    margin-top: 200px;
    width: 1600px;
    height: 400px;
    background-image: url('./static/wxss_bj.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.wxss-sj-img{
    position: absolute;
    left: 110px;
    bottom: -100px;
    width: 527px;
    height: 600px;
    background-image: url('./static/wxss_sj.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.wxss-txt-box{
    position: absolute;
    top: 0;
    left: 800px;
}
.text-pulse{
    color: #FFF;
}
.text-pulse span{
    display: inline-block;
    transition: transform 0.1s ease;
}
/* 定义放大动画 */
@keyframes pop {
    0%,100%{
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

/* 给每个字设置错开的动画延迟，形成波浪效果 */
.text-pulse span:nth-child(1) { animation: pop 4s ease infinite 0s; }
.text-pulse span:nth-child(2) { animation: pop 4s ease infinite 0.5s; }
.text-pulse span:nth-child(3) { animation: pop 4s ease infinite 1s; }
.text-pulse span:nth-child(4) { animation: pop 4s ease infinite 1.5s; }
.text-pulse span:nth-child(5) { animation: pop 4s ease infinite 2s; }
.text-pulse span:nth-child(6) { animation: pop 4s ease infinite 2.5s; }
.text-pulse span:nth-child(7) { animation: pop 4s ease infinite 3s; }
.text-pulse span:nth-child(8) { animation: pop 4s ease infinite 3.5s; }
.text-pulse span:nth-child(9) { animation: pop 4s ease infinite 4s; }
.wxss-txt-box p{
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 32px;
    font-weight: 400;
}
/*  */
.lxwm-box{
    position: relative;
    height: 560px;
    background: #000;
}
.wx-box{
    /* border: 1px solid #FFF; */
    position: absolute;
    top: 0;
    left: 260px;
    height: 100%;
}
.wx-box h5{
    margin: 0;
    margin-top: 60px;
    margin-bottom: 44px;
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
}
.wx-box p{
    margin: 0;
    color: rgba(255, 255, 255, 0.60);
    font-size: 24px;
    font-weight: 400;
}
.wx-img{
    margin-top: 20px;
    width: 260px;
    height: 260px;
    background-image: url('./static/wx.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.wx-lyb-box{
    /* border: 1px solid #FFF; */
    position: absolute;
    top: 0;
    left: 970px;
    width: 500px;
    height: 100%;
}
.wx-lyb-box h5{
    margin: 0;
    margin-top: 60px;
    margin-bottom: 44px;
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
}
.form-row{
    display: flex;
}
.form-group {
    margin-right: 50px;
    margin-bottom: 15px;
}

.wx-lyb-box label {
    display: block;
    margin-bottom: 5px;
    color: #FFF;
}
.wx-lyb-box input[type="text"],
.wx-lyb-box input[type="tel"]{
    width: 320px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-sizing: border-box;
}
.wx-lyb-box textarea {
    width: 690px;
    height: 120px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-sizing: border-box;
}

.wx-lyb-box button {
    width: 690px;
    padding: 10px;
    background-color: #34EC4D;
    color: #000000;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.wx-lyb-box button:hover {
    background-color: darkgreen;
}
.footer-box{
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    font-size: 16px;
    text-align: center;
}
.gaba-bpx{
    position: relative;
    margin-right:30px;
    color: #ffffffdd;
    text-decoration: none;
}
.gaba-img{
    position: absolute;
    top: -2px;
    left: -26px;
    width: 20px;
    height: 20px;
}
.baxx-bpx{
    color: rgb(3, 120, 255);
    font-style: italic;
}
 .company-box{
    margin-left:30px;
    color: #ffffffdd;

 }