/*全局css配置*/
@import "font-awesome.min.css";

html {
    height: 100%;
}

body {
    min-height: 100%;
    position: relative;
    font-family: "SF Pro SC", "SF Pro Text", "SF Pro Icons", "PingFang SC", "Helvetica Neue", "Helvetica", "Arial", Microsoft Yahei, sans-serif;
    background-color: rgb(250, 250, 250);
    font-size: 14px;
}

/*gif  动图*/
.gif-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    display: none;
}

.gif-bg img {
    width: 80%;
    display: block;
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    left: 50%;
}

/**
    导航栏字体大小
*/
.navbar .nav-link {
    font-size: 18px;
}

/**
    页面底部布局样式
 */
.footer {
    /*line-height: 40px;*/
    text-align: center;
    vertical-align: middle;
    background: #fff;
    /*height:40px;*/
    color: #000;
    font-size: 12px;
    border-top: #dadada 1px solid;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footer-link {
    width: 70px;
    height: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 5px;

}

.twitter {
    display: block;
    background: url(/img/social-icons.png) no-repeat -45px -85px;
    width: 30px;
    height: 30px;
}

.twitter:hover {
    background: url(/img/social-icons.png) no-repeat -45px -124px;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

.you {
    display: block;
    background: url(/img/social-icons.png) no-repeat -525px -85px;
    width: 30px;
    height: 30px;
}

.you:hover {
    background: url(/img/social-icons.png) no-repeat -525px -124px;
    transition: all 0.2s ease-in;
    cursor: pointer;
}

.footer-logo {
    flex: 1;
    text-align: center;
    margin-left: 75px;
}

/*首页导航*/
.logo {
    line-height: 60px;
}

.logo-img {
    height: 40px;
}

.logo-img img {
    margin-top: -5px;
}

.logo .logo-name {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    margin-left: 15px;
}

.logo-img:hover {
    text-decoration: none;
}

.index-nav {
    height: 60px;
    line-height: 60px;
    background: #fff;
    padding: 0 2rem;
    /*box-shadow: #ccc 2px 2px 2px;*/
    overflow: visible;
    border-bottom: #dadada 1px solid;
    box-sizing: border-box;
    z-index: 99;
}

.menu-list a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    padding: 0 1.5rem;
}

.menu-list a:hover, .menu-list a.hover {
    color: #1cad78;
    transition: all .2s ease-in 0s;
}

.common-search-form {
    padding: 1rem 2rem;
}

.container-bg {
    padding-bottom: 40px;
}

.head-menu2 {
    margin: 0 0;
    padding: 0 0;
    list-style: none;
    position: absolute;
    z-index: 999;
    top: 60px;
    overflow: hidden;
    height: 0;
    max-height: 0;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    transition: max-height ease-out .2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 10px 10px;
}

.menu-list li:hover > ul.head-menu2 {
    height: auto;
    max-height: 500px;
    transition: height ease 1s;
    transition: max-height ease-in .2s;

}

.head-menu2 li {
    padding: 0 10px;
    background: rgba(255, 255, 255, 0.8);
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    border-bottom: #dedede 1px solid;
}

.head-menu2 li a {
    color: #1da26f;

}
.head-menu2 li:last-child {
    border-radius: 0 0 3px 3px;
    border-bottom: none;
}

.head-menu2 li:hover {
    cursor: pointer;
    background: #1DAD78;
    color: #fff;
}

.head-menu2 li:hover a {
    color: #fff;
}

/*移动端导航*/
.mobile-menu-close {
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
}

.mobile-menu-bg {
    background: rgba(255, 255, 255, 0.9);
    width: 45%;
    position: fixed;
    height: 100%;
    right: -5000px;
    top: 0;
    z-index: 999;
}

.mobile-menu-bg ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-bg ul li {
}

.mobile-menu-bg ul li a:hover, .mobile-menu-bg ul li a.hover {
    background: #027d50;
    color: #fff;
}

.mobile-menu-bg ul li a {
    color: #027d50;
    text-decoration: none;
    display: block;
    padding: 1rem 1rem;
}

.mobile-menu-icon {
    color: #1cad78;
    font-size: 28px;
    line-height: 60px;
    display: none;
}

.mobile-logo-name {
    font-size: 15px;
    color: #027d50;
    line-height: 24px;
    padding: 1rem 1rem 0 1rem;
    margin-bottom: 0;
    font-weight: bold;
    border-bottom: #70daa9 1px solid;
    padding-bottom: 15px;
}

@media (max-width: 991px) {
    .logo-name {
        display: none;
    }

    .menu-list {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

}

@media (max-width: 767px) {
    .footer-logo {
        margin-left: 0;
    }

}


