@charset "utf-8";

/*css reset*/

html {
    font-family: "微软雅黑", Helvetica, STHeiTi, sans-serif;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    -webkit-overflow-scrolling: touch;
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
    outline: none;
}

dl,
dd {
    margin: 0;
}

a {
    display: inline-block;
    margin: 0;
    padding: 0;
    text-decoration: none;
    background: transparent;
    outline: none;
    color: #000;
}

a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: currentColor;
}

img {
    border: 0;
}

p {
    margin: 0;
}

input,
button,
select,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background-color: transparent;
}


/*css base*/

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    font-size: 16px;
    color: #333;
    line-height: 80px;
    box-shadow: 6px 0 6px rgba(0, 0, 0, .4);
    background-color: rgba(255, 255, 255, .8);
    z-index: 999;
    min-width: 1200px;
}

.nav .logo {
    display: inline-block;
    margin: 0 0 0 200px;
    vertical-align: middle;
}

.nav .nav-form {
    overflow: hidden;
    display: inline-block;
    width: 42%;
    text-align: center;
    vertical-align: middle;
}

.nav .nav-form .nav-list {
    display: inline-block;
    width: 16.66%;
}

.nav .nav-form .nav-list.active a {
    border-top: 4px solid #e14c9b;
    margin-top: 0;
}

.nav .nav-form .nav-list:hover a {
    border-top: 4px solid #e14c9b;
    margin-top: 0;
}

.nav .nav-form .nav-list a {
    display: block;
    margin: 4px 6px 0;
}

.nav .nav-list .icon-circle {
    display: inline-block;
    width: 5px;
    height: 5px;
    vertical-align: middle;
    border-radius: 50%;
    background-color: #333;
}

.nav .login-box {
    display: inline-block;
    /*margin-left: 80px;*/
    margin-left: 20px;
    height: 30px;
    text-align: center;
    line-height: 30px;
}

.nav .login-box .login {
    width: 60px;
    border: 1px solid #465362;
    box-sizing: border-box;
    transition: all .2s;
    border-radius: 5px;
}

.nav .login-box .login-register {
    margin-right: 10px;
}

.nav .login-box .login:hover,
.nav .login-box .login-register:hover {
    color: #fff;
    background-color: #465362;
}

.nav .meeting-link {
    /* line-height: 80px; */
}

.nav .meeting-link img {
    width: 30px;
    vertical-align: middle;
    margin-right: 5px;
    animation: meetA 1s linear infinite;
}

@keyframes meetA {
    from {
        transform: rotateY(0);
    }
    to {
        transform: rotateY(360deg);
    }
}

.nav .meeting-link span {
    display: inline-block;
    width: 60px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    border: 2px solid #fc4d3b;
    border-radius: 5px;
    color: #fc4d3b;
    font-weight: 600;
}

.nav .call_phone {
    width: 207px;
    margin-left: 40px;
}
.nav .call_phone img {
    width: 100%;
}

.footer {
    padding: 70px 0;
    text-align: center;
    min-width: 1200px;
    background-color: #3b3b3b;
}

.footer .text {
    margin-bottom: 50px;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
}

.footer .text:last-child {
    letter-spacing: 2px;
    margin-bottom: 0;
}

.error {
    margin-top: 200px;
    height: 100%;
    width: 100%;
    font-size: 50px;
    color: #999;
    text-align: center;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}