@charset "utf-8";
@import "./swiper.min.css";
@import "./global.min.css";

* {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
}

body {
    position: relative;
    background-color: #efefef;
    background-image: url("../images/h-bg.jpg");
}

a {
    text-decoration: none;
}

header {
    width: 100%;
    padding: 20px 0 5px;
    background-repeat: repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

header>a {
    position: relative;
}

header>a h1 {
    position: absolute;
    top: -999999px;
}

header nav {
    width: 100%;
    max-width: 1280px;
    margin: 5px auto 0;
    flex-flow: row wrap;
    display: flex;
}

header nav a {
    flex: 1;
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    height: 40px;
    line-height: 40px;
    color: #000000;
    transition: all 0.5s linear;
}

header nav a:hover {
    background-color: rgba(32, 57, 99, 0.8);
    color: #ffffff;
}

.box-padding {
    padding: 0 20px;
}

.swiper-container-h {
    width: 100%;
    margin: 0 auto;
}
.swiper-container-h img{
	width: 100%;
}

.swiper-container-h .swiper-pagination-h .swiper-pagination-bullet {
    width: 20px;
    border-radius: 6px;
    background-color: #203963;
}

.title-box {
    width: 96%;
    margin: 0 auto;
    padding: 40px;
    box-sizing: border-box;
}

.title-box strong {
    font-family: SimSun;
    font-size: 40px;
    color: #999999;
    text-transform: uppercase;
}

.title-box h4 {
    font-size: 36px;
    color: #203963;
}

.about-box {
    padding: 20px;
    display: flex;
}

.about-box .img-box img {
    width: 100%;
    height: auto;
}

.img-list-box img:first-child {
    display: block;
}

.img-list-box img:last-child {
    display: none;
}

.about-box .about-cont {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
}

.about-box .about-cont p {
    width: 60%;
    font-size: 16px;
    line-height: 2em;
    text-indent: 2em;
}

.product-box {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.product-box ul {
    width: 94%;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.product-box ul li {
    width: 23%;
    margin: 0 1% 10px;
    background-color: rgba(255, 255, 255, 0.7);
    transition: all 0.5s linear;
}

.product-box ul li a {
    display: block;
    padding: 10px;
    box-sizing: border-box;
}

.product-box ul li a img {
    width: 100%;
}

.product-box ul li a div strong {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 40px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #ffffff;
    padding: 0 5px;
    box-sizing: border-box;
    text-align: center;
    line-height: 40px;
    font-size: 14px;
    font-weight: 100;
}

.product-box ul li a div strong::before {
    content: "";
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    border-top-right-radius: 10px;
    width: 80%;
    height: 40px;
    background-color: #203963;
}

.product-box ul li a div strong::after {
    content: "";
    z-index: -1;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    border-top-left-radius: 10px;
    width: 20%;
    height: 40px;
    background-color: #203963;
}

.product-box ul li a div span {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #203963;
    font-size: 20px;
    text-align: center;
    line-height: 40px;
    color: #ffffff;
    margin-top: 10px;
}

.product-box ul li:hover {
    background-color: transparent;
}

.news-box {
    padding: 40px 20px;
}

.news-box .news-list {
    max-width: 1280px;
    margin: 0 auto;
}

.news-box .news-list ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.news-box .news-list ul li {
    width: 49%;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    transition: all 0.5s linear;
}

.news-box .news-list ul li:hover {
    background-color: transparent;
}

.news-box .news-list ul li a {
    display: flex;
    border: 1px solid #efefef;
    padding: 10px;
    box-sizing: border-box;
    flex-flow: row wrap;
    align-items: center;
}

.news-box .news-list ul li a .item-icon {
    width: 100px;
    background-color: #203963;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 10px;
}

.news-box .news-list ul li a .item-icon strong {
    font-size: 24px;
    color: #ffffff;
    font-weight: 100;
    border-bottom: 1px solid #efefef;
}

.news-box .news-list ul li a .item-icon p {
    font-size: 14px;
    color: #efefef;
}

.news-box .news-list ul li a .item-cont {
    margin-left: 10px;
    flex: 1;
}

.news-box .news-list ul li a .item-cont h6 {
    font-size: 18px;
    color: #000000;
    font-weight: 100;
    height: 40px;
    line-height: 40px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-box .news-list ul li a .item-cont p {
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #999999;
}

.contact-box {
    width: 100%;
    background-image: url("../images/con-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 20px 0 40px;
}


.contact-cont {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 40px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.6);
}

.contact-cont ul {
    width: 49%;
}

.contact-cont ul li {
    padding: 10px 0;
    display: flex;
    flex-flow: row wrap;
    border-bottom: 1px dashed #efefef;
    min-height: 40px;
    align-items: center;
}

.contact-cont ul li span {
    width: 60px;
    font-size: 14px;
}

.contact-cont ul li strong {
    flex: 1;
    font-size: 16px;
    font-weight: 100;
}

.contact-cont dl {
    width: 49%;
    display: flex;
    justify-content: space-between;
}

.contact-cont dl dd {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 200px;
}

.contact-cont dl dd strong {
    font-size: 14px;
    color: #203963;
    height: 40px;
    line-height: 40px;
    font-weight: 100;
}

.pageint {
    width: 250px;
    margin: 5px auto 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pageint a,
.pageint span {
    width: 49%;
    text-align: center;
    font-size: 14px;
    height: 40px;
    line-height: 38px;
    box-sizing: border-box;
}

.pageint a {
    color: #ffffff;
    background-color: #203963;
    margin: 0 10px;
}

.pageint a:hover {
    background-color: #ffffff;
    color: #203963;
}

.pageint span {
    color: #aaaaaa;
    border: 1px solid #aaaaaa;
}


.cont-box {
    width: 94%;
    max-width: 1280px;
    margin: 40px auto;
}

.cont-box h2 {
    font-size: 20px;
    line-height: 1.5em;
    color: #203963;
    padding-bottom: 10px;
    border-bottom: 1px solid #999999;
    margin-bottom: 10px;
}

.cont-box .cont-del {
    border: 1px solid #e0e0e0;
    background-color: #efefef;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 12px;
    color: #999999;
    margin-bottom: 20px;
}

.cont-box .cont-text-html img {
    max-width: 100%;
}

footer {
    display: none;
}

@media screen and (max-width: 750px) {
    body {
        padding-bottom: 60px;
    }

    header {
        padding-bottom: 0;
    }

    header nav {
        flex-wrap: row wrap;
    }

    header nav a {
        flex: auto;
        width: 33.3%;
        font-size: 12px;
        background-color: rgba(32, 57, 99, 0.8);
        color: #ffffff;
    }

    .box-padding {
        padding: 0;
    }

    .swiper-container-h {
        width: 100%;
    }

    .title-box {
        padding: 10px;
    }

    .title-box strong {
        font-size: 24px;
    }

    .title-box h4 {
        font-size: 20px;
    }

    .about-box {
        flex-direction: column-reverse;
    }

    .about-box .about-cont {
        margin-left: 0;
    }

    .about-box .about-cont p {
        font-size: 14px;
        line-height: 1.6em;
        width: 100%;
        margin-bottom: 20px;
    }

    .product-box ul li {
        width: 48%;
    }

    .product-box ul li a div span {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 14px;
    }

    .news-box .news-list ul li {
        width: 100%;
    }

    .contact-cont {
        width: 94%;
    }

    .contact-cont ul,
    .contact-cont dl {
        width: 100%;
    }

    .contact-cont dl {
        margin-top: 10px;
    }

    .img-list-box img:first-child {
        display: none;
    }
    .img-list-box img:last-child {
        display: block;
    }
    footer {
        width: 100%;
        position: fixed;
        z-index: 3;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 55px;
        border-top: 5px solid #f0eff5;
        background-color: #ffffff;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    footer a {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    footer a img {
        width: 25px;
        height: 25px;
    }

    footer a strong {
        font-size: 14px;
        height: 20px;
        line-height: 20px;
        font-weight: normal;
        color: #333333;
    }
}