* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 在 CSS 顶部引入 */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;700&display=swap');

body {
    /*font-family: '微软雅黑';*/
    /*font-family: "Hiragino Sans GB";*/
    /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";*/

    font-family: 'Noto Sans SC', sans-serif;
    /*!* 针对 macOS / WebKit 浏览器，让文字更纤细、锐利 *!*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*!* 解决部分浏览器文字渲染模糊 *!*/
    text-rendering: optimizeLegibility;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

a {
    color: #000;
    text-decoration: none;
}

/* 头像 */
#avatarImg {
    border-radius: 20px;
}

/* 基础布局 */
.bigBox {
    width: 100%;
    height: 100%;
}

.header {
    height: 58px;
    width: 100%;
    color: #fff;
    line-height: 58px;
    background-image: url(/images/bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
}

/* 最上面的 */
.topMain {
    width: 614px;
    height: 100%;
    margin: 0 auto;
    letter-spacing: 2px;
    font-size: 22px;
    display: flex;
}

.topMain .tag {
    color: #FEBE00;
    font-size: 24px;
}


/* 分类区 */
.classifyBox {
    background-color: #fff;
    /* height: 50px; */
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s;
}

/* 固定后的状态 */
.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.classifyIn {
    width: 1200px;
    margin: 0 auto;
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.classifyLeft {
    vertical-align: middle;
    display: inline-block;
    padding-top: 5px;
    cursor: pointer;
}

.classifyText {
    display: flex;
    flex-direction: column;
}

.classifyText div {
    width: 80px;
    /* border: 1px solid #000; */
}

.classifyRight {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.classifyRight .btn {
    width: 88px;
    height: 30px;
    line-height: 30px;
    background: #F08114;
    font-size: 20px;
    border-radius: 20px;
    color: #fff;
    font-family: '微软雅黑';
    transition: 0.3s;
    text-align: center;
}

.classifyRight .register {
    background: #F08114;
    margin-right: 10px;
}

.classifyRight .register:hover {
    background-color: #14C4F0;
}

.classifyRight .login {
    background-color: #14C4F0;
}

.classifyRight .login:hover {
    background: #F08114;
}

.classifyRightP {
    margin-top: 8px;
}


#text1 {
    font-weight: 700;
    letter-spacing: 3px;
    text-align: center;
}

#text2 {
    font-size: 8px;
    font-weight: 600;
}

/* 设置整个滚动条的宽度 */
::-webkit-scrollbar {
    width: 10px;
    /* display: none; */
}

/* 设置滚动条轨道的样式 */
::-webkit-scrollbar-track {
    background: #f0f0f0;
    /* border-radius: 6px; */
}

/* 设置滚动条滑块的样式 */
::-webkit-scrollbar-thumb {
    background: #72f9fb;
    /* border-radius: 6px; */
}

/* 设置滚动条滑块在悬停时的样式 */
::-webkit-scrollbar-thumb:hover {
    background: #72f9fb;
}

/* 设置滚动条角落的样式 */
::-webkit-scrollbar-corner {
    background: #f0f0f0;
}

.toast {
    position: fixed;
    top: 50px;
    right: 20px;
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.toast.show {
    transform: translateY(100px);
    opacity: 1;
}

.notification {
    position: fixed;
    top: 220px;
    right: 20px;
    background-color: #f44336;
    color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

/* 列表 */
.classifyList {
    padding: 5px;
    text-align: center;
    cursor: pointer;
}

.classifyList a {
    display: inline-block;
    margin: 5px 10px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    margin-right: 40px;
    text-decoration: none;
}

.classifyList a:last-child {
    margin-right: 0px;
}

.classifyList a:hover {
    color: #007bff;
}

.classifyList a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: 0.3s;
}

/* .default {
	color: #212529;
}

.classifyClick1 {
	color: #212529;
	transition: transform 0.3s ease;
}

/* 下拉箭头旋转效果 */
.topDown {
    transition: transform 0.3s ease;
}

/* 下拉框显示时箭头旋转 */
.topDown.rotate {
    transform: rotate(180deg);
}

.classifyClick2 {
    color: #212529;
}

.classifyClick3 {
    color: #212529;
}

.classifyClick4 {
    color: #212529;
}

.classifyClick5 {
    color: #212529;
}

*/

/* 使用transform代替font-size变化来避免抖动 */
.classifyList a:hover {
    transform: scale(1.15);
}


/* 产品购买悬浮框 */
.buyBox {
    position: absolute;
    left: 25%;
    top: 70%;
    width: 420px;
    /* height: 220px; */
    background-color: #fff;
    border-radius: 10px;
    /* border: 1px solid #000; */
    text-align: left;
    padding: 10px;
    font-size: 18px;
    display: none;
}

#BuyList {
    width: 100%;
}

.buyItemL {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    cursor: pointer;
}

.buyItemL .iconSty {
    margin-top: 6px;
}

.buyItemL .contentBuy {
    font-size: 10px;
}

.buyItemL .titleBuy {
    font-size: 10px;
}

/* 产品购买悬浮框 */


/* 产品购买悬浮框 3.26日新的悬浮框*/
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.productPurchaseNew {
    width: 100%;
    height: 450px;
    text-align: left;
    color: #000;
    background: #fff;
    border-bottom: 2px solid #dddddd;
    /* 默认隐藏状态 */
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

/* 显示状态 */
.productPurchaseNew.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease-out;
}

.productPurchaseNew-in {
    width: 100%;
    padding-top: 6px;
}

.ppn-item {
    display: inline-block;
    width: 350px;
    height: 170px;
    margin-right: 70px;
    margin-bottom: 10px;
    padding: 20px 10px;
    border-radius: 10px;
    border: 1px solid #fff;
    cursor: pointer;
}

.ppn-item:hover {
    border: 1px solid #e2e2e2;
    background-color: #f4f4f4;
}

.ppn-item:nth-child(3) {
    margin-right: 0px;
}

.ppn-item:nth-child(4) {
    margin-bottom: 0px;
}

.ppn-item:nth-child(5) {
    margin-bottom: 0px;
}

.ppn-item:nth-child(6) {
    margin-bottom: 0px;
    margin-right: 0px;
    background-color: #ffd2d5;
    border: 1px solid #ffd2d5;
}

.activePpn {
    opacity: 0;
}


/* 产品购买悬浮框 3.26日新的悬浮框*/


/* 首页部分样式 */
/* 地图 */
.mapMain {
    width: 100%;
    /*height: 870px;*/
    /* background-image: url(/images/home/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; */
}

.mapIn {
    text-align: center;
    padding-top: 100px;
    padding-bottom: 50px;
    /*border: 1px solid #00A0E9;*/
    position: relative;
}

/* 全国     小标签 */
.tag-list {
    margin-top: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 30px;

}

#tagContainer {
    width: 820px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.tag-item {
    width: 160px;
    margin-right: 10px;
    display: flex;
}

.buttonCommon {
    width: 180px;
    height: 62px;
    text-align: center;
    line-height: 62px;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    z-index: 9;
}

.home-ljzc {
    background-image: url(/images/home/pink.png);
    margin-right: 50px;
}

.home-ljzc:hover {
    background-image: url(/images/home/blue.png);
    margin-right: 50px;
}

.home-qwgm {
    background-image: url(/images/home/blue.png);
}

.home-qwgm:hover {
    background-image: url(/images/home/pink.png);
}

.commonSty {
    width: 300px;
    height: 120px;
    border: 1px solid #e8e8e8;
    display: flex;
    padding: 10px;
    background-color: #fff;
    box-shadow: 1px 1px 1px 1px #d8d8d9;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    transform: scale(1);
    transform-origin: center center;
    backface-visibility: hidden;
    will-change: transform;
    z-index: 1;
}

.commonSty:hover {
    transform: scale(1.06);
    z-index: 10;
}

.commonSty .textCommon1 {
    font-size: 20px;
}

.commonSty .textCommon2 {
    color: #333333;
    font-size: 16px;
    text-align: left;
    font-weight: 400;
    margin-top: 10px;
}

.commonSty div:nth-child(2) {
    display: flex;
    flex-direction: column;
    margin-left: 5px;
}

.jianbianStyle {
    width: 54px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b9d, #ff8f6b);
    border-radius: 3px;
    margin-left: 5px;
    font-size: 12px;
    color: #fff;
    margin-top: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* 多种国外套餐 */
.VariousBox {
    width: 100%;
    height: 100%;
}

.VariousTop {
    text-align: center;
    padding-top: 66px;
}


.VariousTop {
    text-align: center;
}

/* 多种国外套餐   下面的列表 */
.VariousMain {
    width: 1200px;
    margin: 0 auto;
    /* border: 1px solid #000; */
    margin-top: 40px;
}

.Various-list {
    display: flex;
    justify-content: space-between;
}

.VariousComon {
    width: 290px;
    height: 680px;
    background: #4F7EFA;
    border-radius: 10px 0px 0px 10px;
}


.VariousComon2 {
    width: 290px;
    height: 680px;
    background: linear-gradient(48deg, #8800BF 0%, #D556FF 100%);
}

.VariousComon3 {
    width: 290px;
    height: 680px;
    background: #FFA105;
    border-radius: 0px 10px 10px 0px;
}

.VariousComon:hover {
    transform: translateY(-20px);
}

.VariousComon2:hover {
    transform: translateY(-20px);
}

.VariousComon3:hover {
    transform: translateY(-20px);
}

.vc-top {
    height: 375px;
    border-bottom: 1px solid #fff;
    padding: 52px 0px 0px 26px;
    text-align: left;
}

.vct-qwgm {
    padding: 15px 56px;
    background-color: #FFFFFF;
    border: 1px solid #fff;
    color: #000;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    margin-right: 27px;
    margin-top: 20px;
    font-weight: 400;
    cursor: pointer;
}

.vct-qwgm:hover {
    background: none;
    color: #fff;
    border: 1px solid #fff;
}

.vc-bottom {
    padding: 42px 0px 0px 33px;
    text-align: left;
    font-size: 16px;
}

.overseasProduct {
    width: 100%;
    height: 100%;
    /* height: 800px; */
    background-color: #fff;
    /* border: 1px solid #000; */
}

.overseasPTop {
    text-align: center;
    padding-top: 100px;
}

.overseasPTop div:last-child {
    width: 934px;
    margin: 0 auto;
    margin-top: 28px;
    color: #666666;
    text-align: left;
    font-size: 20px;
}

.overseasPBott {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.IP-Proxy {
    width: 100%;
    height: 100%;
    background-color: #f4f6fa;
    margin-top: 64px;
}


/* 动图 */
.procuct-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

/* 1. 静态实线轨道 - 绝对不动 */
.orbit-line {
    position: absolute;
    border: 1px solid #ccc;
    border-radius: 50%;
    /* z-index: 1; */
}

.line-1 {
    width: 220px;
    height: 220px;
}

.line-2 {
    width: 400px;
    height: 400px;
}

.line-3 {
    width: 580px;
    height: 580px;
}

/* 2. 中心文件夹 */
.center-folder {
    width: 110px;
    z-index: 10;
}

/* 3. 旋转逻辑：每个图标都有一个独立的“旋转外壳” */
.orbit-item {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 这个容器旋转，但因为它是圆形的，我们看不见它在转 */
    animation: rotate-parent linear infinite;
}

.orbit-item2 {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* 这个容器旋转，但因为它是圆形的，我们看不见它在转 */
    animation: rotate-parentPP linear infinite;
}

.icon-box {
    position: absolute;
    width: 74px;
    height: 74px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* 关键：抵消外壳的旋转，让图标保持正立 */
    animation: counter-rotate linear infinite;
    z-index: 9999;
}

.icon-box img {
    /* width: 74px;
    height: 74px; */
    object-fit: contain;
}

/* --- 动态设置图标在轨道上的位置 --- */

/* 内圈轨道 (半径 110px) */
.inner .icon-box {
    transform: translateY(-110px);
}

.inner {
    animation-duration: 20s;
}

/* 中圈轨道 (半径 200px) */
.mid .icon-box {
    transform: translateY(-200px);
}

.mid {
    animation-duration: 35s;
}

/* 外圈轨道 (半径 290px) */
.outer .icon-box {
    transform: translateY(-290px);
}

.outer {
    animation-duration: 50s;
}

/* 旋转动画 */
@keyframes rotate-parent {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 旋转动画 */
@keyframes rotate-parentPP {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* 反向旋转动画（保持Logo正立） */
@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* --- 设置图标在圆周上的初始分布角度 --- */
.pos-0 {
    animation-delay: 0s;
}

.pos-120 {
    animation-delay: -11.66s;
}

.pos-180 {
    animation-delay: -10s;
}

.pos-240 {
    animation-delay: -23.33s;
}

.pos-90 {
    animation-delay: -5s;
}

.pos-270 {
    animation-delay: -15s;
}

.pos-310 {
    animation-delay: -5s;
}

.pos-320 {
    animation-delay: -20s;
}

.pos-330 {
    animation-delay: -30s;
}

.pos-340 {
    animation-delay: -50s;
}

/* 动图 */

.countryContent {
    width: 100%;
    height: 920px;
    background-color: #00A0E9;
    margin-top: 78px;
    padding: 3px 0px;
}

.countryMain {
    width: 1492px;
    height: 100%;
    margin: 0 auto;
    background-image: url(/images/home/countryBg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.countryContain {
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding-top: 62px;
}

.countryFirstList {
    width: 840px;
    margin: 0 auto;
    margin-top: 44px;
    display: flex;
    justify-content: space-between;
}

.cf-itemCommon div:first-child {
    font-weight: bold;
    font-size: 48px;
    height: 51px;
    line-height: 51px;
    margin-bottom: 22px;
}

.countryLastList {
    width: 100%;
    text-align: left;
}

.cfll-itemCommon {
    width: 218px;
    height: 80px;
    background: #FFFFFF;
    border-radius: 10px;
    color: #000000;
    display: inline-block;
    margin-bottom: 36px;
    margin-right: 26px;
    cursor: pointer;
}

.countryLastList div:nth-child(5) {
    margin-right: 0px;
}

.countryLastList div:nth-child(10) {
    margin-right: 0px;
}

.countryLastList div:nth-child(15) {
    margin-right: 0px;
}

.countryLastList div:nth-child(16) {
    margin-bottom: 0px;
}

.multideviceCon {
    width: 100%;
    background-color: #fff;
}

.multideviceList {
    display: flex;
    margin-top: 62px;
    padding-left: 20px;
}

.md-itemCommon {
    width: 269px;
    height: 269px;
    background: #FAFAFA;
    border-radius: 10px;
    border: 1px solid rgba(113, 113, 113, 0.04);
    font-size: 20px;
    color: #666666;
    font-weight: 400;
    padding-top: 39px;
    padding-left: 23px;
    margin-right: 28px;


}

/* .mdic-left {
	opacity: 0;
	transform: translateX(-100%);
	transition: all 0.8s ease-out;
}
.md-itemCommon.active {
	opacity: 1;
	transform: translateX(0);
} */

.mdic-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s;
}

.mdic-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s;
}

.show-box {
    opacity: 1;
    transform: translateX(0);
}


/* 手风琴 */
.accordion-itemList {
    height: 100%;
    padding: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-headerL {
    color: #000;
    padding: 20px 0px;
    cursor: pointer;
    /* display: flex;
    justify-content: space-between; */
    transition: background 0.3s ease;
    border: 1px solid #BFBFBF;
    border-radius: 10px;
    padding: 20px;
}

.accordion-contentL {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #333333;
    font-size: 12px;
}

.accordion-active .accordion-contentL {
    max-height: 1000px;
}

/* 了解更多教程 */
.learnMore {
    width: 185px;
    height: 62px;
    line-height: 62px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    background: linear-gradient(0deg, #6BA1F3 0%, #4456E2 100%);
    border-radius: 10px;
    margin-top: 10px;
    cursor: pointer;
    margin-bottom: 74px;
}

.learnMore:hover {
    transform: scale(1.1);
}

/* 了解更多 */
.learnMoreCommon {
    width: 157px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 2px solid #5B42B7;
    line-height: 50px;
    text-align: center;
    margin-top: 35px;
    color: #666666;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
}

.lmc1 {
    position: relative;
    z-index: 1;
    border: 1px solid #BE63F9;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 10px;
}

.lmc1::before {
    margin: 0 auto;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    border-radius: 23px;
    background-color: #5e87eb;
    background-image: linear-gradient(-135deg, #611bdd 0%, #5e87eb 100%);
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
}

.lmc1:hover::before {
    right: 0;
}

.lmc1:hover {
    color: #fff;
}


.lmc2 {
    margin: 0 auto;
    margin-top: 35px;
    position: relative;
    z-index: 1;
    border: 1px solid #BE63F9;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 10px;
}

.lmc2::before {
    margin: 0 auto;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    border-radius: 23px;
    background-color: #5e87eb;
    background-image: linear-gradient(-135deg, #611bdd 0%, #5e87eb 100%);
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
}

.lmc2:hover::before {
    right: 0;
}

.lmc2:hover {
    color: #fff;
}


.lmc3 {
    margin: 0 auto;
    margin-top: 35px;
    position: relative;
    z-index: 1;
    border: 1px solid #BE63F9;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 10px;
}

.lmc3::before {
    margin: 0 auto;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    border-radius: 23px;
    background-color: #5e87eb;
    background-image: linear-gradient(-135deg, #611bdd 0%, #5e87eb 100%);
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
}

.lmc3:hover::before {
    right: 0;
}

.lmc3:hover {
    color: #fff;
}

/* 评价 */
.evaluateContain {
    width: 100%;
    height: 800px;
    background-color: #F7F8F9;
}

.evaluateMain {
    padding-top: 67px;
}

/* 开发者 */
.developerContain {
    width: 100%;
    height: 800px;
    background-color: #fff;
}

.developerMain {
    padding-top: 70px;
}

.developerList {
    width: 100%;
    margin: 0 auto;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    padding: 30px;
}

.developeritem {
    font-weight: 400;
    font-size: 30px;
    color: #1293EF;
    text-align: center;
    position: relative;
}

.developerBottom {
    width: 100%;
    margin-top: 82px;
}

.db-itemCommon {
    margin-bottom: 56px;
}

/* 首页部分样式 */


/* 产品购买   动态IP  内页 */
.procuct1 {
    width: 100%;
    height: 750px;
    background-image: url(/images/product/bg1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.procuct-commonWhith {
    width: 1200px;
    /*width: 1440px;*/
    height: 100%;
    margin: 0 auto;
}

.procuct1-Main {
    /* border: 1px solid #fff; */
    color: #fff;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}

.procuct1-MainL {
    margin-top: 128px;
}

.pm-bg {
    width: 127px;
    height: 36px;
    line-height: 36px;
    background: linear-gradient(0deg, #E10019 0%, #4F0060 100%);
    text-align: center;
    margin-left: 60px;
    cursor: pointer;
}

.imgCommon {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.sun-icon {
    width: 66px;
    height: 67px;
    background: url('/images/product/sun.png') no-repeat center;
    background-size: cover;
    margin-left: 24px;
    transition: transform 1s ease-in-out;
    /* 过渡动画优化 */
}

@keyframes shake {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(20px);
    }

    75% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.shakeImage {
    /* cursor: pointer; */
}

.pm-common {
    width: 181px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    border-radius: 28px;
    cursor: pointer;
}

.pm-gm {
    background: linear-gradient(162deg, #3092FC 0%, #3221FA 100%);
}

.pm-qy {
    border: 1px solid #FFFFFF;
    margin-left: 62px;
}

/* 2 */
.procuct2 {
    width: 100%;
    height: 1300px;
    background-color: #fff;
}

.procuct2-mainT {
    text-align: center;
    margin-top: 55px;
}

.pm2-list {
    margin-top: 20px;
    font-size: 16px;
    width: 80%;
    margin: 0 auto;
    margin-top: 30px;
}

.pm2-item {
    margin-right: 20px;
}

.pm2-item:last-child {
    margin-right: 0px;
}

.pm2-image {
    width: 26px;
    height: 26px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 7px;
}

.pm2-text {
    vertical-align: middle;
    display: inline-block;
}

.procuct2-mainB {
    width: 100%;
    height: 100%;
    /* border: 1px solid #000; */
}

.product-goumaiBox {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99;
    display: none;
}

.product-goumai {
    width: 520px;
    height: 760px;
    position: fixed;
    left: 36%;
    top: 150px;
    background-color: #fff;
    /* opacity: .8; */
    border-radius: 20px;
    vertical-align: middle;
    padding-top: 20px;
    z-index: 100;
    border: 1px solid #b9b9b9;
    overflow: scroll;
    padding: 20px;
}

.product-goumai::-webkit-scrollbar {
    display: none !important;
}

/* 支付方式 */
.zffs-list img {
    margin-top: 16px;
    margin-left: 14px;
    margin-right: 10px;
}

.zffs-common1 {
    width: 154px;
    height: 50px;
    background-image: url(/images/product/ff3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    box-sizing: border-box;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    font-size: 12px;
}

.zffs-common {
    width: 154px;
    height: 50px;
    background-image: url(/images/product/ff2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    box-sizing: border-box;
    margin-right: 10px;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    font-size: 12px;
}

/* 支付方式 */


.itemCommon {
    width: 370px;
    height: 530px;
    border: 1px solid #e6e6e6;
    display: inline-block;
    margin-right: 31px;
    margin-top: 31px;
    text-align: center;
    border-radius: 18px;
    /* box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.5); */
    font-size: 16px;
    color: #666666;
    /* 默认状态下的过渡效果 */
    transition: transform 0.3s ease;
}

.itemCommon:hover {
    transform: translateY(-15px);
    box-shadow: 10px 10px 5px rgba(170, 170, 170, 0.5);
}

.itemCommon:nth-child(3n) {
    margin-right: 0px;
}

.itemCommon div:nth-child(2) {
    font-size: 24px;
    color: #000000;
}

.itemCommon div:nth-child(3) {
    margin-top: 16px;
}

.itemCommon div:nth-child(4) {
    margin-top: 16px;
    font-size: 24px;
    color: #000000;
}

.itemCommon div:nth-child(5) {
    margin-top: 19px;
}

.itemCommon div:nth-child(6) {
    margin-top: 10px;
}

.itemCommon div:nth-child(7) {
    margin-top: 10px;
}

.itemCommon div:nth-child(8) {
    margin-top: 10px;
}

.itemCommon div:nth-child(9) {
    margin-top: 10px;
}

.itemCommon div:nth-child(10) {
    margin-top: 10px;
}

.itemCommon div:nth-child(11) {
    margin-top: 10px;
    font-size: 34px;
}

/* .itemCommon div:nth-child(12) {
	width: 278px;
	height: 46px;
	line-height: 46px;
	border: 2px solid #BE63F9;
	border-radius: 23px;
	margin: 0 auto;
	margin-top: 10px;
	cursor: pointer;
	transition: 0.4s;
} */
.itemCommon div:nth-child(12) {
    width: 278px;
    height: 46px;
    line-height: 46px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    color: #505060;
    font-size: 16px;
    font-weight: 600;
    display: block;
    background-color: #ffffff;
    border-radius: 23px;
    /* border-left: 2px solid #5e87eb; */
    border: 1px solid #BE63F9;
    -webkit-box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    box-shadow: -1px 3px 20px 0px rgb(82, 90, 101, 0.1);
    overflow: hidden;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    margin-top: 10px;
    cursor: pointer;
}

.itemCommon div:nth-child(12)::before {
    margin: 0 auto;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 100%;
    bottom: 0;
    border-radius: 23px;
    background-color: #5e87eb;
    background-image: linear-gradient(-135deg, #611bdd 0%, #5e87eb 100%);
    z-index: -1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #fff;
}

.itemCommon div:nth-child(12):hover::before {
    right: 0;
}

.itemCommon div:nth-child(12):hover {
    color: #fff;
}

.itemCommon span {
    font-size: 34px;
}

.topBgc {
    width: 100%;
    height: 10px;
    /* background-color: #FF2A00; */
    border-radius: 10px 10px 0px 0px;
    margin-bottom: 35px;
}

/* 3 */
.procuct3 {
    width: 100%;
    height: 1000px;
    background-image: url(/images/product/bg2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-sizing: border-box;
}

.procuct3-main {
    /* border: 1px solid #000; */
}

.procuct3-mainT {
    text-align: center;
    padding-top: 116px;
}


.procuct3-mainB {
    width: 100%;
    position: relative;
    /* border: 1px solid #f5f7f9; */
}

.pm3-img {
    width: 412px;
    height: 367px;
    margin: 0 auto;
    background-image: url(/images/product/bg3.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 200px;
}

.pm3-list1 {
    position: absolute;
    left: 40px;
    top: -100px;
    width: 1138px;
    height: 133px;
    display: flex;
    justify-content: space-between;
}

.pm3-list2 {
    position: absolute;
    left: 0px;
    top: 100px;
    width: 1200px;
    height: 133px;
    display: flex;
    justify-content: space-between;
}

.pm3-list3 {
    position: absolute;
    left: 30px;
    top: 300px;
    width: 1138px;
    height: 133px;
    display: flex;
    justify-content: space-between;
}

.pm3-common {
    width: 368px;
    height: 134px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border: 1px dashed #888888; */
    display: flex;
    transition: transform 0.3s ease;
    /* 平滑过渡效果 */
    /* 使用transform-style: preserve-3d 避免抖动 */
    transform-style: preserve-3d;
    /* 添加will-change属性优化性能 */
    will-change: transform;
}

.pm3List1:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3List2:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3List3:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3List4:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3List5:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3List6:hover {
    transform: scale(1.1);
    -webkit-font-smoothing: antialiased;
}

.pm3-common img {
    margin-right: 10px;
}

.pm3-common .pm3ListItemC {
    font-size: 18px;
    font-family: '微软雅黑';
    margin-top: 23px;
    margin-left: 10px;
    /* 确保文字不被缩放 */
    transform: scale(1);
    /* 添加防抖动的定位 */
    /* position: relative; */
}

.pm3-common .pm3ListItemC div:nth-child(2) {
    font-size: 12px;
    width: 265px;
    height: 57px;
    color: #555555;
    margin-top: 14px;
}

.pm3List1 {
    background-image: url(/images/product/bg8.png);
}

.pm3List2 {
    background-image: url(/images/product/bg7.png);
}

.pm3List3 {
    background-image: url(/images/product/bg9.png);
}

.pm3List4 {
    background-image: url(/images/product/bg10.png);
}

.pm3List5 {
    background-image: url(/images/product/bg5.png);
}

.pm3List6 {
    background-image: url(/images/product/bg6.png);
}


/* 4 */
.procuct4 {
    width: 100%;
    /* height: 100%; */
    height: 900px;
    background-color: #fff;
    padding-top: 120px;
}

.procuct4-mainT {
    display: flex;
    justify-content: space-between;
    /* border: 1px solid #000; */
}

.procuct4-mainL {
    width: 858px;
}

.p4m-buynow {
    width: 166px;
    height: 54px;
    line-height: 54px;
    color: #fff;
    text-align: center;
    font-size: 26px;
    background: linear-gradient(162deg, #3092FC 0%, #3221FA 100%);
    border-radius: 28px;
    box-shadow: 0 4px 8px #3092FC;
    cursor: pointer;
    margin-top: 5px;
}


.procuct4-mainR {
    margin-top: 28px;
}


.procuct4-mainB {
    position: absolute;
    left: 0%;
    bottom: -120px;
}

.p4m-common {
    width: 276px;
    height: 268px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 8px 10px 8px 8px rgba(0, 0, 0, 0.13);
    margin-right: 34px;
    font-size: 20px;
    padding: 22px 16px 32px 18px;
}

.p4m-common:last-child {
    margin-right: 0px;
}

.p4m-common p {
    color: #555;
    font-size: 14px;
    margin-top: 26px;
}


/* 5 */
.procuct5 {
    width: 100%;
    height: 1350px;
    background-color: #F6F7FF;
    padding-top: 320px;
}

.procuct5-mainT p {
    margin-top: 44px;
}

.procuct5-mainB {
    display: flex;
    border: 1px solid #000;
    margin-top: 60px;
}

.pm5-list {
    width: 274px;
    height: 54px;
    background-color: #fff;
    display: flex;
    padding: 18px;
    color: #3E4D68;
    font-size: 16px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.p5m-List {}

.p5m-common {
    display: flex;
}

.p5m-common div:last-child {
    margin-right: 0px;
}

.p5m-commonIn {
    width: 138px;
    height: 30px;
    line-height: 30px;
    background-color: #fff;
    margin-right: 24px;
    border-radius: 6px;
    display: flex;
    font-size: 12px;
    color: #101F38;
}


/* 产品购买   动态IP  内页 */


/* 底部的样式 */
.footerBox {
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}

.footerMainT {
    text-align: center;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding-top: 70px;
    z-index: 99;
    overflow: hidden
}

/* 最下面的 */
.footerBB {
    position: relative;
    margin-top: auto;
    width: 100%;
    overflow: hidden;
}

.footerMainB {
    width: 100%;
    height: 100%;
    /* position: absolute;
    left: 0%;
    top: 50%; */
    background-color: #1B1F2F;
    color: #FFFFFF;
}

.footerMainBIn {
    width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 40px;
}

.fmB-common {
    width: 194px;
    height: 62px;
    line-height: 62px;
    border-radius: 30px;
    border: 1px solid #FFFFFF;
}

.ljzc {
    background: #FFFFFF;
    color: #0097EE;
    margin-right: 70px;
    cursor: pointer;
}

.lxjl {
    color: #fff;
    color: #0097EE;
    cursor: pointer;
}

.footerMainBCenter {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    margin-top: 60px;
}

.listStyle {
    width: 662px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.listCommon a {
    text-decoration: none;
    color: #fff;

}

.listCommon div:nth-child(n+1) {
    margin-top: 10px;
}

.footerMainBottom {
    width: 980px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-top: 42px;
    font-size: 16px;
}

.footerMainBottom a {
    text-decoration: none;
    color: #fff;
}


.fbList-contain {
    text-align: left;
    padding-left: 40px;
}

.fbList-Item {
    display: inline-block;
    margin-bottom: 10px;
    cursor: pointer;
    width: 500px;
}

.fbList-Item:nth-child(2n) {
    margin-left: 80px;
}

.fbList-Right {}

.fbList-RightItem {
    text-align: left;
    width: 560px;
    padding: 26px 0px;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #B7B7B7;
}

.myclickP {
    display: block;
}

.activeA {
    display: block;
}

.inactiveU {
    display: none;
}


/*  */
.accordion-item {
    /* width: 560px; */
    height: 100%;
    padding: 5px;
    transition: all 0.3s ease;
    overflow: hidden;
    border-top: 1px solid #B7B7B7;
}

.accordion-header {
    color: #000;
    padding: 20px 0px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s ease;
}

.accordion-content {
    max-height: 0;
    width: 100%;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #333333;
    font-size: 12px;
}

.accordion-active .accordion-content {
    max-height: 1000px;
}

.accordion-active .accordion-icon {
    transform: rotate(180deg);
    transform-origin: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-image {
    transition: transform 0.3s ease;
    border-radius: 0.375rem;
}

.accordion-image:hover {
    transform: scale(1.02);
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*  */

/* 底部的样式 */


/* 右侧固定的 */
.fixedRightBox {
    width: 100px;
    height: 400px;
    position: fixed;
    right: 50px;
    top: 30%;
    background-color: #fff;
    /* opacity: .8; */
    border-radius: 50px;
    text-align: center;
    vertical-align: middle;
    padding-top: 20px;
    z-index: 100;
    font-size: 12px;
}

.fixedRightItem {
    margin-top: 10px;
    margin-bottom: 30px;

    position: relative;
}

.ewmLeft {
    position: absolute;
    left: -160px;
    top: 0%;
    display: none;
    animation: fadeInPP 1s forwards;
}

@keyframes fadeInPP {
    from {
        opacity: 0;
        transform: translateY(20px);
        /* 加上一点位移效果更生动 */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ewmWxLeft {
    position: absolute;
    left: -160px;
    top: 0%;
    display: none;
    animation: fadeInPP 1s forwards;
}

.ewmDLeft {
    width: 200px;
    height: 60px;
    line-height: 60px;
    background-color: #e6e6e6;
    position: absolute;
    left: -220px;
    top: 0%;
    display: none;
    font-size: 16px;
    animation: fadeInPP 1s forwards;
}

.ewmKFLeft {
    width: 200px;
    height: 130px;
    line-height: 60px;
    background-color: #e6e6e6;
    position: absolute;
    left: -220px;
    top: 0%;
    display: none;
    font-size: 16px;
    animation: fadeInPP 1s forwards;
}


/* 常见问题  */
.footerMainT .xwcjBox {
    border: 1px solid #C5C9D3;
    width: 308px;
    height: 45px;
    margin: 0 auto;
    padding: 5px;
    border-radius: 10px;
    margin-top: 44px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.footerMainT .xwdt {
    width: 150px;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    margin-right: 5px;
    color: #1B2F61;
    cursor: pointer;
}

.footerMainT .cjwt {
    width: 150px;
    height: 36px;
    line-height: 36px;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
}

/* 常见问题  */


.grid-container {
    position: relative;
    background: #fff;
    width: 1200px !important;
    height: 100%;
}

.grid-bg {
    position: absolute;
    inset: 0;
    display: grid;
    z-index: 1;
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 85%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 85%);
}

.grid-bg div {
    border: 0.5px solid transparent;
}

#pulseCanvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}


/* 首页  鼠标跟随效果 */
:root {
    --bg-white: #ffffff;
    --brand-blue: rgba(0, 113, 227, 0.18);
    --brand-cyan: rgba(0, 255, 242, 0.15);
    --tech-line: rgba(0, 113, 227, 0.15);
    --text-main: #1d1d1f;
}

.banner-wrapper {
    position: relative;
    width: 100%;
    /* height: 818px; */
    background-color: var(--bg-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

/* 渐变底色 */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 1; */
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    /* z-index: -1; */
    transition: all 0.8s ease;
    /* 增加平滑过渡 */
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--brand-blue);
    position: absolute;
    top: -150px;
    left: -100px;
    border: 1px solid #000;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--brand-cyan);
    position: absolute;
    bottom: -100px;
    right: -50px;
    border: 1px solid #000;
}

/* 基础网格纹理 */
.tech-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--tech-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--tech-line) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
    opacity: 0.25;
    /* z-index: 2; */
}

/* 鼠标高亮聚光灯 */
.mouse-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    /* z-index: 2; */
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.banner-wrapper:hover .mouse-glow {
    opacity: 1;
}

canvas#techCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 3; */
    pointer-events: none;
}

/* 首页  鼠标跟随效果 */


/* 联系经理  动效 */
.lxjlppppp {
    animation: fadeInPP 1s forwards;
}

#kefuStyle {
    width: 164px;
    height: 44px;
    background: #14C4F0;
    border-radius: 17px;
    font-weight: 300;
    font-size: 16px;
    color: #FFFFFF;
    text-align: center;
    line-height: 44px;
    cursor: pointer;
}


#ljText {
    line-height: 20px;
    align-items: center;
    display: flex;
}

#ljText a {
    display: flex;
    align-items: center;
    margin-right: 10px;
}