html {
    font-size: 10px;
}

/* 移动端的标准都是根据iphone手机来指定标准的
   微信：是按照iphone6的设计标准设计的，可以参考微信的标准
   iphone6的分辨率 750*1334   在pc端 显示的比例375*667
*/

@media screen and (min-width:300px) {
    html {
        font-size: 8px !important;
    }
}

@media screen and (min-width:320px) {
    html {
        font-size: 8.53px !important;
    }
}

/* iphone6/7/8 */
@media screen and (min-width:375px) {
    html {
        font-size: 10px !important;
    }
}

/* iphone12p */
@media screen and (min-width:390px) {
    html {
        /* 10*390/375= */
        font-size: 10.4px !important;
    }
}

/* iphone6p/7p/8p */
@media screen and (min-width:414px) {
    html {
        /* 10*414/375= */
        font-size: 11.04px !important;
    }
}

@media screen and (min-width:540px) {
    html {
        /* 10*540/375= */
        font-size: 14.4px !important;
    }
}

@media screen and (min-width:600px) {
    html {
        /* 10*600/375= */
        font-size: 16px !important;
    }
}

@media screen and (min-width:700px) {
    html {
        /* 10*700/375= */
        font-size: 18.66px !important;
    }
}

/* ipad */
@media screen and (min-width:768px) {
    html {
        /* 10*768/375= */
        font-size: 20.48px !important;
    }
}

/* ipad Air*/
@media screen and (min-width:820px) {
    html {
        /* 10*820/375= */
        font-size: 21.86px !important;
    }
}

body,
html {
    padding: 0;
    margin: 0;
    background: #fff;
}

input,
button,
select,
textarea {
    font-family: SF UI Text;
}

dl,
dt,
dd,
ul,
li,
ol,
h1,
h2,
h3,
p,
form {
    padding: 0;
    margin: 0;
}

ul,
li,
ol {
    list-style: none;
}

img {
    vertical-align: top;
    display: inline-block;
}

.clear {
    clear: both;
}

a {
    color: #8B9AAD;
    text-decoration: none;
}

a:hover {
    color: #212229;
    transition: 0.2s ease color;
}

.one-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.two-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.three-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.display-no{
    display: none;
}

.head-white {
    width: 100%;
    position: relative;
}

header {
    width: 100%;
    height: 5.6rem;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    /* transition: all .4s; */
}

.head {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1.8rem;
    box-sizing: border-box;
    color: #fff;
    line-height: 12rem;
    margin:  0 auto;
}

.head-bg{
    background: rgba(21, 26, 46, 0.6);
}

.head-left {
    height: 100%;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.head-left .logo-img {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1rem;
}

.head-left .logo-img img{
    width: 100%;
    height: 100%;
}

.head-left .logo {
    font-weight: bold;
    font-size: 2rem;
}

.head-right{
    display: none;
}

.carousel{
    width: 100%;
    position: relative;
}

.swiper{
    width: 100%;
    position: relative;
}

.swiper-title {
    width: 100%;
    padding: 7.6rem 1.8rem 2rem;
    background: url('/images/banner.jpg') no-repeat center center;
    background-size: 100% 100%;
    box-sizing: border-box;
}

.swiper-top{
    width: 100%;
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.swiper-word{
    width: 100%;
    font-size: 1.6rem;
    color: #48D6D2;
    margin-bottom: 3rem;
}

.core{
    width: 100%;
    text-align: center;
    background: #051745;
    padding: 2rem 1.4rem;
}

.core-top{
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

.core-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.core-item{
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 0px 3rem 0px rgba(255,114,0,0.2);
    border-radius: 0.5rem;
    border: 2px solid #39FFFD;
    padding: 1.8rem;
    box-sizing: border-box;
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-top: 2rem;
}

.core-item-title{
    font-size: 2rem;
    font-weight: bold;
    color: #0B2751;
    line-height: 3.2rem;
    margin-bottom: 1.2rem;
}

.main {
    width: 100%;
    position: relative;
    font-size: 1.6rem;
    color: #212229;
}


.about{
    width: 100%;
    background: url('/images/about.jpg') no-repeat center center;
    background-size: 100% 100%;
    color: #fff;
    font-size: 1.6rem;
    padding: 2rem 2.4rem;
    box-sizing: border-box;
    line-height: 2.4rem;
}

.about-title{
    font-size: 2rem;
    line-height: 3.2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.about-word{
  width: 100%;
  /* white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-all;
  overflow-wrap: break-word; */
}

.service{
    width: 100%;
    background: #051745;
    color: #fff;
    padding: 2rem 1.6rem;
    box-sizing: border-box;
}

.service-content{
}

.service-title{
    font-size: 2rem;
    line-height: 3.2rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 2rem;
}

.service-list{
}

.service-item{
    width: 100%;
    margin-bottom: 2rem;
}

.service-item:last-child{
    margin-bottom: 0;
}

.service-item-top{
    display: flex;
    align-items: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #48D6D2;
    line-height: 2.8rem;
}

.service-item-img{
    height: 3.2rem;
    margin-right: 1rem;
}

.service-item-img img{
    height: 100%;
}

.service-item-title{
    font-weight: 500;
    font-size: 2rem;
    color: #48D6D2;
}

.service-item-word{
    font-size: 1.6rem;
    line-height: 2.8rem;
    margin-top: 1rem;
}

.service-item-li{
    position: relative;
    padding-left: 1.6rem;
}

.service-item-li::before{
    content: '·';
    position: absolute;
    left: 0;
    top: 0;
}

.footer{
    width: 100%;
    background: #312A91;
    color: #fff;
    padding: 2rem 1.6rem;
    box-sizing: border-box;
    position: relative;
}

.footer-content{
    display: flex;
    justify-content: space-between;
    box-sizing: border-box;
}

.footer-ul{
    width: 100%;
    color: #fff;
}

.footer-title{
    font-weight: 600;
    font-size: 2rem;

}

.footer-title .footer-logo{
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 1rem;
    display: inline-block;
    vertical-align: middle;
}

.footer-title .footer-logo img{
    width: 100%;
    height: 100%;
}

.footer-mine{
    padding-left: 3.2rem;
    font-size: 1.6rem;
    line-height: 2.2rem;
}

.footer-mine-li{
    display: flex;
    margin-top: 1rem;
}

.footer-icon{
    width: 1.6rem;
    margin-right: 1rem;
    padding-top: 0.6rem;
}

.footer-icon img{
    width: 100%;
}

.footer a{
    color: #fff;
}

.footer a:hover{
    color: #48D6D2;
}

.footer-right-title{
    font-size: 2.4rem;
    color: #48D6D2;
    margin-bottom: 0.5rem;
}

.footer-right-li{
    font-size: 2rem;
    line-height: 3.6rem;
}

.footer-bottom{
    width: 100%;
    height: 3.6rem;
    line-height: 3.6rem;
    text-align: center;
    background: #0B2751;
    color: #A09FAF;
    font-size: 1.2rem;
}

.footer-bottom a{
    color: #A09FAF;
}

.footer-bottom a:hover{
    color: #fff;
}