.content {
    display: flex;
    border: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1;
    width: 100%;
    font-size: small;
}


.editor-outer {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 30px 20px 30px 20px;
    background-color: white;
}

.editor-row-center {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.editor-row-left {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.editor-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.editor-item label {
    display: inline-block;
    width: 100px;
    text-align: right;
    padding-right: 10px;
}

.editor-readonlyfield {
    display: inline-block;
    color: gray;
    width: 200px;
    height: 30px;
    line-height: 30px;
    padding-left: 6px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
}


.product {
    margin: 0px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    height: 800px;
    border: 1px solid lightgray;
    overflow-y: scroll;
    padding: 0px 10px;
}

.product-header {
    padding: 10px 0px 10px 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 40px;
    width: 100%;
    margin-bottom: 8px;
}

.product-header div {
    border-bottom: 1px solid lightgray;
    margin: 10px 1px;
    padding: 10px 5px;
    text-align: center;
}

.product-header .ptype {
    width: 150px;
}

.product-header .psubject {
    width: 170px;
}

.product-header .pname {
    width: 180px;
}

.product-header .pver {
    width: 80px;
}

.product-header .pauth {
    width: 100px;
}

.product-header .pdesc {
    flex: 1;
}

.product-header .pcount {
    width: 100px;
}

.product-header .pcmd {
    width: 100px;
}

/***************************************************************/

.product-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.product-item div {
    margin: 5px 1px;
    padding: 0px;
    text-align: center;
    line-height: 80px;
    height: 80px;
    background-color: #eeeeee;
}

.product-item .ptype {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    width: 150px;
}

.product-item .psubject {
    width: 170px;
}

.product-item .pname {
    width: 180px;
}

.product-item .pver {
    width: 80px;
}

.product-item .pauth {
    width: 100px;
}

.product-item .pdesc {
    flex: 1;
    line-height: normal;
    padding: 5px;
    text-align: left;
    overflow-y: auto;
}

.product-item .pcount {
    width: 100px;
}

.product-item .pcmd {
    width: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-item .pcmd a {
    line-height: 30px;
    color: blue;
    cursor: pointer;
}

/***************************************************************/


product-item:hover {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.product-item:hover div {
    margin: 5px 1px;
    padding: 0px;
    text-align: center;
    line-height: 80px;
    height: 80px;
    background-color: moccasin;
}

.product-item:hover .ptype {
    width: 150px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.product-item:hover .psubject {
    width: 170px;
}

.product-item:hover .pname {
    width: 180px;
}

.product-item:hover .pver {
    width: 80px;
}

.product-item:hover .pauth {
    width: 100px;
}

.product-item:hover .pdesc {
    flex: 1;
    padding: 5px;
    line-height: normal;
    text-align: left;
    overflow-y: auto;
}


.product-item:hover .pcount {
    width: 100px;
}


.product-item:hover .pcmd {
    width: 100px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.product-item:hover .pcmd a {
    line-height: 30px;
    color: blue;
    cursor: pointer;
}

/************************************************************************/

.content .header {
    display: flex;
    border: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 70px;
}

.content .header .banner {
    height: 200px;
    color: white;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    background-image: url("//cdn.eval100.com/img/market-banner3.jpg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.content .header .banner .desc {
    font-size: medium;
    margin-bottom: 20px;
}

/************************************************************************************************/

.content .nav {
    padding-top: 20px;
    display: flex;
    border: none;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding-left: 20px;
    height: 30px;
}

.content .nav a {
    color: blue;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}


.content .bodyframe {
    width: 100%;
    padding: 20px;
}

/************************************************************************************************/

.content .bodyframe .root {
    height: 120px;
    width: 100%;
    margin-bottom: 10px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}

.content .bodyframe .root .label {
    width: 300px;
    font-size: medium;
    text-align: right;
    padding-right: 30px;
}

.content .bodyframe .root .body {
    flex: 1;
    height: 100%;
    width: 100%;
    padding: 5px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.content .bodyframe .root .body a {
    height: 40px;
    line-height: 40px;
    width: 140px;
    margin: 5px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
}


.content .bodyframe .root .body a:link {
    text-decoration: none;
    color: blue;
}

.content .bodyframe .root .body a:visited {
    text-decoration: none;
    color: limegreen;
}

.content .bodyframe .root .body a:hover {
    text-decoration: underline;
    font-weight: bold;
    color: #00F;
}

.content .bodyframe .root .body a:active {
    text-decoration: underline;
    color: #F00;
}

.content .bodyframe .root .body a:visited {
    text-decoration: none;
    color: orangered;
}

/************************************************************************************************/

.content .bodyframe .rootkp {
    margin: 0px 10px 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}


.content .bodyframe .rootkp .subject-frame {
    width: 100%;
    min-height: 300px;
    margin-bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 8px solid lightskyblue;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid lightgray;
}

.content .bodyframe .rootkp .subject-frame .subjectdesc {
    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .rootkp .subjectdesc {
    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .rootkp .kp-frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px 20px;
}

.content .bodyframe .rootkp .kp-frame .kp {
    display: block;
}

.content .bodyframe .rootkp .kp-frame .kp a {
    display: block;
    letter-spacing: 2px;
    padding: 10px;
    border: 1px solid lightgray;

    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .rootkp .kp-frame .kp a:hover {
    background-color: orange;
    border: none;
}

/************************************************************************************************/

.content .bodyframe .rootkp .label {
    width: 100%;
    margin-bottom: 10px;

    font-size: large;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 2px;
}


.content .bodyframe .rootkp .exam-frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.content .bodyframe .rootkp .exam-frame a {
    display: block;
    padding: 10px;
    border: 1px solid lightgray;

    min-width: 120px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .rootkp .exam-frame a:hover {
    background-color: orange;
    border: none;
}


.content .bodyframe .subject .label a {
    text-align: right;
}

.content .bodyframe .subject .label span {
    text-align: left;
}

.content .bodyframe .subject .body {
    flex: 1;
    height: 100%;
    width: 100%;
    padding: 5px;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 10px;
    border: 1px solid #eeeeee;
}

.content .bodyframe .subject .body span {
    height: 40px;
    line-height: 40px;
    width: 140px;
    margin: 5px;
    text-align: center;
    background-color: #eeeeee;
    color: grey;
    font-size: medium;
}

.content .bodyframe .subject .body a {
    height: 40px;
    line-height: 40px;
    width: 140px;
    margin: 5px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
}

.content .bodyframe .subject .body a:link {
    text-decoration: none;
    color: blue;
}

.content .bodyframe .subject .body a:visited {
    text-decoration: none;
    color: limegreen;
}

.content .bodyframe .subject .body a:hover {
    text-decoration: underline;
    font-weight: bold;
    color: #00F;
}

.content .bodyframe .subject .body a:active {
    text-decoration: underline;
    color: #F00;
}

.content .bodyframe .subject .body a:visited {
    text-decoration: none;
    color: orangered;
}


/************************************************************************************************/

.content .bodyframe .keypoint {
    margin: 0px 10px 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}


.content .bodyframe .keypoint .label {
    width: 100%;
    margin-bottom: 10px;

    font-size: large;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .keypoint .label a {
    text-align: right;
}


.content .bodyframe .keypoint .kp-frame {
    width: 100%;
    min-height: 300px;
    margin-bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 8px solid lightskyblue;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid lightgray;
}

.content .bodyframe .keypoint .kp-frame .kpdesc {
    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
}


.content .bodyframe .keypoint .qlist-frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.content .bodyframe .keypoint .qlist-frame a {
    display: block;
    padding: 10px;
    border: 1px solid lightgray;

    min-width: 120px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .keypoint .qlist-frame a:hover {
    background-color: orange;
    border: none;
}

.content .bodyframe .keypoint .exam-frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.content .bodyframe .keypoint .exam-frame a {
    display: block;
    padding: 10px;
    border: 1px solid lightgray;

    min-width: 120px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .keypoint .exam-frame a:hover {
    background-color: orange;
    border: none;
}

/************************************************************************************************/

.content .bodyframe .question {
    margin: 0px 10px 10px 10px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
}


.content .bodyframe .question label {
    width: 100%;
    margin-bottom: 10px;

    font-size: large;
    font-weight: bold;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .question .desc-frame {
    width: 100%;
    min-height: 300px;
    margin-bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    border-top: 8px solid lightskyblue;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid lightgray;
}

.content .bodyframe .question .desc-frame .desc {
    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .question .answer-frame {
    width: 100%;
    min-height: 250px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 40px;
}
ll
.content .bodyframe .question .answer-frame .right {
    width: 48%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 10px;

    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
    border-radius: 3px;
    border: 1px solid limegreen;
    border-left: 8px solid limegreen;
}

.content .bodyframe .question .answer-frame .wrong {
    width: 48%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 10px;

    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
    border-radius: 3px;
    border: 1px solid lightcoral;
    border-left: 8px solid lightcoral;
}


.content .bodyframe .question .ana-frame {
    width: 100%;
    min-height: 40px;
    padding: 0px 20px 10px 0px;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow-y: auto;
    overflow-x: hidden;
}

.content .bodyframe .question .ana-frame .ana {
    margin: 3px 20px 10px 0px;
    width: 100%;
}

.content .bodyframe .question .ana-frame .ana a {
    line-height: 30px;
    letter-spacing: 2px;
    padding: 10px;
    border: 1px solid lightgray;
    margin: 0px 20px 10px 0px;

    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .question .ana-frame .ana a:hover {
    background-color: orange;
    border: none;
}

.content .bodyframe .question .remark-frame {
    width: 100%;
    min-height: 40px;
    border-top: 1px solid lightgray;
    border-left: none;
    border-right: none;
    margin-bottom: 30px;
}

.content .bodyframe .question .remark-frame .remark {
    margin: 10px;
    font-size: medium;
    line-height: 30px;
    letter-spacing: 2px;
}

.content .bodyframe .question .exam-frame {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    min-height: 40px;
    border-radius: 3px;
    overflow-y: auto;
    overflow-x: hidden;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.content .bodyframe .question .exam-frame a {
    display: block;
    padding: 10px;
    border: 1px solid lightgray;

    min-width: 120px;
    text-align: center;
    background-color: #eeeeee;
    cursor: pointer;
    color: blue;
    font-size: medium;
    text-decoration: none;
    border-radius: 3px;
}

.content .bodyframe .question .exam-frame a:hover {
    background-color: orange;
    border: none;
}
