/*通用样式*/

* {
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    min-height: 100%;
    font-family: helvetica, arial, sans-serif;
    line-height: 1.6;
    /* overflow-x: hidden; */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

[v-cloak] {
    display: none
}


/*图片*/

img {
    display: block;
    width: 100%;
}

.cover img {
    height: 100%;
    object-fit: cover;
}

.cover {
    overflow: hidden
}


/* 文字 */

p,
h1,
h2,
h3,
h4,
h5,
h6,
small {
    font-weight: normal;
    display: block;
}


/* 大小 */

.fs34 {
    font-size: 34px
}

.fs20 {
    font-size: 20px
}

.fs18 {
    font-size: 18px
}

.fs16 {
    font-size: 16px
}

.fs14 {
    font-size: 14px
}

.fs12 {
    font-size: 12px
}

.fs10 {
    font-size: 10px;
}


/* 对齐 */

.tl {
    text-align: left
}

.tc {
    text-align: center
}

.tr {
    text-align: right
}

.tj {
    text-align: justify;
}

.nowrap {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}


/* 颜色 */

.c0 {
    color: #000000;
}

.c2 {
    color: #222222;
}

.c3 {
    color: #333333;
}

.c6 {
    color: #666666;
}

.c9 {
    color: #999999;
}

.cf {
    color: #ffffff;
}

.cb2 {
    color: #b2b2b2;
}

.cred {
    color: #E90000;
}

.cgreen {
    color: #04C465;
}


/* 列表 */

ul,
li,
ol,
dl,
dt,
dd {
    list-style: none;
}

input[type="search"],
input[type="email"],
input[type="submit"],
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="button"],
input[type="number"],
button,
select,
textarea {
    display: block;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    outline: medium;
    border: none;
    font-family: helvetica, arial, sans-serif;
    resize: none;
}

input:disabled {
    background-color: transparent;
}

input[type="date"],
input[type="time"] {
    background-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

.link {
    display: block;
}


/* 间距 */

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.mtb10 {
    margin: 10px auto;
}

.mb50 {
    margin-bottom: 50px;
}

.mb5 {
    margin-bottom: 5px;
}


/* 内边距 */

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.ptb10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.plr10 {
    padding-left: 10px;
    padding-right: 10px;
}

.pb5 {
    padding-bottom: 5px;
}


/*float浮动*/

.fl {
    float: left;
}

.fr {
    float: right;
}


/*禁用*/

.disabled {
    pointer-events: none;
}


/*线条*/

.bottom-line,
.right-line,
.top-line,
.left-line {
    position: relative;
}

.bottom-line:after {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.top-line:before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleY(.5);
    transform: scaleY(.5);
}

.right-line:after {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #ddd;
    position: absolute;
    top: 0;
    right: 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
}

.left-line:before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #ddd;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(.5);
    transform: scaleX(.5);
}


/*flex布局*/

.flex-row {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-col {
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-full {
    -webkit-flex: 1;
    flex: 1;
}

.flex-inline {
    display: -webkit-inline-flex !important;
    display: inline-flex !important;
}

.flex-top {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.flex-end {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.flex-stretch {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flex-two {
    justify-content: space-between;
}

.flex-right {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-left {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}


/*背景色*/

.bg-w {
    background-color: #ffffff;
}

.bg-g {
    background-color: #f7f7f7;
}


/* 箭头 */

.arrow_w,
.arrow_g {
    position: relative
}

.arrow_w:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    top: 50%;
    right: 12px;
    margin-top: -5px;
    background-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.arrow_g:before {
    content: "";
    width: 8px;
    height: 8px;
    position: absolute;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    top: 50%;
    right: 12px;
    margin-top: -5px;
    background-color: transparent;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* 固定44高度 */

.header {
    height: 44px;
    position: relative;
    width: 100%;
    z-index: 9;
    overflow: hidden;
    line-height: 44px;
    box-sizing: border-box;
}


/* 内容区域图片视频格式 */

.content img {
    margin: 6px auto;
}

.content video {
    display: block;
    width: 100%;
    height: auto;
    margin: 6px auto;
}


/* 底部悬浮按钮 */

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    height: 44px;
    background-color: #f7f7f7;
    border-top: 1px solid #E5E5E5;
}

.footer .img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.h44 {
    height: 44px;
    width: 100%;
    overflow: hidden;
}

/* 复选框 */

input[type='checkbox'],
input[type='radio'] {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    outline: medium;
    margin-right: 4px;
    margin-left: 6px;
    border: 1px solid rgba(128, 128, 128, 1);
    border-radius: 50%;
    box-sizing: border-box;
}

input[type='checkbox']:checked,
input[type='radio']:checked {
    background: url(../../image/icon/icon_sc_sellect_small.png) center center no-repeat;
    background-size: 100% auto;
    border: 1px solid #73d453;
}

* {
    touch-action: none;
}

.dm-msg h3 {
    margin: 20px auto;
    font-weight: 500;
}

.input-submit {
    padding-bottom: 10px;
    overflow: hidden;
}

.input-submit button {
    background-color: #3DA4E7;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
    border-radius: 40px;
    width: 50%;
    margin: 10px auto;
    display: block;
    color: #ffffff;
}