/*Global Styling*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Raleway:200,300,400,500,600,700,800');
/* Helper Classes & Shorcodes */

.content-right-item {
    width: 100%;
}

.heading-title h2 {
    color: #fff;
    font-weight: 300;
    font-size: 2.0rem;
}

.heading-title span {
    display: block;
    text-transform: capitalize;
    color: #00bcd4;
    font-size: 1.5rem;
}

.heading-title p {
    display: block;
    text-transform: capitalize;
    font-size: 1rem;
}

/* Mobile Apps & Features */
/*-------------------------------*/


.mobile-container {
    background: #fff;
    margin-top: 2rem;
}

.mobile-container .row .heading-title {
    margin-top: 2.5rem;
}

/*app features*/
.feature-item .icon {
    -webkit-transition: all .5s ease-in;
    -o-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

.feature-item h4 {
    font-weight: 600;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: #8b8fae;
}

.opacities {
    opacity: .5;
}

#app-feature {
    margin-top: 2.5rem;
}

#app-feature .feature-item {
    padding: 15px 0;
}

#app-feature .feature-item:hover {
    cursor: pointer;
}

.feature-item img,
.feature-item .icon {
    display: inline-block;
}

.feature-item img {
    max-width: 290px;
}

.feature-item .icon {
    background: #00bcd4;
    width: 90px;
    height: 90px;
    text-align: center;
    position: relative;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: 1;
    font-size: 34px;
    line-height: 90px;
    color: #fff;
}

.feature-item .icon::before {
    content: "";
    background: transparent;
    top: 1px;
    left: 1px;
    bottom: 1px;
    right: 1px;
    position: absolute;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 4px solid #fff;
}

.feature-item:hover .icon {
    -webkit-animation: itg_pulse 1s infinite;
    -o-animation: itg_pulse 1s infinite;
    animation: itg_pulse 1s infinite;
    -webkit-box-shadow: 0 0 0 0 rgba(100, 48, 148, 1);
    box-shadow: 0 0 0 0 rgba(100, 48, 148, 1);
}

@-webkit-keyframes itg_pulse {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(100, 48, 148, 0.9);
        box-shadow: 0 0 0 5px rgba(100, 48, 148, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(100, 48, 148, 0.6);
        box-shadow: 0 0 0 10px rgba(100, 48, 148, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(100, 48, 148, 0.3);
        box-shadow: 0 0 0 15px rgba(100, 48, 148, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@-o-keyframes itg_pulse {
    0% {
        box-shadow: 0 0 0 5px rgba(100, 48, 148, 0.9);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(100, 48, 148, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(100, 48, 148, 0.3);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

@keyframes itg_pulse {
    0% {
        -webkit-box-shadow: 0 0 0 5px rgba(100, 48, 148, 0.9);
        box-shadow: 0 0 0 5px rgba(100, 48, 148, 0.9);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(100, 48, 148, 0.6);
        box-shadow: 0 0 0 10px rgba(100, 48, 148, 0.6);
    }

    70% {
        -webkit-box-shadow: 0 0 0 15px rgba(100, 48, 148, 0.3);
        box-shadow: 0 0 0 15px rgba(100, 48, 148, 0.3);
    }

    100% {
        -webkit-box-shadow: 0 0 0 60px rgba(100, 48, 148, 0.1);
        box-shadow: 0 0 0 20px rgba(100, 48, 148, 0.1);
    }
}

#app-feature .feature-item:hover .icon {
    background: #643094;
}

#app-feature .content-left {
    text-align: right;
}

#app-feature .content-right {
    text-align: left;
}

#app-feature .content-left span {
    float: right;
    margin-left: 15px;
}

#app-feature .content-right span {
    float: left;
    margin-right: 15px;
}

#app-feature .content-left .text {
    margin-right: 105px;
}

#app-feature .content-right .text {
    margin-left: 105px;
}

.feature-item.active {
    background: #f7f7f7;
}

.image.mobile-apps>img {
    opacity: 0;
}

.image.mobile-apps.active>img {
    opacity: 1;
}


@media screen and (max-width: 992px) {

    #app-feature,
    #app-feature .content-left,
    #app-feature .content-right {
        text-align: center;
    }

    #app-feature .feature-item {
        padding: 0;
        max-width: 300px;
        display: inline-block;
        float: none;
    }

    #app-feature .content-left span,
    #app-feature .content-right span {
        float: none;
        margin: 0 auto 15px auto;
        display: inline-block;
    }

    #app-feature .content-left .text,
    #app-feature .content-right .text {
        margin: 0;
    }
}

/*-------------------------------*/
/*Mobile Apps ends */
/*-------------------------------*/

/* 积分 */
.integral_program {
    width: 100%;
    color: #fff;
    box-shadow: 0px 0px 10px 0px #fff;
}

.icon_icon {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0.1rem;
}

.integral_program .integral_title {
    width: 100%;
    text-align: left;
    font-size: 2.5rem;
    color: #161515;
    margin-bottom: 0.5rem;

}

.integral_program .integral_li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.integral_program .integral_li .in_col {
    width: 100%;
    height: 5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    padding: 0.5rem 0.5rem;
}
.integral_program .integral_li .in_col.color1{
    background: #2f2d2d;
}
.integral_program .integral_li .in_col.color2{
    background: #000000;
}

.integral_program .integral_li .in_col p {
    font-size: 0.8rem;
}

.integral_program .integral_li .col_icon {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.integral_program .integral_li .in_col img {
    width: 0.8rem;
    height: 0.8rem;
}
.integral_program .integral_li .in_col span {
   font-size: 0.7rem;
}

/* 坚果数 */
.calculator-section .jianguo_tit{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.calculator-section .jianguo_tit .left_title{
    width: 35%;
}
.calculator-section .jianguo_tit .right_title{
    width: 60%;
}
.calculator-section .jianguo_tit .left_title p{
    font-size: 1rem;
    color: #00bcd4;
}
.calculator-section .jianguo_tit span{
    font-size: 0.7rem;
}
.jianguo_iconbox{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 4rem;
}
.jianguo_iconbox .jianguo_icon{
    width: 33%;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jianguo_iconbox .jianguo_icon .jianguo_name{
    text-align: center;
    font-size: 1rem;
    color: #fff;
    margin-top: 2.8rem;
}
.jianguo_iconbox .jianguo_icon .jianguo_tips{
    text-align: center;
    font-size: 0.6rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}