
body {
    font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "\5FAE\8F6F\96C5\9ED1", Arial, sans-serif;
    background-color: #fff;
    color: #666;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a {
    text-decoration: none;
    color: #404040;
}

a:hover {
    color: #0C9783;
}

img {
    vertical-align: top;
    margin: 0;
}

.icon {
    width: 1em;
    height: 1em;
    vertical-align: -0.15em;
    fill: currentColor;
    overflow: hidden;
}

.flex {
    display: flex;
}

.wrap {
    width: 1400px;
    margin: 0 auto;
}

@media screen and (min-width: 1920px) {
    #app {
        width: 1920px;
        margin: 0 auto;
    }
}

.app-header {
    border-top: 5px solid #07706A;
    padding: 2rem 0;
}

.app-header .wrap {
    display: flex;
    justify-content: space-between;
}

.app-menu {
    background-color: #F4F8FC;
    position: relative;
    z-index: 2;
}

.app-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-menu ul li {
    flex: 1;
    height: 60px;
    position: relative;
}

.app-menu ul li > a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    color: #111827;
    z-index: 1;
}

.app-menu ul li:hover > a {
    color: #0C9783;
}

.app-menu ul li.active > a,
.app-menu ul li.active:hover > a {
    background-color: #07706A;
    color: #ffffff;
}


.app-menu ul li::before {
    position: absolute;
    left: 50%;
    bottom: 1px;
    width: 38px;
    height: 5px;
    z-index: 2;
    background-color: #07706A;
    margin-left: -19px;
    transition: all 0.2s ease-in-out;
    transform: scaleX(0);
    content: "";
    border-radius: 3px;
}

.app-menu ul li.active::before {
    background-color: #ffffff;
}

.app-menu ul li:hover::before {
    transform: scaleX(1);
}

.app-menu ul li dl {
    position: absolute;
    top: 100%;
    left: -20%;
    right: 0;
    margin: 0;
    padding: 14px;
    display: none;
    z-index: 2;
    width: 140%;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(14, 178, 154, 0.1) 0 0 15px 5px;
    border-radius: 0 0 5px 5px;
}

.app-menu ul li:hover dl {
    display: block;
}

.app-menu ul li dl dd {
    margin: 0;
    padding: 0;
}

.app-menu ul li dl dd a {
    display: flex;
    height: 40px;
    justify-content: center;
    align-items: center;
}


.app-baner {
    position: relative;
    z-index: 1;
}

.app-baner .swiper-pagination-bullet {
    width: 40px;
    height: 10px;
    margin: 0 5px;
    border-radius: 5px;
    background-color: #ffffff;
    opacity: 1;
}

.app-baner .swiper-pagination-bullet-active {
    background-color: #6EE7B7;
}

.app-footer {
    background: url("../img/footer_bg.jpg") center -100px no-repeat;
    padding: 40px 0;
}

.app-footer .l {
    width: 430px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.app-footer .l ul {
    list-style: none;
    margin: 20px 0 0 0;
    padding: 0 0 0 77px;
}

.app-footer .l ul li {
    display: flex;
    align-items: center;
    height: 36px;
}

.app-footer .l ul li .icon {
    width: 20px;
    height: 20px;
    fill: #0eb29a;
    margin-right: 1rem;
}

.app-footer .l ul li .title {
    color: #111827;
}

.app-footer .c {
    width: 570px;
    padding: 0 80px;
    border-left: 1px solid #F8FCFC;
    border-right: 1px solid #F8FCFC;
}

.app-footer .c ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.app-footer .c ul li {
    display: flex;
}

.app-footer .c ul li .icon {
    width: 24px;
    height: 24px;
    fill: #0eb29a;
    margin-right: 16px;
    margin-top: 6px;
}

.app-footer .c ul li .info {
    flex: 1;
}

.app-footer .c ul li .info .title {
    line-height: 40px;
    color: #111827;
}

.app-footer .c ul li .info .tel {
    color: #ff7600;
    font-size: 36px;
    font-weight: bolder;
    margin: 12px 0;
}

.app-footer .r {
    flex: 1;
}

.app-footer .r ul {
    list-style: none;
    margin: 0;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.app-footer .r ul li {
    margin: 0 10px;
}

.app-footer .r ul li .img {
    padding: 5px;
    background-color: #ffffff;
    box-shadow: rgba(14, 178, 154, 0.1) 0 0 15px 5px
}

.app-footer .r ul li .title {
    text-align: center;
    margin-top: 10px;
    color: #111827;
    font-size: 15px;
}

.app-copy {
    background-color: #07706A;
    color: #ffffff;
}

.app-copy .flex {
    height: 54px;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.app-copy .r{
    display: flex;
}

.app-copy a {
    border-radius: 4px;
    padding: 5px 10px 4px;
    transition-duration: .3s;
    color: #ffffff;
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.app-copy a:hover {
    background-color: #29847F;
}

.app-copy a img{
    margin-right: 5px;
}

/*分页*/
.pagination {
    list-style: none;
    margin: 0;
    padding: 40px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination li {
    margin: 0 5px;
    font-size: 16px;
}

.pagination li span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    min-width: 40px;
    line-height: 1;
}

.pagination li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    padding: 0 12px;
    border-radius: 4px;
    background-color: #f4f4f5;
    color: #666;
    min-width: 40px;
    line-height: 1;
}

.pagination li a:hover {
    text-decoration: none;
    color: #0eb29a;
    background-color: #E4F6F4;
}

.pagination li.disabled span {
    background-color: #f4f4f5;
    color: #c0c4cc;
    cursor: not-allowed;
}

.pagination li.active span {
    background-color: #0eb29a;
    color: #FFF;
    cursor: default;
}