/* CSS Reset */
/* 全屏屏幕 */
@media screen and (min-width: 768px) {
    html {
        font-size: 62.5%;
        min-width: 1300px;
    }

    body {
        font-size: 1.4rem;
    }
}

/* 手机屏幕 */
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }

    body {
        font-size: 1.4rem;
    }

    .iconfont{
        font-size: 2.6rem !important;
    }
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    /* Ensure padding and borders are included in element sizes */
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
    color: rgb(88 92 92);
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Custom Styles */
body {
    background: white;
    color: black;
    font-family: Arial, sans-serif;
}

.title-l{
    font-size: 48px;
    line-height: 70px;
}
.title-s{
    font-size: 16px;
    color: rgb(170, 170, 170);
    line-height: 30px;
    font-weight: bold;
}
.common-btn{
    background: linear-gradient(to right, #76d39d, #ace252);
    display: inline-block;
    padding: 15px 80px;
    font-size: 16px;
    color: #fff;
    border-radius: 30px;
    margin-top: 20px;
}
.common-btn:hover{
    cursor: pointer;
}
.title-m{
    font-size: 36px;
    font-weight: bold;
    line-height: 60px;
    margin-top: 180px;
}
.title-ms{
    font-size: 20px;
    font-weight: bold;
    line-height: 60px;
    margin-top: 60px;
    color: rgb(51, 51, 51);;
}
.pager{
    margin: 40px 0;
}
.pager li{
    display: inline-block;
    border: solid 1px rgb(221, 221, 221);
    padding: 10px;
    width: 40px;
    color: rgb(102, 102, 102);
    text-align: center;
}
.pager li.active{
    background-color: rgb(0, 199, 92);
    color: #fff;
}
.pager li:hover{
    cursor: pointer;
}
/* 手机屏幕 */
@media screen and (max-width: 767px) {

    .title-m{
        font-size: 26px;
        font-weight: bold;
        line-height: 40px;
        margin-top: 60px;
    }
    .title-ms{
        font-size: 20px;
        font-weight: bold;
        line-height: 60px;
        margin-top: 60px;
        color: rgb(51, 51, 51);;
    }

    .title-l{
        font-size: 26px;
        line-height: 40px;
    }
    .title-s{
        font-size: 14px;
        color: rgb(170, 170, 170);
        line-height: 25px;
        font-weight: bold;
    }
    .footer{
        display: block;
    }
    .footer>div:nth-child(2),
    .footer>div:nth-child(3),
    .footer>div:nth-child(4),
    .footer>div:nth-child(5){
        display: inline-block;
        width: calc(50% - 20px);
        height: 180px;
        margin-top: 20px;
        vertical-align: middle;
    }
}
