html {
    font-size: 20px;
}

img {
    transition: transform 0.5s ease-out;
}

.hover-img img:hover {
    transform: scale(1.1, 1.1);
}

.solid-bottom:last-child {
    border-bottom: 0 !important;
}

@supports (bottom: constant(safe-area-inset-bottom)) or (bottom: env(safe-area-inset-bottom)) {
    .safe-bottom {
        padding-bottom: constant(safe-area-inset-bottom);
        padding-bottom: env(safe-area-inset-bottom);
    }
}

@media (min-width: 576px) {

    .zx-tit-height {
        height: 70%;
    }

    .text-hover-blue:hover {
        color: #047907;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }

    .kp-list-text {
        height: 2.5rem;
    }

    .wechat-hover:hover .wechat-code-box,
    .wechat-code-box:hover {
        display: block;
    }
}

@media (min-width: 992px) {
    html {
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    html {
        font-size: 20px;
    }

    .deer-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .bg-linear-blue {
        background: linear-gradient(to bottom, #047907 0%, #F2F5F7 10%);
    }
}

body {
    background-color: #F2F5F7;
}

.bg-linear-orange {
    background: linear-gradient(to bottom, #FFF1F0 0%, #FFF 60%);
}

.font-xs {
    font-size: .6rem;
}

.font-sm {
    font-size: .7rem;
}

.font-df {
    font-size: .8rem;
}

.font-size {
    font-size: .9rem;
}

.font-md {
    font-size: 1rem;
}

.font-lg {
    font-size: 1.3rem;
}

.sizing-box {
    box-sizing: border-box;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-row {
    flex-direction: row;
}

.flex-col {
    flex-direction: column;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

.al-center {
    align-items: center;
}

.al-start {
    align-items: flex-start;
}

.al-end {
    align-items: flex-end;
}

.jf-center {
    justify-content: center;
}

.jf-start {
    justify-content: flex-start;
}

.jf-end {
    justify-content: flex-end;
}

.space-between {
    justify-content: space-between;
}

.space-around {
    justify-content: space-around;
}

.flex-warp {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.flex1 {
    flex: 1;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.float-left {
    float: left;
}

.float-right {
    float: right;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

.p-fixed {
    position: fixed;
}

.top0 {
    top: 0;
}

.left0 {
    left: 0;
}

.bottom0 {
    bottom: 0;
}

.right0 {
    right: 0;
}

.border-radius-25 {
    border-radius: .25rem;
}

/* 单行省略 */
.elli {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

/* 2行省略 */
.elli2 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

/* 3行省略 */
.elli3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.block {
    display: block;
}

.in-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.display-none {
    display: none;
}

.visibility {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.of-hidden {
    overflow: hidden;
}

.p-0 {
    padding: 0;
}

.w-100p {
    width: 100%;
}

.h-100p {
    height: 100%;
}

.w-100vw {
    width: 100vw;
}

.h-100vh {
    height: 100vh;
}

.pointer {
    cursor: pointer;
}

.bg-eee {
    background-color: #f8f9fa;
}

.navbar-toggler {
    padding: .25rem .5rem !important;
    font-size: .8rem !important;
}

.tabs-tit {
    padding: .15rem .8rem;
}


.tabs-tit.active {
    color: #fff;
    background-color: #62C4A6;
    border-radius: .2rem;
}

.kp-tit:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    background: #62C4A6;
    content: "Q";
    font-weight: 400;
    line-height: 20px;
}

.kp-right-img {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
}

.kp-right-img img {
    width: 100%;
    height: 100%;
}

.kp-right-text {
    width: calc(100% - 2.8rem);
}

.kp-arrow {
    width: 1.2rem !important;
    height: 1.2rem !important;
    background-image: url('../img/icon/cricle-right.png') !important;
}

.kp-tab-list {
    display: none;
}

.footer {
    width: 100%;
    line-height: 1rem;
    color: #fff;
    font-size: .7rem;
    background-color: #2A2A32;
    padding: .5rem 0;
}

.height-5rem {
    height: 5rem;
}

.fixd-right-bottom {
    height: 6rem;
    right: 1rem;
    bottom: 20%;
    z-index: 2;
}

.wechat-icon {
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("../img/icon/weixin.png");
    background-size: cover;
    animation: smallbig .8s ease infinite;
}

.wechat-code-box {
    top: -120%;
    right: 1.4rem;
    display: none;
}

.wechat-code-con {
    background-color: #E2F1F5;
    box-shadow: 0 0 5px 2px #ccc;
}

.wechat-code {
    width: 8rem;
    height: 8rem;
}

.wechat-code > img {
    width: 100%;
    height: 100%;
}

.fixd-call-back {
    width: 2.4rem;
    height: 2.4rem;
    background-image: url('../img/icon/fanhuidingbu.png');
    background-size: cover;
}

.change-change {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url("../img/icon/huanyihuan.png");
    background-size: cover;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.rotating-element {
    animation: rotate 1s linear infinite;
}

.mask {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    z-index: 9999;
    display: none;
}

.alert-pop {
    left: 0;
    right: 0;
    margin: 35vh auto 0;
}

.yes-icon {
    width: 2.2rem;
    height: 2.2rem;
    background-image: url("../img/icon/zhengque.png");
    background-size: cover;
}

.tit-bottom-icon {
    display: inline-block;
    width: .8rem;
    height: .8rem;
    background-size: cover;
}

.de-shijian {
    background-image: url('../img/icon/shijian.png');
}

.de-pinglun {
    background-image: url('../img/icon/pinglun.png');
}

.de-yuedu {
    background-image: url('../img/icon/yuedu.png');
}

.de-jianjie {
    background-image: url('../img/icon/jianjie.png');
}

.tags-icon {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url('../img/icon/guanjianzi.png');
    background-size: cover;
}

.tags-list:hover {
    background-color: #31C79A;
    color: #fff;
}

.tags-list.active {
    background-color: #31C79A;
    color: #fff;
}