@keyframes popIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

body {
    background-color: rgb(240, 240, 240);
    --color-primary: #1E9FFF;
    --color-primary-text: #4178be;
    --color-dashed-color: #e0e0e0;
    --color-primary-nav: #1677ff;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-align-center {
    align-items: center;
}

.flex-evenly {
    justify-content: space-evenly;
}

.flex-center {
    align-items: center;
    justify-content: center;
}

.flex-between {
    justify-content: space-between;
}

.flex-end {
    justify-content: flex-end;
}

.flex-start {
    justify-content: flex-start;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-auto {
    flex: 1 1 auto;
}

.flex-column {
    flex-direction: column;
}

.wrapper {
    width: 1100px;
    margin: 0 auto;
}

.w-full {
    width: 100%;
}

.fixed-tools {
    display: none;
    position: fixed;
    right: -140px;
    top: -20px;
    width: 220px;
    height: calc(100vh + 20px);
    z-index: 0;
    pointer-events: none;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    display: none;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transform: translateX(0);
    transition: all .4s;
    pointer-events: all;
}

.card:hover {
    z-index: 100;
    border-radius: 3px;
    padding: .3rem;
    transform: translateX(-140px);
    box-shadow: -15px 0 30px 0 rgba(0, 0, 0, 0.2);
    animation-name: unset !important;
}

#change {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.layui-input-inline {
    float: none !important;
    margin-right: -5px !important;
}

.layui-input-inline input {
    border-color: #ced9e4;
    padding-right: 10px;
}

.layui-input-inline input:hover, .layui-input-inline input:focus {
    border-color: #0080ff !important;
}

.layui-bg-blue {
    background: #0081ff !important;
}

.layui-nav {
    width: 100%;
    position: relative;
    /*right: 40px;*/
    /*bottom: 4px;*/
    background: transparent;
}

.layui-nav * {
    font-size: 1rem !important;
}

.layui-nav-item a {
    cursor: pointer;
}

.layui-nav-bar, .layui-nav .layui-this:after {
    background-color: #fff !important;
}

.layui-nav .layui-nav-item a {
    color: #fff !important;
}

.layui-nav .layui-nav-item a:hover , .layui-nav .layui-this a{
    color: #fff !important;
}

.layui-layer-msg {
    border-radius: 8px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    user-select: none;
}

.location_bar {
    margin-left: 20px;
}

.logo_sqt {
    width: 120px;
    height: 53px;
    background: url(../../static/images/sqt.png) no-repeat;
    background-size: 100% 100%;
}

.select_area {
    width: 117px;
    text-align: center;
    background: url(../../static/images/selectBg.png) center no-repeat;
    margin-left: 20px;
}

.select_area > .select_area_wrapper {
    --select-area-color: #f8f8f8;
    top: 65px;
    width: 750px;
    min-height: 120px;
    background: var(--select-area-color);
    border-radius: 4px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    animation: popIn .4s ease-in-out;
    z-index: 100;
}

.select_area > .select_area_wrapper:before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 88px;
    top: -30px;
    background-color: transparent;
    border-style: solid;
    border-width: 16px;
    border-color: transparent transparent var(--select-area-color);
}

.city_area, .region_area {
    height: 50%;
    font-size: .8rem;
}

.city_area_title {
    width: 120px;
    padding: 5px 10px;
    text-align: right;
    color: var(--color-primary-text);
}

.region_area_list_item {
    cursor: pointer;
    line-height: 16px;
    padding: 10px 20px;
    transition: all .3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.region_area .region_area_list_item{
    margin: 5px 0 5px 3px;
}

.border_dashed {
    margin: 0 auto;
    width: 90%;
    border-bottom: 1px dashed var(--color-dashed-color);
}

.region_area_list_item:hover, .region_area_list_item[selected] {
    background: var(--color-primary-text);
    color: #fff;
}

.cursor_pointer, .pointer {
    cursor: pointer;
}

.cursor_pointer:hover {
    text-decoration: underline;
    text-decoration-color: var(--color-primary-text);
    text-decoration-style: dashed;
}

.loginBox {
    width: 150px;
    height: 36px;
    background: #EEEEEE;
    border-radius: 18px;
}

.rightLinkGroup > div {
    margin-left: 10px;
}

.rightLinkGroup {
    margin-left: 30px;
}

.rightLinkGroup img {
    width: 20px;
    height: 20px;
    margin-left: 5px;
    position: relative;
    bottom: 2px;
}