[v-cloak] {
    display: none;
}

img {
    width: 100%;
    height: 100%;
}

label {
    all: unset;
}

.loadpos:after {
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    -webkit-animation: ellipsis steps(4,end) 900ms infinite;
    animation: ellipsis steps(4,end) 900ms infinite;
    content: "\2026";
    width: 0px;

}
@keyframes ellipsis {
    to {
        width: 15px;
    }
}
@-webkit-keyframes ellipsis {
    to {
        width: 15px;
    }
}
.ppt-body {
    width: 100%;
    padding: 32px;
    margin: 0 auto;
    color: #36363b;
    box-sizing: border-box;
}

.tab-pills {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 4px;
    justify-content: center;
    align-items: center;
    padding: 4px;
    margin: 0 auto 16px;
    background: #eaeaea;
    border-radius: 4px;
}

.tab-pills li {
    user-select: none;
    font-weight: 700;
    cursor: pointer;
    color: #bebebe;
    line-height: 20px;
    text-align: center;
    padding: 4px 12px;
    border-radius: 4px;
}

.tab-pills li.active {
    color: #fff;
    background: #6dae85;
}

.tab-content {
    margin: 0 auto;
}

.tab-content.standard {
    width: 1000px;
}

.upload-form {
    width: 100%;
    padding: 24px 16px;
    background: #ffffff;
    border-radius: 10px;
}

.upload-form > .title {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 16px;
}

.upload-form > .title small {
    color: #c0c0c0;
}

.wrapper {
    min-height: 215px;
    padding: 30px;
    background: #fcfcfc;
    border: 1px dashed #6dae85;
    border-radius: 10px;
    box-sizing: border-box;
}

.wrapper .upload, .wrapper .item {
    display: flex;
    align-items: center;
    place-items: center;
    flex-direction: column;
}

.wrapper.dragover {
    border: 2px solid #6dae85;
}

.upload-image {
    width: 40px;
    height: 40px;
}

.upload-image img {
    width: 100%;
    height: 100%;
}

.wrapper h4 {
    margin-top: 16px;
}

.wrapper p {
    font-size: 13px;
    color: #c0c0c0;
    margin-bottom: 10px;
}

.wrapper .message {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #6dae85;
    font-weight: 500;
}

.wrapper .message .icon {
    font-size: 26px;
    margin-right: 5px;
    font-weight: 700;
}

.wrapper .title {
    display: grid;
    justify-content: center;
    align-items: center;
    place-items: center;
    gap: 12px;
    margin: 18px 0 30px;
}

.wrapper .title h4 {
    display: flex;
    align-items: center;
    gap: 5px;
    line-height: 22px;
    font-size: 16px;
    margin: 0;
}

.wrapper .title h4::before {
    content: "\e805";
    font-size: 24px;
    color: #467af2;
    font-family: "iconfont";
}

.wrapper .title .icon-delete {
    color: #999;
}

.wrapper .title .reupload {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 13px;
    color: #999;
    cursor: pointer;
}

.wrapper .title .reupload:hover {
    opacity: .65;
}

.wrapper .progress_status {
    font-weight: 500;
    font-size: 16px;
    margin-top: 20px;
    width: 206px;
}

.wrapper .loading {
    width: 30px;
    height: 30px;
    margin-top: 40px;
}

.update-title {
    display: grid;
    grid-template-columns: auto 360px;
    align-items: center;
    gap: 8px;
    color: #999;
}

.update-title input {
    color: #101010;
    outline: none;
    padding: 4px 12px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
}

.btn-upload {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0 28px;
    line-height: 36px;
    color: #6dae85;
    font-weight: 500;
    background: rgba(109,174,133,0.10);
    border: 1px solid #6dae85;
    border-radius: 2px;
    box-sizing: border-box;
    transition: opacity .2s ease-in-out;
}

.btn-upload:hover {
    opacity: .65;
}

.icon-upload {
    font-size: 14px !important;
    font-weight: 500;
}

.education-item, .radio-group, .radio-group label {
    display: flex;
    align-items: center;
}

.education-item {
    font-weight: 500;
    margin: 24px 0;
}

.radio-group {
    gap: 20px;
    margin-left: 24px;
}

.radio-group label {
    cursor: pointer;
    gap: 8px;
    margin: 0;
    user-select: none;
}

.radio-group label:hover input[type=radio] {
    border: 1px solid #6db085;
}

input[type=radio] {
    position: static;
    margin: 0;
}

input[type=radio] {
    appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #cccccc;
}

input[type=radio]:checked {
    position: relative;
    border: 1px solid #6db085;
    border-radius: 50%;
}

input[type=radio]:active, input[type=radio]:focus {
    appearance: none;
    outline: none;
}

input[type=radio]::after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .15s ease-in;
}

input[type=radio]:checked::after {
    transform: translate(-50%, -50%) scale(1);
    background: #6db085;
}

.template-item {
    display: flex;
    align-items: start;
    font-weight: 500;
    overflow: hidden;
}

.tab-content.standard .template-item .title {
    min-width: 80px;
    width: 80px;
}

.images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.images.oneRow {
    flex-wrap: nowrap;
}

.more {
    width: fit-content;
    font-size: 12px;
    cursor: pointer;
    padding: 12px;
    margin-left: auto;
    color: #6dae85;
    display: flex;
    align-items: center;
}

.more.right::after {
    font-family: 'iconfont';
    content: "\e692";
    font-size: 14px;
}

.more.top::after {
    font-family: 'iconfont';
    content: "\e601";
    font-size: 16px;
}

.more:hover {
    opacity: .65;
}

.images > figure {
    width: 136px;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
    border: 2px solid #fff;
}

.images > figure.active {
    position: relative;
    border: 2px solid #6dae85;
}

.images > figure.active::after {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 20px;
    height: 20px;
    background: url('/images/ppt/selected.png') no-repeat;
    background-size: 100%;
}

figcaption {
    width: 100%;
    display: grid;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 4px;
    background: rgba(0, 0, 0, .65);
    display: none;
}

figcaption .btn {
    font-size: 11px;
    color: #fff !important;
    cursor: pointer;
    line-height: 20px;
    padding: 0 20px;
    border-radius: 4px;
    border: 1px solid #fff;
    transition: all .2s ease;
}

figcaption .btn:hover {
    background: rgba(255, 255, 255, 0.25);
}

.images > figure:hover figcaption {
    display: grid;
}

.agreement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 16px auto;
}

input[type='checkbox'] {
    margin: 0;
    appearance: none;
}

.agreement-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    line-height: 14px;
    color: #666;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.agreement-item label::before {
    content: '';
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1px solid #c9c9c9;
    border-radius: 2px;
    box-sizing: border-box;
    transition: border-color .25s cubic-bezier(.71,-.46,.29,1.46), background-color .25s cubic-bezier(.71,-.46,.29,1.46);
}

input[type='checkbox']:checked + label::before {
    border: 0;
    background: #6dae85;
}

input[type='checkbox']:checked + label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 6px;
    background: transparent;
    top: 3px;
    left: 2px;
    border: 2px solid #fff;
    border-top: 0;
    border-right: 0;
    border-radius: 2px;
    transform: rotate(-45deg);
}

.btn-generate {
    display: grid;
    place-items: center;
    width: 200px;
    height: 45px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 22px auto;
    background: #6dae85;
    border-radius: 4px;
    box-shadow: 0px 10px 30px 0px rgba(21,34,26,0.25);
    transition: all .3s ease-in-out;
}

.btn-generate:hover, .btn-generate:focus {
    color: #fff;
    background: #4BA575;
    box-shadow: none;
}

.ppt-question {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    padding: 22px 20px;
    margin: 20px auto;
    background: #ffffff;
    border-radius: 10px;
}

.ppt-question a {
    color: #999;
    cursor: pointer;
}

.ppt-question a:hover {
    color: #666;
}

.ppt-question > div::before {
    content: 'Q:';
    margin-right: 8px;
    font-weight: bold;
    color: #6dae85;
}

.ppt-question a::after {
    font-family: "iconfont";
    font-size: 12px;
    content: "\e686";
    font-weight: bold;
}


.tab-content.professional {
    max-width: 1300px;
}

.tab-content.professional .wrapper {
    min-height: 360px;
    display: grid;
    align-items: center;
}

.step {
    display: grid;
    gap: 22px;
    align-items: center;
    grid-template-columns: 1fr 56px 1fr;
}

.step .upload-form {
    height: 500px;
}

.step .template-item {
    padding: 24px 0;
    flex-direction: column;
}

.swap {
    width: 56px;
    height: 33px;
}

.step .overflow-h {
    height: 100%;
    overflow-y: auto;
}

.step .images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 30px;
}

.step .images > figure {
    width: 100%;
}

.step .upload-form > .title {
    font-size: 16px;
    padding: 0 10px;
    line-height: 16px;
    border-left: 4px solid #6dae85;
}

.step .template-item > .title {
    margin: 0 16px 32px;
}

.step .upload-form .time {
    display: grid;
    grid-template-columns: 80px 200px;
    align-items: center;
    font-weight: 500;
    margin: 24px 0;
}

.step .upload-form .time select {
    color: #cccccc;
    outline: none;
    padding: 6px 12px;
    border: 1px solid #e9e9e9;
    border-radius: 4px;
}

.professional .agreement-item {
    margin: 40px auto 16px;
}

.getter {
    width: 100%;
    font-size: 12px;
    color: #666;
    padding: 12px;
    text-align: center;
    margin: 32px auto;
    background: #ececec;
    border-radius: 6px;
}

.getter .item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.getter .item > div:first-child {
    position: relative;
    padding-right: 24px;
}

.getter .item > div:first-child::after {
    content: "+";
    width: 14px;
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    font-weight: 700;
    color: #6dae85;
}

.getter h5 {
    font-size: 14px;
    color: #6dae85;
    margin: 0 0 16px;
}

.getter img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}


.modal-dialog {
    margin: 200px auto 0;
}

#modal-preview .modal-dialog {
    width: 600px;
}

.modal-content {
    background: #fff;
    box-shadow: none;
}

.modal-header {
    padding: 0;
    border-bottom: 0;
}

.modal-header .close {
    font-size: 28px;
    opacity: .65;
    font-weight: normal;
    margin: 6px 15px 0 0;
}

.modal-header .close:hover {
    opacity: .2;
}

.modal-body {
    padding: 20px;
}

#modal-qa {
    color: #666;
}

#modal-qa .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
}

#modal-qa .modal-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

#modal-qa .modal-header .close {
    margin: -5px 16px 0 auto;
}

#modal-qa .modal-header ul {
    display: flex;
    gap: 78px;
    margin: 0 60px;
}

#modal-qa .modal-header ul li {
    font-weight: 500;
    cursor: pointer;
    height: 50px;
    line-height: 50px;
    border-bottom: 3px solid transparent;
    box-sizing: border-box;
}

#modal-qa .modal-header ul li.active {
    color: #6dae85;
    border-bottom: 3px solid #6dae85;
}

#modal-qa .modal-body {
    height: 60vh;
    overflow-y: auto;
    padding: 0 30px;
}

#modal-qa .modal-body li {
    padding: 20px 5px;
    border-bottom: 1px solid #e7e9eb;
}

#modal-qa h4 {
    font-size: 14px;
    color: #333;
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
}

#modal-qa h4::before, #modal-qa .content::before {
    content: 'Q';
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #6dae85;
    font-size: 12px;
    background: rgba(109,174,133,0.15);
    border-radius: 50%;
}

#modal-qa .content {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
    line-height: 22px;
}

#modal-qa .content::before {
    content: 'A';
    color: #ff9f5c;
    background: rgba(255,159,92,0.15);
}

#modal-tip .modal-dialog {
    width: 540px;
    margin: 200px auto;
}

#modal-tip .modal-content, #modal-delete .modal-content {
    background: #fff;
    color: #999;
    border: 0;
    box-shadow: none;
}

#modal-tip .close, #modal-delete .close {
    position: absolute;
    top: 0;
    right: 0;
    color: #999;
    font-size: 32px;
    font-weight: 400;
}

#modal-tip .close:hover, #modal-delete .close:hover {
    color: #353636;
}

#modal-tip .modal-header, #modal-delete .modal-header {
    font-size: 16px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

#modal-tip .modal-body, #modal-delete .modal-body {
    position: static;
    color: #353636;
    font-size: 16px;
    padding: 50px 50px 30px;
    text-align: center;
    line-height: 24px;
}

.btn-confirm-cancel {
    display: flex;
    justify-content: center;
    align-items: center;
}

#modal-tip .modal-body .btn-confirm, #modal-delete .modal-body .btn-confirm {
    width: 120px;
    margin-top: 50px;
    background-color: #6dae85;
    border-color: #6dae85;
}

#modal-tip .modal-body .btn-cancel, #modal-delete .modal-body .btn-cancel {
    width: 120px;
    margin-top: 50px;
    border-radius: 4px;
    margin-right: 40px;
    color: #6dae85;
    border-color: #6dae85;
}

#submit-success .modal-header {
    padding: 15px;
    text-align: center;
}

#submit-success .modal-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
}

#submit-success .modal-body .btn {
    padding: 10px;
}

#submit-success .modal-body .btn-confirm {
    font-weight: 500;
    background: #6dae85;
    border-color: #6dae85;
}

#submit-success .modal-body .btn:hover,
#modal-delete .modal-body .btn-confirm:hover, 
#modal-delete .modal-body .btn-cancel:hover {
    color: #fff;
    background: #4BA575;
    border-color: #4BA575;
}


.tab-content.record, .order {
    max-width: 1300px;
}

.tab-content.record .table, .order {
    width: 100%;
    min-height: 60vh;
    color: #333542;
    margin: 0 auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
}

.tab-content.record .item {
    display: grid;
    grid-template-columns: 80px 1fr 200px 140px;
    gap: 40px;
    align-items: center;
    height: 72px;
    padding: 12px 24px;
    align-items: center;
    border-bottom: 1px solid #efeeee;
}

.tab-content.record .item.thead {
    height: 48px;
    font-weight: 500;
    line-height: 24px;
    background: #f2f2f2;
    border-radius: 6px;
    border-bottom: 0;
}

.tab-content.record .item .version span {
    cursor: default;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 4px;
    color: #6dae85;
    background: rgba(109,174,133,0.10);
    border: 1px solid #6dae85;
}

.tab-content.record .item .version span.pro {
    color: #386df6;
    background: rgba(56,109,246,0.10);
    border: 1px solid #386df6;
}

.tab-content.record .item .title {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
}

.tab-content.record .item .title strong {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tab-content.record .item .title small {
    color: #999;
}

.tab-content.record .item .operate {
    display: flex;
    align-items: center;
    color: #c0c0c0;
    justify-content: space-between;
}

.tab-content.record .item .operate a {
    font-weight: 500;
    cursor: pointer;
    color: #6dae85;
}

.tab-content.record .item .operate a:hover {
    opacity: .65;
}

.tab-content.record .item .operate .disabled, .btn-generate[disabled] {
    cursor: not-allowed;
    pointer-events: none;
    background: transparent !important;
}

.tab-content.record .item .operate a.process {
    color: #ff9f5c;
}

.tab-content.record .item .operate a.fail {
    color: #e45555;
}

.tab-content.record .item .operate span {
    cursor: pointer;
}

.tab-content.record .item .operate span:hover {
    opacity: .65;
}


.go-back {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333542;
    font-weight: bold;
}

.go-back::before {
    font-family: "iconfont";
    content: "\e600";
    margin-right: 4px;
}

.go-back:hover {
    color: #4BA575;
}

.order h3 {
    font-size: 20px;
    text-align: center;
    margin: 0 auto 32px;
}

.order .table {
    border: 1px solid #efeeee;
    border-radius: 6px;
    margin-bottom: 40px;
}

.order .table .header {
    display: flex;
    align-items: center;
    font-weight: 500;
    padding: 12px 16px;
    line-height: 24px;
    background: #f2f2f2;
    border-radius: 6px 6px 0px 0px;
}

.order .table .header .title {
    max-width: calc(100% - 200px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 16px;
}

.order .table .title strong {
    color: #666;
}

.order .table .header .tag {
    font-size: 12px;
    color: #6dae85;
    margin: 0 6px;
    padding: 0 12px;
    border: 1px solid #6dae85;
    border-radius: 4px;
}

.null {
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    margin: 80px auto;
}

.null::after {
    content: '暂无生成记录';
    color: #ccc;
}

.order .table .body {
    padding: 0 16px;
}

.order .table .body .content {
    display: flex;
    align-items: center;
    line-height: 56px;
    font-weight: 500;
}

.order .table .body .content .title {
    max-width: calc(100% - 350px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order .table .body .content .desc {
    color: #999;
    font-size: 12px;
    font-weight: normal;
    margin: 0 0 0 24px;
}

.check-temp {
    display: flex;
    align-items: center;
    gap: 3px;
    cursor: pointer;
    font-size: 13px;
    margin-left: auto;
    color: #6dae85;
}

.check-temp:hover {
    opacity: .65;
}

.check-temp .icon-eye {
    font-size: 16px;
    font-weight: 900;
}

.pro-attach {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    font-size: 12px;
    color: #999;
    padding: 20px 70px;
    border-top: 1px solid #efeeee;
}

.pro-attach .item {
    display: grid;
    align-items: center;
    grid-template-columns: 74px 1fr;
}

.pro-attach strong {
    color: #36363B;
    font-size: 14px;
}

.order-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 40px auto;
}

.order-info .price, .order-info .cost, .order-info .tip {
    padding-left: 10px;
}

.order-info .cost {
    margin: 8px 0;
}

.order-info .list small {
    color: #999;
}

.order-info .ways img {
    width: 72px;
    height: 30px;
}

.order-info .tip {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.order-info strong {
    font-size: 24px;
}

.order-info .red {
    font-weight: 500;
    color: #e45555;
}

.order .body.cost {
    padding: 16px;
    line-height: 36px;
}

.order-info .btn-generate {
    margin: 0 auto;
}

.qrcode-wrapper {
    position: relative;
    display: grid;
    place-items: center;
    width: 164px;
    height: 164px;
    padding: 12px;
    box-shadow: 0px 6px 20px 0px rgba(4,21,21,0.10); 
}

.qrcode-wrapper .fail {
    display: grid;
    place-items: center;
    position: absolute;
    left: 12px;
    top: 12px;
    right: 12px;
    bottom: 12px;
    background: rgba(245,245,245,0.90);
    backdrop-filter: blur(4px);
}

.qrcode-wrapper .btn-pay {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    padding: 0;
    width: 92px;
    height: 28px;
    color: #6dae85;
    border: 1px solid #6dae85;
    background: transparent;
}

.qrcode-wrapper .btn-pay:hover {
    filter: brightness(120%);
    color: #6db085;
    background: transparent;
}

.qrcode-wrapper .btn-pay img {
    width: 12px;
    height: 12px;
    margin-right: 5px;
}

.qrcode .loading {
    width: 48px;
    height: 48px;
}

.payment-tip h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-tip h4.success {
    color: #6db085;
}

.payment-tip h4.error {
    color: #f06541;
}

.payment-tip h4::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
}

.payment-tip h4.success::before {
    background: url("/images/tool/pay-success.png") no-repeat;
    background-size: 100%;
}

.payment-tip h4.error::before {
    background: url("/images/tool/pay-error.png") no-repeat;
    background-size: 100%;
}

.version-comparison, .tab-content.record .tip {
    position: relative;
    width: 100%;
    margin: -10px 10px 0;
    display: flex;
    justify-content: end;
}

.version-comparison > div {
    padding: 10px;
    color: #6dae85;
    cursor: pointer;
}

.tab-content.record .tip {
    padding: 10px 0;
    color: #999;
    font-size: 12px;
    margin: 0;
}

.popover {
    width: fit-content;
    top: 0;
    left: 100%;
    border: 0;
    cursor: default;
    border-top: 5px solid #6db085;
    background: #f9f9f9;
    border-radius: 6px;
    box-shadow: 0px 4px 10px 0px rgba(40, 54, 45, 0.12);
    transition: height .3s ease-in-out;
}

@media screen and (max-width: 1520px) { 
    .tab-content.standard .popover {
        top: 40px;
        right: 0;
        left: auto;
    }
}

@media screen and (max-width: 1840px) { 
    .tab-content.professional .popover {
        top: 40px;
        right: 0;
        left: auto;
    }
}

.popover:hover {
    display: block !important;
}

.popover ul li {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    grid-template-rows: 32px;
    gap: 20px;
    white-space: nowrap;
    place-items: center;
    font-size: 12px;
    padding: 0 10px;
    color: #3b3b40 !important;
}

.version-comparison ul li div:first-child {
    justify-self: start;
}

.version-comparison ul li:nth-child(odd) {
    background: #f5f5f5;
}

.popover ul li.header {
    font-weight: 500;
}

.popover ul li [prop]::before {
    font-size: 18px;
    content: '\e708';
    color: #6dae85;
}

.version-comparison > div:hover ~ .popover {
    display: block !important;
}
.ppt-body .flashInfo{
    padding: 0 0 20px 0;
    margin-top: -10px;
}