body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    margin-bottom: 0px !important;
    box-sizing: border-box;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: black;
}

#app {
    min-height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.l_content {
    min-height: calc(100vh - 120px);
}
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
/* 在线链接服务仅供平台体验和调试使用，平台不承诺服务的稳定性，企业客户需下载字体包自行发布使用并做好备份。 */
@font-face {
    font-family: "iconfont"; /* Project id 5075435 */
    src: url("//at.alicdn.com/t/c/font_5075435_ej3dl6fiiyt.woff2?t=1767057599313")
            format("woff2"),
        url("//at.alicdn.com/t/c/font_5075435_ej3dl6fiiyt.woff?t=1767057599313")
            format("woff"),
        url("//at.alicdn.com/t/c/font_5075435_ej3dl6fiiyt.ttf?t=1767057599313")
            format("truetype");
}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 14px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
}

/* 分页公共样式 */
.pages_box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 10px;
}
.pages_box .pages_start,
.pages_box .pages_item {
    margin-right: 20px;
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}
.pages_box .pages_end {
    padding: 10px 20px;
    border: 1px #e5e5e5 solid;
    background-color: #fff;
    border-radius: 10px;
}
/* 分页公共样式结束 */

/* 悬浮按钮 开始 */
.global_btns {
    position: fixed;
    right: 0px;
    top: 50%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    width: 40px;
    border-radius: 10px 0 0 10px;
    box-shadow: 0px 0px 6px 0px #dce0ea;
    background-color: #fff;
    cursor: pointer;
}
.global_btns .global_btn {
    width: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}
.global_btns .global_btn:hover {
    width: auto;
    background-color: #108cda;
    color: #fff;
    border-radius: 10px 0 0 10px;
}
.global_btns .global_btn_w:hover {
    background-color: #108cda;
    color: #fff;
    border-radius: 10px 0 0 10px;
    padding-left: 20px;
    animation: showWidth 0.3s forwards;
}
@keyframes showWidth {
    0% {
        width: 40px;
    }
    100% {
        width: 200px;
    }
}

.global_btns .global_btn:hover .img_box .img2 {
    opacity: 1;
}

.global_btns .global_btn:hover .img_box .img1 {
    opacity: 0;
}
.global_btns .global_btn .img_box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.global_btns .global_btn .img_box img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 25px;
    height: 25px;
    transform: translate(-50%, -50%);
}

.global_btns .global_btn .img_box .img2 {
    opacity: 0;
}
.global_btns .btn_text {
    margin-right: 10px;
}

select {
    -webkit-appearance: none; /* Chrome, Safari, Edge, Opera */
    -moz-appearance: none; /* Firefox */
    appearance: none; /* 标准的CSS属性 */
}

button {
    /* 鼠标经过变小手 */
    cursor: pointer !important;
}

/* 重写的alert 样式 */
.diy_alert {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 6px 0px #dce0ea;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
}

/* 移动端 */
@media screen and (max-width: 768px) {
    .l_content {
        width: 100%;
        border: 1px red solid;
    }
}
