﻿* {
    margin: 0;
    padding: 0;
    list-style: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

ul {
    margin: 0;
}

.container {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
}

a,
a:hover {
    text-decoration: none !important;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}


/* 导航 */

header {
    position: fixed;
    top: 20px;
    max-width: 1200px;
    height: 70px;
    z-index: 999999999;
    left: 50%;
    transform: translateX(-50%);
}

nav {
    background: #fff;
    padding-left: 75px;
    box-shadow: rgb(170, 170, 170) 1px 1px 3px;
}

header ul li {
    display: inline-block;
}

header ul li a {
    line-height: 70px;
    font-size: 16px;
    padding: 0 30px;
    color: #333;
}

header ul li.active a {
    color: #007aff;
}


/* 手机 */

.banner {
    position: relative;
    /* min-width: 1200px; */
}

.shouji {
    position: absolute;
    left: 50%;
    top: 80%;
    width: 70rem;
    transform: translateX(-50%);
    z-index: 1;
}

.bannerText {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 270px;
    color: #fff;
    text-align: center;
}

.bannerText div {
    font-size: 80px;
    font-weight: bold;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.bannerText p {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}


/* 品牌优势 */

.itemTitle {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #333333;
}

.itemCon {
    font-size: 14px!important;
    color: #999999;
    line-height: 1.5;
    height:42px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    background: #EAF3FF !important;
    color: #333 !important;
    border: 1px solid #1577FC !important;
}

.advantageList ul li a {
    cursor: pointer;
    padding-left: 26px;
    padding-right: 40px;
    padding-top: 25px;
    width: 285px;
    height: 125px;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    margin-bottom: 30px;
    box-sizing: border-box;
}


/*  */
.navbar .shouji {
    position: absolute;
    top: 50px;
    left: 45%;
    transform: translateX(-50%);
    width: 275px;
    height: 500px;
    z-index: 999;
    overflow: hidden;
}

.navbar .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: -230px;
    left: -230px;
    border: 460px solid transparent;
    cursor: default;
    border-radius: 50%;
    transform: scale(1);
    z-index: 1;
}

.navbar .menu li {
    position: absolute;
    top: -250px;
    left: -140px;
    transform-origin: 250px 250px;
}

.navbar .menu li:nth-child(1) {
    transform: rotate(45deg);
}

.navbar .menu li:nth-child(2) {
    transform: rotate(100deg);
}

.navbar .menu li:nth-child(3) {
    transform: rotate(150deg);
}

.navbar .menu li:nth-child(1) img {
    transform: rotate(675deg);
}

.navbar .menu li:nth-child(2) img {
    transform: rotate(620deg);
}

.navbar .menu li:nth-child(3) img {
    transform: rotate(570deg);
}

.navbar .menu li:nth-child(4) {
    transform: rotate(300deg);
}

.navbar .menu li:nth-child(4) img {
    transform: rotate(420deg);
}

.navbar .menu li:nth-child(5) {
    transform: rotate(350deg);
}

.navbar .menu li:nth-child(5) img {
    transform: rotate(370deg);
}

.navbar .menu li img {
    width: 135px;
    height: 135px;
    animation: zoomimg 1.6s linear forwards;
}

.dotted-box {
    position: absolute;
    top: 230px;
    left: 45%;
    transform: translate(-50%, -50%);
}

.dotted {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}


.dotted-box div[class^="pulse"] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 1px;
    box-shadow: 0 0 1.5px #1577FC;
    border-radius: 50%;
    animation: pulse 1.6s linear infinite;
}

.dotted-box div.pulse2 {
    animation-delay: 0.4s;
}

.dotted-box div.pulse3 {
    animation-delay: 0.8s;
}

.dotted-box div.pulse4 {
    animation-delay: 1.2s;
}

@keyframes pulse {
    0% {}
    40% {
        width: 310px;
        height: 310px;
        opacity: 1;
    }
    50% {
        width: 340px;
        height: 340px;
        opacity: 1;
    }
    60% {
        width: 370px;
        height: 370px;
        opacity: 1;
    }
    70% {
        width: 400px;
        height: 400px;
        opacity: 1;
    }
    80% {
        width: 430px;
        height: 430px;
        opacity: 1;
    }
    100% {
        width: 460px;
        height: 460px;
        opacity: 0;
    }
}

.quyi {
    width: 100%;
    height: 225px;
    border: 1px solid #ddd;
    padding: 33px;
}

.quyi p,
.show p,
.xiju p {
    font-weight: 600;
    font-size: 20px;
}

.quyi .line,
.show .line,
.xiju .line {
    margin: 10px 0;
    font-size: 20px;
    background-color: #1678FC;
    height: 3px;
}

.quyi ul li,
.xiju ul li {
    float: left;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px 10px 0;
}

.show ul li {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px 10px 0;
}

.xiju {
    width: 100%;
    height: 135px;
    border: 1px solid #ddd;
    padding: 33px;
}

.bottomLeft .col-xs-12,
.bottomRight .col-xs-6 {
    padding: 0;
    margin: 10px 0;
}

.show {
    width: 100%;
    height: 290px;
    border: 1px solid #ddd;
    padding: 33px;
}

/* 关于我们 */

.about-box {
    min-width: 1200px;
    margin-top: 90px;
    width: 100%;
    height: 100%;
    background: url(../img/bg-about.jpg) no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: #fff;
}

.title {
    padding-top: 110px;
    text-align: center;
    font-size: 44px;
    font-weight: bold;
}

.line {
    margin: 20px auto;
    width: 60px;
    height: 2px;
    background-color: #fff;
}

.title-C {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 463px;
    margin-bottom: 100px;
}

.cont-left {
    color: #1a4c83;
    display: table;
    padding: 40px 100px 30px 60px;
    box-sizing: border-box;
    width: 800px;
    height: 220px;
    font-size: 16px;
    line-height: 32px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background-color: rgba(255, 255, 255, .4);
}

.cont-right {
    width: 484px;
    height: 400px;
    border-top-right-radius: 40px;
    overflow: hidden;
}


/* 新闻 */

.newsCont {
    margin: 80px 0;
}

.newsLeft,
.newsRight {
    width: 550px;
    height: 300px;
    font-size: 15px;
    line-height: 35px;
    overflow: hidden;
}

.newsLeft .newsText {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: #cccdcf7c;
    padding: 0 20px;
}

.newsLeft .newsText p {
    font-size: 16px;
    color: #fff;
}

.name {
    font-size: 18px;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.newsList .rightTime {
    text-align: right;
    color: #999;
}

.rightTitle {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
}

.rightTitle:hover {
    color: #007aff
}


/* 联系我们 */

.contact-box {
    min-width: 1200px;
    height: 100%;
    text-align: center;
    background: url(../img/bg3.png) no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    padding-bottom: 100px;
}

.contact-panel {
    position: relative;
    box-sizing: border-box;
    padding: 47px 75px 51px;
    margin-top: 50px;
    height: 557px;
    background-color: #fff;
    border-radius: 10px;
}

.panel-right {
    padding: 0 50px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
}

.panel-right p {
    padding-top: 60px;
    margin-bottom: 40px;
    color: #1577FC;
    font-size: 22px;
    font-weight: 500;
}

.input {
    margin-bottom: 20px;
    width: 335px;
    height: 44px;
    display: block;
    text-indent: 2ex;
    border: 1px solid #DDDDDD;
    border-radius: 6px;
    overflow: hidden;
}

button {
    cursor: pointer;
    margin: 0 auto;
    width: 134px;
    height: 44px;
    background: #1577FC;
    border-radius: 6px;
    font-size: 16px;
    line-height: 44px;
    font-weight: 500;
    color: #FFFFFF;
    border: none;
}

.prtip {
    margin: 18px 0 30px;
    font-size: 12px;
    color: #999999;
    line-height: 18px;
}


/* 底部 */

footer {
    min-width: 1200px;
    background-color: #eee;
    text-align: center;
    padding: 60px 0 30px;
}

footer ul li {
    float: left;
}

.footer a {
    color: #333;
}

.footer span {
    padding: 0 5px
}

.footer p:nth-child(2) {
    margin: 10px 0;
}


/* 侧边栏 */

aside {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    right: 20px;
    text-align: center;
    top: 50vh;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
    border-radius: 20px;
    padding: 20px 0;
    box-sizing: border-box;
    background-color: #fff;
    z-index: 2;
}

.side-item {
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 10px;
}
.side-item:last-child{
    margin-bottom: 0;
}

.side-item-img {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin: 5px;
}

.code {
    display: none;
    position: absolute;
    top: 5px;
    left: -190px;
    width: 190px;
    height: 190px;
    background: url(../img/bg01.png);
    background-size: 100%;
    z-index: 15;
    height: 190px;
}

.code-img {
    width: 130px;
    height: 130px;
    z-index: 15;
    margin-top: 32px;
    margin-left: 27px;
}
.qqbox {
    display: none;
    position: absolute;
    left: -160px;
    top: 70px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    height: 50px;
}
.telbox {
    display: none;
    position: absolute;
    left: -160px;
    top: 120px;
    width: 160px;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    height: 50px;
}

.ipone {
    display: inline-block;
    background-color: #fff;
    width: 150px;
    height: 50px;
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
}

i {
    box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid #fff;
    border-bottom: 5px solid transparent;
}

.side-item:hover .telbox,
.side-item:hover .qqbox,
.side-item:hover .code {
    display: block;
}

@media screen and (max-width: 768px) {
    .advantageList ul li {
        display: inline-block;
        margin-right: 40px;
    }
    .zcxw {
        min-height: 500px;
    }
    .navbar {
        width: 4rem;
        height: 4rem;
        border-radius: 50%;
        margin: 0 auto;
        position: relative;
        cursor: pointer;
        text-align: center;
        font-weight: bold;
    }
    .navbar .menu {
        list-style: none;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 20rem;
        left: -12rem;
        border: 4rem solid transparent;
        cursor: default;
        border-radius: 50%;
        transform: scale(1);
    }
}