html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,orm,label,legend,caption,tbody,tfoot,thead ,tr, td{margin: 0;padding: 0;border: 0;outline: 0;vertical-align: baseline;font-size: inherit;    color: inherit;font-family: Microsoft YaHei,Helvetica,思源黑体 CN Normal,Tahoma,Arial,DengXian,Simsun,SimHei,sans-serif}
body {font-size: 16px;   }
ol,ul,li {list-style: none;}
/* remember to define focus styles! */
:focus {outline: 0;}
/* remember to highlight inserts somehow! */
ins {text-decoration: none;}
del {text-decoration: line-through;}
input {background: none;border: none;}

.fl {float: left;}
.fr {float: right;}
.wrap-box {min-width: 1280px;}
.comwidth {max-width: 90%;margin: 0 auto;}
.clearfix:after {content: "";display: block;height: 0;visibility: hidden;clear: both;}
.clearfix {zoom: 1;}
.clear {clear: both;}
.none {display: none;}
a:link,a:visited,a:active {text-decoration: none;}
a:active {outline: none;star: expression(this.onFocus=this.blur());}
a:hover {text-decoration: none;color:#ca4933;}
i{font-style: normal;}
.transform,.transform * {-webkit-transition: all .4s cubic-bezier(.4,0,.2,1); -moz-transition: all .4s cubic-bezier(.4,0,.2,1); transition: all .4s cubic-bezier(.4,0,.2,1);}




.bg-blue {
    background: #446ba5
}

.bg-green {
    background: #6ba07c
}

.bg-orange {
    background: #e96b4e
}

.bg-gray {
    background: #a9b0bc
}

.bg-pink {
    background: #f2abbd
}

.bg-yellow {
    background: #f6b82a
}

.bg-red {
    background: #ff134f
}


.ellipsis-1,.ellipsis-2,.ellipsis-3,.ellipsis-4 {
    word-wrap: break-word;
    word-break: break-all;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical
}


.ellipsis-1 {
    -webkit-line-clamp: 1
}

.ellipsis-2 {
    -webkit-line-clamp: 2
}
.ellipsis-3 {
    -webkit-line-clamp: 3
}

.ellipsis-4 {
    -webkit-line-clamp: 4
}


// 滚动条整体 整体如果不设置，只设置滑块和轨道是没有效果的
.kaoqin-box::-webkit-scrollbar { width: 2px; height: 2px; border-radius: 10px;}
// 滑块
.kaoqin-box::-webkit-scrollbar-thumb { border-radius: 10px; background-color: #adadaba4;}
// 轨道
.kaoqin-box::-webkit-scrollbar-track {border-radius: 10px;background-color: #fff;}









.menu-wrap {
    top: 0;
    left: 0;
    z-index: 1
}

.menu-wrap .toggler {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    height: 50px;
    width: 50px;
    cursor: pointer;
    z-index: 2
}

.menu-wrap .hamburger {
    position: absolute;
    height: 72px;
    width: 60px;
    background: transparent;
    padding: 1rem;
    flex-direction: column;
    z-index: 1;
    box-sizing: border-box;
}

.menu-wrap .hamburger,.menu-wrap .hamburger>div {
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.menu-wrap .hamburger>div {
    position: relative;
    width: 100%;
    height: 2px;
    background: #fafafa;
    flex: none;
    transition: .4s
}

.menu-wrap .hamburger>div:after,.menu-wrap .hamburger>div:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    background: inherit;
    height: 2px;
    width: 100%;
    z-index: 1
}

.menu-wrap .hamburger>div:after {
    top: -10px
}

.menu-wrap .toggler:checked+.hamburger>div {
    transform: rotate(135deg)
}

.menu-wrap .toggler:checked+.hamburger>div:after,.menu-wrap .toggler:checked+.hamburger>div:before {
    top: 0;
    transform: rotate(90deg)
}

.menu-wrap .toggler:checked:hover+.hamburger>div {
    transform: rotate(225deg)
}

.menu-list {
    position: fixed;
    background: rgba(60,139,237,.8);
    opacity: .9;
    height: 100vh;
    width: 0;
    transition: all var(--menu-speed) ease;
    overflow: hidden;
}

.menu-list,.menu-list>div {
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.menu-list>div {
    position: relative;
    height: 100%;
    width: 100%;
    flex: none;
    opacity: 0;
    transition: opacity .4s ease-in
}

.menu-list ul {
    list-style: none
}

.menu-list li {
    padding: 1rem 0;
    width: 200px;
    border-bottom: 1px solid #9dadc5;
    line-height: 1.3;
}

.menu-list li:first-of-type {
    border-top: 1px solid #9dadc5
}

.menu-list>div a {
    text-decoration: none;
    color: #fafafa;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 1s ease-in
}

.menu-list a:hover {
    color: #e6b1b1;
    transition: color .3s ease-in
}

.menu-wrap .toggler:checked~.menu-list{
    opacity: 1;
    width: 30vw;
    transition: all var(--menu-speed) ease;
}

.menu-wrap .toggler:checked~.menu-list>div {
    opacity: 1;
    transition: opacity .4s ease-in;
}

.menu-wrap .toggler:checked~.menu-list>div a {
    opacity: 1;
    transition: opacity 1s ease-in
}



header {
    height: 72px;
    width: 100%;
    min-width: 1280px;
}

header.fixed {
    position: fixed;
    z-index: 100;
    background: #004898;
  
}

header .wrapper {
    display: flex;
    justify-content: space-between
}

header .wrapper .left {
    display: flex;
    align-items: center
}

header .wrapper .left .logo {
    height: 25px;
    width: auto
}

header .wrapper .right {
    display: flex
}

header .wrapper .right .nav {
    height: 72px;
    display: flex;
    align-items: center;
    position: relative
}

header .wrapper .right .nav>li {
    position: relative;
    margin-right: 30px;
    line-height: 32px;
    min-width: 70px
}

header .wrapper .right .nav>li a {
    color: #fff;
    text-decoration: none
}








footer {
    min-height: 240px;
    color: #fff;
    background: url(/ciichkykl/uiFramework/commonResource/image/2026010410270291208.png),url(/ciichkykl/uiFramework/commonResource/image/2026010410270928485.png);
    background-position: 0 0,100% 0;
    background-repeat: no-repeat,no-repeat;
    background-color: #004898;
    background-size: contain;
    margin-top: 50px;
}

footer .footer-inner {
    display: flex;
    justify-content: space-between
}

footer .footer-inner .address {
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 14px;
    text-align: left
}

footer .footer-inner .address p {
    margin-bottom: 15px
}

footer .footer-inner .address span {
    color: #ffffff;
}

footer .footer-inner .qrcode-list {
    padding-top: 40px;
    display: flex
}


footer .footer-inner .qrcode-list .qrcode-item {
    overflow: hidden;
    margin-left: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .footer-inner .qrcode-list .qrcode-item>p {
    margin-bottom: 15px;
    text-align: center;
}

.backtop {
    position: fixed;
    z-index: 999;
    right: 40px;
    bottom: 100px;
    display: none;
}
.backtop div{
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 0 6px rgba(0, 0, 0, .12);
    cursor: pointer;
}
.backtop span{
  width: 0;
  height: 0;
  border-left: 6px solid transparent; /* 左边框透明 */
  border-right: 6px solid transparent; /* 右边框透明 */
  border-bottom: 8px solid #409eff; /* 底部边框为蓝色，形成三角形 */
}
.backtop div:hover {
    background-color: #f2f6fc;
}







/*分享*/

.share-component .icon-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 20px;
    border-radius: 50%;
    line-height: 32px;
    border: 1px solid #666;
    color: #666;
    text-align: center;
    vertical-align: middle;
    transition: background 0.6s ease-out 0s;
    cursor:pointer;
}
.share-component .icon-box img {
    width: 20px;
    display: none;
}
.share-component .icon-box img.icon {
    display: block;
}
.share-component .icon-box:hover {
    background: #7bc549;
    border-color: #7bc549;
}
.share-component .icon-box:hover img.icon1{
    display: block;
}
.share-component .icon-box:hover img.icon{
    display: none;
}
.share-component{position: relative;}
.share-component:hover .wechat-qrcode {
    display:block;
}
.share-component .wechat-qrcode {
    display: none;
    border: 1px solid #eee;
    position: absolute;
    z-index: 9;
    top: -205px;
    left: -84px;
    width: 200px;
    height: 192px;
    color: #666;
    font-size: 12px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 10px #aaa;
    transition: all 200ms;
    -webkit-tansition: all 350ms;
    -moz-transition: all 350ms
}

.share-component .wechat-qrcode.bottom {
    top: 40px;
    left: -84px
}

.share-component .wechat-qrcode.bottom:after {
    display: none
}
.share-component .wechat-qrcode:after {
    content: '';
    position: absolute;
    left: 50%;
    margin-left: -6px;
    bottom: -13px;
    width: 0;
    height: 0;
    border-width: 8px 6px 6px 6px;
    border-style: solid;
    border-color: #fff transparent transparent transparent
}
.share-component .wechat-qrcode h4 {
    font-weight: normal;
    height: 26px;
    line-height: 26px;
    font-size: 12px;
    background-color: #f3f3f3;
    margin: 0;
    padding: 0;
    color: #777
}

.share-component .wechat-qrcode .qrcode {
    width: 105px;
    height: 105px;
    margin: 10px auto;
}
.share-component .wechat-qrcode .qrcode canvas {
    width: 100%;
    height: 100%;
}
.share-component .wechat-qrcode .qrcode table {
    margin: 0 !important
}

.share-component .wechat-qrcode .help p {
    font-weight: normal;
    line-height: 16px;
    padding: 0;
    margin: 0
}