html {
    font-size: 16px;
}

body {
    margin: auto;
    display: flex;
    flex-direction: column;
    font-family: "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
    min-height: 100vh;
    cursor: default;
    width: auto;
    box-sizing: border-box;
    background-color: #f4f5f7;
}

/*主体内容*/
.main-content {
    display: flex;
    flex-direction: column;
    width: 800px;
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
}

/*********金算盘吸顶导航栏*************/
.jinsuanpan_xiding {
    padding: 5px 0px 10px;
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #e4e3e3;
    border-radius: 0 0 10px 10px;
}

.jinsuanpan_xidingA {
    padding: 0px 12px 0px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.jiansuanpan_yumingA {
    display: flex;
    align-items: center;
    font-weight: 700;
}

/* 左侧域名 hk68686 */
.AAAAA {
    font-size: 44px;
    color: #ff0050;
}

/* 中间绿色圆形 8 */
.BBBBB {
    font-size: 44px;
}

.jiansuanpan_yuming_text {
    display: flex;
    flex-direction: column;
    /* 上下两行 */
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 6px;
}

.CCCCC,
.DDDDD {
    margin: 0;
    line-height: 1;
}

.DDDDD {
    margin-top: -2px;
    /* 稍微往上挤一点，可按效果再调 */
    font-size: 24px;

}

.CCCCC {
    font-size: 14px;
    padding: 1px;
    background-color: #00a53a;
    color: #ffffff;
}

/* 右侧 内幕资料 按钮 */
.EEEEE {
    background-color: #00a53a;
    color: #ffffff;
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    animation: eee-pulse 1s ease-in-out infinite;
    transform-origin: center;
    cursor: pointer;
}

@keyframes eee-pulse {
    0% {
        transform: scale(1);
    }

    35% {
        transform: scale(1.08);
    }

    70% {
        transform: scale(0.96);
    }

    100% {
        transform: scale(1);
    }
}

.jinsuanpan_xidingB {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    padding: 0px 12px 0px 12px;
}

.jinsuanpan_xidingB>div {
    flex: 1;
    height: 35px;
    border-radius: 40px;
    background: linear-gradient(to bottom, #3ad2ff, #ffd64a);
    display: flex;
    align-items: center;
    justify-content: center;
    /* 中间对齐 */
    padding: 0 40px 0 18px;
    /* 右边多留点给箭头 */
    position: relative;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

.icon-hand {
    margin-right: 2px;
}

.icon-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}


.jinsuanpan_kaijiang {
    width: 100%;
    height: 80px;
    background-color: #ffd64a;
}

/********金算盘导航栏下面的图片*****************/
.jinsuanpan_tupian {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.jinsuanpan_tupian img {
    max-width: 100%;
    height: auto;
    display: block;
}

/*******后端输入的第一块内容*************/
.houduanshuru1 {
    padding: 20px;
    text-align: center;
    background-color: #333333;
}

.houduanshuru1 p {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: bold;
    color: #c4c2c2;
}

.content2 {
    display: flex;
    flex-direction: column;
    width: 800px;
    gap: 10px;
    margin: 0 auto;
    height: auto;
    background-color: #ffffff;
}