@import url("../common.css");
section.panel {
    background-color: transparent;
    border-color: #fff;
}
section.panel .panel-heading h3{
    font-size: 24px;
    color: #333;
    text-align: center;
    padding-top:40px;
    padding-bottom:40px;
}


header {
    position: absolute;
    z-index: 1029;
    top:0;
    height:auto;
    width: 100%;
}

header .carousel-inner .banner-content{
    position: absolute;
    top: 20px;
    width: 175px;
    left: 15px;
    color: #fff;
}
header .carousel-inner .banner-content .banner-content-title, header .carousel-inner .banner-content .banner-content-intro {
    text-align: left;
}
header .carousel-inner .banner-content .banner-content-title{
    font-size: 18px;
    padding-bottom: 5px;
}
header .carousel-inner .banner-content .banner-content-intro {
    font-size: 12px;
    margin: 0 0 5px;
}

header .carousel-inner .banner-content .banner-content-anchor {
    font-size: 12px;
    text-align: left;
    padding: 5px 0;
}
header .carousel-inner .banner-content .banner-content-anchor > a {
    display: inline-block;
    padding: 5px 25px;
    background-color: #fff;
    color: #1866df;
    border: 1px solid #fff;
    border-radius: 300px;
    transition: box-shadow 0.5s, transform 0.5s;
}

header .carousel-inner .banner-content .banner-content-anchor > a:hover {
    -moz-box-shadow:1px 1px 10px #fff;
    -webkit-box-shadow:1px 1px 10px #fff;
    box-shadow:1px 1px 10px #fff;
}

#fixed-img {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    min-height: 100vh;
}
main.content {
    /*position: absolute;*/
    left: 0;
    right: 0;
    top: 0;
    /*min-height: 100vh;*/
}

.ribbon-title {
    margin: 0 auto;
    width:560px;
    overflow: hidden;
}

.no-padding-col {
    padding: 0;
}
.page-title {
    background-color: transparent;
    padding: 0;
    /*background-color: #ff0000;*/
}
.page-title .panel-body .panel-col {
    display: flex;
    width: 100%;
    min-height: 50px;
    padding: 0 15px;
    align-items: center;
    justify-content: flex-start;
}

.page-title .panel-body .panel-col:last-child {
    margin-top: 20px;
}

.page-title .company-logo {
    width: 110px;
    height: 110px;
}

.page-title .company-logo img {
    width: 110px;
    height: 110px;
}

.page-title .company-name {
    padding: 20px 0 20px 20px;
    font-size: 72px;
    font-weight: bold;
    color:rgba(255,254,254,1);
    text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);
}

.page-title .company-slogan {
    font-size: 60px;
    font-weight: bold;
    color:rgba(254,234,96,1);
    line-height: 103px;
    text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);
}

.product {
    padding: 50px 0 0;
}

.product .panel-body .panel-col {
    position: relative;
    margin: 10px auto;
    width: 355px;
    height: 355px;
    border-radius: 5px;
    box-shadow:0px 0px 2px 0px rgba(4,0,0,0.3);
}

.product .panel-body .panel-col .panel-col-img {
    text-align: center;
    padding: 74px 0 27px;
}

.product .panel-body .panel-col .panel-col-title, .product .panel-body .panel-col .panel-col-intro, .product .panel-body .panel-col .panel-col-more {
    width: 100%;
    text-align: center;
}

.product .panel-body .panel-col .panel-col-title {
    color: #111111;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    margin: 0 0 20px;
}

.product .panel-body .panel-col .panel-col-intro {
    color: #5C5C5C;
    font-size: 14px;
    line-height: 28px;
    padding:  0 20px;
    text-align: left;
}

.about {
    padding: 50px 0;
    position: relative;
}

.about .about-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.about .about-bg img {
    width: 100%;
    height: 100%;
}


.about .panel-body .about-info {
    margin-left: 32px;
    margin-bottom: 50px;
}
.about .panel-body .about-info .about-info-title {
    font-size: 30px;
    color: #fff;
    line-height: 30px;
    margin-bottom: 15px;
}

.about .panel-body .about-info .about-info-content {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
}


.about .panel-body .no-padding-col img {
    width: 100%;
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        /*transform: translate3d(100%, 0, 0);*/
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes fade-out-left {
    from {
        opacity: 1;
        transform: none;

    }
    to {
        opacity: 0;
        /*transform: translate3d(100%, 0, 0);*/
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
        -o-transform: translateX(100%);
        transform: translateX(100%);
    }
}

.left-suspension-hide {
    position: fixed;
    top:81px;
    width: 31px;
    min-height: 20px;
    right: 15px;
    z-index: 1030;
    background-color: #FFFFFF;
    color: #f1c40f;
    font-size: 30px;
    line-height: 32px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
}

.left-suspension-hide.active {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: fade-in-left;
}

.left-suspension-hide.un-active {
    animation-duration: .5s;
    animation-fill-mode: both;
    animation-name: fade-out-left;
}

.left-suspension {
    position: fixed;
    top:81px;
    width: 340px;
    min-height: 400px;
    right: 15px;
    z-index: 1030;
    border: 1px solid #89cff0;
    background-color: #FFFFFF;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
}

.left-suspension.active {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fade-in-left;
}

.left-suspension.un-active {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fade-out-left;
}

.suspension-toggle  {
    display: inline-flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    font-size: 30px;
    background-color: #89cff0;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.left-suspension .suspension-title, .left-suspension .suspension-body, .left-suspension .suspension-footer {
    width: 100%;
    background: transparent;
    padding: 0 15px;
    color:rgba(92,92,92,1);
    font-size: 14px;
}

.left-suspension .suspension-title {
    height: 50px;
    font-size: 18px;
    font-weight: bold;
    color:rgba(17,17,17,1);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.consultation {
    width: 100%;
}

.consultation .input-row {
    margin-right: -15px;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.consultation .consultation-label {
    width: 80px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    font-weight: lighter;
    color: #999999;
}

.consultation .consultation-label > span:last-child:after{
    content: "：";
}

.consultation .consultation-input {
    width: calc( 100% - 125px);
}
.consultation .consultation-div {
    width: 25px;
    text-align: center;
}


.consultation .tips-row {
    margin-right: -15px;
    min-height: 24px;
    display: none;
    justify-content: space-between;
    align-items: center;
}

.consultation .tips-row.active {
    display: flex;
}

.consultation .tips-row > div {
    width: calc( 100% - 125px);
}


.consultation .tips-row > div:first-child {
    width: 80px;
}

.consultation .tips-row > div:last-child {
    width: 25px;
}

.consultation-submit {
    border-radius: 5px;
}


.left-suspension .suspension-footer {
    padding-bottom: 15px;
}

.left-suspension .suspension-footer .footer-title {
    font-size: 18px;
    color: #5c5c5c;
}

.left-suspension .suspension-footer .footer-row {
    min-height: 24px;
    width: 150px;
    display: flex;
    font-weight: bold;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .carousel-indicators {
        bottom: -30px;
    }

    .carousel-indicators li {
        border-color: rgba(204,160,0,.9);
        width: 6px;
        height: 6px;
        border-radius: 12px;
    }
    .carousel-indicators .active {
        width: 16px;
        height: 8px;
        background-color: rgba(204,160,0,.9);
    }
    /*ribbon*/
    .ribbon-title {
        width: calc( 100vw - 30px );
    }
    .ribbon {
        width: calc( 100% - 162px );
        margin: 0 81px 40px;
    }

    .ribbon-before, .ribbon-after {
        width: 81px;
        height: 80px;
    }

    .ribbon-before {
        left: -81px;
    }

    .ribbon-after {
        right: -81px;
    }

    .ribbon .ribbon-middle {
        width: 100%;
        height: 40px;
    }

    .ribbon .ribbon-text {
        height: 37px;
        line-height: 37px;
        font-size: 24px;
    }

    /*page-title*/
    .page-title {
        padding: 0 0 25px;
        box-shadow:0px 0px 2px 0px rgba(4,0,0,0.9);
    }
    .page-title .panel-body .panel-col:last-child {
        margin-top: 0;
    }

    .page-title .company-logo {
        width: 44px;
        height: 44px;
    }

    .page-title .company-logo img {
        width: 44px;
        height: 44px;
    }

    .page-title .company-name {
        padding: 20px 0;
        font-size: 24px;
        font-weight: bold;
        color:rgba(255,254,254,1);
        text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);
    }

    .page-title .company-slogan {
        font-size: 22px;
        font-weight: bold;
        color:rgba(254,234,96,1);
        line-height: 40px;
        text-shadow:0px 2px 4px rgba(0, 0, 0, 0.35);
    }


    /*product*/
    .product {
        padding-top: 0;
    }

    .product .panel-body .panel-col {
        margin: 10px auto;
        width: calc( 100% - 5px );
        height: auto;
        border-radius: 5px;
        padding-bottom: 10px;
    }

    /*about*/
    .about {
        padding-top: 0;
    }



    .about .panel-body .about-info {
        margin-top: 20px;
        margin-left: 0;
        margin-bottom: 50px;
    }
    .about .panel-body .about-info .about-info-title {
        font-size: 24px;
        color: #fff;
        text-align: center;
        line-height: 30px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .about .panel-body .about-info .about-info-content {
        font-size: 16px;
        color: #fff;
        line-height: 28px;
    }
    .about .panel-body .no-padding-col .panel-col {
        width: calc(100% - 5px);
        margin-bottom: 10px;
    }

    .about .panel-body .li-mobile > .no-padding-col:nth-child(odd){
        text-align: left;
    }
    .about .panel-body .li-mobile > .no-padding-col:nth-child(even) {
        text-align: right;
    }

    .about .panel-body .li-mobile > .no-padding-col:nth-child(even) .panel-col{
        margin-left: 5px;
    }

    /*suspension*/
    .left-suspension-hide {
        top: calc( 50vh - 70px );
        width: 18px;
        font-size: 16px;
    }
    .left-suspension {
        top: calc( 50vh - 250px );
        width: calc( 100% - 45px );
    }
    .suspension-toggle  {
        left: -15px;
        width: 15px;
        font-size: 15px;
    }

    .left-suspension .suspension-title, .left-suspension .suspension-body, .left-suspension .suspension-footer {
        width: 100%;
        background: transparent;
        padding: 0 15px;
        color:rgba(92,92,92,1);
        font-size: 14px;
    }

    .left-suspension .suspension-title {
        height: 50px;
        font-size: 18px;
        font-weight: bold;
        color:rgba(17,17,17,1);
        display: flex;
        align-items: flex-end;
        justify-content: flex-start;
    }

    .consultation {
        width: 100%;
    }

    .consultation .input-row {
        margin-right: -15px;
        min-height: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }


    .consultation .consultation-label {
        width: 80px;
        display: inline-flex;
        justify-content: space-between;
        align-items: center;
        font-weight: lighter;
        color: #999999;
    }

    .consultation .consultation-label > span:last-child:after{
        content: "：";
    }

    .consultation .consultation-input {
        width: calc( 100% - 125px);
    }
    .consultation .consultation-div {
        width: 25px;
        text-align: center;
    }


    .consultation .tips-row {
        margin-right: -15px;
        min-height: 24px;
        display: none;
        justify-content: space-between;
        align-items: center;
    }

    .consultation .tips-row.active {
        display: flex;
    }

    .consultation .tips-row > div {
        width: calc( 100% - 125px);
    }


    .consultation .tips-row > div:first-child {
        width: 80px;
    }

    .consultation .tips-row > div:last-child {
        width: 25px;
    }

    .consultation-submit {
        border-radius: 5px;
    }


    .left-suspension .suspension-footer {
        padding-bottom: 15px;
    }

    .left-suspension .suspension-footer .footer-title {
        font-size: 18px;
        color: #5c5c5c;
    }

    .left-suspension .suspension-footer .footer-row {
        min-height: 24px;
        width: 150px;
        display: flex;
        font-weight: bold;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 768px)  {
    .carousel-indicators {
        bottom: 0;
    }
    .product .panel-body .no-padding-col .panel-col {
        width: calc( 100% - 14px);
        margin: 0 auto 20px;
    }
    .product .panel-body .no-padding-col:nth-child(1) .panel-col, .product .panel-body .no-padding-col:nth-child(4) .panel-col{
        margin: 0 auto 20px 0;
    }
    .product .panel-body .no-padding-col:nth-child(3) .panel-col, .product .panel-body .no-padding-col:nth-child(6) .panel-col{
        margin: 0 0 20px auto;
    }

    .about .panel-body .no-padding-col .panel-col {
        width: calc( 100% - 7px);
        margin: 0 auto 10px;
    }
    .about .panel-body .li-pc > .no-padding-col:nth-child(2) {
        text-align: center;
    }
    .about .panel-body .li-pc > .no-padding-col:first-child .panel-col{
        margin: 0 auto 10px 0;
    }
    .about .panel-body .li-pc > .no-padding-col:last-child .panel-col{
        margin: 0 0 10px auto;
    }
}
