body {
}

.machine-top {
    margin-top: 85px;
}

.machine {
    position: relative;
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    min-height: 100%;
    justify-content: space-between;
    align-items: stretch;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 16px;
    margin: 30px auto;
}

.machine .machine-intro {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.machine .machine-code {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.machine .machine-code .machine-name {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.machine .machine-code .machine-name img{
    width: 15px;
    margin-right: 12px;
}

.machine .machine-code .machine-name label {
    margin-bottom: 0;
    margin-right: 10px;
    text-align-last: justify;
    width: 120px;
}

.machine .machine-code .machine-name label::after {
    display: flex;
}

.machine .el-input__inner {
    left: 1px;
    font-size: 16px;
    width: 100%;
    border-radius: 6px;
    border-color: #ddd;
    padding: 20px;
}

.machine .activation {
    background: #fbfbfb;
    border-color: #eee;
}

.machine .machine-intro textarea::placeholder {
    font-size: 16px;
    color: #999;
}

.machine .machine-intro textarea:disabled {
    cursor: not-allowed;
}

.machine .el-button__primary {
    margin: 10px auto;
    border-radius: 12px;
}

.machine .el-input__disabled {
    left: 1px;
    font-size: 16px;
    width: 500px;
    border-radius: 6px;
    border-color: #eee;
}

.machine .machine-intro.activation-code {
    text-align: right;
    align-items: end;
}

.machine .copy-icon {
    right: 8px;
    top: 94px;
    cursor: pointer;
    width: auto;
    padding: 0px 18px;
    font-size: 16px;
    height: 1.8em;
    border-radius: 8px;
}

.machine .copy-icon:hover {
}

.description {
    margin-top: -80px;
    position: relative;
    display: flex;
    width: 1200px;
    min-height: 100%;
    justify-content: space-between;
    align-items: stretch;
}

.description .desc-intro {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 220px;
    padding: 28px;
    overflow: hidden;
    box-sizing: border-box;
    margin: 15px 0 100px;
    background: #fff;
    border-radius: 16px;
    align-items: stretch;
}

.description .desc-intro-left {
    flex: 1.5;
    text-align: left;
    padding-left: 20px;
    box-sizing: border-box;
}

.description .desc-intro-left-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 11px;
    font-weight: bold;
}

.description .desc-intro-left-text {
    font-size: 14px;
    color: #999;
    line-height: 28px;
}

.description .desc-intro-line {
    width: 1px;
    height: 150px;
    background: #ddd;
}

.description .desc-intro-right {
    flex: 1;
    text-align: left;
    justify-items: center;
}

.description .desc-intro-right-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    font-weight: bold;
}

.description .desc-intro-right-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.description .desc-intro-right-main img {
    height: 98px;
    border: 1px solid #eee;
}

.description .desc-intro-right-main p {
    font-size: 14px;
    color: #333;
    width: 100%;
    margin-top: 12px;
    text-align: center;
    font-weight: 400;
}



/* 模态窗口的背景（遮罩）样式 */
.machine .result-modal {
    display: none; /* 默认隐藏 */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.12); /* 半透明的背景 */
}

/* 模态内容的样式 */
.machine .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 50px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    text-align: center;
    font-size: 18px;
}

/* 标题的样式 */
.machine .modal-header {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* 关闭按钮的样式 */
.machine .close-btn {
    background-color: #42a5f5;
    color: white;
    margin-top: 25px;
    border: none;
    cursor: pointer;
    width: 150px;
    height: 40px;
    font-size: 16px;
}

.machine .close-btn:hover {
    background-color: #4096e4;
}

