/* Common */

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

input {
    outline-style: none;
}

button {
    border: 0;
    outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

body {
    margin: 0 auto;
    font-family: "MicrosoftYaHei";
}

a,
a:hover {
    color: #000;
    text-decoration: none;
}

li {
    list-style: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
    font-size: 14px;
}

.global-template {
    padding-top: 100px;
}

.global-template .global-title {
    display: flex;
    text-align: center;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.global-template .global-title .global-title-line {
    display: flex;
    padding: 12px 50px;
    flex-flow: row nowrap;
}

.global-template .global-title .global-title-line .global-title-one {
    position: relative;
    width: 4px;
    height: 32px;
    background: #2280f1;
}

.global-template .global-title .global-title-line .global-title-one:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -16px;
    width: 4px;
    height: 24px;
    background: #2280f1;
    transform: translate(0, -50%);
}

.global-template .global-title .global-title-line .global-title-one:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -32px;
    width: 4px;
    height: 16px;
    background: #2280f1;
    transform: translate(0, -50%);
}

.global-template .global-title .global-title-line .global-title-two {
    position: relative;
    width: 4px;
    height: 32px;
    margin-left: 16px;
    background: #2280f1;
}

.global-template .global-title .global-title-line .global-title-two:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 16px;
    width: 4px;
    height: 24px;
    background: #2280f1;
    transform: translate(0, -50%);
}

.global-template .global-title .global-title-line .global-title-two:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 32px;
    width: 4px;
    height: 16px;
    background: #2280f1;
    transform: translate(0, -50%);
}

.global-template .global-title .global-title-center {
    position: relative;
    padding: 12px 8px;
    margin: 0 27px;
    font-size: 24px;
    color: #fff;
    background: #2280f1;
    border-radius: 3px;
}

.global-template .global-title .global-title-center:after {
    content: "";
    position: absolute;
    top: 0;
    left: -26.5px;
    width: 0;
    height: 0;
    border-top: 27.5px solid transparent;
    border-bottom: 27.5px solid transparent;
    border-right: 27.5px solid #2280f1;
}

.global-template .global-title .global-title-center::before {
    content: "";
    position: absolute;
    top: 0;
    right: -26.5px;
    width: 0;
    height: 0;
    border-top: 27.5px solid transparent;
    border-bottom: 27.5px solid transparent;
    border-left: 27.5px solid #2280f1;
}

.global-template .global-content {
    margin-top: 50px;
}

.global-list {
    display: flex;
    flex-flow: row wrap;
}

.global-list .global-box {
    width: 270px;
    margin: 0 40px 50px 0;
}

.global-list .global-box:nth-child(4n) {
    margin-right: 0;
}

.global-list .global-box:nth-last-child(1) {
    margin-bottom: 0;
}

.global-list .global-box:nth-last-child(2) {
    margin-bottom: 0;
}

.global-list .global-box:nth-last-child(3) {
    margin-bottom: 0;
}

.global-list .global-box:nth-last-child(4) {
    margin-bottom: 0;
}

.global-list .global-box a {
    display: block;
}

.global-list .global-box a .global-image {
    display: flex;
    position: relative;
    width: 270px;
    height: 270px;
    border-radius: 24px;
    overflow: hidden;
    justify-content: center;
}

.global-list .global-box a .global-image .global-tip {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 24px;
    font-size: 18px;
    color: #fff;
    background: #f6b533;
    border-radius: 24px 0px 24px;
}

.global-list .global-box a .global-image .global-hide {
    display: none;
}

.global-list .global-box a .global-image img {
    height: 100%;
}

.global-list .global-box a h4 {
    margin-top: 30px;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.global-list .global-box .global-info {
    display: flex;
    color: #999;
    margin-top: 16px;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.global-list .global-box .global-info .iconfont {
    font-size: 18px;
}

.more-btn {
    align-self: center;
    display: inline-block;
    padding: 12px 44px;
    margin-top: 37px;
    color: #999;
    border: 1px solid #999;
    border-radius: 20px;
}

.more-btn:hover {
    background: #999;
    color: #fff;
}

/* Common */

/* Nav */

.nav-wrapper {
    min-width: 1200px;
    height: 48px;
    background: #1a1d36;
}

.nav-wrapper .container .nav {
    display: flex;
    padding: 0;
    margin: 0;
    flex-flow: row nowrap;
}

.nav-wrapper .container .nav li {
    width: 150px;
    height: 48px;
}

.nav-wrapper .container .nav li:hover a {
    color: #fff;
}

.nav-wrapper .container .nav li a {
    display: block;
    height: 100%;
    color: #999;
    line-height: 48px;
    text-align: center;
    color: #fff;
}

/* End Nav */

/* About Us */

.about-box {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.about-box:last-child {
    margin-top: 60px;
}

.about-box .about-global {
    display: flex;
    flex-flow: column nowrap;
    flex: 0 0 560px;
}

.about-box .about-global h3 {
    position: relative;
    font-size: 20px;
    margin-bottom: 10px;
}

.about-box .about-global h3:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 1px;
    background-color: #999;
}

.about-box .about-global p {
    font-size: 16px;
    line-height: 24px;
    color: #999;
    margin-top: 36px;
}

.about-box .about-global .contact-us-list {
    color: #999;
    margin-top: 12px;
}

.about-box .about-global .contact-us-list:first-child {
    margin-top: 30px;
}

.about-box .about-global .contact-us-list .iconfont {
    margin-right: 14px;
    font-size: 26px;
    color: #999;
}

.about-box .about-global .contact-us-list span {
    position: relative;
    top: -3px;
    font-size: 16px;
}

.about-box .about-global .contact-us-list a {
    position: relative;
    top: -3px;
    font-size: 16px;
    color: #2280f1;
}

.about-box .about-bg {
    width: 600px;
    height: 400px;
}

/* Newest */

.newest-menu {
    padding: 20px 0 40px 0;
    background: #edf0f4;
}

.newest-menu .container a {
    display: inline-block;
    width: 150px;
    height: 40px;
    margin: 20px 20px 0 0;
    line-height: 40px;
    text-align: center;
    color: #999;
    background: #fff;
    border-radius: 20px;
}

.newest-menu .container a:hover {
    background: #2280f1;
    color: #fff;
}

.newest-menu .container a:nth-child(7n) {
    margin-right: 0;
}

.newest-menu .container a.newest-current {
    background: #2280f1;
    color: #fff;
}

.newest-menu .container a .newest-menu-tips {
    color: #f6b533;
}

.newest-content {
    position: relative;
    margin-top: 50px;
    text-align: center;
}

.newest-content .global-box {
    text-align: left;
}

.newest-content .more-btn {
    margin: 50px auto 0;
}

/* End Newest*/

/* News*/

.news {
    text-align: center;
}

.news-list {
    display: flex;
    position: relative;
    text-align: left;
    flex-flow: row wrap;
}

/* .news-list:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #2280f1;
  border-radius: 3px;
} */

.news-list a {
    position: relative;
    display: flex;
    padding: 0 0 38px 20px;
    overflow: hidden;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-self: flex-start;
    flex: 0 0 47%;
}

.news-list a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #2280f1;
}

.news-list a:last-child {
    padding-bottom: 0;
}

.news-list a:nth-last-child(2) {
    padding-bottom: 0;
}

.news-list a p {
    display: inline-block;
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 0 0 460px;
}

.news-list a span {
    align-self: flex-end;
    color: #999;
    flex: 0 0 80px;
}

/* End News*/

/* New Case*/

.news-case {
    text-align: center;
}

/* End New Case*/

/* Album*/

.album .global-box a {
    position: relative;
}

.album .global-box a:after {
    content: "";
    z-index: 1;
    position: absolute;
    width: 200px;
    height: 200px;
    top: 20px;
    right: 14px;
    background: #bbbfc4;
    border-radius: 16px;
}

.album .global-box a:before {
    content: "";
    z-index: 1;
    position: absolute;
    width: 160px;
    height: 160px;
    top: 40px;
    right: -2px;
    background: #dde0e4;
    border-radius: 16px;
}

.album .global-box a .global-image {
    width: 240px;
    height: 240px;
}

.album .global-box a .global-image img {
    z-index: 2;
    position: relative;
}

.album .global-box a h4 {
    width: 240px;
    text-align: center;
}

/* End Album*/

.swiper-href {
    display: block;
    width: 100%;
    height: 100%;
}