.codeTemplateBox {
    padding: 10px;
}

.codeTemplateBox > .codeTemplateHeader,
.codeTemplateBox > .codeTemplateFooter {
    padding: 5px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.codeTemplateBox .btn {
    display: inline-block;
    padding: 4px 10px;
    background-color: orange;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
}
/* 样式 */
.codeTemplateBox > .code {
    display: flex;
    justify-content: space-between;
}
.codeTemplateBox > .code > div{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px 10px;
    border-radius: 5px;
    margin: 2px;
    color: #fff;
    font-size: 16px;
    padding-top: 0;
}
    .codeTemplateBox > .code > div > .number {
        font-size: 32px;
        font-weight: bold;
        line-height: 46px;
    }
.codeTemplateBox > .code > div > .info{
    background: #fff;
    color: #333;
    font-size: 14px;
    border-radius: 2px;
    padding: 2px;
    box-sizing: border-box;
}
.codeTemplateBox > .code > .add{
    color: #333;
    font-weight: bold;
    font-size: 32px;
    max-width: 30px;
    padding: 0;
    margin: 0;
}
@media screen and (max-width: 650px) {
    .codeTemplateBox > .code > div {
        padding: 4px;
    }
    .codeTemplateBox > .code > div > .number{
        font-size: 22px;
    }
    .codeTemplateBox > .code > div > .info{
        font-size: 12px;
        padding: 2px;
    }
}
.history {
    background-color: #f1f1f1;
}
.history {
    background-color: #f1f1f1;
}
.history header {
    position: relative;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border-bottom: 1px solid #eee;
    color: #fff;
    font-weight: bold;
}
.history header a {
    position: absolute;
    left: 10px;
    color: #fff;
    text-decoration: none;
}
.history .box {
    padding: 10px;
    border-bottom: 1px solid #eee;
}
.history .content {
    background: #fff;
}

.codeTemplateBox .platformNav {
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    margin-top:5px;
}
    .codeTemplateBox .platformNav a {
        flex: 1 1;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #333;
        font-weight: bold;
        font-size: 18px;
        margin: 0 5px;
        white-space: nowrap;
        border-radius: 5px;
        background: #e8e8e8;
    }
    .codeTemplateBox .platformNav .active {
        color: red;
    }