html {
    font-size: 10px;
}

body {
    visibility: hidden;
    font: 14px -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei UI", "Microsoft YaHei", "Source Han Sans CN", sans-serif;
}

.showy {
    color: #FFA601 !important;
}

img {
    flex-shrink: 0;
}

.index-part {
    overflow: hidden;
}

.rotate180 {
    transform: rotate(180deg);
}

#top-banner .layui-carousel-ind {
    position: absolute;
    right: 50px;
    top: 300px;
    width: 100px;
    z-index: 999;
    color: rgba(255, 255, 255, .3);
    font-size: 18px;
    text-align: right;
}

#top-banner .layui-carousel-ind ul {
    background-color: transparent;
}

#top-banner .layui-carousel-ind li {
    display: block;
    width: auto;
    height: 30px;
    line-height: 30px;
    margin: 10px 0;
    background-color: transparent;
    cursor: pointer;
    border-radius: 0;
    transition: all .4s ease;
}

#top-banner .layui-carousel-ind .layui-this {
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    font-weight: bold;
    padding-right: 10px;
    border-right: solid 1px #FFF;
}

.my-carousel-item-list:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .65);
}

.my-carousel-item {
    position: relative;
}

.my-carousel-item-content {
    position: absolute;
    top: 96px;
    left: 20%;
    right: 20%;
    bottom: 64px;
    z-index: 99;
    color: #FFF;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    padding: 5% 0;
}

.my-carousel-item-content .target {
    font-size: 22px;
    letter-spacing: 2px;
}

.my-carousel-item-content .title span {
    font-size: 48px;
    letter-spacing: 6px;
    font-weight: bold;
    opacity: .9;
}

.my-carousel-item-content .sub-title {
    color: rgba(255, 255, 255, .7);
    line-height: 2;
    letter-spacing: 2px;
    font-size: 20px;
}

.banner-img {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.my-btn {
    white-space: nowrap;
    background-color: #FFA601;
    margin: 30px 0;
    box-sizing: border-box;
    display: inline-block;
    height: 72px;
    width: 237px;
    line-height: 72px;
    text-align: center;
    border-radius: 36px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all .6s cubic-bezier(.19, 1, .22, 1);;
}

.my-btn:hover {
    background-color: #fa8d01;
    color: #FFF;
}

.my-btn2 {
    white-space: nowrap;
    display: inline-block;
    box-sizing: border-box;
    background-color: #296bef;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    padding: 0 32px;
    line-height: 60px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    transition: all .4s ease;
    box-shadow: 0 1px 20px 0 rgba(41, 107, 239, 0.6);
    border-radius: 30px;
    margin-top: 30px;
}

.my-btn2:hover {
    color: #fff;
    background-color: #165be0;
    box-shadow: none;
}

.my-btn3 {
    white-space: nowrap;
    display: inline-block;
    border-radius: 10px;
    background-color: #296BEF;
    color: #FFF;
    font-size: 20px;
    margin: 30px 30px 0;
    cursor: pointer;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    outline: 0;
    transition: all .4s ease;
    box-shadow: 0 0 5px 0 rgba(41, 107, 239, 0.6);
}

.my-btn3:hover {
    color: #fff;
    background-color: #165be0;
    box-shadow: none;
}

.banner-wave {
    width: 100%;
    position: absolute;
    bottom: -0.1px; /*0手机上有黑条不知原因*/
    overflow: hidden;
    white-space: nowrap;
}

.banner-wave .item {
    flex-shrink: 0;
    display: flex;
    width: 100%;
    font-size: 0;
    align-items: flex-end;
    animation: carousel 15s infinite linear;
}

.banner-wave .item img {
    width: 100%;
}

@keyframes carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* icon */
.icon-x:before {
    display: inline-block;
    content: '';
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
    margin-right: 6px;
    background-image: url('/static/index/images/index/icon-x.png');
    background-position: center;
    background-size: 16px auto;
    background-repeat: no-repeat;
}

.contact a {
    color: inherit;
}

.contact .qrcode-img {
    width: 200px;
    height: 200px;
    margin: 25px;
    background-color: #f1f1f1;
    border-radius: 10px
}

@media screen and (min-width: 768px) {
    .mobile {
        display: none;
    }

    .index-part {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 0;
    }

    .index-part .head {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 50px;
    }

    .index-part:nth-of-type(odd) {
        background-color: #FFF;
    }

    .index-part:nth-of-type(even) {
        background-color: #F5F9FF;
    }

    .index-part .part-target {
        margin-bottom: 16px;
        font-size: 16px;
        color: #ffa601;
        line-height: 1;
    }

    .index-part .part-title {
        position: relative;
        margin-bottom: 28px;
        padding-bottom: 30px;
        font-size: 36px;
        color: #0b1531;
        font-weight: 500;
        letter-spacing: 1.5px;
    }

    .index-part .part-title:after {
        content: '';
        display: inline-block;
        position: absolute;
        left: 50%;
        bottom: 0;
        margin-left: -20px;
        width: 40px;
        height: 6px;
        background-color: #ffa601;
        border-radius: 3px;
    }

    .index-part .part-body {
        width: 1600px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .contact {
        box-sizing: border-box;
        width: 100%;
        height: 780px;
        padding: 70px 0;
        position: relative;
        color: rgba(255, 255, 255, .9);
    }

    .contact .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .contact > .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 1400px;
        margin: 0 auto;
    }

    .contact > .container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .65);
        z-index: -1;
    }

    .contact .contact-us {
        width: 650px;
        padding-right: 200px;
        border-right: solid 2px rgba(255, 166, 1, .28);
    }

    .contact .call-us {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .contact .call-us > img {
        width: 260px;
        height: 260px;
        margin: 25px auto;
        background-color: #f1f1f1;
        border-radius: 10px;
    }

    .contact .title {
        font-size: 42px;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .contact .sub-title {
        font-size: 22px;
        color: rgba(255, 255, 255, .4);
        text-align: center;
        padding-bottom: 50px;
        letter-spacing: 2px;
    }

    .contact .layui-form-radio > i:hover, .layui-form-radioed > i {
        color: #FFA601;
    }

    .contact .my-form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 30px;
    }

    .contact .my-form .error input[type=text] {
        border-color: #f0614e !important;
    }

    .contact .my-form .error .icon-x {
        display: block !important;
    }

    .contact .my-form .item {
        margin-bottom: 20px;
        height: 90px;
        box-sizing: unset !important;
    }

    .contact .my-form .item .icon-x {
        display: none;
        margin-left: 20px;
        margin-top: 10px;
        color: #f0614e;
        font-size: 14px;
    }

    .contact .my-form .item .validate-code {
        position: absolute;
        right: 25px;
        top: 15px;
        color: #FFF;
        font-size: 20px;
        opacity: .6;
    }

    .contact .my-form .btn-submit {
        box-sizing: border-box;
        width: 100%;
        height: 60px;
        border: 3px solid rgba(255, 166, 1, 1);
        background-color: #FFA601;
        border-radius: 30px;
        font-size: 20px;
        color: #FFF;
        cursor: pointer;
        transition: all .3s ease;
    }

    .contact .my-form .btn-submit:hover {

    }

    .my-form ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color: rgba(255, 255, 255, .6);
        font-size: 20px;
    }

    .my-form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color: rgba(255, 255, 255, .6);
        font-size: 20px;
    }

    .my-form ::-moz-placeholder { /* Mozilla Firefox 19+ */
        color: rgba(255, 255, 255, .6);
        font-size: 20px;
    }

    .my-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: rgba(255, 255, 255, .6);
        font-size: 20px;
    }

    .my-form input[type=text] {
        box-sizing: border-box;
        background-color: transparent;
        width: 297px;
        height: 60px;
        border: 3px solid rgba(255, 166, 1, 1);
        border-radius: 30px;
        padding: 0 30px 0 32px;
        color: rgba(255, 255, 255, .9);
        font-size: 20px;
    }

    .my-form .layui-form-select .layui-edge {
        right: 20px;
    }

    .my-form .layui-form-select dl {
        top: 60px;
        left: 30px;
        min-width: 237px;
        color: #666;
        background-color: #FFF;
    }

    .my-form .layui-form-selectup dl {
        top: auto !important;
        bottom: 60px;
    }

    .my-form .layui-this {
        color: #FFA601 !important;
        background-color: rgba(206, 201, 237, .2) !important;
    }
}


@media screen and (max-width: 767px) {
    .pc {
        display: none;
    }

    body {
        font-size: 12px;
    }

    .my-btn {
        width: auto;
        margin: 0;
        height: 42px;
        line-height: 42px;
        min-width: 52px;
        padding: 0 24px;
        border-radius: 29px;
        font-size: 14px;
    }

    .my-btn2 {
        margin-top: 0;
        height: 42px;
        line-height: 42px;
        min-width: 52px;
        padding: 0 20px;
        border-radius: 40px;
        font-size: 14px;
    }

    .my-btn3 {
        border-radius: 10px;
        font-size: 14px;
        margin: 10px;
        padding: 10px 16px;
    }

    .top-banner {
        margin-top: 64px;
    }

    .my-carousel-item-content {
        top: 10%;
        left: 10%;
        right: 10%;
        bottom: 10%;
        text-align: center;
        align-items: center;
        padding: 5% 0 0;
    }

    .my-carousel-item-content .target {
        font-size: 14px;
        color: #fff;
        line-height: 1;
        letter-spacing: 2px;
    }

    .my-carousel-item-content .title {
        padding-bottom: 12px;
        font-size: 28px;
        color: #fff;
        font-weight: 500;
        text-align: center;
        line-height: 1;
    }

    .my-carousel-item-content .sub-title {
        color: #fff;
        line-height: 1.5;
        letter-spacing: 1px;
        font-size: 12px;
        width: 80%;
        text-align: center;
    }

    .my-carousel-item-content .title span {
        font-size: 20px;
        letter-spacing: 6px;
        font-weight: bold;
    }

    .m-part .index-part:nth-child(odd) {
        background-color: #f5f9ff;
    }

    .m-part .index-part:nth-child(even) {
        background-color: #fff;
    }

    .m-part .index-part {
        box-sizing: border-box;
        text-align: center;
        padding: 50px 20px 20px;
        height: inherit;
    }

    .m-part .index-part .part-body {
        display: block;
        box-sizing: border-box;
        height: 100%;
        width: auto;
        margin: 0 auto;
    }

    .m-part .index-part .part-body .part-content {
        text-align: left;
    }

    .m-part .index-part .part-body .part-img {
        width: 100%;
        max-width: 430px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .m-part .index-part .part-body .part-content .part-target {
        margin-bottom: 12px;
        font-size: 16px;
        color: #ffa601;
    }

    .m-part .index-part .part-body .part-content .part-title {
        position: relative;
        margin-bottom: 16px;
        padding-bottom: 16px;
        font-size: 22px;
        color: #0b1531;
        font-weight: 500;
        letter-spacing: 1.5px;
    }

    .m-part .index-part .part-body .part-content .part-title:after {
        content: '';
        display: inline-block;
        position: absolute;
        left: 0;
        bottom: 0;
        height: 4px;
        width: 24px;
        background-color: #ffa601;
        border-radius: 3px;
    }

    .m-part .index-part .part-body .part-content .part-content {
        display: inline-block;
        width: 100%;
        margin-bottom: 24px;
        font-size: 12px;
        line-height: 2;
        color: #6b7799;
    }

    .m-part .index-part .part-target-mid {
        margin-bottom: 12px;
        font-size: 12px;
        color: #ffa601;
        text-align: center;
    }

    .m-part .index-part .part-title-mid {
        margin-bottom: 32px;
        position: relative;
        padding-bottom: 16px;
        font-size: 22px;
        color: #0b1531;
        text-align: center;
        font-weight: 500;
    }

    .m-part .index-part .part-title-mid:after {
        content: '';
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        height: 4px;
        width: 24px;
        background-color: #ffa601;
        border-radius: 3px;
    }

    .contact {
        box-sizing: border-box;
        width: 100%;
        padding: 30px 0;
        position: relative;
        color: rgba(255, 255, 255, .9);
    }

    .contact .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        z-index: -2;
    }

    .contact > .container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin: 0 auto;
    }

    .contact > .container:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .65);
        z-index: -1;
    }

    .contact .title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: 2px;
    }

    .contact .sub-title {
        font-size: 16px;
        color: rgba(255, 255, 255, .4);
        text-align: center;
        padding: 0 20px 20px;
        letter-spacing: 2px;
    }

    .contact .layui-form-radio > i:hover, .layui-form-radioed > i {
        color: #FFA601;
    }

    .contact .my-form {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 10px;
    }

    .contact .my-form .error input[type=text] {
        border-color: #f0614e !important;
    }

    .contact .my-form .error .icon-x {
        display: block !important;
    }

    .contact .my-form .item {
        margin: 0 auto 30px;
        height: 50px;
        width: 80%;
    }

    .contact .my-form .item .icon-x {
        display: none;
        margin-left: 20px;
        margin-top: 4px;
        color: #f0614e;
        font-size: 12px;
    }

    .contact .my-form .item .validate-code {
        position: absolute;
        right: 6%;
        top: 25%;
        color: #FFF;
        font-size: 16px;
        opacity: .6;
    }

    .contact .my-form .btn-submit {
        box-sizing: border-box;
        width: 80%;
        margin: 0 auto 20px;
        height: 48px;
        border: 3px solid rgba(255, 166, 1, 1);
        background-color: #FFA601;
        border-radius: 30px;
        font-size: 16px;
        color: #FFF;
        cursor: pointer;
        transition: all .3s ease;
    }

    .my-form ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
        color: rgba(255, 255, 255, .6);
        font-size: 16px;
    }

    .my-form :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
        color: rgba(255, 255, 255, .6);
        font-size: 16px;
    }

    .my-form ::-moz-placeholder { /* Mozilla Firefox 19+ */
        color: rgba(255, 255, 255, .6);
        font-size: 16px;
    }

    .my-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
        color: rgba(255, 255, 255, .6);
        font-size: 16px;
    }

    .my-form input[type=text] {
        box-sizing: border-box;
        background-color: transparent;
        width: 100%;
        height: 48px;
        border: 2px solid rgba(255, 166, 1, 1);
        border-radius: 30px;
        padding: 0 30px 0 32px;
        color: rgba(255, 255, 255, .9);
        font-size: 16px;
    }

    .my-form .layui-form-select .layui-edge {
        right: 20px;
    }

    .my-form .layui-form-select dl {
        top: 48px;
        left: 30px;
        min-width: 237px;
        color: #666;
        background-color: #FFF;
    }

    .my-form .layui-form-selectup dl {
        top: auto !important;
        bottom: 48px;
    }

    .my-form .layui-this {
        color: #FFA601 !important;
        background-color: rgba(206, 201, 237, .2) !important;
    }

    .content-more {
        text-align: center;
    }

    .index-part .part-content .part-content i {
        display: inline-block;
        transition: all .3s;
    }

    .contact-us {
        padding-bottom: 30px;
        border-bottom: solid 1px #999;
    }

    .contact-us .qrcode-box {
        margin: 20px auto;
    }

    .call-us {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: 30px 0;
    }
}
