.c-phone {
    display: none;
}

* {
    margin: 0;
    padding: 0;
    font-family: Microsoft YaHei, sans-serif;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-size: 14px;
    font-weight: normal;
}

li {
    list-style: none;
}

input,
textarea {
    outline: none;
}

a {
    color: #2e2e2e;
    text-decoration: none;
}

input {
    background: none;
    border: 0;
}

.cl:after {
    content: '';
    display: block;
    clear: both;
    visibility: hidden;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.clear {
    clear: both;
}

.center {
    width: 1200px;
    margin: 0 auto;
}

/*header*/
#header {
    background: #52befc;
}

.welcome {
    line-height: 50px;
    color: white;
    float: left;
}

.top-left {
    float: right;
}

.top-left a {
    color: white;
    padding: 0 14px;
    line-height: 50px;
    border-right: 1px solid white;
}

.top-left a:nth-last-child(1) {
    border: none;
}

/*nav*/
.logo {
    float: left;
}

.nav {
    float: right;
}

.nav li {
    float: left;
    padding: 8px 9px;
    margin-top: 48px;
}

.nav ul li.on {
    background-color: #52befc;
    border-radius: 100px;
}

.nav ul li.on a {
    color: white;
}

.nav li a {
    font-size: 16px;
}

.nav li:hover {
    background: #52befc;
    border-radius: 100px;
}

.nav li:hover a {
    color: white;
}

/*search*/
.keyword-box {
    background: #f6f6f6;
    height: 56px;
}

.keyword {
    float: left;
}

.keyword img {
    float: left;
    margin-right: 20px;
    padding-top: 6px;
}

.keyword a {
    color: #6e6e6e;
    padding-right: 15px;
    line-height: 56px;
}

.search {
    float: right;
    margin-top: 11px;
}

.search input[type='text'] {
    width: 238px;
    height: 32px;
    border: 1px solid #52befc;
    box-sizing: border-box;
    padding-left: 8px;
    float: left;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #777777;
}

.search input[type='button'] {
    width: 55px;
    height: 32px;
    color: white;
    background: #52befc url('../images/search.png') no-repeat center;
    float: right;
    cursor: pointer;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/*message*/
.message {
    width: 100%;
    height: 290px;
    position: relative;
    background: url('../images/message-bg.jpg') no-repeat center;
}

.message h2 {
    text-align: center;
    font-size: 20px;
    padding-top: 36px;
    color: white;
}

.message form {
    margin: 32px auto 0 auto;
    text-align: center;
    font-size: 0;
}

.message-left input[name='name'] {
    width: 174px;
    line-height: 29px;
    margin-right: 48px;
}

.message-left input[name='mobile'] {
    width: 174px;
    line-height: 29px;
}

.message-left input[name='email'] {
    display: block;
    width: 408px;
    line-height: 29px;
    margin-top: 27px;
}

.message-button {
    width: 100%;
    display: flex;
    justify-content: center;
}

.message input[type='button'] {
    display: block;
    clear: both;
    width: 144px;
    padding: 7px 29px;
    background-color: rgba(246, 246, 246, 1);
    border: 1px solid #FAFAFA;
    /*margin: 0 auto 0 370px;*/
    cursor: pointer;
    border-radius: 4px;
    color: #777777;
}

.message-left input {
    color: #777777;
    border-radius: 4px;
    background-color: rgba(246, 246, 246, 1);
    border: 1px solid #fafafa;
    padding-left: 6px;
}

.message-right textarea {
    width: 408px;
    height: 83px;
    background-color: rgba(246, 246, 246, 1);
    border: 1px solid #fafafa;
    margin-left: 50px;
    padding: 2px;
    border-radius: 4px;
    resize: none;
    color: #777777;
}

.message-left,
.message-right {
    display: inline-block;
    float: none;
    vertical-align: top;
    margin-bottom: 28px;
}

/*friend link*/
.friend-link {
    width: 1112px;
    box-sizing: border-box;
    line-height: 48px;
    padding-left: 28px;
    background-image: -webkit-linear-gradient(180deg, rgb(13, 214, 165) 0%, rgb(61, 162, 255) 100%);
    position: absolute;
    left: 50%;
    bottom: -22px;
    margin: 0 auto 0 -556px;
    color: white;
}

.friend-link span {
    margin-right: 15px;
}

.friend-link a {
    color: white;
}

.friend-link a::after {
    content: '|';
    padding-left: 20px;
    padding-right: 20px;
}

/*more*/
.more-box {
    width: 125px;
    height: 38px;
    text-align: center;
    background: #6bc8fd;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
}

.more-box a {
    color: white;
    line-height: 38px;
}

.more {
    position: absolute;
    left: 44px;
    transition: all 1.2s;
}

.more::after {
    content: '→';
    position: absolute;
    right: -20px;
    visibility: hidden;
    transition: all 1s;
}

.more-box:hover .more {
    transform: translateX(-10px);
}

.more-box:hover .more::after {
    visibility: visible;
}

/*footer*/
.footer {
    background-color: #f6f6f6;
    padding-top: 90px;
    padding-bottom: 50px;
}

.footer-logo {
    margin-right: 120px;
    width: 270px;
}

.footer-middle {
    width: 600px;
}

.footer-nav {
    margin-bottom: 50px;
}

.footer-nav h2,
.footer-contact h2 {
    font-size: 19px;
    margin-bottom: 16px;
}

.footer-nav li {
    float: left;
    padding-right: 16px;
}

.footer-contact div {
    line-height: 2;
}

.footer-contact p {
    line-height: 26px;
    color: #6e6e6e;
    text-wrap: wrap;
}

.footer-qrcode {
    margin: 30px 43px 0 0;
}

.footer-qrcode img {
    width: 163px;
    height: 163px;
}

.footer-qrcode p {
    line-height: 34px;
    text-align: center;
}

.record-box div {
    text-align: center;
    line-height: 36px;
}

.blue {
    height: 11px;
    background-color: #6bc8fd;
}

#floatQrcode {
    position: fixed;
    height: 150px;
    width: 160px;
    text-align: center;
    z-index: 99999;
    top: 160px;
    left: 5px;
}

#floatQrcode img {
    width: 150px;
}

/*column nav*/
.column-nav {
    margin: 30px 0 15px 0;
}

.column-nav-title {
    position: relative;
    padding-left: 20px;
    float: left;
}

.column-nav-title::before {
    content: '';
    width: 4px;
    height: 54px;
    background-color: #6bc8fd;
    position: absolute;
    left: 0;
}

.column-nav-title h3 {
    color: #46bafd;
    font-size: 18px;
    text-transform: uppercase;
}

.column-nav-title h2 {
    color: #2e2e2e;
    font-size: 21px;
}

.column-nav-content {
    float: right;
}

.column-nav-content h4 {
    text-align: right;
    margin-bottom: 8px;
    color: #6e6e6e;
}

.column-nav-content h5 {
    width: 968px;
    height: 1px;
    background: #9e9e9e;
}

@media (max-width: 1200px) {
    .center {
        width: 100%;
    }

    .nav li {
        padding: 8px 12px;
        margin-top: 22px;
    }

    .logo {
        max-width: 30%;
    }

    .logo img {
        width: 100%;
        height: 100%;
    }

    .friend-link {
        width: 100%;
        margin-left: 0;
        left: 0;
    }
}
