.i-swiper {
    position: relative;
}

.i-swiper img{
    display: block;
    width: 100%;
}

.i-swiper-search {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 20;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    pointer-events: none;
}

.i-swiper-card {
    width: 360px;
    background-color: #ffffff;
    pointer-events: all;
}

.i-swiper-card-tab {
    display: flex;
    flex-wrap: nowrap;
    background-color: #e65d1a;
}

.i-swiper-card-tab>li {
    position: relative;
    width: 50%;
    padding: 20px 10px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.i-swiper-card-tab>li.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #020435;
}

.i-swiper-card-content-item {
    display: none;
    padding: 25px;
    box-sizing: border-box;
}

.i-swiper-card-content-item.active {
    display: block;
}

.i-swiper-card-content-item>textarea {
    display: block;
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 200px;
    resize: none;
    box-sizing: border-box;
}

.i-swiper-card-content-item>button {
    display: block;
    width: max-content;
    margin: 20px auto 0;
    padding: 12px 50px;
    background-color: #e65d1a;
    box-sizing: border-box;
    font-size: 18px;
    color: #fff;
}

.i-title {
    text-align: center;
}

.i-title>h2 {
    font-size: 28px;
    font-weight: 700;
    color: #020435;
}

.i-title>h2>span {
    font-weight: 400;
    text-transform: uppercase;
    color: #e65d1a;
}

.i-title>p {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
}

.i-more {
    display: block;
    width: max-content;
    margin: 50px auto;
    padding: 8px 24px;
    border: 1px solid #ccc;
    text-transform: uppercase;
    font-size: 14px;
    color: #666;
}

.i-more:hover {
    background-color: #e65d1a;
    border-color: #e65d1a;
    color: #fff;
}

.i-service {
    padding: 60px 0;
}

.i-service-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 40px;
}

.i-service-list>li {
    width: 24%;
}

.i-service-list>li img {
    display: block;
    width: 100%;
}

.i-service-list>li .content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.i-service-list>li .content>div>h4 {
    font-size: 16px;
}

.i-service-list>li:hover .content>div>h4 {
    color: #e65d1a;
}

.i-service-list>li .content>div>p {
    margin-top: 5px;
    font-size: 12px;
    color: #999;
}

.i-service-list>li .content>i {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid #ccc;
    color: #ccc;
}

.i-service-list>li:hover .content>i {
    border-color: #e65d1a;
    color: #e65d1a;
}

.i-industry {
    padding: 60px 0;
    background-color: #e5e5e5;
}

.i-industry-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 40px;
}

.i-industry-list>li {
    position: relative;
    width: 20%;
    border-right: 1px solid #fff;
}

.i-industry-list>li:last-child{
    border-right: 0;
}

.i-industry-list>li img {
    display: block;
    width: 100%;
}

.i-industry-list>li .content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 240px 30px 0;
    background-color: rgba(0, 0, 0, 0.4);
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    transition: all ease 0.5s;
}

.i-industry-list>li:hover .content {
    padding-top: 180px;
    background-color: #e65d1a;
}

.i-industry-list>li .content>img {
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.i-industry-list>li .content>h4 {
    margin-top: 20px;
    font-size: 18px;
    transition: all ease 0.5s;
}

.i-industry-list>li:hover .content>h4 {
    margin-top: 10px;
}

.i-industry-list>li .content>p {
    display: none;
    margin-top: 30px;
    font-size: 12px;
}

.i-industry-list>li:hover .content>p {
    display: block;
}

.i-about-advantage {
    padding: 50px 0 200px;
    background-color: #e65d1a;
    color: #fff;
}

.i-about-advantage ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.i-about-advantage li {
    text-align: center;
}

.i-about-advantage li img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 100%;
    border: 1px solid #fff;
}

.i-about-advantage li h4 {
    margin-top: 20px;
    font-size: 18px;
}

.i-about-advantage li p {
    margin-top: 4px;
    font-size: 14px;
}

.i-about-card {
    position: relative;
    z-index: 10;
    width: 90%;
    margin: -120px auto 0;
    padding: 50px 60px;
    background-color: #fff;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.i-about-card p {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    line-height: 2;
}

.i-about-card svg {
    display: block;
    margin: 60px auto 0;
    width: 48px;
    fill: #666
}

.i-about-card svg:hover {
    fill: #e65d1a;
}

.i-news {
    padding: 60px 0;
}

.i-news-body {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 40px;
}

.i-news-first {
    width: 48%;
}

.i-news-list {
    width: 50%
}

.i-news-item {
    background-color: #e5e5e5;
}

.i-news-item-body {
    display: flex;
    flex-wrap: nowrap;
    box-sizing: border-box;
}

.i-news-item .content h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 16px;
}

.i-news-item .content p {
    margin-top: 6px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 14px;
    color: #666;
}

.i-news-item .time {
    flex-shrink: 0;
    margin-right: 25px;
    text-align: center;
}

.i-news-item .time .year {
    display: block;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 18px;
    color: #666;
}

.i-news-item .time .md {
    display: block;
    margin-top: 4px;
    font-size: 14px;
    color: #999;
}

.i-news-first .i-news-item-body {
    padding: 15px 30px;
}

.i-news-first img {
    display: block;
    width: 100%;
}

.i-news-list .i-news-item{
    margin-bottom: 20px;
}

.i-news-list .i-news-item:last-child{
    margin-bottom: 0;
}

.i-news-list .i-news-item .i-news-item-body {
    padding: 20px 30px;
}

.i-adv img {
    display: block;
    width: 100%;
}

.i-case {
    padding: 60px 0;
}

.i-case-list {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top: 40px;
}

.i-case-list>li {
    width: 32%;
    border: 1px solid #ccc;
}

.i-case-list>li>a {
    display: block;
    padding: 8px;
    box-sizing: border-box;
}

.i-case-list>li img {
    display: block;
    width: 100%;
}

.i-case-list>li .content {
    padding: 20px 0 10px;
    box-sizing: border-box;
}

.i-case-list>li .content>h4 {
    font-size: 16px;
}

.i-case-list>li .content>p {
    margin-top: 10px;
    font-size: 14px;
}

.i-case-list>li .content>span {
    display: block;
    margin-top: 15px;
    padding: 10px 10px;
    width: 100px;
    text-align: center;
    background-color: #e65d1a;
    text-transform: uppercase;
    color: #fff;
}