* {
    padding: 0;
    margin: 0;
}
.bob-container {
    height: 100vh;
    background: #fff;
}
.bob-header {
    display: flex;
    align-items: center;
    padding: 10px 25px;
}
.header-left {
    display: flex;
    align-items: center;
    flex: 1;
}
.header-left img {
    display: block;
    /* width: 39px; */
    height: 29px;
    margin-right: 5px;
}
.logo-name {
    font-size: 20px;
    font-weight: 600;
    color: rgba(62, 62, 62, 1);
    line-height: 29px;
}
.lang-box {
    position: relative;
}
.lang-box .lang-selector
{
    position: absolute;
    top: 160%;
    right: 10px;
    transform: translate(20%, 0);
    z-index: 50;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, .5);
    font-size: 14px;
}

.lang-selector .lang-selector-item
{
    text-wrap: nowrap;
    padding: 6px 12px;
    /* text-align: center; */
    border-bottom: 1px solid #ccc;
}

.lang-selector .lang-selector-item:last-child
{
    border-bottom: none;
}

.lang-selector-item:hover
{
    background-color: skyblue;
    
}
.lang-content {
    display: flex;
    align-items: center;
}
.multi-lang-icon
{
    width: 18px;
    height: 18px;
    /* margin-right: 3px; */
    background-image: url('/image/language.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.lang-text {
    font-size: 15px;
    font-weight: 400;
    color: rgba(62, 62, 62, 1);
}
.hidden
{
    display: none;
}
.bob-banner {
    overflow: hidden;
    display: flex;
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, #FF712C 0%, #FF9F2F 100%);
}
.bob-banner .logo-left {
    display: block;
    width: 212px;
    height: 190px;
    margin: 10px 0px 0 22px;
}
.bob-banner .logo-right {
    display: block;
    width: 90px;
    height: 76px;
    margin: 20px 0 0 0;
}
.btn-space {
    height: 53px;
    margin: 20px 25px;
    background: rgba(255, 113, 44, 1);
    border-radius: 70px;
}
.bob-scan-btn {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
    text-align: center;
    line-height: 53px;
    text-decoration-line: unset;
}
.bob-process {
    padding: 0 25px;
    margin-bottom: 20px;
}
.bob-title {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(62, 62, 62, 1);
}
.step-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
  
.step-dot {
    box-sizing: border-box;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 10px;
    flex-shrink: 0; /* 防止圆点挤压内容 */
    align-self: flex-start; /* 将圆点对齐到左上角 */
    border: 1.5px solid rgba(62, 62, 62, 1);
    font-size: 12px;
    color: rgba(62, 62, 62, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.step-content {
    display: flex;
    flex-direction: column;
}
  
.step-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
}
.step-desc {
    font-size: 14px;
    padding-top: 4px;
    color: rgba(62, 62, 62, 1);
    opacity: 0.5;
}
  
.step-line {
    position: absolute;
    top: 22px; /* 根据圆点的尺寸调整 */
    left: 11px; /* 将竖线居中对齐 */
    bottom: -20px; /* 调整竖线的长度 */
    width: 1px;
    background-color: rgba(217, 217, 217, 1);
}
  
.bob-help {
    padding: 0 25px;
}
.bob-help .bob-title {
    margin-bottom: 10px;
}
.bob-desc {
    background: #F8F9FA;
    border-radius: 10px;
    padding: 10px 20px;
}
.bob-desc-title {
    color: #3e3e3e;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 5px;
}
.help-msg-item {
    font-size: 14px;
    color: #3e3e3e;
    margin-bottom: 5px;
}
.copyright {
    padding: 40px 0;
    margin: 0 25px;
    text-align: center;
    font-size: 12px;
    color: #999;
}
.copyright a {
    text-decoration: none;
    color: #0082ff;
}