﻿/* banner */

.cont_banner {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cont_banner img {
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
}

.cont_banner .tit {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    max-width: 1200px;
    transform: translateX(-50%);
    color: #fff;
    text-align: right;
}

.cont_banner .tit p {
    font-size: 30px;
    letter-spacing: 0.2em;
    margin-bottom: 1em;
}

.cont_banner .tit span {
    font-size: 12px;
    display: block;
    letter-spacing: 0.8em;
    line-height: 1.5em;
    text-transform: uppercase;
}

.cont_mid {
    padding-top: 6%;
    padding-bottom: 6%;
}

/* left */

.cont_left {
    float: left;
    max-width: 48%;
    font-size: 20px;
}

.cont_left .t1 {
    font-size: 1.8em;
    color: #333333;
    margin-bottom: 1em;
}

.cont_left .t2 {
    font-size: 1.2em;
    color: #606060;
    margin-bottom: 0.7em;
}
.cont_left .t2 a { 
    color: #606060; 
}
.cont_left .t3 {
    font-size: 0.7em;
    color: #606060;
    line-height: 150%;
}

.cont_left .t4 {
    font-size: 0.9em;
    color: #2b2b2b;
    margin: 2em 0 0.7em 0;
}

/* right */

.cont_right {
    float: right;
    max-width: 48%;
    padding-top: 7%;
}

.cont_right .t1 {
    font-size: 18px;
    color: #999999;
    text-align: right;
    line-height: 2em;
}

.cont_right ul {
    width: 500px;
    max-width: 100%;
    padding-top: 3%;
    padding-bottom: 5%;
}

.cont_right li {
    margin-bottom: 0.5em;
    font-size: 14px;
}

.cont_right input {
    display: block;
    width: 100%;
    font-size: inherit;
    padding: 1em 0 0.6em 0;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e2e2e2;
    outline: none;
    transition: 0.5s;
    background-color: transparent;
}

.cont_right li:nth-of-type(1) ::-webkit-input-placeholder, .cont_right li:nth-of-type(2) ::-webkit-input-placeholder {
    letter-spacing: 2px;
}

.cont_right li:nth-of-type(1) ::-moz-placeholder, .cont_right li:nth-of-type(2) ::-moz-placeholder {
    letter-spacing: 2px;
}

.cont_right li:nth-of-type(1) :-ms-input-placeholder, .cont_right li:nth-of-type(2) :-ms-input-placeholder {
    letter-spacing: 2px;
}

.cont_right input:focus {
    border-bottom: 1px solid #000;
}

.join_btn {
    float: right;
    width: 190px;
    height: 50px;
    color: #ff4229;
    border: 1px solid #ff4229;
    border-radius: 4px;
    cursor: pointer;
    transition: 1s;
    position: relative;
    background: none;
    display: block;
    -webkit-perspective: 1000;
    -webkit-backface-visibility: hidden;
    outline: none;
    font-size: 1em;
    letter-spacing: 4px;
}

.join_btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background-color: #ff4229;
    transition: 1s;
    opacity: 0;
    z-index: -1;
}

.join_btn:hover {
    color: #fff;
}

.join_btn:hover:after {
    width: 100%;
    opacity: 1;
}

/* 分享 */

.sharebox {
    font-size: 0;
    overflow: hidden;
    float: left;
}

.sharebox p {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
}

.sharebox .bdsharebuttonbox {
    display: inline-block;
    height: 30px;
    position: relative;
    top: 8px;
}

.sharebox .bdsharebuttonbox:after {
    display: none;
}

.sharebox .bdsharebuttonbox>a {
    display: block;
    float: left;
    width: 30px;
    height: 30px;
    margin: 0 0 0 20px;
    padding: 0;
    line-height: 30px;
    background-color: #666666;
    border-radius: 50%;
    -o-border-radius: 50%;
    -ms-border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    background-image: url(../images/share.png);
    background-repeat: no-repeat;
}

.sharebox .bdsharebuttonbox>a.bds_more {
    display: none;
}

.sharebox .bdsharebuttonbox>a.bds_sqq {
    background-position: 0 0
}

.sharebox .bdsharebuttonbox>a.bds_tsina {
    background-position: 0 -30px
}

.sharebox .bdsharebuttonbox>a.bds_weixin {
    background-position: 0 -60px
}

.sharebox .bdsharebuttonbox>a.bds_tqq {
    background-position: 0 -90px
}

.sharebox .bdsharebuttonbox>a:hover {
    background-color: #d5000e;
    -webkit-animation: tada 1s ease both;
    -moz-animation: tada 1s ease both;
    animation: tada 1s ease both;
}

/* 地图 */

.map {
    width: 100%;
    height: 600px;
    background-color: #ededed;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scale(1);
    }
    10%, 20% {
        -moz-transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -moz-transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -moz-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -moz-transform: scale(1) rotate(0);
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

@media screen and (max-width:1200px) {
    .cont_banner img {
        height: 400px;
    }
    .cont_banner .tit {
        padding-left: 3%;
        padding-right: 3%;
        left: auto;
        transform: translateX(0);
        right: 0;
    }
    .cont_banner .tit p {
        font-size: 20px;
    }
    .cont_left {
        font-size: 16px;
    }
    .cont_right .t1 {
        font-size: 16px;
    }
    .sharebox {
        display: none;
    }
    .join_btn {
        width: 150px;
        height: 40px;
    }
    .map {
        display: none;
    }
}

@media screen and (max-width:800px) {
    .cont_banner img {
        height: 150px;
    }
    .cont_banner .tit {
        top: 30%;
    }
    .cont_banner .tit p {
        font-size: 16px;
    }
    .cont_banner .tit span {
        letter-spacing: 0.4em;
    }
    .cont_left, .cont_right {
        width: 100%;
        float: none;
        max-width: inherit;
    }
    .cont_left {
        font-size: 12px;
    }
    .cont_right .t1 {
        text-align: left;
        font-size: 14px;
    }
    .cont_right li {
        font-size: 13px;
    }
    .join_btn {
        float: left;
    }
    .join_btn {
        width: 130px;
        height: 36px;
    }
}