body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
textarea,
button {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
a,
textarea,
input,
button,
span,
em,
strong,
img,
div {
    -webkit-touch-callout: none;
    -moz-touch-callout: none;
    -ms-touch-callout: none;
    touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -moz-tap-highlight-color: transparent;
    -ms-tap-highlight-color: transparent;
    tap-highlight-color: transparent;
}

input,
textarea,
button {
    outline: 0 none;
    -webkit-appearance: none;
    border: none;
}

select {
    appearance: none;
    -moz-appearance: none;
    /* Firefox */
    -webkit-appearance: none;
    /* Safari 和 Chrome */
    border: none;
}

textarea {
    resize: none;
}

img {
    border: none;
}

a {
    text-decoration: none;
    out-line: none;
}

html {
    /* font-size: 625%; */
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

input::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #8895a4;
}

input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #8895a4;
}

input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #8895a4;
}

input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #8895a4;
}


/*# sourceMappingURL=reset.css.map */

.bottom-shadow {
    background: #fff;
    box-shadow: 0px -3px 20px 0 rgba(149, 140, 136, 0.15);
}

* {
    touch-action: pan-y;
}

.title-style {
    color: #1645bb;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.6rem;
    padding-left: 1rem;
}

.swiper-container,
.swiper-wrapper,
.swiper-slide {
    width: 100%;
}


/*Chrome下隐藏滚动条，溢出可以透明滚动*/

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}


/*定义滚动条轨道 内阴影+圆角*/

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}


/*定义滑块 内阴影+圆角*/

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: rgb(180, 175, 175);
}

.dropdown:hover>.dropdown-menu {
    display: block;
}

.form-group {
    margin-bottom: .3rem !important;
}

@media screen and (min-height: 720px) {
    html,
    .section {
        /*隐藏滚动条，当IE下溢出，仍然可以滚动*/
        -ms-overflow-style: none;
        /*火狐下隐藏滚动条*/
        overflow: -moz-scrollbars-none;
        scrollbar-width: none;
    }
     ::-webkit-scrollbar {
        width: 0 !important;
    }
}