/*产品相关栏目*/
.cates-info-image{
    position: relative;
    height: 26vw;  /* 基于 图片 1920*500 计算高度值 */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.cates-info-image h1{
    position: absolute;
    width: 100%;
    height: 100%;
    font-size: 48px;
    background-color: rgba(3,3,3,.2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: var(--color-highlight); */
}
.products-info>div{
    /* border: 1px solid red; */
    flex-grow: 1;
}
.products-info .products-right-list{
    /* border: 1px solid #d8d8d8; */
}
.products-info .products-left-nav{
    max-width: 280px;
    margin-right: 25px;
    flex-grow: 0;
    flex-direction: column;
    flex-shrink: 0;
    width: 15%;
}
.products-info .products-left-nav>div{
    width: 100%;
}
.products-info .products-left-nav>div:first-child{

}
.products-info .products-left-nav-item{
    padding: 15px;
}
.products-info .products-left-nav-item a{
    display: block;
    width: 100%;
    padding: 10px 0;
    overflow: hidden;
    text-align: left;
}
.products-info .products-left-nav-item a:hover{
    color: initial;
}
.products-info .products-left-nav-item a i{
    float: right;
    margin-top: 5px;
    font-size: 12px;
    font-weight: 200;
}
.products-info .products-left-nav-item a i.clicked svg:first-child{
    display: none;
}
.products-info .products-left-nav-item a i.clicked svg:last-child{
    display: initial;
}
.products-info .products-left-nav-item a i svg:last-child{
    display: none;
}

.products-info .products-left-nav-item ul{
    flex-direction: column;
    font-size: 0;
    /* display: none; */
}
.products-info .products-left-nav-item ul.hide{
    display: none;
}
.products-info .products-left-nav-item ul li{
    padding: 2px 10px 10px;
    border-bottom: 1px dashed #DCDDDF;
    font-size: 0;
    margin-top: 8px;
    
}
.products-info .products-left-nav-item ul li label{
    vertical-align: middle;
    display: inline-block;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    /* font-weight: 600; */
}
.products-info .products-left-nav-item ul li label::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 1.1em;
    height: 1.1em;
    /* border-radius: 50%; */ /*圆形样式*/
    border: .064rem solid #d8d8d8;
    box-sizing: border-box;
    margin-right: 8px;
    background-color: #fff;
}
.products-info .products-left-nav-item ul li input[type="radio"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    margin-right: 8px;
    vertical-align: middle;
    display: inline-block;
}
.products-info .products-left-nav-item ul li label:has(input[type="radio"]:checked)::before{
    background-color: #87CEEB;
    background-clip: content-box;
    padding: .15em;
    box-sizing: border-box;
}

/* 右侧布局 */
.products-tech-nav ul{
    flex-direction: row;
    display: flex;
    justify-content: flex-end;
    width: 100%;
    background-color: #FCFCFC;
    padding: 5px;
}
.products-tech-nav ul li{
    padding: 10px 15px;
    margin-right: 5px;
    transition: 0.3s;
    cursor: pointer;
}
.products-tech-nav ul li:last-child{
    margin-right: 0;
}
.products-tech-nav ul li.active,
.products-tech-nav ul li:hover{
    background-color: var(--color-highlight);
    border-radius: 3px;
    transform: background-color,color;
}
.products-tech-nav ul li.active a,
.products-tech-nav ul li:hover a{
    color: #fff;
}

.products-list ul{
    row-gap: 2rem;
    column-gap: 2rem;
}
.products-list ul li{
    width: calc((100% - 6rem)/4);
    padding: 20px 15px;
    border-radius: 10px;
    border: 1px solid #efefef;
    box-shadow: 0 3px 5px 0 hsla(0,0%,83.9%,.22);
}
.products-list ul li a:hover{
    color: inherit;
}
.products-list ul li img{
    width: 100%;
    transition: 0.3s;
    transform: scale(0.95);
    aspect-ratio: 1 / 1;
}
.products-list ul li h3{
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: center;
    height: 2.6em;
    line-height: 1.3;
    margin-top: 1rem;
}
.products-list ul li:hover img{
    transform: scale(1.0);
}
.products-list ul li:hover h3{
    color: var(--color-highlight);
}
.products-list ul li p{
    margin-bottom: 15px;
    position: relative;
    padding-left: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    line-height: 1.2em;
    max-height: 1.2em;
}
.products-list ul li p::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 50%;
    background-color: #363636;
    content: '';
}
.products-list ul li div{
    text-align: center;
    /* margin-top: 30px; */
}
/*.products-list ul li span{*/
/*    display: inline-block;*/
/*    padding: 0.5rem 1.875rem;*/
/*    text-align: center;*/
/*    border-radius: 3px;*/
/*    color: #fff;*/
/*    background-color: var(--color-highlight);*/
/*}*/


/*资源栏目 *Resources */
.resources-part .banner{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /*height: 37.5vw;*/
    height: 31vw;
    justify-content: center;
    align-items: center;
}
.resources-part .banner .banner-text{
    height: 100%;
    justify-content: center;
    align-items: center;
}
.resources-part .banner .banner-text .center{
    text-align:center;
}
.resources-part .banner .banner-text .left{
    text-align:left;
    max-width: 65%;
}.resources-part .banner .banner-text .center{
    text-align:center;
}
.resources-part .banner .banner-text .right{
    text-align: left;
    transform: translateX(100%);
    max-width: 50%;
}



/*tools*/
.resources-part .tools-list .container{
    width: 100%;
    min-height: 800px;
    row-gap: 2rem;
}
.resources-part .tools-list .container .app-item{
    border: 1px solid #ededed;
    border-radius: 10px;
    padding: 4rem;
    background-color: #fff;
}
.resources-part .tools-list .container .app-item .intro{
    column-gap: 4rem;
    width: 70%;
}
.resources-part .tools-list .container .app-item .img{
    align-items: center;
}
.resources-part .tools-list .container .app-item .img img{
    width: 120px;
    border-radius: 10px;
    max-width: none;
}
.resources-part .tools-list .container .app-item .download{
    position: relative;
    width: 30%;
    margin-left: 2rem;
    padding-left: 2rem;
}
.resources-part .tools-list .container .app-item .download::before{
    position: absolute;
    content: '';
    height: calc(100% - 4rem);
    width: 1px;
    background-color: rgb(175 171 171 / 40%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.resources-part .tools-list .container .app-item .download>div{
    row-gap: 1rem;
}
.resources-part .tools-list .container .app-item .download>div img{
    width: 32px;
    margin-right: 1.5rem;
    display: inline-block;
}



/*whitepapers*/
.resources-part .whitepapers-count{
    border-bottom: 1px dashed var(--color-highlight);
    padding-bottom: 10px;
    position: relative;
}
.resources-part .whitepapers-count::after{
    content: '';
    width: 400px;
    height: 4px;
    background-color: var(--color-highlight);
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}
.resources-part .whitepapers-count span {
  color: var(--color-highlight);
  font-size: 1.1em;
}
.resources-part .whitepapers-count>svg{
  width: 46px;
  height: 46px;
}

.resources-part .whitepapers-list{}
.resources-part .whitepapers-list ul{
    flex-wrap: wrap;
    row-gap: 3rem;
}
.resources-part .whitepapers-list>ul>li{
    width: 100%;
    column-gap: 3rem;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s;
    padding: 2rem 4rem 2rem 2rem;
}
.resources-part .whitepapers-list>ul>li:hover{
    box-shadow: 0 1px 30px 0 rgba(0,0,0,.05);
}

.resources-part .whitepapers-list>ul>li img:hover{
    transform: perspective(1000px) rotateY(0);
}

.resources-part .whitepapers-list a{}
.resources-part .whitepapers-list .img{
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    width: 25%;
    flex-shrink: 0;
    padding: 20px;
    display: flex;
    align-items: center;
}
.resources-part .whitepapers-list .img img{
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    transform: perspective(1000px) rotateY(40deg);
    
}
.resources-part .whitepapers-list .msg .application li{
    margin-bottom: 5px;
    position: relative;
    padding-left: 26px;
}
.resources-part .whitepapers-list .msg .application li::before{
    position: absolute;
    width: 20px;
    height: 20px;
    content: '';
    left: 0;
    top: 0;
    background-image: url('data:image/svg+xml;utf-8, <svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M24 44C29.5228 44 34.5228 41.7614 38.1421 38.1421C41.7614 34.5228 44 29.5228 44 24C44 18.4772 41.7614 13.4772 38.1421 9.85786C34.5228 6.23858 29.5228 4 24 4C18.4772 4 13.4772 6.23858 9.85786 9.85786C6.23858 13.4772 4 18.4772 4 24C4 29.5228 6.23858 34.5228 9.85786 38.1421C13.4772 41.7614 18.4772 44 24 44Z" fill="none" stroke="%231b2e57" stroke-width="3" stroke-linejoin="round"/><path d="M16 24L22 30L34 18" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: center;
}
.resources-part .whitepapers-list .msg a{
  color: var(--color-darkblue);
  display: inline-block;
  position: relative;
}
.resources-part .whitepapers-list .msg a i{
  width: 26px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 5px;
  /* pdf ico*/
  /*background-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 128" id="pdf-file"><path fill="%231b2e57" d="M95.21 80.32c-.07-.51-.48-1.15-.92-1.58-1.26-1.24-4.03-1.89-8.25-1.95-2.86-.03-6.3.22-9.92.73-1.62-.93-3.29-1.95-4.6-3.18-3.53-3.29-6.47-7.86-8.31-12.89.12-.47.22-.88.32-1.3 0 0 1.98-11.28 1.46-15.1-.07-.52-.12-.67-.26-1.08l-.17-.44c-.54-1.25-1.6-2.57-3.26-2.5l-.98-.03h-.02c-1.86 0-3.36.95-3.76 2.36-1.2 4.44.04 11.09 2.29 19.69l-.58 1.4c-1.61 3.94-3.63 7.9-5.41 11.39l-.23.45c-1.88 3.67-3.58 6.79-5.13 9.43l-1.59.84c-.12.06-2.85 1.51-3.49 1.89-5.43 3.25-9.03 6.93-9.63 9.85-.19.94-.05 2.13.92 2.68l1.54.78c.67.33 1.38.5 2.1.5 3.87 0 8.36-4.82 14.55-15.62 7.14-2.32 15.28-4.26 22.41-5.32 5.43 3.05 12.11 5.18 16.33 5.18.75 0 1.4-.07 1.92-.21.81-.22 1.49-.68 1.91-1.3.82-1.23.98-2.93.76-4.67zM36.49 99.33c.7-1.93 3.5-5.75 7.63-9.13.26-.21.9-.81 1.48-1.37-4.32 6.89-7.21 9.63-9.11 10.5zM60.95 43c1.24 0 1.95 3.13 2.01 6.07.06 2.94-.63 5-1.48 6.53-.71-2.26-1.05-5.82-1.05-8.15 0 0-.05-4.45.52-4.45zm-7.3 40.14c.87-1.55 1.77-3.19 2.69-4.92 2.25-4.25 3.67-7.57 4.72-10.3 2.1 3.82 4.72 7.07 7.79 9.67.39.32.8.65 1.22.98-6.25 1.23-11.66 2.74-16.42 4.57zm39.43-.35c-.38.23-1.47.37-2.17.37-2.26 0-5.07-1.03-9-2.72 1.51-.11 2.9-.17 4.14-.17 2.27 0 2.94-.01 5.17.56 2.22.57 2.25 1.72 1.86 1.96z"></path><path fill="%231b2e57" d="M104 80c-13.255 0-24 10.745-24 24s10.745 24 24 24 24-10.745 24-24-10.745-24-24-24zm10.882 16.988-.113.176-8.232 11.438c-.548.866-1.508 1.398-2.537 1.398s-1.989-.532-2.536-1.397l-8.346-11.614a3.01 3.01 0 0 1 .01-2.994 3.01 3.01 0 0 1 2.596-1.494H100V86c0-1.654 1.346-3 3-3h2c1.654 0 3 1.346 3 3v6.5h4.276c1.065 0 2.061.572 2.596 1.494a3.01 3.01 0 0 1 .01 2.994z"></path><path fill="%231b2e57" d="m84 125.95-.05.05H84zM114 77v-.05l-.05.05z"></path><path fill="%231b2e57" d="M111.071 44.243 71.757 4.929A9.936 9.936 0 0 0 64.687 2H24c-5.514 0-10 4.486-10 10v104c0 5.514 4.486 10 10 10h59.95l-4-4H24c-3.309 0-6-2.691-6-6V12c0-3.309 2.691-6 6-6h40.687c1.603 0 3.109.624 4.242 1.757l39.314 39.314A6.044 6.044 0 0 1 110 51.313V72.95l4 4V51.313c0-2.67-1.04-5.181-2.929-7.07z"></path><path fill="%23fff" d="m113.95 77 .05-.05-4-4"></path></svg>');  */
  
  background-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" id="word-file"><path fill="none" d="M0 0h64v64H0z"></path><path fill="%23a3313a" d="m13 56-5.01-5H13v5zM51 56l5.01-5H51v5z"></path><path fill="%23b2b2b2" d="M51 13h-7.99V5.01L51 13z"></path><path fill="%23f1f1f1" d="M43 5H14.59A1.59 1.59 0 0 0 13 6.59v51a1.6 1.6 0 0 0 1.59 1.6h34.82A1.6 1.6 0 0 0 51 57.54V13h-8Z"></path><path fill="%23c84d52" d="M9 33h46a1 1 0 0 1 1 1v17H8V34a1 1 0 0 1 1-1Z"></path><path fill="%23fff" d="M23.67 43.13V46h-2v-8.18h3.2a3.09 3.09 0 0 1 2.22.73 2.55 2.55 0 0 1 .77 2 2.73 2.73 0 0 1-.34 1.35 2.39 2.39 0 0 1-1 .94 3.51 3.51 0 0 1-1.63.34zm2.2-2.63q0-1.08-1.2-1.08h-1v2.13h1q1.2 0 1.2-1.05zm9.82 3.5a3.63 3.63 0 0 1-1.48 1.45 4.7 4.7 0 0 1-2.27.52h-3.09v-8.15h3.09a4.75 4.75 0 0 1 2.27.51 3.54 3.54 0 0 1 1.48 1.44 4.3 4.3 0 0 1 .51 2.13 4.36 4.36 0 0 1-.51 2.1zm-2.13-.41a2.64 2.64 0 0 0 0-3.45 2.5 2.5 0 0 0-1.8-.61h-.93v4.67h.93a2.5 2.5 0 0 0 1.8-.58zm9.1-5.77v1.58H39.3v1.79h2.59v1.5H39.3V46h-2v-8.18z"></path><path fill="none" stroke="%23c84d52" stroke-miterlimit="10" d="M32.9 10.53a5.14 5.14 0 0 1-.2 2.06c-.89 3.07-3.87 14.26-6.12 15.85-3.21 2.28-4.88-.31-3.17-2.15S35.44 22 38.73 22c4.28 0 3.73 3.79 1.3 3.56-2.74-.26-9.59-4.93-10-13.81-.18-3.16 2.56-3.75 2.87-1.22Z"></path></svg>');
  
  
  
}
.resources-part .whitepapers-list .msg a::after{
    position: absolute;
    content: '';
    right: -23px;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('data:image/svg+xml;utf-8, <svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 12L31 24L19 36" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        transition: right .3s ease-out;
}
.resources-part .whitepapers-list .msg a:hover::after{
    right: -26px;
}


#whitepaperMask{
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17,17,17,.4);
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
#whitepaperMask.active{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#whitepaperMask .msg-popup{
    padding: 1rem;
}
#whitepaperMask .current-msg{
    background-color: #fff;
    width: 100%;
    position: relative;
    max-width: 700px;
    column-gap: 2rem;
    box-shadow: 1px 1px 6px 0px rgba(0,0,0,.1);
    min-height: 300px;
    border-radius: 10px;
}
#whitepaperMask .current-msg .left,
#whitepaperMask .current-msg .right{
  padding: 3rem 2rem;
  border-radius: 10px;
}
#whitepaperMask .current-msg .left{
  width: 48%;
  background-color: #ededed;
  justify-content: space-between;
  align-items: center;
}
#whitepaperMask .current-msg .img img{
  max-height: 160px;
}
#whitepaperMask .current-msg .right{
  width: 52%;
}
#whitepaperMask .current-msg .right .logo i{
  height: 60px;
  width: 60px;
}

/*表单元素样式*/
#whitepaperMask .current-msg .email-form{
    /*padding-left: 2rem;*/
    /* padding-right: 7rem; */
}
#whitepaperMask .current-msg .email-form form {
    width: 100%;
    position: relative;
    /*border: 1px solid red;*/
}
#whitepaperMask .current-msg .email-form form input{
  border: 1px solid var(--color-darkblue);
  outline: none;
  padding: 12px 1rem;
  color: #999;
  border-radius: 10px;
  width: 100%;
  margin-top: 10px;
  color: var(--color-darkblue);
}
#whitepaperMask .current-msg .email-form form input[type="email"]{

}
#whitepaperMask .current-msg .email-form form input[type='submit'] {
  cursor: pointer;
  background-color: var(--color-darkblue);
  font-family: var(--font-bold);
  color: #fff;
  padding: 15px 1rem;
  margin-top: 15px;
}
/*提交等待提示*/
#whitepaperMask .current-msg .email-form form .wpcf7-spinner{
  position: absolute;
  top: -20px;
  right: 0px;
}
/*关闭按钮*/
#whitepaperMask .msg-popup .closed {
  position: absolute;
  right: 1rem;
  top: 8px;
  cursor: pointer;
}

/*SDK&API*/
.resources-part .sdks-list{
    column-gap: 4rem;

}
.resources-part .sdks-list .sdks-cate{
    width: calc((100% - 2rem)/2);
    /*background-color: #fff;*/
    border-radius: 10px;
    padding: 3rem;
    column-gap: 3rem;
    border: 1px solid #ededed;
}
.resources-part .sdks-list .platform-img{
    width: 160px;
    text-align: center;
    flex-shrink: 0;
}

.resources-part .sdks-list .sdks-cate>ul{
    row-gap: 1rem;
    column-gap: 1rem;
    flex-grow: 1;
}
.resources-part .sdks-list .sdks-cate>ul>li{
    width: 100% ;
}
.resources-part .sdks-list .item{
    /*padding-left: 1.5rem;*/
    align-items: center;
    padding-top: 3px;
    padding-bottom: 3px;
}
.resources-part .sdks-list .item>svg{
    width: 20px;
    height: 20px;
    margin-right: 3px;
}
.resources-part .sdks-list .item>a{
    display: block;
    position: relative;
}
.resources-part .sdks-list .item>a::after{
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 8px);
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf-8, <svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 12L31 24L19 36" stroke="%2387CEEB" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: none;
    transition: all 0.3s ease-out;
}
.resources-part .sdks-list .item>a:hover::after{
    display: block;
}


/*Documentation*/
.resources-part .documentation-list>div{
    column-gap: 40px;
}
.resources-part .documentation-list .left{
    width: 20%;
    flex-shrink: 0;
}
.resources-part .documentation-list .left>div{
    padding: 3rem 2rem;
    border-radius: 10px;
    border: 1px solid #ededed;
    background-color: #fff;
}
.resources-part .documentation-list .left li{
    padding: 10px;
    border-bottom: 1px dashed #DCDDDF;
    position: relative;
    cursor: pointer;
}
.resources-part .documentation-list .left li i{
    position: absolute;
    right: 10px;
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%) ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url('data:image/svg+xml;utf-8, <svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M19 12L31 24L19 36" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    transition: all .3s ease-out;
    opacity: 0;
    
}
.resources-part .documentation-list .left li.active i{
    right: 5px;
    opacity: 1;
    font-size: 18px;
}



.resources-part .documentation-list .right{
    width: 80%;
    min-height: 800px;
}
.resources-part .documentation-list .right ul{
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 2rem;
}
.resources-part .documentation-list .right li{
    width: calc((100% - 2rem)/2);
    padding: 1rem 2rem;
    /*box-shadow: 1px 1px 6px 0px rgba(0,0,0,.1);*/
    border: 1px solid #ededed;
    border-radius: 10px;
    background-color: #fff;
    display: none;
}
.resources-part .documentation-list .right li.active{
    display: block;
}
.resources-part .documentation-list .name{
    align-items: flex-end;
    padding: 10px 0;
    border-bottom: 1px dashed #ededed;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.resources-part .documentation-list .detail{
    justify-content: space-between;
    align-items: center;
}
.resources-part .documentation-list .detail .download{
    order: 1;
}
.resources-part .documentation-list .detail .download a{
    position: relative;
    padding-left: 30px;
    display: block;
}
.resources-part .documentation-list .detail .download a::before{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml;utf-8,<svg width="20" height="20" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.6777 20.271C7.27476 21.3181 4 25.2766 4 30C4 35.5228 8.47715 40 14 40C14.9474 40 15.864 39.8683 16.7325 39.6221" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M36.0547 20.271C40.4577 21.3181 43.7324 25.2766 43.7324 30C43.7324 35.5228 39.2553 40 33.7324 40C32.785 40 31.8684 39.8683 30.9999 39.6221" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M36 20C36 13.3726 30.6274 8 24 8C17.3726 8 12 13.3726 12 20" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M17.0654 30.119L23.9999 37.0764L31.1318 30" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/><path d="M24 20V33.5382" stroke="%231b2e57" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"/></svg>'); 
    /*颜色值 # 用 %23 替换*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.resources-part .documentation-list .detail .img{
    width: 140px;
}













/*弹窗组*/
#contactUsForms{
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(17,17,17,.4);
  width: 100%;
  height: 100%;
  z-index: 999;
  display: none;
}
#contactUsForms.active{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
#contactUsForms .msg-popup{
  padding: 1rem;
}
#contactUsForms .form-msg{
    display: none;
    background-color: #fff;
    width: 100%;
    position: relative;
    padding: 3rem 2rem;
    border-radius: 10px;
}
#contactUsForms .form-msg.active{
    display: flex;
}
#contactUsForms .form-msg-01{
    max-width: 600px;
    column-gap: 2rem;
    row-gap: 2rem;
    position: relative;
}
#contactUsForms .form-msg-01 .left{
    /*background-color: #ededed;*/
    justify-content: center;
    align-items: center;
    width: 35%;
}
#contactUsForms .form-msg-01 .text p{
  /*margin-top: 10px;*/
}
#contactUsForms .form-msg-01 .img{
  width: 80%;
  max-width: 80px;
}
#contactUsForms .form-msg-01 .right{
    width: 65%;
}
#contactUsForms .form-msg-01 .right .logo{
  justify-content: center;
}
#contactUsForms .form-msg-01 .right .logo img{
    height: 56px;
    width: auto;
}

/*表单元素样式*/
#contactUsForms .form-msg .email-form{
    /*padding-left: 2rem;*/
    /* padding-right: 7rem; */
}
#contactUsForms .form-msg .email-form form {
    width: 100%;
    position: relative;
    /*border: 1px solid red;*/
}
#contactUsForms .form-msg .email-form form input{
  border: 1px solid var(--color-darkblue);
  outline: none;
  padding: 12px 1rem;
  color: #999;
  border-radius: 10px;
  width: 100%;
  margin-top: 1rem;
  color: var(--color-darkblue);
}
#contactUsForms .form-msg .email-form form input[type="email"]{

}
#contactUsForms .form-msg .email-form form input[type='submit'] {
  cursor: pointer;
  background-color: var(--color-darkblue);
  font-family: var(--font-bold);
  color: #fff;
  padding: 15px 1rem;
  margin-top: 15px;
}
#contactUsForms .form-msg .email-form form textarea {
    width: 100%;
    margin-top: 1rem;
    outline: none;
    border: 1px solid var(--color-darkblue);
    border-radius: 10px;
    padding: 12px 1rem;
    color: var(--color-darkblue);
    box-sizing: border-box;
    font-family: 'MULI-Regular';
    height: 9rem;
}

/*提交等待提示*/
#contactUsForms .form-msg .email-form form .wpcf7-spinner{
  position: absolute;
  top: -20px;
  right: 0px;
}
/*关闭按钮*/
#contactUsForms .msg-popup .closed {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
}
#contactUsForms .msg-popup .closed i {
  font-size: 14px;
  margin-bottom: 0;
}


/*TagCloud*/
/*banner 不同*/
.resources-tagcloud.resources-part .left{
    max-width: 670px;
}
.resources-tagcloud.resources-part .banner{
    height: 37.5vw;
}
.resources-tagcloud.resources-part .banner-text .go a{
    color: var(--color-darkblue);
    border: 1px solid var(--color-darkblue);
    display: inline-block;
    padding: 10px 30px;
    margin-right: 3rem;
    border-radius: 40px;
    transition: all 0.3s;
}
.resources-tagcloud.resources-part .banner-text .go a:hover{
    transform: translateY(-3px);
    color: #fff;
    border: 1px solid var(--color-highlight);
    background-color: var(--color-highlight);
}
.resources-part .tagcloud-intro{
    background-image: url(/resources/tagcloud-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    background-color: #f9f9f9;
    background-attachment: fixed;
    
}
.resources-part .tagcloud-intro .text{
    max-width: 1060px;
    margin: 0 auto;
}
.resources-part .tagcloud-intro .text p.strong{
    text-align: center;
}
.resources-part .tagcloud-intro .text p{
    text-align: justify;
}
.resources-part .tagcloud-intro .text a{
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    padding: 8px 26px;
    border-radius: 20px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    transition: all 0.3s;
    background-color: var(--color-darkblue);
    color: #eff0f6;

}
.resources-part .tagcloud-intro .text a:hover{
    color: #fff;
    transform: translateX(-50%) translateY(-3px);
    background-color: var(--color-highlight);
}
.resources-part .tagcloud-intro .img{
    /*padding: 1rem;*/
}
/*swiper 自定义*/
.resources-part .tagcloud-intro .swiper-container{
    overflow: hidden;
    position: relative;
        border-radius: 1rem;
}
.resources-part .tagcloud-intro .swiper-container .swiper-slide img{
    /*border-radius: 1rem;*/
}

.resources-part .tagcloud-intro .swiper-container .swiper-pagination{
    background-color: rgba(3,3,3,.3);
    width: auto;
    padding: 8px 30px;
    display: flex;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.resources-part .tagcloud-intro .swiper-container .swiper-pagination span{
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 1;
}
.resources-part .tagcloud-intro .swiper-container .swiper-pagination span.swiper-pagination-bullet-active{
    background-color: var(--color-highlight);
}
:root {
    --swiper-navigation-size: 30px;
}
.resources-part .tagcloud-intro .swiper-container .swiper-button-next, 
.resources-part .tagcloud-intro .swiper-container .swiper-button-prev{
    color: var(--color-highlight);
}
.resources-part .tagcloud-benefits .row>div{
    justify-content: center;
    align-items: center;
    border: 1px solid #f1f1f1;
    background-color: #f7f7f7;
    flex-shrink: 0;
    padding: 50px 30px;
    transition: all 0.3s;
}
.resources-part .tagcloud-benefits .row>div:hover{
    background-color: #fff;
    transform: scale(1.01);
}
.resources-part .tagcloud-benefits .row{
    flex-wrap: wrap;
}
.resources-part .tagcloud-benefits .row>div{
    max-width: calc(100%/2);
}
.resources-part .tagcloud-benefits .row>div:nth-child(-n+3){
    width: calc(100%/3);
} 

.resources-part .tagcloud-benefits .content i{
    display: inline-block;
    background-color: var(--color-darkblue);
    padding: 30px;
    border-radius: 50%;
}
.resources-part .tagcloud-benefits .content i svg{
    width: 50px;
    height: 50px;
}
.resources-part .tagcloud-benefits .content .text p{
    /*margin-top: 1rem;*/
}
.resources-part .contact-us{
    background-image: url(/resources/tagcloud-contact-us.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*text-shadow: 4px 4px 10px #00000059;*/
    position: relative;
}
.resources-part .contact-us::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3,3,3,.2);
}
.resources-part .contact-us>div{
    z-index: 1;
    position: relative;
    max-width: 750px;
}
.resources-part .contact-us .text{
    margin: 0 auto;
    line-height: 1.2;
}
.resources-part .contact-us .button{
    justify-content: space-between;
}
.resources-part .contact-us .button a{
    color: #fff;
    background-color: var(--color-darkblue);
    border-radius: 1rem;
    padding: 8px 15px;
    transition: all 0.3s;
    width: 320px;
}
.resources-part .contact-us .button a:hover{
    background: var(--color-highlight);
}