.copyright{
    margin-top: auto; /* 将版权部分推到底部 */
    width: 100%;
    height: 160px;
    position: relative; /* 为伪元素定位 */
    background: #08A354;
    display: flex;
    justify-content: center;
}

.copyright::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50px;
    width: 450px;
    height: 150px;
    background-image: url('./copyright_bg.png');
    background-repeat: no-repeat; /* 禁止背景图平铺 */
    opacity: 0.8; /* 设置透明度，范围 0 - 1，0 为完全透明，1 为完全不透明 */
    z-index: 1; /* 置于内容下方 */
}
.copyright_content{
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright_leftBox{
    display: flex;
    align-items: center;
    color: #fff;
    height: 100%;
}

.copyright_centerBox{
    display: flex;
    align-items: center;
    color: #fff;
    height: 100%;
}
.logoText{
    margin-top: 10px;
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 30px;
    opacity: 0.5;
}
.phoneCard{
    margin-left: 30px;
    padding-left: 30px;
}
.phoneCard_title{
    font-size: 18px;
    font-family: Source Han Sans CN;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 15px;
}
.phoneCard_subtitle{
    font-size: 14px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.8;
    margin: 3px 0;
}
.codeDetail{
    text-align: center;
    font-size: 12px;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #FFFFFF;
}