@charset "UTF-8";


.page-content-impl-container {
    min-width: 1000px;
    height: auto;
}
.text-wrapper-in-banner-in-banner-template-1 {
    z-index: 1;
}
.text1-container-in-banner-in-banner-template-1 {
    text-align: center;
    width: 100%;
    left: 0;
}
.text2-container-in-banner-in-banner-template-1 {
    display: none;
}
.certificate-title-wrapper {
    margin: auto;
    margin-top: 40px;
    height: 63px;
    text-align: center;
}
.certificate-title-wrapper span {
    font-size: 30px;
    word-wrap: break-word;
    height: 100%;
}
.left-in-title {
    color: #ffc100;
    font-family: Arial,Helvetica,sans-serif;
    margin-right: 10px;
}
.right-in-title {
    font-family: Microsoft YaHei;
    color: #4e5f70;
}
.bottom-line-in-title {
    display: block;
    margin: auto;
    margin-top: 8px;
    padding: 0;
    width: 300px;
    height: 1px;
    font-size: 0;
    border-bottom-width: 3px;
    border-bottom-style: solid;
    border-bottom-color: #f7d93e;
    -moz-box-shadow: 0 0 0 transparent;
    -webkit-box-shadow: 0 0 0 transparent;
    -ms-box-shadow: 0 0 0 transparent;
    -o-box-shadow: 0 0 0 transparent;
    box-shadow: 0 0 0 transparent;
}
.certificate-content-wrapper {
    display: grid;
    min-width: 1000px;
    width: 1000px;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    /*height: 1600px;*/
    /*border: 1px solid red;*/
    margin: auto;
    margin-top: 40px;
}
.cetificate-item-wrapper {
    height: 460px;
    text-align: center;
    cursor: pointer;
}
.cetificate-item-img:hover {
    box-shadow:
            1px 1px 6px 3px gray;
}
.cetificate-item-img {
    height: 360px;
    width: auto;
}
.cetificate-item-name {
    height: 32px;
    margin-top: 6px;
    font-size: 16px;
}
.large-certificate-img-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    display: none;
    z-index: 199;
}
.large-certificate-img-container { /*需要引起用户注意的元素*/
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    margin: auto;
    z-index: 200;
    height: 95%;
    text-align: center;
}
.large-certificate-img-container img {
    position: relative;
    height: 100%;
    width: auto;
    margin: auto;
    opacity: 1;
    animation-name: scaleShow;
    animation-iteration-count: 1;
    animation-duration: 300ms
}
@keyframes scaleShow {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1.0);
    }
}