/* 全局可维护缩放因子（替代 zoom/transform），0.8 等效原页面缩放 80% */
:root {
    --scale: 0.8;
}

body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

.bodyBox {
    background: url(../img/tch.png) no-repeat;
    background-size: cover; /* 背景保持等比填充，不受缩放因子影响 */
}

.box {
    min-width: calc(1300px * var(--scale));
    min-height: calc(1100px * var(--scale));
    position: relative;
}

#header {
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
}

.hea_box {
    margin-left: calc(360px * var(--scale));
    display: flex;
    align-items: center;
    height: calc(40px * var(--scale));
}

.hea_box img {
    width: calc(20px * var(--scale));
    margin-right: calc(50px * var(--scale));
}

.infor {
    position: absolute;
    top: 4%;
    right: 17%;
    background-color: #ffffff;
    width: calc(650px * var(--scale)); /* 主卡片宽度随缩放因子调整 */
    border-radius: 10px;
}

.but {
    display: flex;
    justify-content: center;
    padding: calc(20px * var(--scale)) calc(60px * var(--scale));
}

.but button {
    margin-left: calc(20px * var(--scale));
    width: calc(200px * var(--scale));
    height: calc(45px * var(--scale));
    border-radius: 6px;
    font-size: calc(18px * var(--scale));
    font-weight: 400;
    cursor: pointer;
    border: none;
    font-family: Microsoft YaHei;
    color: rgba(128, 128, 128, 1);
}

.cur {
    margin-left: calc(20px * var(--scale));
    width: calc(200px * var(--scale));
    height: calc(45px * var(--scale));
    border-radius: 6px;
    font-size: calc(18px * var(--scale));
    font-weight: bold;
    background: rgba(54, 158, 255, 1);
    color: rgba(255, 255, 255, 1) !important;
    cursor: pointer;
    border: none;
}

.input li {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(14px * var(--scale));
    margin: calc(20px * var(--scale)) 0;
}

.input span {
    display: block;
    width: calc(120px * var(--scale));
    text-align: right;
    margin-right: calc(10px * var(--scale));
    font-size: calc(18px * var(--scale));
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: rgba(50, 50, 50, 1);
}

.input input {
    width: calc(350px * var(--scale));
    height: calc(60px * var(--scale));
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    padding-left: calc(20px * var(--scale));
    font-size: calc(18px * var(--scale));
}

.input select {
    width: calc(350px * var(--scale));
    height: calc(60px * var(--scale));
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    padding-left: calc(20px * var(--scale));
    font-size: calc(18px * var(--scale));
}

.age {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: calc(20px * var(--scale)) auto 0;
}

.age span {
    font-size: calc(12px * var(--scale));
    color: #808080;
}

.age div img {
    width: calc(16px * var(--scale));
}

.age div {
    display: flex;
    align-items: center;
    margin-right: calc(5px * var(--scale));
    position: relative;
}

#ageSu {
    position: absolute;
    left: 0;
    display: none;
    top: 0;
}

#sure {
    display: flex;
    justify-content: center;
    width: calc(426px * var(--scale));
    height: calc(75px * var(--scale));
    background: rgba(54, 158, 255, 1);
    box-shadow: 0px 3px 9px 0px rgba(76, 135, 224, 0.4);
    border-radius: calc(38px * var(--scale));
    border: none;
    font-size: calc(24px * var(--scale));
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    text-align: center;
    line-height: calc(75px * var(--scale));
    margin: calc(20px * var(--scale)) auto;
}

.h3 {
    font-size: calc(24px * var(--scale));
    font-weight: bold;
    color: rgba(38, 38, 38, 1);
}

.fot {
    display: flex;
    justify-content: space-between;
    width: calc(350px * var(--scale));
}

.codetxt {
    width: calc(200px * var(--scale));
    height: calc(60px * var(--scale));
    background: rgba(250, 250, 250, 1);
    border: 1px solid rgba(204, 204, 204, 1);
    border-radius: 4px;
    padding-left: calc(20px * var(--scale));
}

.tel_code {
    width: calc(160px * var(--scale)); /* 160px 保证按钮文字不截断 */
    height: calc(60px * var(--scale));
    background: rgba(242, 249, 255, 1);
    border: 1px solid rgba(54, 158, 255, 1);
    border-radius: 4px;
    cursor: pointer;
    line-height: calc(60px * var(--scale));
    text-align: center;
    font-size: calc(16px * var(--scale));
    font-family: Microsoft YaHei;
    font-weight: bold;
    color: rgba(54, 158, 255, 1);
    margin-left: calc(10px * var(--scale));
}



      #isshwo2 {
        display: none;
      }

      /* 验证码按钮防截断 */
      .tel_code {
        width: calc(160px * var(--scale));
        white-space: nowrap;
        font-size: calc(16px * var(--scale));
      }
