/* 右侧悬浮容器样式 */
#aside {
    position: fixed;
    right: 0;
    z-index: 999999;
    width: 80px;
    transition: all 0.3s ease;
}

/* 通用悬浮块样式 */
.wrapz {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    background: transparent;
    transition: all 0.3s ease;
}

/* 右侧图标区块 */
.wrapz .right {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    text-align: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* 左侧展开区块 */
.wrapz .left {
    position: absolute;
    left: -80px;
    top: 0;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s ease;
    width: 294px; /* 根据dis属性值设置 */
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}

/* 三角形指示符 */
.triangle {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #fff;
    opacity: 0;
}

/* 表单样式 */
.zzform {
    padding: 15px;
}
.zzform-bt {
    color: #c03427;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}
.zzform-form-input {
    margin-bottom: 15px;
}
.zzform-form-input span {
    display: block;
    margin-bottom: 5px;
    color: #666;
}
.form-control {
    width: 100%;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* 按钮样式 */
.btn-submit, .btn-reset {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.btn-submit {
    background: #c03427;
    color: white;
}
.btn-reset {
    background: #666;
    color: white;
    margin-left: 10px;
}

/* 返回顶部样式 */
.back_top {
    background: #fff !important;
    color: #666 !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px !important;
    cursor: pointer;
}

/* 悬浮图标hover效果 */
.wrapz:hover {
    overflow: visible;
}
.wrapz:hover .left {
    left: -294px; /* 对应dis属性值 */
    opacity: 1;
}
.wrapz:hover .triangle {
    opacity: 1;
}

/* 通用样式 */
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}
.transition2 {
    transition: all 0.2s ease;
}