@import "media.css";
.bg {
    height: 600px;
    background-image: url(../image/bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.bg-text {
    position: absolute;
    top: 200px;
    left: 0;
    right: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.bg-text > span {
    margin: 0 30px;
    font-size: 72px;
    font-family: "黑体";
    font-weight: 800;
    color: #FFF;
    text-shadow:  0 0 10px rgba(0, 0, 0, 0.3);
}

.counter {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
}
.counter-number {
    color: #FFF;
    text-align: center;
}
.number {
    font-size: 60px;
    font-weight: bold;
}
.unit {
    font-size: 18px;
    margin-left: 10px;
}
.counter-name {
    font-size: 28px;
    font-family: '黑体';
    text-align: center;
    color: #FFF;
}
.wrap {
    padding: 50px 0;
}
.banner {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.banner-text {
    padding: 15px;
    position: relative;
}
.banner-text:before {
    content : '';
    display: block;
    position: absolute;
    top: 5px;
    left: -15px;
    width: 20px;
    height: 20px;
    border-top: solid 3px #0037a7;
    border-left: solid 3px #0037a7;
}
.banner-text:after {
    content : '';
    display: block;
    position: absolute;
    bottom: 5px;
    right: 0;
    width: 20px;
    height: 20px;
    border-right: solid 3px #0037a7;
    border-bottom: solid 3px #0037a7;
}
.banner-text > h3 {
    font-size: 36px;
    color: #0037a7;
    letter-spacing: 5px;
}
.banner-en {
    font-size: 20px;
    color: #a7a7a7;
}
.service {
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    color: #FFF;
}

.service-mask {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(  0, 55, 167, 0.4);
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    transition: background-color 0.3s ease-in-out 0s;
    display:block;
}
.service-mask:hover {
    background-color: rgba(  0, 55, 167, 1);
}
.service-mask:hover > .service-desc {
    transform: translateY(0);
    opacity: 1;
}
.service-mask:hover > .service-title {
    transform: translateY(0);
}

.service-title {
    font-size: 26px;
    color: #FFF;
    text-align: center;
    transition: all 0.3s ease-in-out 0s;
    transform: translateY(60px);
}
.service-desc {
    font-size: 14px;
    color: #FFF;
    margin-top: 10px;
    transition: all 0.3s ease-in-out 0s;
    transform: translateY(200px);
    opacity: 0;
}

.s1 {
    background-image: url(../image/s1.jpg);
}

.s2 {
    background-image: url(../image/s2.jpg);
}
.s3 {
    background-image: url(../image/s3.jpg);
}
.s4 {
    background-image: url(../image/s4.jpg);
}
.s5 {
    background-image: url(../image/s5.jpg);
}
.s6 {
    background-image: url(../image/s6.jpg);
}
.s7 {
    background-image: url(../image/s7.jpg);
}
.s8 {
    background-image: url(../image/s8.jpg);
}
.s9 {
    background-image: url(../image/s9.jpg);
}
.cases {
    background-color: #F5F7FA;
    padding: 50px 0;
}
.case-item {
    height: 250px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.case-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease-in-out 0.1s;
}
.case-text {
    font-size: 30px;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 3px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease-in-out 0.1s;
}
.case-item-link:hover > .case-image {
    transform: scale(1.5);
}
.case-item-link:hover > .case-text {
    background-color: rgba(0, 0, 0, 0.5);
}
.news-list {
    padding: 20px 0;
}
.news-item {
    display: flex;
    justify-content: space-between;
    border: 1px solid #E2E2E2;
    cursor: pointer;
    transition: background-color 0.2s ease 0.1s;
}
.news-item:hover {
    background-color: #1447AC;
}
.news-item:hover > .news-datetime > .date {
    color:#FFF;
}
.news-item:hover > .news-datetime > .time {
    color:#FFF;
}
.news-item:hover > .news-content > .news-title {
    color: #FFF;
}
.news-item:hover > .news-content > .news-summary {
    color: #FFF;
}
.news-datetime {
    padding: 10px;
    border-right: 1px solid #CCC;
    width: 110px;
    text-align: right;
}
.news-content {
    flex: 1;
    padding: 10px;
}
.news-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.news-datetime .date {
    font-size: 30px;
    color: #0037a7;
    margin-bottom: 10px;
}
.news-datetime .time {
    font-size: 24px;
    color: #999;
    margin-bottom: 10px;
}
.news-content {
    font-size: 16px;
    line-height: 1.5;
}
.news-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #000;
}
.news-summary {
    font-size: 16px;
    line-height: 1.5;
    color: #969696;
}
.news-more {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 10px 0;
}
.news-more > a {
    margin: 0 10px;
    font-size: 20px;
    transition: margin 0.2s ease-in-out 0.1s;
}
.news-more:hover > a {
    margin-left: 20px;
    margin-right: 20px;
}
.contact {
    padding: 70px;
    background-image: url("../image/bg2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.contact-header {
    font-size: 30px;
    color: #FFF;
    text-align: center;
    padding: 30px 0;
}

#msg {
    height: 38px;
}