/* 关于我们css样式 */
/* banner 区域 */
.banner {
    height: 524px;
    background-image: url(../uploads/about/banner.jpg);
    background-size: cover;
}

.banner .wrapper h1 {
    padding-top: 120px;
    font-weight: 700;
    font-size: 56px;
    color: #070346;
}

.banner .wrapper p {
    padding-top: 28px;
    font-size: 20px;
    color: #444444;
}

.banner .wrapper a {
    display: block;
    margin-top: 100px;
    width: 190px;
    height: 60px;
    background: linear-gradient(#fd6251, #ff774a);
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    color: #FFF;
    text-align: center;
    line-height: 60px;
}

.banner .wrapper a:hover {
    background: linear-gradient(#080346, #080346);
}

/* 公司介绍区域 */
.company {
    margin-top: 120px;
}

.company .introduce {
    display: flex;
    height: 522px;
}

.company .introduce .left {
    width: 566px;
    height: 526px;
}

.company .introduce .left img {
    transition: all 0.5s;
}

.company .introduce .left img:hover {
    transform: translateY(-13px);
}

.company .introduce .right {
    margin-left: 93px;
}

.company .introduce .right h2 {
    margin-top: 100px;
    font-size: 40px;
    color: #070346;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.company .introduce .right p {
    margin-top: 64px;
    font-size: 24px;
    color: #222;
    line-height: 40px;
}


.company .introduce .right span {
    display: block;
    margin-top: 50px;
    font-size: 20px;
    color: #333;
    line-height: 35px;
}

/* 传输速度 */
.company .trans {
    margin-top: 113px;
    display: flex;
}

.company .trans .left {
    margin-right: 93px;
    font-size: 20px;
    color: #333333;
    line-height: 35px;
}

.company .trans .right img {
    transition: all 0.5s;
}

.company .trans .right img:hover {
    transform: translateY(-13px);
}

/* 专利 */
.company .patent {
    margin-top: 113px;
    display: flex;
}

.company .patent .right p {
    margin-left: 93px;
    margin-top: 66px;
    font-size: 20px;
    color: #333333;
    line-height: 35px;
}

.company .patent .left img {
    transition: all 0.5s;
}

.company .patent .left img:hover {
    transform: translateY(-13px);
}

/* 合作与支持 */
.support {
    margin-top: 102px;
    padding-top: 90px;
    height: 686px;
    background-color: #f7f7f7;
}

.support .cooper h2 {
    font-size: 40px;
    color: #070346;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.support .cooper ul {
    margin-top: 90px;
    display: flex;
    justify-content: space-between;
}

.support .cooper li {
    width: 306px;
    height: 344px;
    border-radius: 20px;
    background-color: #fff;
    transition: all 0.5s;
}

.support .cooper li:hover {
    transform: translateY(-13px);
}

.support .cooper li:nth-child(2n) {
    margin-top: 30px;
}

.support .cooper li img {
    margin: 50px auto 0;
    display: block;
}


.support .cooper li h4 {
    margin-top: 34px;
    font-size: 30px;
    color: #070346;
    font-weight: 700;
    line-height: 30px;
    text-align: center;
}

.support .cooper li p {
    margin: 35px 42px 0;
    font-size: 18px;
    color: #666666;
    line-height: 30px;
}


/* 让li鼠标移上去变色后，li里面的h3和p都变色 */
.support .cooper li:hover h4,
.support .cooper li:hover p {
    color: #fd6350;
}

/* 期待加入我们 */
.join {
    height: 400px;
    background-image: url(../uploads/about/bj.jpg);
    background-size: cover;
}

.join .join-con {
    display: flex;
    justify-content: space-between;
}

.join .join-con h2 {
    margin-top: 60px;
    font-size: 65px;
    color: #fff;
    font-weight: 700;
    line-height: 100px;
}

.join .join-con p {
    margin-top: 114px;
    width: 580px;
    font-size: 20px;
    color: #fff;
    line-height: 35px;
}

.join .bn a {
    margin: 30px auto 0;
    display: block;
    width: 230px;
    height: 60px;
    background-color: #070346;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    line-height: 60px;
}

.join .bn a:hover {
    background-color: #fff;
    color: #fd6350;
}