/* 公用样式 */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
    overflow-y: scroll
}
body{
    font-family:initial;
}

* {
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
    color: #333;
}

:root {
    --color: #007bff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-weight: 700;
}

p {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    display: block;
}

a:hover {
    color: var(--color) !important;
    text-decoration: none;
}

ol {
    counter-reset: counter;
    padding-left: 0;
}

ol li {
    list-style: none;
    margin-bottom: 1rem;
}

ol li:before {
    counter-increment: counter;
    content: counter(counter);
    font-weight: 500;
    margin-right: 10px;
}

button:hover,
button:active,
button:focus {
    outline: 0;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ddd;
}

.pd80 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.pd30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.mg80 {
    margin-top: 80px;
    margin-bottom: 80px;
}

.mg30 {
    margin-top: 30px;
    padding-bottom: 30px;
}

.pd-top-80 {
    padding-top: 5rem;
}

.pd-tom-80 {
    padding-bottom: 5rem;
}

.w-p {
    padding-top: 150px;
    padding-bottom: 143px;
}

.dkbg {
    background: #f5f5f5;
    min-width: 375px;
}


.line1 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line2 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.line3 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line4 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.line5 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

li {
    list-style: none;
}

.br10 {
    border-radius: 10px;
}

.page-link:focus {
    box-shadow: none;
}

img {
    width: 100%;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }
}

/* 按钮颜色 */
.iyx-button {
    padding: 10px 20px;
    color: var(--color);
    background-color: #fff;
}

.iyx-button:hover {
    color: #fff;
    background: var(--color) !important;
}

.pd-150 {
    padding-top: 150px;
}

.mg-110 {
    margin-top: 110px;
    margin-bottom: 110px;
}