body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.main img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    div {
        max-width: 600px;
        margin: 0 auto;
    }
}

.icp {
    color: gray;
    margin: 5px 0 0 5px;
    font-size: 12px;
}

.submit-btn {
    background: rgba(213, 7, 0, 1);
    padding: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: rgba(255, 255, 255, 1);
    font-size: 1.06667rem;
}

.submit-form {
    width: 95%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.submit-form input[type="text"] {
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.submit-form label {
    color: rgba(102, 102, 102, 1);
    font-size: 0.85rem;
    margin-bottom: -5px;
}

.bottom-btn {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: 999;
}

.talk {
    background-color: #eeeeee;
    padding: 10px 0 130px 0;
    min-height: 80vh;
    overflow-y: auto;
}

.line {
    margin: 5px 10px 0 10px;
    overflow: auto;
}

.left {
    float: left;
    max-width: 80%;
    margin: 10px 0 0 0;
}

.left img {
    float: left;
    margin: 0 5px 0 0;
    border-radius: 50%
}

.left div {
    position: relative;
    margin: 0 0 0 55px;
    padding: 10px;
    background: #FFF;
    color: #323232;
    border-radius: 6px;
    line-height: 22px;
}

.left div i {
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-right: 8px solid #FFF;
    border-bottom: 6px solid transparent;
}

.left div img {
    float: none;
}

.right {
    float: right;
    max-width: 80%;
    margin: 10px 0 0 0;
}

.right img {
    float: right;
    margin: 0 0 0 5px;
    border-radius: 50%
}

.right div {
    position: relative;
    min-height: 24px;
    margin: 0 55px 0 0;
    padding: 10px;
    background: #A0E75A;
    color: #333;
    border-radius: 6px;
}

.right div i {
    position: absolute;
    top: 15px;
    right: -8px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-left: 8px solid #A0E75A;
    border-bottom: 6px solid transparent;
}

.select_botton {
    position: fixed;
    bottom: 40px;
    width: 100%;
    max-width: 640px;
    z-index: 100;
    padding: 14px 6px 0px 6px;
    box-sizing: border-box;
    font-size: 0;
    text-align: center;
}

.select_botton a {
    display: inline-block;
    padding: 5px 0;
    background-color: red;
    color: #fff;
    font-size: 22px;
    border-radius: 6px;
    margin-bottom: 6px;
    width: 45%;
    text-align: center;
    margin: 1%;
    text-decoration: none;
}

.wechatBut {
    position: fixed;
    bottom: 38px;
    width: 100%;
    max-width: 640px;
    z-index: 100;
    padding: 14px 6px 0px 6px;
    box-sizing: border-box;
    font-size: 0;
    text-align: center;
}

.wechatBut a {
    display: block; /* 改为block以占满宽度 */
    padding: 15px 0; /* 增加内边距使按钮更大 */
    background-color: #ff0000; /* 红色背景 */
    color: #ffffff; /* 白色文字 */
    font-size: 22px; /* 加大字体 */
    font-weight: bold; /* 加粗字体 */
    border-radius: 0; /* 移除圆弧，改为直角 */
    margin-bottom: 6px;
    width: 100%; /* 宽度占满容器 */
    text-align: center;
    margin: 2% auto; /* 居中显示 */
    text-decoration: none;
    line-height: 1.5; /* 调整行高 */
}

/* 放大缩小动画 */
@keyframes templateEnlargeShrink-data-v-d0fd5884 {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05); /* 稍微放大 */
    }
    100% {
        transform: scale(1);
    }
}

.wechatBut a {
    animation: templateEnlargeShrink-data-v-d0fd5884 3s infinite;
    -webkit-animation: templateEnlargeShrink-data-v-d0fd5884 3s infinite;
    -o-animation: templateEnlargeShrink-data-v-d0fd5884 3s infinite;
    overflow: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}
