@charset "utf-8";

.xskgBox {
    width: calc(100% - 16px);
    border-radius: 2px;
    border: 1px solid #E2EAF0;
    background-color: #FFF;
    overflow: hidden;
}

.xskgBox__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 53px;
    padding: 0 20px;
    border-bottom: 1px solid #E2EAF0;
    box-sizing: border-box;
    background-color: #F6F9FB;
}

.xskgBox__header .xtitle {
    display: flex;
    align-items: center;
}

.xskgBox__header .xtitle img {
    width: 24px;
    height: 24px;
}

.xskgBox__header .xtitle span {
    font-size: 14px;
    color: #131B26;
    padding-left: 10px;
    letter-spacing: 0.38px;
}

.xskgBox__header .xclose {
    display: block;
    width: 18px;
    height: 18px;
    background: url('/ananas/new-editor/images/icon-close.png') no-repeat center/ 100% 100%;
}

.xskgBox__content {
    padding: 14px 20px 0;
}

.xskgBox__content .xiframe {
    display: block;
    position: relative;
    width: 100%;
    height: 515px;
    border: 1px solid #E0ECF2;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.xskgBox__content .xshrinkInput {
    display: none;
}

.xskgBox__content .xshrinkInput:checked + .xshrinkButton::before {
    content: '收起';
}

.xskgBox__content .xshrinkInput:checked + .xshrinkButton::after {
    transform: rotate(0);
}

.xskgBox__content .xshrinkInput:checked ~ .xiframe {
    display: block;
}

.xskgBox__content .xshrinkButton {
    line-height: 20px;
    padding-bottom: 14px;
    font-size: 14px;
    letter-spacing: 0.38px;
    color: #6B89B3;
    width: fit-content;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.xskgBox__content .xshrinkButton::before {
    content: '展开';
}

.xskgBox__content .xshrinkButton::after {
    margin-left: 4px;
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url('/ananas/new-editor/images/icon-arrow-top.png') no-repeat center/ 100% 100%;
    transform: rotate(180deg);
    transition: .2s all linear;
}

.xzoomBox {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 149px;
    height: 36px;
    padding: 0 16px;
    border-radius: 30px;
    box-shadow: 0 1px 12px 0 rgba(0,124,191,0.12);
    background-color: #FFF;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.xzoomBox img {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.xzoomBox span {
    color: #474C59;
    font-size: 14px;
}