.banner-content {
    height: 100%;
    z-index: 0;
}

.banner-text {
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: fade-in 500ms ease 0s 1;;
    -webkit-animation: fade-in 500ms ease 0s 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.banner-text .banner-text-title {
    font-size: 40px;
}

.banner-text .banner-text-info {
    font-size: 20px;
    margin-top: 60px;
}

.banner-text .banner-text-info-1 {
    margin-top: 30px;
}

.banner-text .banner-btn {
    margin-top: 80px;
}

@-webkit-keyframes fade-in {
    0% {
        padding-left: 0;
        opacity: 0;
    }
    100% {
        padding-left: 11%;
        opacity: 1;
    }
}

.product {
    margin-bottom: 30px;
    padding-top: 20px;
    text-align: center;
    padding-bottom: 80px;
}

.product .product-radio-button {
    margin: 50px 0 30px 0;
}

.product .server-card {
width:1200px;
margin:0 auto;
display: flex;
text-align: left;
flex-direction: row;
flex-wrap: wrap;	
}

.product .server-card .card {
    border-radius: 5px;
    border: 1px solid #ebeef5;
    box-shadow: 0 0 2px #ebeef5 inset;
    width: 250px;
    margin-right: 8px;
    height: 450px;
    margin-top: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.product .server-card .card .card-tag {
    position: absolute;
    top: 0;
    right: 20px;
}

.product .server-card .card .card-tag > div {
    padding: 2px 0;
    font-size: 12px;
    background-color: #19be6b;
    box-shadow: 0 1px 5px #19be6b;
    color: white;
    text-align: center;
    transform: rotate(35deg);
    width: 150px;
    position: relative;
    left: 73px;
    top: -25px
}

.product .server-card .card:hover {
    background-image: url("../img/productCard.png");
    color: white;
    animation: show-bg;
    animation-duration: 0.5s;
    -webkit-animation: show-bg 0.5s;
}

.product .server-card .card div {
    margin-top: 15px;
}

.product .server-card .card div del {
    font-size: 14px;
    color: #83838b;
    margin-left: 5px;
}

.product .server-card .card .title {
    font-size: 26px;
}

.product .server-card .card .key {
    font-size: 14px;
    color: #83838b
}

.product .server-card .card .line {
    border-top: 1px solid #dcdfe6;
}

.product .server-card .card .price {
    text-align: center;
    height: 50px;
    margin-top: 20px;
}

.product .server-card .card .btn {
    margin-top: 25px;
    text-align: center;
}

.product .server-card .card .price .now-price {
    color: #f88a23;
    font-size: 38px;
}

@-webkit-keyframes show-bg {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes show-bg {
    0% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

.solution {
    background-color: #f6f8ff;
    height: 750px;
    width: 100%;
    text-align: center;
}

.solution .solution-body {
    margin: 0 auto 0 auto;
    width: 1200px;
    text-align: left;
}

.solution .solution-radio-button {
    margin-top: 20px;
}

.solution .solution-radio-button > a {
    padding: 15px 120px;
}

.solution_text {
    text-align: center;
    width: 100%;
    padding-bottom: 30px;
    border-bottom: 1px solid #dcdfe6;
}

.solution_title {
    font-size: 30px;
    color: #222;
    text-align: center;
    padding-top: 30px;
}

.solution_explain {
    font-size: 16px;
    color: #83838b;
    text-align: center;
    padding-top: 20px;
}

.solution-content .text {
    width: 500px;
    float: left;
    margin: 5% 0 0 30px;
}

.solution-content .text .title {
    font-size: 26px;
    color: #222;
}

.solution-content .text .desc {
    font-size: 20px;
    color: #444;
    line-height: 38px;
    margin-top: 20px;
}