a:hover {
    color: cornflowerblue;
}

body {
    font-family: Helvetica, Arial, sans-serif;
}

/* 超小屏幕（手机，小于 768px） */

@media screen and (max-width:767px) {}


/* 小屏幕（平板，大于等于 768px） */

@media screen and (min-width:768px) {}


/* 中等屏幕（桌面显示器，大于等于 992px） */

@media screen and (min-width:992px) {}


/* 大屏幕（大桌面显示器，大于等于 1200px） */

@media screen and (min-width:1200px) {}


/* ---------- 背景颜色 ---------- */
.bg_black {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg_black2 {
    background-color: black;
}

.bg_darkGrey {
    background-color: #151917;
}

.bg_green {
    background-color: #00c066;
}

.bg_green2 {
    background-color: #59a960;
}

.bg_lightGreen {
    background-color: #eff4e2;
}

.bg_white {
    background-color: white;
}

/* ---------- 字体 ---------- */
.text_green {
    color: #59a960;
}

.text_green2 {
    color: #00c066;
}

.text_black {
    color: black;
}

.fz1 {
    font-size: 1.2rem;
    line-height: 1.3rem;
}

.fz2 {
    font-size: 1.7rem;
    line-height: 1.8rem;
    font-weight: bold;
}

.fz3 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: bold;
}


/* ---------- 间距 ---------- */
.mt_6 {
    margin-top: 17rem;
}

.mt_7 {
    margin-top: 1.7rem;
}

.mt_8 {
    margin-top: 4rem;
}

.mb_6 {
    margin-bottom: 4rem;
}

.p_1 {
    padding: 2rem 1rem;
}

.pb_6 {
    padding-bottom: 4rem;
}


/* ---------- 移动端  ---------- */
.bg_banner {
    background: url(../images/banner1_3x.png) no-repeat;
    background-size: 100%;
}

.title1 {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 2.4rem;
}

.b_bottom {
    border-bottom: 1px solid white;
}

.b_bottom_black {
    border-bottom: 1px solid black;
}

.b_top {
    border-top: 1px solid white;
}

.b_top_black {
    border-top: 1px solid black;
}

.button_green {
    background-color: #00c066;
    width: 100%;
    height: 3rem;
    font-size: 1.2rem;
    line-height: 3rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.button_white {
    border: 1px solid white;
    width: 100%;
    height: 3rem;
    font-size: 1.2rem;
    line-height: 3rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.button_white2 {
    background-color: white;
    width: 100%;
    height: 3rem;
    font-size: 1.2rem;
    line-height: 3rem;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}

.border_black {
    border: 1px solid black;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.h_p1 {
    height: 4rem;
}

.border_r1 {
    border-radius: 20px 20px 0 0;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    -ms-border-radius: 20px 20px 0 0;
    -o-border-radius: 20px 20px 0 0;
}



/* ---------- 轮播 ---------- */
.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-top: 0px;
    border-bottom: 0px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: opacity 5s ease;
    -webkit-transition: opacity 5s ease;
    -moz-transition: opacity 5s ease;
    -ms-transition: opacity 5s ease;
    -o-transition: opacity 5s ease;
    margin-left: 8px;
    margin-right: 8px;
}

.h_carousel {
    height: 25rem;
}

::marker {
    color: #59a960;
    font-weight: bold;
}


/* ---------- 菜单 ---------- */
.h_mune {
    height: 92vh;
}