﻿.ISOtopBg {
    height:280px;
    background-color: #eaf5f9;
    background-image:url(/Content/Event/ISO27001/bluecrirleBg.png);
    background-size: 450px;
    background-position: center bottom;
    background-repeat: no-repeat;
    position:relative;
}



.uperBg {
    height: 340px;
    background-image: url(/Content/Event/ISO27001/spotBg.png);
    background-position: center;
    background-repeat: no-repeat;
    animation-name: Updown;
    animation-duration: 3s;
    animation-iteration-count: infinite;
}

@keyframes Updown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.medalsImg {
    position: absolute;
    bottom: -100px;
    left:50%;
    width: 250px;
    transform: translate(-50%)
}

.pArea {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.ISOp {
    line-height: 28px;
    font-size: 18px;
    color: #444444;
}

.ISOpBg {
    padding: 30px 15px 15px 15px;
    border-radius: 5px;
    margin-top: -30px;
}

.ISOp h3{
    font-weight:bold;
    font-size:22px;
    line-height:30px;
}

/*768px以下的畫面*/
@media(max-width:768px) {

    .ISOtopBg {
        height: 200px;
        background-size: 300px;
    }



    .uperBg {
        height: 200px;
        background-size:800px;
    }

    .medalsImg {
        width: 180px;
        bottom: -80px;
    }

    .ISOp {
        padding-left:15px;
        padding-right:15px;
    }

}