/* 关于我们 */
.introduction {
    flex-grow: 1;
    padding-top: 16px;
    margin-right: 64px;
    border-top: solid 4px #0080cc;
}
.introduction-content {
    font-size: 16px;
    line-height: 1.8em;
    color: #999;
}
.introduction-content > p {
    text-indent: 2em;
    margin-bottom: 1em;
}
.introduction-content > p:last-of-type {
    margin-bottom: 0;
}
.introduction-image {
    flex-shrink: 0;
    width: 393px;
}
/* 展示大图 */
#banner-container {
    width: 100%;
    height: 600px;
    background-color: #b1b4bd;
}
#banner-wrapper .swiper-slide {
    background-color: #fff;
}
#banner-wrapper .swiper-slide > .image {
    flex-shrink: 0;
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
#banner-wrapper .swiper-slide > .image > img {
    height: 600px;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
#banner-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background-color: rgba(0, 0, 0, .4);
    opacity: 1;
    border: solid 2px transparent;
    transition: background-color .3s ease, border-color .3s ease;
}
#banner-pagination .swiper-pagination-bullet-active {
    background-color: #0080cc;
    border-color: #fff;
}
/* 产品展示 */
.product-wrapper {
    padding: 48px 0;
    background: #f2f2f2 url('./global.png') no-repeat bottom right / 301px;
}
#product-container {
    width: 100%;
    height: 240px;
}
#product-wrapper .swiper-slide {
    width: 275px;
}
#product-wrapper .swiper-slide > a {
    display: block;
}
#product-wrapper .swiper-slide > a > figure {
    width: 275px;
    height: 188px;
    overflow: hidden;
    background-color: #fff;
}
#product-wrapper .swiper-slide > a > figure > img {
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transition: transform .3s ease, opacity .3s ease;
}
#product-wrapper .swiper-slide > a:hover > figure > img {
    transform: scale(1.1);
    opacity: .75;
}
#product-wrapper .swiper-slide > a > figcaption {
    text-align: center;
    font-size: 16px;
    line-height: 52px;
}
#product-button-next,
#product-button-prev {
    padding: 5px;
    transform: translateY(-26px);
    background-color: rgba(0, 0, 0, .5);
}
#product-button-next:after,
#product-button-prev:after {
    font-size: 24px;
    color: #fff;
    pointer-events: auto;
}
/* 新闻资讯 */
.news {
    flex-grow: 1;
    margin-right: 64px;
}
.news-li {
    margin-bottom: 32px;
}
.news-li:last-of-type {
    margin-bottom: 0;
}
.news-date {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100px;
    height: 90px;
    padding: 15px;
    margin-right: 24px;
    box-sizing: border-box;
    background-color: #0080cc;
}
.news-date span {
    display: block;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1em;
    color: #fff;
}
.news-date span.day {
    font-size: 20px;
}
.news-date span.year {
    font-size: 28px;
}
.news-title {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.2em;
    margin-bottom: 16px;
}
.news-desc {
    font-size: 16px;
    line-height: 1.6em;
}
.news-desc > a {
    color: #999;
}
.news-desc > a:hover {
    color: #e60012;
    border-bottom: solid 1px #333;
}
/* 联系我们 */
.concact {
    flex-shrink: 0;
    width: 393px;
}
#allmap {
    width: 393px;
    height: 200px;
    background-color: #f4f4f4;
}
.concact-ul {
    margin-top: 16px;
}
.concact-li {
    display: flex;
    margin-bottom: 8px;
}
.concact-li:last-of-type {
    margin-bottom: 0;
}
.concact-li > i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: solid 1px #ccc;
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.concact-li > i:before {
    font-size: 16px;
    color: #0080cc;
}
.concact-li > p {
    padding: 6px 0;
    font-size: 16px;
    line-height: 24px;
}
.concact-li > p > span {
    color: #999;
}