*{
    margin: 0;
    padding: 0;
    color: rgba(82, 82, 91);
}

#app{
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #f7fafc;
    overflow-y: auto;
}
.pagebox{
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .1), 0 1px 2px 0 rgba(0, 0, 0, .06);
    width: 90%;
    /* height: 70%; */
    background-color: #fff;
    margin: 2.5% auto;
    border-radius: 10px;
    /* height: 100vh; */
    overflow: hidden;
    /* overflow-y: auto; */
}
.page{
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    margin: 30px auto;
    /* overflow: hidden; */
    background-color: #fff;
    /* overflow-y: auto; */
   
}
.title_top{
    width: 100%;
    text-align: center;
    color: rgba(24, 24, 27);
    font-weight: 800;
    margin-bottom: 10px;
    font-size: 20px;
}
.from_ipy_item{
    width: calc(100%);
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    /* height: 40px; */
    border-radius: 3px;
    background-color: #edf2f7;
    overflow: hidden;
    margin-top: 10px;
    display: flex;
}
.from_ipy {
    width: calc(100% - 100px);
    /* height: 40px; */
    background-color: #edf2f7;
    transition: 0.3s all;
    background-color: rgb(245, 245, 245);
    margin-left: 10px;
    /* line-height: 40px; */
    font-size: 12px;
    border: none; /* 初始边框设置为透明 */
    padding-top: 10px;
    word-break: break-all; /* 允许长单词或URL在任意字符处换行 */
    overflow-wrap: break-word; /* 处理在行内破坏的长单词 */
    padding-bottom: 10px;
}
.from_ipy_name{
    font-size: 12px;
    line-height: 40px;
    color: rgb(255, 255, 255);
    display: block;
    width: 80px;
    background-color: #667eea;
    padding-left: 10px;
}
.from_ipy:focus {
    outline: none; /* 移除默认的聚焦边框 */
    
}

.Parting_line{
    width: 100%;
    height: 1px;
    background-color: #667eea;
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
}
.Parting_line::before{
    content: "若无法完成配置 可联系客服远程协助";
    width: 260px;
    height: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    font-size: 12px;
    text-align: center;
}
.install{
    width: 100%;
    height: 50px;
    margin-top: 50px;
    border: none;
    background-color: #667eea;
    color: #fff;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    border-radius: 5px;
}

.houtasi{
    width: 100px;
    height: 40px;
    cursor: pointer;
    border: none;
    background-color: #667eea;
    color: #fff;
    line-height: 40px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    border-radius: 5px;
    text-decoration: none;
}
.boms{
    font-size: 12px;
    text-align: center;
    margin-top: 10px;
}
.boms a{
    color: #667eea;
    text-decoration: none;

}
.warningbox{
    width: calc(100% - 22px);
    border-radius: 5px;
    padding: 10px;
    border: 1px solid red;
    background-color: #ea6666;
    color: #fff;
    font-size: 12px;
    transition: 0.5s all;
    opacity: 0;
}
.successbox{
    width: calc(100% - 22px);
    border-radius: 5px;
    padding: 10px;
    border: 1px solid rgb(80, 179, 0);
    background-color: #38802e;
    color: #fff;
    font-size: 12px;
    transition: 0.5s all;
    text-align: center;
}
.warningboxshow{
    opacity: 1;
}

.loading{
    width: 50px;
    display: block;
    margin: 30px auto;
    transform-origin: center;
        /* 添加动画 */
        animation: spin 1s infinite linear;
}
/* 宽度小于500 */
@media screen and (max-width: 500px) {
    .pagebox{
      
        width: 100%;
        /* height: 100%; */
        /* height: 70%; */
        background-color: #fff;
        /* margin: 7.5% auto; */
        border-radius: 0px;
        overflow: hidden;
        margin: 0;
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg); /* 起始旋转角度 */
    }
    to {
        transform: rotate(360deg); /* 结束旋转角度 */
    }
}