
.page-wrapper {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    /* 页面正常滑动 */
    overflow-x: hidden;
    /* 不出现横向滚动条 */
}

.container {
    width: 1920px;
    height: 100%;
    transform-origin: top left;
    box-sizing: border-box;
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    cursor: pointer;
    transition: background .3s;
}

.indicator.activeInd {
    background: rgba(255, 255, 255, .9);
}

/* 登录框 */
.login-box {
    padding: 20px 20px 40px 20px;
    position: absolute;
    right: 180px;
    top: 80px;
    width: 440px;
    /* height: 320px; */
    background: #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.login-title {
    margin-top: 20px;
    font-weight: bold;
    font-size: 24px;
    color: #333;
}

.phone-input-wrapper {
    position: relative;
    margin-top: 40px;
    display: flex;
    align-items: center;
    width: 360px;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 2px;
    /* overflow: hidden; */
}

.password {
    margin-top: 40px;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 360px;
    border-radius: 2px;
}

.phone-error {
    display: none;
    position: absolute;
    left: 80px;
    bottom: -28px;
    font-size: 12px;
    color: red;
    transition: all 0.4s ease;
}

.select-wrapper {
    position: relative;
    width: 80px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow {
    margin-left: 10px;
    border: solid #666;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    transition: transform 0.2s;
}

.arrow.open {
    transform: rotate(-135deg);
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.2s ease;
    z-index: 10;
}

.options.show {
    transform: scaleY(1);
}

.options div {
    padding: 10px 10px;
    cursor: pointer;
}

.options div:hover {
    background-color: #f0f0f0;
}

.login-input {
    width: 360px;
    height: 44px;
    flex: 1;
    border: none;
    padding: 0 10px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #ddd;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.4s ease;
}

.password-input {
    margin-bottom: 20px;
    width: 360px;
    height: 44px;
    border: none;
    padding: 0 10px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #ddd;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.4s ease;
}

.password-input-box1 {
    position: relative;
}

.password-error {
    display: none;
    position: absolute;
    left: 10px;
    bottom: -10px;
    font-size: 12px;
    color: red;
    transition: all 0.4s ease;
}



/* 验证码 */
.code-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 44px;
    width: 360px;
}

.code-phone {
    margin-right: 10px;
    color: #666666;
}

.code-input {
    width: 100px;
    height: 44px;
    border: none;
    padding: 0 10px;
    outline: none;
    border-radius: 2px;
    border: 1px solid #ddd;
    padding-left: 10px;
    box-sizing: border-box;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.4s ease;
}

.code-btn {
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 44px;
    background: #0A71E4;
    border-radius: 2px;
    border: 0;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-btn:hover {
    background-color: #4e8fd8;
}

.login-btn {
    margin-top: 20px;
    width: 360px;
    height: 44px;
    background: #0A71E4;
    border-radius: 2px;
    border: 0;
    font-size: 16px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #4e8fd8;
}

.login-check {
    display: flex;
    align-items: flex-start;
    margin-top: 18px;
    width: 360px;
    font-size: 14px;
    color: #333;
}

.login-check input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.contact {
    color: #1e7be6;
    cursor: pointer;
}

/* 主体内容 */
.main-container {
    padding: 0 360px;
}

.model-introl-right {
    width: 347px;
    height: 427px;
}

.main-title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-top: 150px;
}

.main-title1 {
    font-size: 48px;
    color: #0A71E4;
    opacity: 0.1;
}

.main-title2 {
    position: absolute;
    bottom: -20%;
    font-weight: bold;
    font-size: 36px;
    color: #333;
}

.main-title2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) scaleY(0.35);
    /* 缩扁光晕，让其成为“水平光线” */
    width: 200px;
    height: 12px;
    background: radial-gradient(ellipse at center,
    #035ec7 0%,
    rgba(13, 115, 228, 0.4) 40%,
    rgba(13, 115, 228, 0) 100%);
    filter: blur(3px);
}

.model-introl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}

.model-introl-left {
    display: flex;
    flex-direction: column;
}

.model-introl-title {
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.model-introl-msg {
    margin-top: 15px;
    width: 545px;
    font-size: 14px;
    color: #666;
}

.model-introl-btn {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 40px;
    background: #0A71E4;
    border-radius: 2px;
    font-size: 16px;
    color: #fff;
    border: 0;
    cursor: pointer;
}

.model-introl-btn-icon {
    margin-left: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.model-introl-iconG {
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.model-introl-icon {
    margin-right: 30px;
    width: 48px;
    height: 48px;
}

.model-bottom {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.model-card {
    padding: 0 30px;
    width: 280px;
    height: 280px;
    background: #fff;
    box-shadow: 0px 0px 10px rgba(153, 153, 153, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-sizing: border-box;
}

.model-card:hover {
    box-shadow: 0px 8px 20px rgba(153, 153, 153, 0.35);
    transform: translateY(-5px);
}

.model-card-img {
    margin-top: 47px;
    width: 66px;
    height: 66px;
}

.model-card-title {
    margin-top: 30px;
    font-weight: bold;
    font-size: 20px;
    color: #333;
}

.model-card-bottom {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.model-card-msg {
    font-size: 14px;
    color: #666;
}

/* 业务中心 */
.business-box {
    margin-top: 150px;
}

.business-introl {
    position: relative;
    margin-top: 75px;
    display: flex;
}

.business-introl-img {
    width: 588px;
    height: 492px;
}

.business-middle {
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-57%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 2px solid #0A71E4;
    z-index: -1;
}

.business-middle-round1 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    border: 2px solid rgba(10, 113, 228, 0.6);
}

.business-middle-round2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 2px solid rgba(10, 113, 228, 0.4);
}

.business-middle-img {
    width: 128px;
    height: 90px;
}

.business-right {
    margin-left: 35px;
}

.business-right-card {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 462px;
    height: 110px;
    transition: all 0.4s ease;
}

.business-right-card.activeBus {
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.2);
    border-radius: 10px;
}

.business-right-card:nth-child(2),
.business-right-card:nth-child(3) {
    margin-left: 100px;
}

.business-right-imgBox {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #0A71E4;
}

.business-right-img {
    width: 26px;
    height: 26px;
}

.business-right-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}

.business-right-msg {
    margin-top: 13px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.MA-box {
    margin-top: 75px;
    position: relative;
    display: flex;
    align-items: center;
    height: 660px;
}

.MA-left {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 840px;
    height: 520px;
    background: rgba(255, 255, 255, 0.9);
    /* 带透明度的白色背景 */
    box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.2);
    border-radius: 10px;
}

.MA-left-card {
    display: flex;
    align-items: center;
    width: 840px;
    height: 130px;
    transition: all 0.5s ease;
}

.MA-left-card.activeMa {
    background: linear-gradient(90deg,
    rgba(10, 113, 228, 0.1) 0%,
    rgba(10, 113, 228, 0.1) 100%);
    box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.2);
    border-radius: 10px 10px 0px 0px;
}

.MA-left-imgBox {
    margin-left: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #0A71E4;
    border-radius: 50%;
    border: 1px solid #0A71E4;
}

.MA-left-img {
    width: 28px;
    height: 28px;
}

.MA-left-content {
    margin-left: 14px;
    display: flex;
    flex-direction: column;
}

.MA-left-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}

.MA-left-msg {
    margin-top: 13px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
}

.MA-right {
    position: absolute;
    top: 0;
    right: -342px;
    width: 1046px;
    height: 660px;
    z-index: -1;
}

.why {
    padding-bottom: 150px;
}

.why-group {
    margin-top: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.why-card {
    display: flex;
    flex-direction: column;

    width: 278px;
    height: 320px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px 0px rgba(153, 153, 153, 0.2);
    border-radius: 10px;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.why-card:hover {
    box-shadow: 0px 8px 20px rgba(153, 153, 153, 0.35);
    transform: translateY(-5px);
}

.why-card-img {
    width: 278px;
    height: 160px;
}

.why-card-content {
    display: flex;
    flex-direction: column;
    padding: 57px 0 0 31px;
}

.why-card-title {
    font-family: Microsoft YaHei;
    font-weight: bold;
    font-size: 20px;
    color: #333333;
}

.why-card-msg {
    margin-top: 14px;
    font-family: Microsoft YaHei;
    font-weight: 400;
    font-size: 14px;
    color: #999999;
}

#message-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* 错误信息样式 */
.message {
    padding: 12px 20px;
    border-radius: 6px;

    font-size: 14px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all .3s ease;
    display: flex;
    align-items: center;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.message.error {
    background: #fef0f0;
    color: #f56c6c;
}

.error::before {
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: 'X';
    width: 16px;
    height: 16px;
    font-size: 10px;
    border-radius: 50%;
    color: #fff;
    background-color: #f56c6c;
}

.message.success {
    background-color: #f0f9eb;
    color: #67c23a;
}

.success::before {
    margin-right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: '✔';
    width: 16px;
    height: 16px;
    font-size: 10px;
    border-radius: 50%;
    color: #fff;
    background-color: #67c23a;
}

.message.show {
    opacity: 1;
    transform: translateY(0);
}
