/* 清除默认样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    --navHeight: 75px;
    /* 定义变量 */
}

body {
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: #000;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

input:focus {
    outline: none;
}

.container {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}






/* header */
header {
    width: 100%;
    height: var(--navHeight);
    position: fixed;
    top: 0;
    z-index: 1001;
    transition: all .2s ease 0s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.header-nav {
    display: flex;
    justify-content: space-between;
}

.header-left {
    width: 190px;
    height: var(--navHeight);
}

.logo {
    display: block;
    width: 100%;
    height: 100%;
    background: url(//cdn.myapp.ltd/ag/147/assets/logob.png)no-repeat center;
    background-size: contain;
}

.nav-list {
    display: flex;
    height: var(--navHeight);
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item .menu-t {
    display: inline-block;
    line-height: 44px;
    padding: 0 24px;
    font-size: 16px;
    color: #fff;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.nav-list .menu-t:hover {
    background: #f0f0f0;
    color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--navHeight);
}

.login-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login-button,
.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    min-width: 80px;
    padding: 0 20px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    background: #fff;
    color: #222;
    border: 1px solid #ddd;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.login-button:hover {
    background: #f0f0f0;
    color: #007bff;
}

.register-button {
    background: #2ecc71;
    color: #fff;
    border: none;
}

.register-button:hover {
    background: #27ae60;
}

/* ====== 产品导航下拉菜单样式 ====== */
.nav-step {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 150px;
    background: transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 10;
}

.nav-step:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    text-align: left;
}

.dropdown-menu a {
    display: block;
    padding: 8px 24px;
    color: #fff;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #007bff;
}

/* ====== 产品导航下拉菜单样式 END ====== */












/* banner */
.banner {
    width: 100%;
    height: 600px;
    background: url(//cdn.myapp.ltd/ag/147/assets/banner01.jpg)no-repeat center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-box {
    text-align: center;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.banner-box.enter {
    opacity: 1;
    transform: translateY(0);
}

.banner-box h1 {
    margin-bottom: 24px;
    font-size: 38px;
    margin-top: 20px;
    line-height: 1.1;
    font-family: PingFangSC-Light;
    font-weight: 300;
}

.banner-box p {
    color: #efefef;
    line-height: 27px;
    font-size: 16px;
    font-family: PingFangSC-Light;
    font-weight: 300;
}

.banner-box a {
    display: inline-block;
    width: 140px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 13px;
    background: #1782F1;
    color: #ffffff;
    border: none;
    margin-top: 20px;
    border-radius: 10px;
}

.banner-box a:hover {
    text-decoration: underline;
}








/* 打包步骤 */
.home-step-title {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-step-title h1 {
    color: #000;
    font-size: 36px;
    line-height: 100px;
    font-weight: normal;
    text-align: center;
    display: block;
    width: 100%;
}

.home-step-title span {
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 2em;
    display: block;
    width: 100%;
}

.home-step-title a {
    display: block;
    width: 200px;
    height: 50px;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    background-color: #1782f1;
    margin: 30px 0;
    border-radius: 5px;
    transition: background 0.3s, box-shadow 0.3s, color 0.3s, text-decoration 0.3s;
}

.home-step-title a:hover {
    background: #0056b3;
    color: #fff;
    box-shadow: 0 4px 16px rgba(23, 130, 241, 0.15);
    text-decoration: underline;
}


.home-step-box {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.home-step-item {
    width: 292.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-step-item img {
    width: 72px;
    height: 72px;
}

.home-step-item span {
    line-height: 80px;
    font-size: 18px;
    text-align: center;
    color: #252525;
}

.home-step-item p {
    font-size: 14px;
    line-height: 25px;
    color: #999;
    text-align: center;
}










/* 产品功能 */
.product-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 120px 0 80px 0;

}

.product-title span {
    font-size: 24px;
    color: #333333;
}

.product-title img {
    width: 30px;
    height: 30px;
    line-height: 34px;
    margin-right: 8px;
}

.product-box {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product-item {
    display: flex;
    flex-direction: column;
    width: 220px;
    height: 332px;
    border: 1px solid #eeeeee;
    border-radius: 3px;
    padding: 20px 24px 50px 24px;
    margin-bottom: 40px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s, border-color 0.3s;
    cursor: pointer;
}

.product-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.product-item span {
    font-size: 16px;
    line-height: 20px;
    color: #333333;
    margin: 12px 0 20px 0;
}

.product-item p {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 30px;
}

.product-item div {
    color: #b8b8b8;
}

.product-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 32px rgba(23, 130, 241, 0.18);
    z-index: 2;
}

.product-item:hover img {
    box-shadow: 0 4px 16px rgba(23, 130, 241, 0.18);
    transition: box-shadow 0.3s;
}

.product-item:hover span {
    color: #1782f1;
    transition: color 0.3s;
}

.product-item:hover div {
    color: #1782f1;
    transition: color 0.3s;
}













/* 案例展示 */
.article-title {
    letter-spacing: 1px;
    font-size: 30px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #171C3C;
    margin: 120px 0 0 0;
    line-height: inherit;
    text-align: center;
}

.article-subheading {
    font-size: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #9798A9;
    margin: 20px 0 80px 0;
    letter-spacing: 1px;
    text-align: center;
}

.article-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.article-item {
    width: 570px;
    height: 412px;
    display: flex;
}

.article-item img {
    width: 337px;
    height: 410px;
}

.article-text {
    width: 228px;
    height: 412px;
    padding-top: 50px;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
}

.article-text span {
    font-size: 22px;
    line-height: 30px;
    text-align: left;
    font-weight: 300;
}

.article-text p {
    text-align: left;
    font-size: 14px;
    line-height: 21px;
    margin: 15px 0 40px 0;
    font-weight: 300;
}

.article-text a {
    display: block;
    width: 120px;
    height: 34px;
    border-radius: 20px;
    border: 1px solid #64daac;
    font-size: 14px;
    text-align: center;
    line-height: 34px;
    color: #64daac;
    background: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    /* 叠加动画相关属性 */
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s;
}

.article-text a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #64daac;
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
}

.article-text a:hover,
.article-text a:focus {
    color: #fff;
}

.article-text a:hover::before,
.article-text a:focus::before {
    width: 100%;
}












/* 产品页面 */

.main1-item {
    display: flex;
    background-color: #ffffff;
    padding: 50px 100px;
}

.main1-item:nth-child(2n) {
    flex-direction: row-reverse;
    background-color: #f4f6f8;
}

.main1-item img {
    width: 555px;
    height: 675px;
}

.main1-text {
    width: 555px;
    display: flex;
    flex-direction: column;
    padding-top: 90px;
}

.main1-text span {
    font-size: 42px;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 45px;
    color: #181b3a;
    font-weight: 600;
}

.main1-text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.67;
    color: #637282;
    margin: 30px 0;
}

.main1-text a {
    display: block;
    width: 120px;
    height: 40px;
    background: #6173fe;
    border-radius: 4px;
    box-shadow: -2px 0px 5px 0px rgb(97 115 254);
    color: #fff;
    line-height: 40px;
    text-align: center;
    border: none;
    margin-top: 21px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.main1-text a:hover {
    transform: translateY(-3px);
    background: #4051c8;
    color: #ffe66d;
    box-shadow: 0 8px 24px rgba(97, 115, 254, 0.25), -2px 0px 5px 0px rgb(97 115 254);
}

/* 偶数项的main1-text右对齐 */
.main1-item:nth-child(2n) .main1-text {
    align-items: flex-end;
    text-align: right;
}
























/* 价格页面 */
.banner1 {
    width: 100%;
    height: 200px;
    background: url(//cdn.myapp.ltd/ag/147/assets/banner02.jpg)no-repeat center;
    background-size: cover;
    margin-top: 75px;
}

.banner1-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner1-box h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.banner1-box span {
    font-size: 16px;
    color: #fff;
}

/* banner1-box 动画样式 */
.banner1-box {
    /* 确保动画效果正常工作 */
    will-change: transform, opacity;
    /* 初始状态：向左偏移并隐藏 */
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 动画激活状态 */
.banner1-box.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* 为 banner1-box 的子元素添加延迟动画效果 */
.banner1-box.animate-in h2 {
    animation: slideInFromLeft 0.8s ease 0.3s both;
}

.banner1-box.animate-in span {
    animation: slideInFromLeft 0.8s ease 0.5s both;
}

/* 从左滑入的动画关键帧 */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}





.jiage-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
}

.jiage-title h2 {
    font-size: 36px;
    color: #157df1;
    margin-bottom: 20px;
}

.jiage-title span {
    color: #666;
    font-size: 16px;
}

/* jiage-title 从上滑动进入动画样式 */
.jiage-title {
    /* 确保动画效果正常工作 */
    will-change: transform, opacity;
    /* 初始状态：向上偏移并隐藏 */
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 动画激活状态 */
.jiage-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* 为 jiage-title 的子元素添加延迟动画效果 */
.jiage-title.animate-in h2 {
    animation: slideInFromTop 0.8s ease 0.2s both;
}

.jiage-title.animate-in span {
    animation: slideInFromTop 0.8s ease 0.4s both;
}

/* 从上滑入的动画关键帧 */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}









.table-box {
    width: 1060px;
    table-layout: fixed;
    border: 1px solid #ddd;
    margin: 0 auto;
    border-collapse: collapse;
}

.table-box table th {
    padding: 0;
    text-align: center;
    color: #333;
    vertical-align: middle;
    font-size: 18px;
    height: 50px;
    font-weight: bold;
    border: 1px solid #ddd;
}

.table-box table th:nth-child(2),
.table-box table th:nth-child(3) {
    border-radius: 3px;
    background: linear-gradient(34deg, #565D7C 0%, #898EA6 99%);
    color: #fff;
}

.table-box table td {
    padding: 0;
    text-align: center;
    color: #333;
    vertical-align: middle;
    height: 50px;
    border: 1px solid #ddd;
    font-weight: normal;
}

.table-box table td:first-child,
.table-box table th:first-child {
    background: #e9e9ed;
}

.table-box table td:nth-child(4),
.table-box table th:nth-child(4) {
    background: #f0f0f2;
}












/* FQA 问答样式 */
.fqa-section {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    padding: 40px 24px 32px 24px;
    margin: 48px auto 48px auto;
    max-width: 1170px;
}

.fqa-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: #4f3cc9;
    margin-bottom: 32px;
    letter-spacing: 2px;
}

.fqa-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fqa-item {
    background: linear-gradient(90deg, #f3f3fa 0%, #f9f9ff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(79, 60, 201, 0.06);
    padding: 24px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}

.fqa-item:hover {
    box-shadow: 0 8px 24px rgba(79, 60, 201, 0.13);
    transform: translateY(-2px) scale(1.02);
}

.fqa-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #3a2e7c;
    margin-bottom: 10px;
}

.fqa-answer {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    padding-left: 12px;
    border-left: 3px solid #a89af7;
}














/* 小程序页面 */
.banner3 {
    width: 100%;
    height: 600px;
    background: url(//cdn.myapp.ltd/ag/147/assets/banner03.jpg)no-repeat center;
    background-size: cover;
}

.banner3-box {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 8vw;
}

.banner3-box h4 {
    font-size: 36px;
    letter-spacing: 1px;
    color: #fff;
    font-family: Calibri;
    margin-bottom: 20px;
}

.dot-span {
    display: block;
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #fff;
    font-size: 14px;
}

.dot-span::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* banner3-box h4和span进入动画 */
.banner3-box h4 {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner3-box h4.slide-down-in {
    opacity: 1;
    transform: translateY(0);
}

.banner3-box .dot-span {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner3-box .dot-span.slide-up-in {
    opacity: 1;
    transform: translateY(0);
}

.input-box {
    display: flex;
    margin-top: 15px;
}

.input-box input {
    width: 400px;
    height: 40px;
    border-radius: 3px 0px 0px 3px;
    background: #FFFFFF;
    border: none;
    font-size: 14px;
    padding-left: 10px;
}

.input-box a {
    display: block;
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    color: #fff;
    background-color: #157df1;
    border-radius: 0px 3px 3px 0px;
}

.input-box a:hover {
    text-decoration: underline;
}



.main-title {
    width: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.main-title h4 {
    font-size: 30px;
    font-weight: 700;
    line-height: 75px;
    text-align: center;
    top: 57px;
    color: #242841;
}

.main-line {
    width: 70px;
    height: 6px;
    background: #FF6918;
    border-radius: 3px 3px 0 0;
}

.main-text {
    width: 1100px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(//cdn.myapp.ltd/ag/147/assets/main-bg.jpg)no-repeat center;
    background-size: contain;
    margin: 30px 0;
}

.main-text span {
    font-size: 18px;
    color: #7c7e93;
}


.applet-item {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: space-between;
}

.applet-item:nth-child(2n) {
    flex-direction: row-reverse;
}

.applet-text {
    display: flex;
    flex-direction: column;
    padding: 80px 40px;
}

.applet-text span {
    color: #242841;
    font-weight: 700;
    font-size: 23px;
    line-height: 41px;
}

.applet-text p {
    color: #677086;
    font-size: 17px;
    line-height: 30px;
    margin-top: 31px;
    width: 380px;
}

.applet-text a {
    display: block;
    width: 120px;
    height: 40px;
    background: #6173fe;
    border-radius: 4px;
    box-shadow: -2px 0px 5px 0px rgb(97 115 254);
    color: #fff;
    line-height: 40px;
    text-align: center;
    border: none;
    margin-top: 21px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.applet-text a:hover {
    transform: translateY(-3px);
    background: #4051c8;
    color: #ffe66d;
    box-shadow: 0 8px 24px rgba(97, 115, 254, 0.25), -2px 0px 5px 0px rgb(97 115 254);
}

.applet-item img {
    width: 500px;
    height: 500px;
}

















/* 云商城 */
.carousel-box {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-top: 75px;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.carousel-item:nth-child(1) {
    background-image: url(//cdn.myapp.ltd/ag/147/assets/cloud-banner1.jpg);
}

.carousel-item:nth-child(2) {
    background-image: url(//cdn.myapp.ltd/ag/147/assets/cloud-banner2.jpg);
}

.carousel-item:nth-child(3) {
    background-image: url(//cdn.myapp.ltd/ag/147/assets/cloud-banner3.jpg);
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-item h4,
.carousel-item p {
    color: #191919;
    margin-left: 8%;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.carousel-item h4 {
    font-size: 32px;
    margin-bottom: 1rem;
}

.carousel-item p {
    font-size: 18px;
}

.cloud-main1 {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cloud-main1 h4 {
    font-size: 28px;
    line-height: 42px;
}

.cloud-main1 span {
    font-size: 16px;
    line-height: 24px;
    padding-top: 12px;
}

.cloud-main2 {
    width: 100%;
    height: 400px;
    background: url(//cdn.myapp.ltd/ag/147/assets/yun-2.png)no-repeat center;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cloud-main2 img {
    width: 764px;
    height: 478px;
}

.cloud-main3 {
    display: flex;
    justify-content: center;
    padding: 60px 0;
}

.cloud-main3 a {
    display: inline-block;
    padding: 12px 32px;
    background: #4e8cff;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    transition:
        background 0.3s cubic-bezier(.4, 0, .2, 1),
        transform 0.3s cubic-bezier(.4, 0, .2, 1),
        box-shadow 0.3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 8px rgba(78, 140, 255, 0.08);
}

.cloud-main3 a:hover {
    background: linear-gradient(90deg, #4e8cff 0%, #6fd6ff 100%);
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 24px rgba(78, 140, 255, 0.18);
}



.cloud-main4 {
    display: flex;
    justify-content: space-between;
}

.cloud-main4item {
    width: 150px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cloud-main4item img {
    width: auto;
    height: 120px;
}

.cloud-main4item span {
    font-size: 17px;
    color: #242841;
    margin: 15px 0;
    font-weight: 700;
}

.cloud-main4item p {
    font-size: 14px;
    text-align: center;
    color: #626573;
}



.cloud-price-bg {
    background-color: #ffff;
    padding: 60px;
}

.cloud-price1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 0 40px 0;
}

.cloud-price1 h4 {
    color: #303659;
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    margin-top: 42px;
}

.cloud-price1 span {
    font-size: 14px;
    color: #303659;
}

.cloud-price2 {
    display: flex;
    justify-content: space-between;
}

.cloud-price-item {
    width: 284px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 2px 6px #eee;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cloud-price-item:hover {
    transform: scale(1.08);
    background: linear-gradient(135deg, #5951ff, #7693ff);
    color: #fff;
}

.cloud-price-item:hover .price-box,
.cloud-price-item:hover span,
.cloud-price-item:hover p {
    color: #fff;
}

.cloud-price-item:hover a {
    background: #fff !important;
    color: #6d80ff !important;
    transition: background 0.3s, color 0.3s;
}

.cloud-price-img {
    width: 264px;
    height: auto;
    border-radius: 3px;
    overflow: hidden;
}

.cloud-price-img img {
    width: 100%;
    height: 100%;
}

.price-box {
    font-size: 30px;
    color: #304DD9;
    margin: 15px 0;
}

.cloud-price-item a {
    display: block;
    width: 200px;
    height: 40px;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    border-radius: 5px;
    background-color: #304dd9;
}















/*APP打包 */
.app-main1 {
    display: flex;
    justify-content: center;
    margin: 80px 0;
}

.app-main1 h4 {
    font-size: 32px;
    color: #111;
    font-weight: 100;
}

.app-main2 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.applist-item {
    width: 540px;
    height: 127px;
    display: flex;
    align-items: center;
    border: 1px solid #eeeeee;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 0 rgba(196, 196, 196, .35);
}

.applist-item:hover {
    border: 1px solid #6c6cd1;
}

.applist-item img {
    width: 60px;
    height: 60px;
}

.applist-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.applist-text span {
    font-size: 20px;
    color: #333333;
    font-family: "SF Pro SC", "SF Pro Display", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: 500;
}

.applist-text p {
    font-size: 16px;
    color: #999999;
    margin-top: 8px;
}





















/* 手机端响应式样式 */
@media (max-width: 767px) {

    .banner {
        height: 450px;
    }

    /* 隐藏桌面端菜单和登录按钮 */
    .heder-center,
    .header-right {
        display: none;
    }

    /* 调整header布局 */
    .header-nav {
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .header-left {
        width: 120px;
    }

    /* 手机端更多按钮 */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        z-index: 1002;
    }

    .menu-icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    /* 抽屉菜单 */
    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1000;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s, opacity 0.3s;
    }

    .mobile-drawer.active {
        visibility: visible;
        opacity: 1;
    }

    .drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .drawer-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-drawer.active .drawer-content {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
    }

    .drawer-header h3 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

    .drawer-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .drawer-close .close-icon {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
    }

    .drawer-body {
        padding: 20px;
        height: calc(100% - 80px);
        overflow-y: auto;
    }

    /* 手机端导航列表 */
    .mobile-nav-list {
        margin-bottom: 30px;
    }

    .mobile-nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-nav-item:last-child {
        border-bottom: none;
    }

    .mobile-nav-item a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 16px;
        transition: color 0.2s;
    }

    .mobile-nav-item a:hover {
        color: #007bff;
    }

    /* 手机端下拉菜单 */
    .mobile-dropdown {
        margin-left: 20px;
        margin-top: 10px;
        margin-bottom: 10px;
        border-left: 2px solid #007bff;
        padding-left: 15px;
        display: block !important;
        /* 默认展开 */
    }

    .mobile-dropdown li {
        margin-bottom: 8px;
    }

    .mobile-dropdown a {
        padding: 8px 0;
        font-size: 14px;
        color: #666;
    }

    /* 手机端登录按钮组 */
    .mobile-login-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .mobile-login-btn,
    .mobile-register-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 44px;
        padding: 0 20px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s;
    }

    .mobile-login-btn {
        background: #fff;
        color: #333;
        border: 1px solid #ddd;
    }

    .mobile-login-btn:hover {
        background: #f8f9fa;
        color: #007bff;
    }

    .mobile-register-btn {
        background: #2ecc71;
        color: #fff;
        border: none;
    }

    .mobile-register-btn:hover {
        background: #27ae60;
    }

    /* 菜单弹出时隐藏更多按钮 */
    .mobile-drawer.active~.mobile-menu-btn,
    .mobile-menu-btn.hide {
        display: none !important;
    }


    /* 打包步骤H5 */
    .home-step-box {
        display: flex;
        flex-wrap: wrap;
        overflow-x: auto;
        padding: 0 8px 16px 8px;
        -webkit-overflow-scrolling: touch;
    }

    .home-step-item {
        width: 47vw;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 2px 12px rgba(23, 130, 241, 0.08);
        margin: 10px 0;
        padding: 24px 12px 18px 12px;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: box-shadow 0.2s;
    }

    .home-step-item img {
        width: 56px;
        height: 56px;
        margin-bottom: 10px;
    }

    .home-step-item span {
        font-size: 16px;
        line-height: 2.2;
        color: #252525;
        margin-bottom: 6px;
    }

    .home-step-item p {
        font-size: 13px;
        line-height: 1.7;
        color: #999;
        text-align: center;
        margin: 0;
    }

    /* 产品功能 */
    .product-box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 24px;
        padding: 0 8px;
    }

    .product-item {
        align-items: center;
        width: 48%;
        min-width: 0;
        box-sizing: border-box;
        margin-bottom: 18px;
        padding: 16px 8px 32px 8px;
        height: auto;
        border-radius: 8px;
    }

    .product-item img {
        width: 56px;
        height: 56px;
        margin-bottom: 12px;
    }

    .product-item span {
        font-size: 15px;
        margin: 8px 0 12px 0;
    }

    .product-item p {
        font-size: 14px;
        margin-bottom: 18px;
        text-align: center;
    }

    .product-item div {
        font-size: 14px;
    }

    /* 案例展示模块-手机端适配 */
    .article-box {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .article-item {
        width: 96vw;
        max-width: 360px;
        min-width: 0;
        height: auto;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        padding: 12px 8px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(23, 130, 241, 0.06);
    }

    .article-item img {
        width: 80vw;
        max-width: 320px;
        height: auto;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .article-text {
        width: 100%;
        height: auto;
        padding: 12px 0 0 0;
        box-sizing: border-box;
        align-items: flex-start;
    }

    .article-text span.title {
        font-size: 18px;
        line-height: 1.4;
    }

    .article-text p.summary {
        font-size: 13px;
        line-height: 1.7;
        margin: 10px 0 18px 0;
    }

    .article-text a {
        width: 100%;
        max-width: 140px;
        height: 36px;
        font-size: 15px;
        line-height: 36px;
        margin: 0 auto 8px auto;
    }

    /* 产品页面 main1 手机端适配 - 图片高60vw，item自适应 */
    .main1 {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 4px;
        margin-top: 30px;
    }

    .main1-item {
        display: flex;
        flex-direction: row !important;
        align-items: center;
        justify-content: flex-start;
        padding: 10px 8px;
        background: #fff !important;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(23, 130, 241, 0.06);
        margin-bottom: 6px;
        min-height: 60px;
        overflow: hidden;
    }

    .main1-item img {
        height: 40vw;
        width: auto;
        max-width: 90vw;
        min-width: 60px;
        object-fit: contain;
        border-radius: 8px;
        margin-right: 12px;
        flex-shrink: 0;
        display: block;
        background: #f6f6f6;
    }

    .main1-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 0;
        min-width: 0;
        height: 100%;
    }

    .main1-text span {
        font-size: 4.5vw;
        margin-bottom: 4px;
        line-height: 1.2;
        text-align: left;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .main1-text p {
        font-size: 3.5vw;
        margin: 2px 0 8px 0;
        color: #637282;
        text-align: left;
        line-height: 1.5;
        max-height: 2.8em;
        overflow: hidden;
        text-overflow: ellipsis;
        word-break: break-all;
    }

    .main1-text a {
        width: 22vw;
        max-width: 100%;
        height: 8vw;
        min-height: 28px;
        font-size: 3.5vw;
        line-height: 8vw;
        margin: 0;
        border-radius: 6px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .main1-item:nth-child(2n) .main1-text {
        align-items: flex-start;
        text-align: left;
    }

    .banner1 {
        padding: 30px 20px;
    }

    .banner1-box h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .banner1-box span {
        font-size: 14px;
    }

    .jiage-title {
        padding: 20px 10px;
        text-align: center;
        margin: 30px 0;
    }

    .jiage-title h2 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .jiage-title span {
        font-size: 13px;
    }

    /* 价格表格手机端适配：隐藏第4列，仅显示前三列 */
    .table-box table th:nth-child(4),
    .table-box table td:nth-child(4) {
        display: none;
    }

    /* 调整表格宽度和字体大小 */
    .table-box {
        width: 100%;
        padding: 0 4px;
        box-sizing: border-box;
    }

    .table-box table {
        width: 100%;
        min-width: unset;
        font-size: 13px;
    }

    .table-box th,
    .table-box td {
        padding: 8px 2px;
        font-size: 12px;
    }

    .jiage-title h2 {
        font-size: 18px;
    }

    .jiage-title span {
        font-size: 13px;
    }






    .fqa-section {
        padding: 20px 6px 16px 6px;
        margin: 24px 0 24px 0;
    }

    .fqa-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .fqa-item {
        padding: 14px 8px;
    }

    .fqa-question {
        font-size: 1rem;
    }

    .fqa-answer {
        font-size: 0.95rem;
        padding-left: 8px;
    }






    /* 小程序打包 */
    .banner3 {
        height: 400px;
    }

    .banner3-box h4 {
        font-size: 24px;
    }

    .input-box input {
        display: none;
    }

    .input-box a {
        border-radius: 3px;
    }

    .main-title {
        padding: 50px 0;
    }

    .main-text {
        width: 100%;
        margin: 0;
        background-size: cover;
    }

    .main-text span {
        font-size: 14px;
        text-align: center;
    }

    /* H5小程序内容手机端适配 */
    .applet-item {
        flex-direction: column-reverse !important;
        align-items: center;
        height: auto;
        margin-bottom: 30px;
        padding: 20px 0;
    }

    .applet-item img {
        width: 90vw;
        max-width: 320px;
        height: auto;
        margin: 0 auto 10px auto;
        display: block;
    }

    .applet-text {
        padding: 20px 10px 10px 10px;
        align-items: center;
    }

    .applet-text span {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }

    .applet-text p {
        font-size: 15px;
        line-height: 22px;
        width: 100%;
        margin-top: 16px;
        text-align: center;
    }

    .applet-text a {
        width: 100%;
        max-width: 180px;
        height: 38px;
        font-size: 15px;
        margin: 18px auto 0 auto;
    }

    /* 云商城轮播图手机端适配 */
    .carousel-box {
        height: 300px;
        margin-top: 60px;
    }

    .carousel-item {
        padding: 0 20px;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .carousel-item h4,
    .carousel-item p {
        margin-left: 0;
        text-align: left;
        width: 100%;
        max-width: 320px;
    }

    .carousel-item h4 {
        font-size: 20px;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }

    .carousel-item p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* 云商城内容头部适配 */
    .cloud-main1 {
        padding: 32px 0 16px 0;
        align-items: center;
        margin: 40px 20px;
    }

    .cloud-main1 h4 {
        font-size: 20px;
        line-height: 30px;
        text-align: center;
    }

    .cloud-main1 span {
        font-size: 14px;
        line-height: 20px;
        padding-top: 8px;
        text-align: center;
        display: block;
        word-break: break-all;
    }

    .cloud-main2 {
        height: auto;
        min-height: 180px;
        background-size: cover;
        padding: 0 10px;
    }

    .cloud-main2 img {
        width: 100%;
        height: auto;
        max-width: 100vw;
        display: block;
        margin: 0 auto;
    }

    /* 云商城主按钮 手机端适配 */
    .cloud-main3 {
        padding: 30px 0 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .cloud-main3 a {
        font-size: 16px;
        padding: 10px 18px;
        width: 90vw;
        max-width: 320px;
        text-align: center;
        box-sizing: border-box;
    }

    /* 云商城功能区 手机端适配 - 一排2个 */
    .cloud-main4 {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
    }

    .cloud-main4item {
        width: 50%;
        max-width: none;
        box-sizing: border-box;
        padding: 18px 0 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cloud-main4item img {
        height: 70px;
    }

    .cloud-main4item span {
        font-size: 15px;
        margin: 10px 0;
    }

    .cloud-main4item p {
        font-size: 13px;
        padding: 0 6px;
    }

    /* 云商城价格区块 手机端适配 */
    .cloud-price-bg {
        padding: 20px 0 20px 0;
    }

    .cloud-price1 {
        padding: 40px 0 20px 0;
    }

    .cloud-price1 h4 {
        font-size: 22px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .cloud-price1 span {
        font-size: 13px;
        padding: 0 10px;
        display: block;
        text-align: center;
    }

    .cloud-price2 {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .cloud-price-item {
        width: 90vw;
        max-width: 340px;
        margin: 0 auto;
        padding: 14px 8px 18px 8px;
        box-shadow: 0px 2px 8px #eee;
    }

    .cloud-price-img {
        width: 80vw;
        max-width: 300px;
    }

    .cloud-price-img img {
        width: 100%;
        height: auto;
    }

    .price-box {
        font-size: 22px;
        margin: 10px 0;
    }

    .cloud-price-item a {
        width: 100%;
        min-width: 0;
        height: 42px;
        font-size: 15px;
        border-radius: 6px;
        margin-top: 8px;
    }

    .applist-item {
        width: 100%;
    }
}












/* 桌面端隐藏手机端元素 */
@media (min-width: 768px) {

    .mobile-menu-btn,
    .mobile-drawer {
        display: none;
    }
}

/* ====== 手机端响应式样式 END ====== */