/* ||||||||||||||||通用样式 */
* {
    margin: 0;
    padding: 0;
}

body {
    background-color: #f7f7f7;
    position: relative;
    /*margin-top: 70px;*/
    font-size: 15px;
    font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
    color: #333;
}

.container {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
}

.container-480 {
    min-height: calc(100vh - 50px - 445px);
}

.dynamic {
    min-height: calc(100vh - 120px - 1px - 226px);
}

.divider {
    height: 1px;
    background-color: #dadada;
}

:root {
    --theme-color: #17a090;
    --theme-color2: #17a090;
    --theme-color-dynamic: linear-gradient(to right, var(--theme-color), var(--theme-color2));
    --hover-color: #17beae;
    --menu-hover-color: #d7ffe8;
    --active-color: #158d7d;
    --form-color: #999999;
    --body-color: #5e5e5e;
    --form-background-color: #fafbfc;
    --form-hover-color: #ebecf0;
    --loading-color: #88d99a;
}

a {
    color: #333;
    cursor: pointer;
}

a {
    text-decoration:none;
}

a:hover{
    color: var(--theme-color);
}

.theme-color {
    color: var(--theme-color) !important;
}

.clear-hover:hover {
    color: #333 !important;
}

.flex {
    display: flex;
}

.flex-d-col {
    flex-direction: column;
}

.flex-align-center {
    align-items: center;
}

.flex-align-start {
    align-items: flex-start;
}

.flex-between {
    justify-content: space-between;
}

.flex-center {
    justify-content: center;
}

.hidden {
    display: none;
}

.cursor-p {
    cursor: pointer;
}

/* margin */
.mg-l_2 {
    margin-left: 2px !important;
}
.mg-l_5 {
    margin-left: 5px !important;
}
.mg-l_10 {
    margin-left: 10px !important;
}
.mg-l_20 {
    margin-left: 20px !important;
}
.mg-l_40 {
    margin-left: 40px !important;
}
.mg-t_5 {
    margin-top: 5px !important;
}
.mg-t_10 {
    margin-top: 10px !important;
}
.mg-t_15 {
    margin-top: 15px !important;
}
.mg-t_20 {
    margin-top: 20px !important;
}
.mg-t_30 {
    margin-top: 30px !important;
}
.mg-t_40 {
    margin-top: 40px !important;
}
.mg-r_10 {
    margin-right: 10px !important;
}
.mg-r_20 {
    margin-right: 20px !important;
}
.mg-r_40 {
    margin-right: 40px !important;
}
.mg-b-10 {
    margin-bottom: 10px !important;
}
.mg-b-20 {
    margin-bottom: 20px !important;
}

/* margin */
/* padding */
.pd-t_10 {
    padding-top: 10px !important;
}
/* padding */
.gap {
    width: 100%;
    height: 30px;
}
/* 鼠标禁止 */
.not {
    cursor: not-allowed;
}

/* 占位隐藏 */
.vb-h {
    visibility: hidden;
}

/* 字体大小 */
.fs12 {
    font-size: 12px;
}
/* 字体大小 */


/* ||||||||||||||||通用样式 */


/* elementUI */
.el-backtop {
    color: var(--theme-color);
}


/* 滚动条 */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: #F5F5F5;
}
/*::-webkit-scrollbar-thumb {*/
/*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);*/
/*background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0.44, rgb(101, 101, 101)),color-stop(0.72, rgb(172, 172, 172)),color-stop(0.86, rgb(255, 255, 255)));*/
/*transition: 0.3s ease-in-out;*/
/*}*/
::-webkit-scrollbar-thumb {
    background-color: #c7c7c7;
    border-radius: 0;
}
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    background-color: #F5F5F5;
}
/* 滚动条 */

/* 媒体查询适配 */
@media (max-width:1535px){
}

@media (max-width:1230px){
}

@media (max-width:1024px){
}

@media (max-width:925px){
}

@media (max-width:768px){
}

@media (max-width:480px){
    .gap {
        height: 10px;
    }

    .container-480 {
        min-height: calc(100vh - 50px - 205px);
    }

    .title-background {
        height: 60px !important;
        font-size: 20px !important;
    }

    .content-wrapper {
        padding: 10px !important;
    }
}
/* 媒体查询适配 */



/* 公共业务样式 */
.app-button {
    width: 100%;
    color: #ffffff;
    background: var(--theme-color-dynamic);
    font-size: 16px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

.app-button:hover {
    color: #ffffff;
}

.app-button:active {
    color: #ffffff;
}

.app-button:focus {
    color: #ffffff;
}



.title-background {
    height: 120px;
    background-image: url("/static/img/titlebackground.png");
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.content-wrapper {
    background-color: #ffffff;
    padding: 30px;
}