.common_header {
    width: 100%;
    height: 146px;
}

.header_logo {
    width: 492px;
    height: 96px;
}

.header_title {
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    text-shadow: 0px 2px 4px rgba(12, 45, 93, 0.5);
    margin-left: 14px;
}

.header_btn {
    width: 36px;
    height: 20px;
    background: #F19022;
    border-radius: 3px;
    font-family: Roboto, Roboto;
    font-weight: 500;
    font-size: 12px;
    color: #FFFFFF;
    text-align: center;
    line-height: 20px;
    margin-top: 20px;
    margin-left: 10px;
    cursor: pointer;
}


.search-container {

    width: 500px;
    margin-left: 32px;
    margin-top: 34px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #fff;

    border-radius: 4px;

    margin-bottom: 10px;
    overflow: hidden;
    height: 44px;
}

.search-icon {
    width: 24px;
    height: 24px;
    margin-left: 14px;
}

.search-box input {
    flex: 1;

    border: none;
    outline: none;

    margin-left: 6px;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
}

/* 修改placeholder颜色 */
.custom-input::placeholder {
    color: #999;

}

/* 搜索按钮样式 */
.search-btn {
    background: #F19022;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    width: 72px;
    height: 44px;

}

.hot-search {
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
}

.hot-search_li {
    padding: 0 8px;
    height: 26px;
    background: rgba(9, 41, 77, 0.3);
    margin-left: 8px;
    font-family: PingFang SC, PingFang SC;
   
    font-size: 16px;
    color: #FFFFFF;
    cursor: pointer;
}

.header_right {
    padding: 0 16px;
    height: 45px;
    border-radius: 24px 24px 24px 24px;
    border: 1px solid #7AB5F5;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    font-size: 20px;
    color: #FFFFFF;
}

.header_position {
    width: 26px;
    height: 26px;
    margin: 0 12px;
}

.common_right {
    width: 75px;

    background: #FFFFFF;
    box-shadow: 0px 0px 8px 0px rgba(22, 119, 255, 0.3);
    border-radius: 4px;
    position: fixed;
    right: 4px;
    top: 375px;
    z-index: 999;
}

.common_rightIn {
    width: 75px;
    padding-bottom: 12px;



}

.common_rightIn_one {
    margin: 12px auto 0;
    cursor: pointer;
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 400;
    font-size: 14px;
    color: #333333;

    text-align: center;
    position: relative;
}

.common_rightIn_img {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
}

.common_hove {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    position: absolute;
    left: -132px;
    top: -10px;
    opacity: 0;
    /* 透明（视觉隐藏） */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.customerService{
    left: -213px;
}
.common_rightIn_one:hover .common_hove {
    opacity: 1;
    /* 不透明（视觉显示） */
    visibility: visible;
    /* 可见 */
}
.common_rightIn_arrow{
    width: 24px;
    position: absolute;
    right: -12px;
    top: 24px;
}
.qrCodeContainer {
    display: flex;          /* 使用弹性布局 */
    flex-direction: column; /* 主轴方向设为垂直（上下排列） */
    align-items: center;    /* 子元素水平居中对齐 */
    gap: 10px;              /* 二维码之间的上下间距（可调整） */
  
}

/* 确保二维码图片样式适配上下排版 */
.qrCodeContainer img {
    display: block;         /* 图片独占一行 */
    margin: 0;              /* 清除原有margin，避免冲突 */
}