@charset "UTF-8";
/* H5公共样式，用于所有H5开发页面*/
html {
    font-family: "Microsoft Yahei", "Hiragino Sans GB", "Helvetica Neue", Helvetica, Arial, sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.layui-input {
    font-size: 14px;
}

    .layui-input::placeholder {
        color: #a6a6a6;
        font-size: 14px;
    }

body {
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}
/* 将具有默认margin和padding的标记置零，所有标记的margin、padding都在使用时具体定义 */
* {
    box-sizing: border-box;
}
/* 常用标签，基本标签默认样式取消，HTML标签，取消基本标签默认样式，防止不同浏览器显示效果不同 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, dl, dt, dd, ul, ol, li, pre, fieldset, button, input, textarea, th, td, div {
    margin: 0;
    padding: 0;
    border: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
    display: block;
    margin: 0;
    padding: 0;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
    margin: 0;
    padding: 0;
}

b, strong {
    font-weight: bold;
}

small {
    font-size: 80%;
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    /*清除移动端默认的表单样式*/
    -webkit-appearance: none;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #ddd;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td, th {
    padding: 0;
}

body, input, select, textarea, button {
    /*字体变清晰*/
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* 清除ul列表标记的样式 */
ol, ul {
    list-style: none;
}
/* 定义默认的链接样式，仅仅是作为默认样式提供，可以在各自的实例中覆盖掉 */
a, a:hover, a:focus {
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -o-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}
/* 定义图片边框，当图片作为链接内容被填充时，会有默认边框出现，重定义掉 */
img {
    width: 100%;
    border: 0 none;
    -ms-interpolation-mode: bicubic;
}
/* 
.swiper-slide img {
 width:100%;
 height:150px;
 object-fit:cover;
}


@media(min-width:750px) {
    .swiper-slide img {
        width: 100%;
        height: 270px;
        object-fit: cover;
    }
} */



/* 去掉虚线框 */
input:focus, textarea:focus, select:focus, button:focus, a:focus {
    outline: 0;
}
/*通过为父元素添加 .clearfix 类可以很容易地清除浮动*/
.clearfix:after, .clearfix:before {
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
    width: 0;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    zoom: 1;
}

/*---common style ---*/
.fontSTsong {
    font-family: "NSimSun", "SimSun", "STSong", "FangSong", "FangSong_GB2312" !important;
}

.app-table {
    display: table;
}

.app-tr {
    display: table-row;
}

.app-td {
    display: table-cell;
}

/* html {
  font-size: 100px;
}

@media only screen and (min-width: 401px) {
  html {
    font-size: 125px !important;
  }
}

@media only screen and (min-width: 428px) {
  html {
    font-size: 133.75px !important;
  }
}

@media only screen and (min-width: 481px) {
  html {
    font-size: 150px !important;
  }
}

@media only screen and (min-width: 569px) {
  html {
    font-size: 175px !important;
  }
}

@media only screen and (min-width: 641px) {
  html {
    font-size: 200px !important;
  }
} */

html, body {
    min-height: 100%;
}

body {
    margin: 0 auto;
    width: 100%;
    /* max-width: 640px; */
    font-size: 0.14rem;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.hide {
    display: none;
}

.show {
    display: block;
}

a {
    color: #333;
}

.abs {
    position: absolute;
}

.rel {
    position: relative;
}

.bg-white {
    background: #fff;
}

.bg-gray {
    background: #f2f2f2;
}

img {
    display: block;
}

.ver-m {
    vertical-align: middle;
}

.ver-t {
    vertical-align: top;
}

.ver-b {
    vertical-align: bottom;
}

.fr {
    float: right;
}

.fl {
    float: left;
}

.tl {
    text-align: left !important;
}

.tc {
    text-align: center !important;
}

.tr {
    text-align: right !important;
}


/* layui message样式重置 */
.layui-layer-msg {
    min-width: 6.25rem !important;
    background-color: #000 !important;
    background-color: rgba(0,0,0,.7) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0.25rem !important;
}

    .layui-layer-msg .layui-layer-content {
        line-height: 1 !important;
        font-size: 16px !important;
        /* padding: 1.625rem 4.8125rem; */
    }

    .layui-layer-msg .layui-layer-padding {
        padding: 22px 65px 22px 112px !important;
    }

@media(max-width:750px) {
    .layui-layer-msg .layui-icon {
        left: 4.2rem !important;
    }
}



.layui-layer-msg .layui-icon-success {
    width: 21px !important;
    height: 21px !important;
    background-image: url(../image/pc/checkgreen@2x.png) !important;
    background-size: cover !important;
    left: 84px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

    .layui-layer-msg .layui-icon-success:before {
        content: '' !important;
    }

.layui-form-item .layui-form-checkbox[lay-skin=primary] {
    margin-top: 0 !important;
}

/*容器*/
.pcMain {
    display: none;
}

.h5Main {
    display: block;
}

.mobiles {
    display: none;
}

/************** H5端样式-开始 **************/
.h5Main {
    /* overflow: hidden; */
    position: relative;
    background-color: #fff;
}
    /* .h5Main .contains{
  padding: 0 1rem;
} */
    .h5Main .headerInner {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: linear-gradient(90deg, #FB4E4E 0%, #E9725F 100%);
        padding-right: 0.4375rem;
        height: 2.75rem;
    }

        .h5Main .headerInner a {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

    .h5Main .headerLeft {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
    }

        .h5Main .headerLeft h2 {
            margin-left: 0.4375rem;
            font-size: 14px;
            color: #fff;
            max-width: 70vw;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .h5Main .headerRight {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }

    .h5Main .headerContains {
        position: absolute;
        width: 50%;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .h5Main .headerContains h1 {
            font-size: 1rem;
            color: #fff;
            font-weight: normal;
        }

    /* 导航栏搜索框 */
    .h5Main .headerLeft .layui-input-wrap {
        position: relative;
        margin: 0.3125rem 0 0.3125rem 1rem;
        /* background-color: #fff; */
    }

    .h5Main .headerLeft .layui-input {
        width: calc(100vw - 5rem);
        border: 0;
        height: 2.125rem;
        line-height: 2.125rem;
        border-radius: 1.0625rem;
        font-size: 0.875rem;
        color: #303030;
        z-index: 1;
    }

    .h5Main .headerLeft .layui-input-prefix {
        width: 2.078125rem;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }

        .h5Main .headerLeft .layui-input-prefix img {
            width: 0.953125rem;
            height: 1.0125rem;
        }

    .h5Main .headerLeft .inputClear {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        opacity: 0;
        padding: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .h5Main .headerLeft .inputClear img {
            width: 0.875rem;
            height: 0.875rem;
        }
    /* 后代元素focus触发 */
    .h5Main .headerLeft .layui-input-wrap:focus-within .inputClear {
        opacity: 1;
    }
    /* 导航栏谈切换 */
    .h5Main .headerTabs {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 0.875rem;
        line-height: 1;
        background-color: rgba(255,255,255,0);
        color: #fff;
    }

        .h5Main .headerTabs > a {
            display: inline-block;
            height: auto;
            padding: 0.4375rem 0.5625rem;
            border-radius: 0.875rem;
            color: #fff;
            background-color: rgba(255,255,255,0);
        }

            .h5Main .headerTabs > a:first-child {
                margin-right: 0.1875rem;
            }

            .h5Main .headerTabs > a.active {
                background-color: rgba(255,255,255,1);
                color: #FB4E4E;
            }

    /* .h5Main .headerLeft .layui-input-prefix,.h5Main .headerLeft .layui-input-suffix{
  background-color: transparent;
} */
    /* logo按钮 */
    .h5Main .headerLogo {
        padding: 0 1rem;
    }

        .h5Main .headerLogo img {
            width: 5.6175rem;
            height: 1.140625rem;
        }
    /* 导航icon */
    .h5Main .headerIcon {
        padding: 0 0.5625rem;
        color: #fff;
        font-size: 0.875rem;
    }
        /* 登录按钮 */
        .h5Main .headerIcon.icon-1 img {
            width: 0.91625rem;
            height: 0.99375rem;
        }
        /* 菜单按钮 */
        .h5Main .headerIcon.icon-2 img {
            width: 1.125rem;
            height: 0.875rem;
        }
        /* 搜索按钮 */
        .h5Main .headerIcon.icon-3 img {
            width: 0.875rem;
            height: 0.9375rem;
        }
        /* 返回按钮 */
        .h5Main .headerIcon.icon-4 img {
            margin-left: 0.3125rem;
            width: 0.625rem;
            height: 1.0625rem;
        }
    /* .h5Main .headerIcon img,
.h5Main .headerLogo img{
  margin: 0.5rem;
  width: 100%;
  height: 100%;
} */

    /* 导航栏点击菜单的弹窗 */
    .h5Main .menuBox {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100vw;
        padding: 2.9375rem 2.1875rem 1.75rem;
        background-color: #fff;
        border-radius: 0px 0px 1.25rem 1.25rem;
        z-index: 200;
        transition: all 0.2s;
    }

        .h5Main .menuBox.show {
            top: 0;
        }

    .h5Main .menuClose {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0.625rem;
    }

        .h5Main .menuClose img {
            width: 0.9794rem;
            height: 0.9794rem;
        }

    .h5Main .menuList {
        display: flex;
        justify-content: space-between;
    }

        .h5Main .menuList a {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

    .h5Main .menuImg {
        width: 3.125rem;
        height: 3.125rem;
    }

        .h5Main .menuImg img {
            width: 3.125rem;
            height: 3.125rem;
        }

    .h5Main .menuList p {
        font-size: 0.75rem;
        line-height: 1;
        color: #262626;
        padding-top: 0.625rem;
    }

    .h5Main .menuBtnBox {
        padding-top: 1.75rem;
        display: flex;
        justify-content: center;
    }

        .h5Main .menuBtnBox a {
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            width: 17.5rem;
            height: 2.4375rem;
            border: 0.0625rem solid #FB4E4E;
            border-radius: 1.4375rem;
            color: #FB4E4E;
            font-size:0.875rem;
        }
    /* 公用遮罩层 */
    .h5Main .mask {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 100;
        opacity: 0;
    }

        .h5Main .mask.show {
            display: block;
            opacity: 1;
        }



.logout {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 35px;
}

    .logout:hover {
        background: #ff5269;
        color: #fff;
        height: 35px;
    }

.layui-menu-body-title {
    padding: 0 !important;
    border: 0;
}

.layui-dropdown {
    padding: 0 !important;
    border: 0 !important;
}

.layui-dropdown-menu {
    margin: 0;
    padding: 0;
}

.layui-dropdown.layui-panel {
    background: transparent;
}

.layui-menu {
    margin: 0 !important;
}

/************** H5端样式-结束 **************/


.pcMain .dataNull_common {
    text-align: center;
    padding: 160px 0;
}

    .pcMain .dataNull_common img {
        width: 236px;
    }

.pcMain .null_text_common {
    margin-top: 21px;
    font-size: 14px;
    color: #A5A5A5;
}

.loadBox {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width:750px) {
    .loadBox {
        height: 200px;
    }
}

.loadBox .loaderContantBox {
    color: #ccc;
    font-size: 40px;
    overflow: hidden;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transform: translateZ(0);
    /* animation：规定完成动画所花费的时间，该属性必须规定，否则动画时长为0，无法播放 */
    animation: loadBox 1.7s infinite ease, round 1.7s infinite ease;
}

.loadBox.auto {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.2)
}



@keyframes loadBox {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    5%, 95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }

    10%, 59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }

    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }

    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg); /* 开始旋转 div 元素 */
    }

    100% {
        transform: rotate(360deg); /* 结束旋转 div 元素 */
    }
}
