* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    /* 确保body有足够高度让内容滚动 */
    min-height: 100vh;
    /* 将导航栏高度考虑在内，防止内容被遮挡 */
    padding-top: 70px;
    background-color: #fff;
    max-width: 100vw;
    overflow-x: hidden;
    font-family: 'BoldSquare';
}

/* 固定导航栏样式 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: #fff;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    list-style: none;
    line-height: 35px;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
    position: relative;
    font-family: 'BoldSquare';
    font-weight: normal;
    font-size: 16px;
    color: #53B98D;
}

.nav-links a:hover {
    color: #53B98D;
}

.nav-links li.active ::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: -2%;
    height: 2px;
    width: 100%;
    background-color: #53B98D;
}

.nav-links li button {
    padding: 6px 10px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    color: #fff;
    background-color: #53B98D;
    opacity: 1;
    font-size: 16px;
}

.main-content {
    max-width: 100vw;
    margin: 0 auto;
}

.responsive-image {
    width: 100vw;
    object-fit: contain;
}

.title {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 53px;
}

.title img {
    width: 100%;

}

.title1-content {
    margin-bottom: 93px;
    text-align: center;
}

.title1-content img {
    width: auto;
    height: 50px;
}

.title1-content p {
    font-family: 'BoldSquare';
    font-weight: normal;
    font-size: 14px;
    color: #666666;
    margin-top: 36px;
}

.img-sty {
    margin-right: 10px;
    width: 48%;
    text-align: center;
    font-family: OPlusSans3.0, OPlusSans30;
    font-weight: 500;
    font-size: 14px;
    color: #231815;
}

.server-content {
    display: flex;
    justify-content: space-around;
    padding-bottom: 40px;
    /* border-bottom: 1px dashed red; */
}

.server {
    width: 30%;
    height: auto;
}

.line {
    width: 2px;
    height: 127px;
    background: #3FB270;
    margin-left: 14px;
    margin-bottom: 2px;
}

.flex {
    display: flex;
}

.proess-cont {
    margin-left: 48px;
    margin-bottom: 46px;
}

.proess-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.proess-title {
    font-family: 'BoldSquare';
    font-weight: normal;
    font-size: 20px;
    color: #3DB05E;
    line-height: 40px;
}

.pro-mode {
    margin-left: 52px;
    line-height: 21px;
    margin-bottom: 5px;
}

.pro-meth {
    font-family: 'BoldSquare';
    font-size: 13px;
    color: #3DB05E;
}

.pro-line {
    width: 2px;
    height: 14px;
    background: #3FB270;
    margin: 4px 10px;
}

.meth {
    font-family: 'BoldSquare';
    font-size: 13px;
    color: #666666;
}

.footer-left {
    margin-top: 60px;
    margin-left: 100px;
}

.footer-left p {
    margin-bottom: 15px;
}

.footer-right {
    margin-top: 60px;
    margin-right: 100px;
}

.footer-right p {
    letter-spacing: 3px;
    font-family: OPlusSans 3.0;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: 10px;
    font-size: 14px;
}