/* 首页 */
.topic-idx {
    margin: 0 auto;
    min-width: 1400px;
    max-width: 1920px;
    background-color: #fff;
}

.topic-idx .header {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #2968a9;
    background-image: url("../images/banner/01.jpg"), url("../images/banner/01.webp");
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}

.topic-idx .header .topbar {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    color: #fff;
    line-height: 36px;
    z-index: 1;
}

.topic-idx .header .topbar .logo {
    width: 90px;
    height: 32px;
    text-indent: -1000px;
    font-size: 24px;
    color: #fff;
    font-weight: bold;
    background-image: url("../images/logo.png");
    background-position: center;
    background-repeat: no-repeat;
    /* text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.41); */
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .header .topbar .logo {
        background-image: url("../images/logo@2x.png");
        background-size: 100%;
    }
}

.topic-idx .header .topbar .menu ul {
    display: flex;
}
.topic-idx .header .topbar .menu ul li a {
    display: inline-block;  
    padding: 0 20px 0 25px;
    color: #fff;
}

.topic-idx .header .topbar .menu ul li a.home {
    background: url(../images/icons/home@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .header .topbar .menu ul li a.home {
        background-image: url(../images/icons/home@2x.png);
        background-size: 18px;
    }
}

.topic-idx .header .topbar .menu ul li a.help {
    background: url(../images/icons/help@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .header .topbar .menu ul li a.help {
        background-image: url(../images/icons/help@2x.png);
        background-size: 18px;
    }
}

.topic-idx .header .topbar .menu ul li a.contact {
    background: url(../images/icons/contact@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .header .topbar .menu ul li a.contact {
        background-image: url(../images/icons/contact@2x.png);
        background-size: 18px;
    }
}

.topic-idx .header .topbar .menu ul li a.app {
    background: url(../images/icons/app@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .header .topbar .menu ul li a.app {
        background-image: url(../images/icons/app@2x.png);
        background-size: 13px 19px;
    }
}

.topic-idx .header .topbar .menu ul li a:hover {
    opacity: 0.85;
}

.topic-idx .header .intro {
    padding-top: 85px;
    text-align: center;
    color: #fff;
}

.topic-idx .header .intro h2 {
    font-size: 42px;
    font-weight: bold;
}

.topic-idx .header .intro p {
    margin: 30px auto;
    line-height: 28px;
}

.topic-idx .header .intro .link {
    text-align: center;
}

.topic-idx .header .intro .link li {
    display: inline-block;
    margin: 0 5px;
    font-size: 0;
}
.topic-idx .header .intro .link li a {
    display: block;
    padding: 10px 30px;
    color: #fff;
    font-size: 16px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.3);
}

.topic-idx .header .intro .link li:last-child a {
    padding: 8px 28px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: none;
}

.topic-idx .header .intro .link li a:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.topic-idx .body {
    position: relative;
    width: 100%;
}

.topic-idx .body .title {
    margin: 0 auto;
    padding: 60px 0px 30px 0;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #000;
}

.topic-idx .body .section {
    position: relative;
    width: 100%;
    background-color: #fff;
}

.topic-idx .body .feature {
    position: relative;
    box-sizing: border-box;
    padding-top: 100px;
    width: 100%;
    height: 650px;
    background: #f6f9fa url(../images/feature.png) center -50px no-repeat;
}

.topic-idx .body .feature ul {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0px auto;
    width: 1200px;
}

.topic-idx .body .feature ul:nth-child(2) {
    padding-top: 60px;
}

.topic-idx .body .feature ul:nth-child(3) {
    padding-top: 90px;
}

.topic-idx .body .feature ul:nth-child(4) {
    padding-top: 60px;
}

.topic-idx .body .feature ul li {
    box-sizing: border-box;
    flex: 600px;
    height: 70px;
}

.topic-idx .body .feature ul li.a {
    padding-right: 140px;
    padding-left: 100px;
    text-align: right;
}
.topic-idx .body .feature ul li.b {
    padding-left: 135px;
    flex: 600px;
    text-align: left;
}

.topic-idx .body .feature ul li.b p {
    width: 350px;
}

.topic-idx .body .feature ul li.c {
    padding-right: 245px;
    text-align: right;
}

.topic-idx .body .feature ul li.d {
    padding-left: 240px;
    text-align: left;
}

.topic-idx .body .feature ul li.d p {
    width: 280px;
    word-wrap: break-word;
}

.topic-idx .body .feature ul li.e {
    padding-right: 220px;
    text-align: right;
}

.topic-idx .body .feature ul li.f {
    padding-left: 200px;
    text-align: left;
}

.topic-idx .body .feature ul:last-child {
    justify-content: center;
}

.topic-idx .body .feature ul li.h {
    flex: auto !important;
    text-align: center;
}

.topic-idx .body .feature ul li h2 {
    padding-bottom: 5px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.topic-idx .body .feature ul li p {
    color: #888;
    line-height: 24px;
}

.topic-idx .body .app {
    margin: 0 auto;
    width: 1400px;
}

.topic-idx .body .app.bg {
    margin: 0 auto;
    padding: 50px 0;
    width: 100% !important;
    background-color: #f2f6fa;
}

.topic-idx .body .app .desc {
    padding-bottom: 80px;
    text-align: center;
    color: #666;
}

.topic-idx .body .app .name {
    margin: 0 auto;
    width: 1400px;
    padding-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    color: #222;
    line-height: 32px;
    text-align: center;
}

.topic-idx .body .app .container{
    display: flex;
    justify-content: space-around;
    padding: 10px 0 90px 0;
}

.topic-idx .body .app .container .item {
    width: 534px;
}

.topic-idx .body .app p {
    padding-bottom: 15px;
    color: #666;
    text-align: center;
    line-height: 24px;
}

.topic-idx .body .app .img {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 50px;
    width: 1400px;
    text-align: center;
    border-radius: 10px;
}

.topic-idx .body .app .img.bg {
    background-color: #fff;
}

.topic-idx .footer {
    position: relative;
    padding-top: 40px;
    line-height: 28px;
    color: rgba(255, 255, 255, 0.5);
    background-color: #272727;
}

.topic-idx .footer a {
    color: rgba(255, 255, 255, 0.5);
}

.topic-idx .footer .container {
    margin: 0 auto;
    width: 1360px;
}

.topic-idx .footer .container h2 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-weight: bold;
}

.topic-idx .footer .container .info {
    padding: 15px 0 30px 0;
    display: flex;
    justify-content: space-between;
}

.topic-idx .footer .container .info .context .text {
     display: flex;
}

.topic-idx .footer .container .info p {
    margin-right: 50px;
    padding-left: 25px;
    background: url(../images/icons/qq@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .footer .container .info p {
        background-image: url(../images/icons/qq@2x.png);
        background-size: 17px 17px;
    }
}

.topic-idx .footer .container .info p:first-child {
    background: url(../images/icons/tel@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .footer .container .info p:first-child {
        background-image: url(../images/icons/tel@2x.png);
        background-size: 17px 17px;
    }
}

.topic-idx .footer .container .info p:last-child {
    background: url(../images/icons/mail@1x.png) left no-repeat;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2) {
    .topic-idx .footer .container .info p:last-child {
        background-image: url(../images/icons/mail@2x.png);
        background-size: 17px 17px;
    }
}

.topic-idx .footer .ewm {
    display: flex;
    justify-items: center;
}

.topic-idx .footer .gzh {
    display: flex;
    margin-left: 5px;
    margin-right: 5px;
    flex-direction: column;
    justify-items: center;
}

.topic-idx .footer .gzh span {
    font-size: 12px;
    color: #999;
    text-align: center;
}

.topic-idx .footer .container .cp {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    padding: 15px 0;
}


.juxtapose {
    max-width: 534px;
}

.jx-slider {
    margin-top: 1em;
}
