/* 公共飘窗 */
.float-notice {
    position: fixed;
    /* top: calc(100% - 8rem);
    left: calc(100% - 21rem); */
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 100;
    padding: 1rem 1.5rem;
    width: 20rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 1px 2px 13px rgb(187, 187, 187);
    cursor: grab;
    will-change: left, top;
    z-index: 1100;
}
.float-notice .more {
    position: absolute;
    right: 1rem;
    bottom: .5rem;
}
.float-notice .more a {
    line-height: 1;
    font-size: 1rem;
    color: #002ac1;
}
.float-notice .more a:hover {
    text-decoration: none;
}
.float-notice .title {
    cursor: pointer;
    line-height: 1.4;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: #002ac1;
}
.float-notice .content {
    margin: 0.5rem 0 1rem;
    display: none;
    overflow-y: scroll;
    line-height: 1.4;
    font-size: .8rem;
    color: #4B4B4B;
}
.float-notice.expand .content {
    height: 10rem;
    display: block;
}
.float-notice.expand .more {
    display: none!important;
}

.float-notice .content .sub-title {
    margin-top: 1rem;
}
.float-notice .content .first-content {
    color: #002ac1;
}
.float-notice .content::-webkit-scrollbar {
    display: none;
}
.float-notice .content .notice-author {
    padding: .3rem 0;
    text-align: right;
}

/* 公共详情 */
.notice .title {
    margin-top: 5rem;
    width: 100%;
    height: 6.875rem;
    line-height: 6.875rem;
    text-align: center;
    font-size: 1.75rem;
    color: #fff;
    background-color: #002ac1;
}
.notice .notice-content {
    padding: 1.5rem;
	max-width: 75rem;
}
.notice .notice-content .sub-title {
    margin-top: 1.5rem;
    line-height: 1.4;
    font-size: 1.25rem;
    font-weight: 500;
    color: #4B4B4B;
}
.notice .notice-content .content-txt {
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-size: 1.25rem;
    color: #4B4B4B;
}
.notice .notice-content .first-content{
    color: #002AC1;
}
.notice .notice-content .notice-author {
    margin-top: 3rem;
    text-align: right;
    font-size: 1.25rem;
}