﻿html {
    font-size: 14px;
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    45% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }

    80% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}

.ball-pulse > div:nth-child(1) {
    -webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(2) {
    -webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div:nth-child(3) {
    -webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
    animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}

.ball-pulse > div {
    background-color: #fff8c6;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    display: inline-block;
}


html {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    color: #fff;
    padding: 0px;
    margin: 0px;
}

body {
    background-color: #121212;
    color: #fff;
    display: flex;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding: 0px;
    margin: 0px;
}
body.bodyview{
    background-color: #f8f8f8;
    color: #000;
    display: initial; 
    padding: 0px;
    margin: 0px;
    overflow: auto; 
}

* {
    color: #fff;
    padding: 0px;
    margin: 0px;
}
body.bodyview *{
    color: initial;
}

a {
    color: #ffcd00;
    text-decoration: none;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
    text-align: center;

}

.footer * {
    color: #858585;
    font-size: 12px;
}

.logindiv {
    display: grid;
    place-items: center;
    /* 同时垂直+水平居中 */
}

.loginUser {
    flex: 1;
    background-color: #565656;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.inputdiv {
    display: flex;
    flex-direction: column;
    width: 360px;
    align-items: center;
    margin: 0 auto;
}

h1.title {
    font-size: 20px;
    font-weight: normal;
    margin: 20px 20px 10px 20px;
}

h2.title {
    font-size: 18px;
    font-weight: normal;
    padding: 20px;
}

h3.title {
    display: flex;
    align-items: center;
    height: 60px;
    background: #424242;
    border-bottom: 1px solid #636363;
    font-size: 18px;
    font-weight: normal;
    padding-left: 10px;
}

h3.title i {
    margin-right: 5px;
    color: #fff;
    font-size: 18px;

}

.bodydiv h3.title {
    background: none;
    border: 0px;
    margin-top: 15px;
    padding-left: 5px;
}

.inputdiv input,
.inputdiv select {
    background: #636363;
    padding: 8px;
    flex: 1;
    width: 100%;
    display: flex;
    margin: 10px;
    border: 1px solid #757575;
    border-radius: 10px;
    outline: none;
}

#userform .input {
    display: flex;
    flex: 1;
}

.inputdiv input:focus, .inputdiv select:focus {
    border: 1px solid #f2f2f2
}

.inputdiv select {
    padding: 8px;
    margin: 10px;
    width: calc(100% + 18px);
    /* 比父容器宽度短 18px */
}

.inputdiv .input {
    display: flex;
    flex: 1;
    flex-direction: row;
    width: 100%;
    align-items: center;
}

.inputdiv .input input {
    flex: 1;
    width: 100%;
    margin: 10px 10px 10px -10px;
}

.inputdiv button, .button {
    background: none;
    border: 0px;
    border-radius: 30px;
    background-color: #ffffff;
    color: #000;
    min-width: 200px;
    height: 30px;
    margin: 10px;
    cursor: pointer;
    font-size: 12px;
    padding: 5px 15px;
}

.button:hover {
    background: #ff0000;
    color: #fff;
}


.inputdiv button:active, .button:active {
    background-color: #bababa;
}

.mainbody {
    flex-direction: row;
}

.mainleftmenu {
    width: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #424242;
    border-right: 1px solid #636363;
    align-items: center;
}

.mainxmenu {
    width: 260px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #424242;
    border-right: 1px solid #636363;
    padding-top: 50px;
    position: relative;
}

.mainxmenu_center {
    display: flex;
    flex-direction: column;
    margin: 20px;
    flex: 1;
}

.mainxmenu footer {
    bottom: 50px !important;
}

.mainxmenu_center a {
    display: block;
    padding: 8px 20px 8px 30px;
    background: #fff;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 20px;
    color: #000;
}

.mainxmenu_center a:hover, .mainxmenu_center a.active {
    background: #ff0000;
    color: #fff;
}

.maintext {
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100%;
    position: relative
}

.maincontainer {
    width: 100%;
    height: 100%;
    flex: 1;
    overflow: hidden;
    overflow-y: auto;
    border: 0px;
    background: #12121200;
}

.bodyinfodiv {
    background: #424242;
    border-radius: 10px;
    /* padding: 1px; */
    /* flex:1; */
    overflow: hidden;
    width: 100%;
    height: auto;

}


.mainleftmenu_name {
    margin: 40px 10px 20px 10px;
    font-size: 80px;
    display: block;
    /*        background: #fff;*/
    width: 80px;
    height: 80px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mainleftmenu_name i {
    font-size: 56px;
    color: #bdbdbd;
}

.mainleftmenu_user {
    margin: 20px 10px 20px 10px;
    height: 60px;
    width: 60px;
    border-radius: 60px;
    background: #000;
    text-align: center;
    line-height: 60px;
}

.mainleftmenu_user i {
    font-size: 36px
}

.mainleftmenu-center {
    display: flex;
    flex: 1;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.mainleftmenu-center a {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin: 15px 0px;
    font-size: 12px;
    color: #c6c6c6;
}

.mainleftmenu-center a i {
    height: 50px;
    width: 50px;
    border-radius: 50px;
    background: #605d5d;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
}

.mainleftmenu-center a:hover i, .mainleftmenu-center a.active i, a.mainleftmenu_user:hover, a.mainleftmenu_user.active {
    background: #ff0000;
}

table {
    width: 200px;
    border-top: 1px solid #999;
    border-left: 1px solid #999;
    border-spacing: 0; /*去掉单元格间隙*/
    width: 100%;
    border-radius: 10px 10px 0px 0px;
}

table th, table td {
    border-right: 1px solid #999;
    border-bottom: 1px solid #999;
    padding: 8px;
    text-align: left;
}

table th:first-child {
    border-radius: 10px 0px 0px 0px;
}

table th:last-child {
    border-radius: 0px 10px 0px 0px;
}

table th {
    background: #424242;
    color: #fff;
}

table td {
    background: #7a7a7a;
    color: #e7e7e7;
}

table td a {
    color: #ffb301;
}

.otheradd {
    padding: 20px;
    text-align: right;
    flex: 1;
}

.bodydiv {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

/* 标准化的滚动条样式（部分浏览器支持） */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #424242;

}


/* Firefox */
html {
    scrollbar-width: thin; /* auto | thin | none */
    scrollbar-color: #888 #424242; /* 滑块颜色 轨道颜色 */
}


/* 适用于大多数现代浏览器 */
/* 整个滚动条 */
::-webkit-scrollbar {
    width: 12px; /* 垂直滚动条宽度 */
    height: 12px; /* 水平滚动条高度 */
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

/* 滚动条滑块悬停状态 */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.editor-label {
    padding: 10px 15px;
    color: #fff;
}

.editor-field {
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.editor-field input, .editor-field select, #pagination select, .editor-field textarea {
    background: #636363;
    display: flex;
    flex: 1;
    flex-direction: row;
    padding: 8px 10px;
    border-radius: 10px;
    align-items: center;
    border: 1px solid #757575;
    border-radius: 10px;
    outline: none;
}

.editor-field textarea {
    min-height: 150px;
}

.editor-field input:active, .editor-field textarea:active {
}

.editor-field input:focus, .editor-field select:focus, .editor-field select:focus, .editor-field textarea:focus {
    border: 1px solid #f2f2f2
}

/*.editor-field select {
    background: #636363;
    padding: 8px;
    margin: 10px;
    width: calc(100% + 18px);*/
/* 比父容器宽度短 18px */
/*}*/
.submit {
    margin: 10px 10px 30px 10px;
    text-align: center;
}

.submit a {
    background: #0454d0;
    color: #fff;
    padding: 12px 30px;
}

.editor-field:has(*[data-val-required]) input, .editor-field:has(*[data-val-required]) select, .editor-field:has(*[data-val-required]) textarea {
    margin-left: 10px;
}

.editor-field:has(*[data-val-required])::before {
    content: "*";
    color: #ff0000;
    position: absolute;
    top: 20px;
}

.field-validation-error {
    font-size: 12px;
    color: #ff0000;
    padding-left: 10px;
}

.field-validation-error * {
    color: #ff0000;
}

.input-validation-error {
    background: #fffee6 !important;
    color: #000 !important;
}

#pagination span, #pagination a {
    padding: 0px 5px;
    background: #696666;
    border-radius: 3px;
    font-size: 12px;
    margin: 0px 3px;
    color: #fff;
    cursor: pointer;
    height: 29px;
    line-height: 29px;
    min-width: 20px;
    text-align: center;
}

#pagination span.current {
    background: #fff;
    color: #000;
}

#pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

#pagination::before {
    content: "";
    flex: 1
}

#pagination select {
    padding: 0px 10px;
    border-radius: 5px;
    height: 29px;
    line-height: 29px;
    margin-right: 5px;
}

.display-label {
    margin: 5px 10px;
    font-size: 12px;
    color: #919191;
}

.display-field {
    margin: 5px;
    padding: 5px 10px;
    font-size: 12px;
    background: #3d3d3d;
    border-radius: 10px;
}

h1.text-danger {
    text-align: center;
    font-size: 18px;
    padding: 10px;
    font-weight: normal;
}

h2.text-danger {
    text-align: center;
    font-size: 16px;
    padding: 10px;
    font-weight: normal;
}

.bodyerror .p-error {
    text-align: center;
    font-size: 12px;

}

.topsearch {
    padding: 7px 15px;
    border-radius: 20px;
    background: #696767;
    border: 0px;
    width: 200px;
    outline: none;
    position: relative;
    margin-right: 10px;
    display: none;
}

#selecttitle {
    flex: 1
}

.topsearch::placeholder {
    color: #d5d5d5;
    font-size: 12px;
}

.form-group, .form-check {
    /*    flex: 1;*/
    padding: 0px 10px;
    width: 50%;
    margin: 0px;
    color: #FFF;
}

.form-group {
    width: 100%;
    padding: 0px;
}

input[type="checkbox"] {
    zoom: 100%;
    width: 16px;
    height: 16px;
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    float: left;
    margin: 5px 5px 5px 0px;
}

input[type="checkbox"] {
    zoom: 100%;
    width: 16px;
    height: 16px;
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    float: left;
    margin: 5px 5px 5px 0px;
}

.form-group label {
    color: #FFF;
    margin-bottom: 5px;
    overflow: hidden;
    display: block;
}

.fileupload {
    display: flex;
    position: relative
}

.filesend {
    flex: 1;
    position: relative
}

.fileupload input[type='file'] {
    width: 100%;
    position: absolute;
    z-index: 2;
    opacity: 0;
    right: 0px;
    top: 0px;
    left: 0px;
    background: none;
    border: 0px
}

.filelist img {
    height: 50px;
    max-width: 100px
}

.filebutton {
    display: block;
    position: absolute;
    z-index: 1;
    background: #3B3B3B;
    padding: 0px 15px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    line-height: 28px;
    border-radius: 0px 10px 10px 0px;
    color: #e2e2e2;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all;
    font-size: 12px;
    height: 28px
}

.filelist {
    display: flex
}

.resultimglist {
    margin-right: 15px;
    position: relative;
    border-radius: 5px;
    overflow: hidden
}

.resultimglist b {
    display: block;
    position: absolute;
    z-index: 1;
    height: 20px;
    width: 20px;
    border-radius: 20px;
    line-height: 20px;
    text-align: center;
    background: #ff0000;
    color: #ffffff;
    right: 0px;
    top: 0px;
    cursor: default
}

.multiplefilesend {
    height: 60px;
    width: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: -5px;
}

.fileupload .form-control {
    height: 1px;
    width: 1px;
    position: absolute;
    left: -20px;
    top: -20px;
    padding: 0px;
    margin: 0px;
    border-radius: 0px;
}

.companyname {
    margin-left: 20px;
}

#backbutton {
    font-size: 16px;
    background: #000;
    border-radius: 15px;
    width: 26px;
    height: 26px;
    margin-right: 10px;
    line-height: 26px;
    text-align: center;
    cursor: pointer;
}

#backbutton:hover {
    background: #fff;
    color: #000;
}

h1.show_title {
    font-size: 18px;
    color: #ffffff;
    padding: 5px 0px;
    border-bottom: 1px solid #686868;
    margin: 0px 10px 10px 10px
}

h1.show_title a {
    display: block;
    float: right;
    color: #b1b1b1;
    font-size: 14px;
    padding: 5px 0px
}

h1.show_title a::after {
    font-family: "jxfont" !important;
    content: '\e662'
}

h1.show_title a:hover {
    color: #fb8d05
}

h1.jxfont::before {
    color: #1890ff;
    margin-right: 5px;
    font-size: 22px
}

h1.jxfont-tongjichaxun::before {
    font-size: 18px
}

.show_ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap
}

.show_li {
    width: 30%;
    padding: 5px 10px;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    word-break: break-all
}

.show_li span:first-child {
    color: #adadad
}

.show_li span:first-child::after {
    content: '：'
}
.deviceTypeOther{display:flex;}
.deviceTypeOther label{margin-right:10px;}
.videocopy{display:flex;align-items:center;padding:50px 30px;flex-direction:column;margin:0 auto;}
.videobutton {
    background: #265CE9;
    color: #FFf;
    border-radius: 30px;
    padding: 10px;
    text-align: center;
    margin-top: 30px;
    width:80%;
    cursor:pointer;
}
.videobody{height:100% !important;width:100% !important;overflow:hidden;display:flex !important;flex-direction:column;}
.videoplaydiv{width:100%;height:auto;max-height:100%;}

html,body{margin: 0;padding: 0;}
.privacytext{overflow: auto;
    padding: 10px 0;}
.privacytext h2{text-align: center;
    padding: 10px 0;}
.privacytext .divtext{text-align: justify;line-height: 30px;width: 80%;margin: 0 auto;}
body.bodyview pre{background-color: #000;color: #fff;border-radius: 10px;padding: 10px;overflow: auto;}
.privacytext *:empty{display: none;}
.privacytext h1{font-size: 24px;
    margin-top: 20px;
    margin-bottom: 10px;border-bottom: 1px solid #d1d1d1;padding-bottom: 10px;}
.banner{height: 460px;background-color: #0354FB;position: relative; }
/*.banner{background-image: url('/images/home-wave-bg.svg');background-position: bottom;*/
/*background-repeat: no-repeat;*/
/*    background-color: #004DAD;*/
/*    background-size:80px 60px;*/
/*    */
/*}*/
.banner .banner_bottom{
    
    position: absolute;
    z-index: 1;
    left: 0; 
    width: 100%;
    height: 100px;
    bottom: 0px;
}
.banner .banner_bottom img{
    
    width: 100%;
    height: 100%;  
  
}

.bodyview .bannerwidth{
    width: 1320px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
}
.bodyview  .banner_menu{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    height: 100px;
}
.banner_menu_li{
    display: flex; 
    align-items: center;
    flex-direction: row;
    flex: 1;
    justify-content: end;
}
.banner_menu_li a{  padding: 2px 36px; margin: 0px 5px; font-size: 22px;font-weight: 200;color: #fff;}
.banner_menu_li a:hover,.banner_menu_li a.on{
    color: #000000;
    background: #D9EDF3;
    padding: 2px 36px;
    border-radius: 20px;
}
.banner_menu img{ 
    height: 80px;
}
#userloginimg {
    height: 400px;
    width: 400px;
    position: absolute;
    right: -60px;
    bottom: -120px;
}
.bannertext{
    height: 300px;
    user-select: none;
    position: relative; 
    z-index: 2;
}
.bannertext_info{
    width: 50%;
    color: #fff;
    margin-top: 30px;
}
.bannertext_info h1{
    font-size: 42px;
    font-weight: 400;
    color: #ffffff;
}
.bannertext_info p{
    font-size: 22px;
    color: #D9EDF3;
    font-weight: 100;
    margin-top: 10px;
    line-height: 32px;
}
.banner-btn {
    margin-top: 25px;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
}

 .banner-btn .default-btn-one span {
    background-color: #ff561d;
}

.default-btn-one {
    border: none;
    position: relative;
    display: inline-block;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    color: #7b68ee;
    background-color: #ffffff;
    -webkit-transition: 0.4s;
    transition: 0.4s; 
    font-weight: 600;
    font-size: 16px;
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 14px;
    padding-bottom: 14px;
    margin-right: 20px;
    box-shadow: 0 7px 25px rgb(123, 104, 238, 0.25);
    border-radius: 30px;
}

.default-btn-one span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: #3e57d0;
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 30px;
}

.default-btn-one:hover, .default-btn-one:focus {
    color: #ffffff;
}

.default-btn-one:hover span, .default-btn-one:focus span {
    width: 225%;
    height: 562.5px;
}

.video-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
}
.video-box .popup-video {
    display: inline-block;
    position: relative;
    z-index: 9;
    font-size: 22px;
    color: #7b68ee;
    background: #ffffff;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.video-box:hover .popup-video{
    background: #fff;
    color: #ff561d;
}
.video-box h5 {
    color: #fff;
    font-size: 16px;
    margin: 0px;
    font-weight: 600;
    display: inline-block;
    padding-left: 15px;
    font-family: 'Cabin', sans-serif;
}

.video-box .popup-video i {
    margin-left: 5px;
}
.video-box .iq-waves {
    position: absolute;
    left: -23px;
    top: -23px;
    z-index: 2;
}
.video-box .iq-waves .waves {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    border-radius: 50%;
    background-clip: padding-box;
    -webkit-animation: waves 3s ease-in-out infinite;
    animation: waves 3s ease-in-out infinite;
}
.video-box .iq-waves .wave-1 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}
.video-box .iq-waves .wave-2 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.video-box .iq-waves .wave-3 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}
.popup-video:hover .icon-xiazai-yun-F:before{
    color: #ff561d;
}
.icon-xiazai-yun-F:before{
    font-size: 32px;
    color: #7b68ee;
    margin-right: 3px;
}
.video-box h5{
   
}
.video-box h5 span::before{
    font-size: 28px;
    color: #fff;
   padding: 3px 3px 0px 0px;
}
@-webkit-keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
@keyframes waves {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
    50% {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
    }
    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    }
}
.bodyview .mainbodyview{ 
    background: #fff;
    padding: 120px 0px 30px 0px;
}
h2.bannerwidth_title{
    font-size: 28px;
    font-weight: 400;
    color: #ff561d;
}
h2.bannerwidth_title span{
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #292929;
}
h3.bannerwidth_title3{
    font-size: 18px;
    font-weight: 200;
    color: #2b2b2b;
}
#bannerwidth_1fx img{
    height: 220px; 
    border-radius: 20px;
}
.bannerwidth_1_content{
    display: flex;
    flex-direction: row;
}
.bannerwidth_1_left{
    flex: 1;
    margin-right: 30px;

}
.zstel{font-size: 30px;color: #fff;display: flex;align-items: center;justify-items: center;}
.zstel::before{
    font-size: 40px;
    color: #00ffe8 !important;
    mmargin-right: 10px;
}
.zstel div{
    display: flex;
    flex-direction: column;
}
.zstel div span:first-child{
    font-size: 14px;
    color: #dddbdb;
    margin-bottom: -8px;
}
.zstel div span:last-child{
    font-size: 20px;
    color: #fff;
}

.about-section .skills {
    margin-top: 30px;
}
.about-section .skills .skill-item {
    margin-bottom: 15px;
}

.about-section .skills .skill-item:last-child {
    margin-bottom: 0px;
}

.about-section .skills .skill-item h6 {
    position: relative;
    z-index: 4;
    font-size: 16px;
    letter-spacing: 0px;
    text-transform: capitalize;
    font-weight: 600;
    margin-bottom: 10px;
}
.about-section .skills .skill-item h6 em {
    float: right;
    font-size: 16px;
    font-style: normal;
}
.about-section .skills .skill-item .skill-progress {
    position: relative;
    height: 6px;
    border-radius: 5px;
    background: #f1f1fa;
}
.about-section .skills .skill-item .skill-progress .progres {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10%;
    background-color: #7b68ee;
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
   border-radius: 6px;
}
.bannerwidth_2_content{
    margin-top: 40px;
}

.services-section .section-title {
    margin-bottom: 35px;
}

.single-services-item {
    position: relative;
    z-index: 1;
    display: block;
    padding: 35px 30px;
    text-align: left;
    border-radius: 15px;
    background-color: #ffffff;
    margin-top: 30px;
    -webkit-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -moz-box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    box-shadow: 5px 7px 15px 2px rgba(82, 90, 101, 0.12);
    -webkit-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    will-change: transform;
}

.services-icon {
    display: inline-block;
    margin-bottom: 15px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    will-change: transform;
}

.services-icon i {
    color: #ff561d;
    font-size: 50px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.single-services-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
}

.single-services-item h3 a {
    display: inline-block;
}

.single-services-item p {
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    will-change: transform;
}

.single-services-item .services-btn-link {
    margin-top: 16px;
}

.single-services-item .services-btn-link .services-link {
    display: inline-block;
    font-size: 16px;
    color: #ff561d;
    letter-spacing: 0.5px;
    font-weight: 700;
    -webkit-transition: all 400ms ease-out;
    transition: all 400ms ease-out;
    text-decoration: underline;
    font-family: 'Dosis', sans-serif;
}

.single-services-item:hover {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
}
.single-services-item:hover .services-icon {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.counter-section {
    text-align: center;
    position: relative;
    color: #fff;
    text-align: center;
    background: url(/images/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.counter-section::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: .6;
    background: #03030c;
}
.counter-section .section-title h5 {
    color: #ffffff;
}
.counter-section .section-title h2 {
    color: #fff;
}
.counter-contents h2 {
    color: #fff;
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 5px;
    word-spacing: -10px;
}
.counter-contents h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}
.bannertongji{padding: 70px 0px;}
.bannertongji span{color: #fff;}
.flaticon-project-management img{height: 60px;width: 60px;border-radius: 30px;}
.bannerwidth_3_content{margin-top: 50px;padding: 30px 0px;background: #fff;overflow: hidden;max-height: 300px;}
.bannerwidth_3_content img.left{max-width: 100%;border-radius: 30px;}
.bannerwidth_3_content .container{display: flex;flex-direction: row;}
.downapp{display: flex;flex-direction: row;align-items: center;justify-content: center;}
.downappli{padding: 10px;text-align: center;display: flex;flex-direction: column;flex: 1;align-items: center;}
.downappli img{height: 120px;display: block;margin-bottom: 10px;width: 120px;border-radius: 20px;}
.downappli a{background: #0a58ca;color: #fff;padding: 6px 20px;border-radius: 50px;}
.downappli a:hover{
    background: #f24c03;
}
.bodyview1{
    position: relative;
    z-index: 8 !important;
    background: #f8f8f8;
}
p{margin: 5px}
.bodyview2{
    padding: 30px 0;
    background: #000;
    width: 100%;
    height: 360px;
    margin-top: 50px;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
}
.icp{text-align: center;margin: 30px 0;}
.icp a{
    margin: 0px 5px;
}
.bodyview2 *{
    color: #e8e8e8 !important;
}
.bodyview2 a{
    color: #b8b7b7 !important;
}
.bodyview2 a:hover,.copyser:hover{
    color: #fcce03 !important;
}
.copybottom_3{
    margin-top: 20px;
}
.copyser{
     display: block;
    margin-bottom: 5px; 
}

.copyser img{
    height: 20px;
    width: 20px;
    border-radius: 20px;
    margin-right: 5px;
}
.copyxylist {
    text-align: right;
}
.copyaddress{
    line-height: 22px;
   
}
.copytitle{
    display: block;
    font-size: 20px;
    font-weight: 400;
    color: #fffefe;
    margin-bottom: 20px;
}
.copyxylist a{margin-left: 20px;}
.view2height{
    height: 360px;
    position: relative;
    z-index: 1;
}
.copyapplist{display: flex;flex-wrap:wrap;justify-items: center; text-align: center}
.copyapplist a{
    margin-right: 20px;
}
.copyapplist a::before{ 
    display: block;
    font-size: 40px;
    color: #fff !important;
    height: 50px;
    width: 50px;
}
.copyapplist a.icon-honor-logo-black::before{
    font-size: 20px;
    margin-bottom: -20px;
    
}
.copyapplist a.icon-oppo::before{
    font-size: 40px;
    margin-bottom: -10px;

}
.copyapplist a.icon-oppo{
    margin-top: -10px;
}
.copyapplistotehr{
    margin-top: 20px;
}
.copyapplistotehr a::before{
   margin: 0 auto;
    width: auto;
}
.copyapplistotehr a{
    text-align: center;
    margin-right: 30px;
}
.bannerwidth_4_content {
    background: #0354FB;
    margin-top: 50px;
    padding: 30px 0px;
}
.bannerwidth_5_content{
    margin-top: 50px;
    padding: 30px 0px;
}
.bannercus{
    font-size: 16px;
    margin-top: 20px;
}
body.bodyview .bannerabout  ,body.bodyview .bannerabout *{color: #eaeaea;}
.bannerabout{
    font-size: 18px;
    margin-top: 30px;
    line-height: 32px;
}
.floatfixed {
    margin: 0 auto;
    width: 100%;
    z-index: 9999;
   
    left: 0px;
    right: 0px; 
   animation: 2.3s;
}

.banner:has(.floatfixed){height:300px; }
.banner_menu::after{
    content: '';
    background: #15449b;
    z-index: 10;
    position: absolute;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100px; 
}
.floatfixed::after{
    content: '';
    background: rgb(255, 255, 255,0.6);
    backdrop-filter: saturate(5) blur(20px);
    z-index: 9991;
    position: fixed;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100px;
    box-shadow: #dfdfdf -1px 0px 5px 1px;
}
.floatfixedheight{display: none;}
body:has(.floatfixed) .floatfixedheight {
    display: block;
    height: 100px;
}
.floatfixed .banner_menu_li a:hover,.floatfixed .banner_menu_li a.on{
    color: #FFF !important;
    background: #ff0000;
    padding: 2px 36px;
    border-radius: 20px;
}
.floatfixed img,.floatfixed .banner_menu_li,.banner_menu img,.banner_menu .banner_menu_li{ 
    position: relative;
    z-index: 9992;
    text-align: center;
}
.floatfixed img{
    filter: brightness(0) saturate(100%) invert(28%) sepia(97%) saturate(7432%) hue-rotate(354deg) brightness(99%) contrast(103%);
}
.floatfixed .zstel::before{
    color: #ff0000 !important;
}
.floatfixed *{
    color: #000 !important;
}
#about_img,#address_img{height: 300px;width: 300px;}
@media (min-width: 992px) {
    .col-lg-2-5 {
        flex: 0 0 auto;
        width: 20%;
    }
}
@media (min-width: 768px) {
    html {
        font-size: 14px;
    }
}
@media (max-width: 1260px) {
    #userloginimg {
        height: 300px;
        width: 300px;
        position: absolute;
        right: 0px;
        bottom: -30px;
    }
    .banner_menu{
        /*flex-direction: column !important;*/
    }
    .banner_menu_li{
        /*margin-bottom: 30px;*/
    }
    .banner_menu img {
        height: 60px; 
    }
    .banner_menu_li a {
        padding: 2px 10px;
        margin: 0px 5px;
        font-size: 18px;
        font-weight: 200;
        color: #fff;
    }
}
@media (max-width: 1024px) {
    #userloginimg ,.downimg,.about_imgright,.address_imgleft,#bannerwidth_1fx{
        display: none;
    }
    .bannertext_info{
        width: auto;
    }
    .bannertext_info h1 {
        font-size: 32px; 
    }
    .downimgother,.about_imgright,.address_imgright{
        width: 100% !important;
    }
    .bannerwidth_3_content .container{
        display: initial;
    }
    
}
@media (max-width: 992px) {
    .view2height{display: none;}
    .bodyview2{position: relative;height: auto;}
}
@media (max-width: 768px) {
    .privacytext .divtext{
        width: 90%;
    }
    .bodyview .bannerwidth{
        width: 90%;
    }
    .banner_menu{
        flex-direction: column !important;
    }
    .banner_menu_li{
        margin-bottom: 30px;
    }
    .zstel,.banner_bottom{display: none;}
    .floatfixed::after,.banner_menu::after {
       
        height: 120px; 
    }
    .downappli img{
        max-width: 90%; 
        height: auto;
    }
    .bannertext_info p{font-size: 16px;}
    .bannertext_info h1{padding-top: 30px;}
    .bodyview .mainbodyview{
        padding-top: 40px;
    }
    .banner:has(.floatfixed) {
        height: 350px;
    }
    .bannerabout{
        font-size: 16px;
        margin-top: 30px;  
    }
    h3.bannerwidth_title3 {
        font-size: 16px; 
    }
    .bannerwidth_5_content {
        margin-top: 20px; 
    }
    .bannerwidth_4_content h2.bannerwidth_title ,.bannerwidth_5_content h2.bannerwidth_title {
        text-align: left !important;
    } 
}


.navbar {

    min-height: 6px;
}

.navbar-default {
    background-color: #15449b;
}
 

.apicStickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
    width: 100%; 
}
.showImg img{
    max-height: 200px;
}
#selDate *{color: #000 !important;}
#selDate input {
    background: #222222;
    border: 1px solid #726e6e;
    padding: 8px 10px;
    border-radius: 30px;
    color: #fff !important;
}
.layui-laydate-footer span {
    display: inline-block;
    vertical-align: top;
    height: 26px;
    line-height: 24px;
    padding: 0 10px;
    border: 0px solid #C9C9C9;
    border-radius: 2px;
    background-color: #424242 !important;;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .3s;
}

.layui-laydate, .layui-laydate-hint {
    border: 1px solid #d2d2d2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
    background-color: #424242 !important;;
    color: #d0d0d0 !important;;
}
.laydate-theme-grid .laydate-month-list>li, .laydate-theme-grid .laydate-year-list>li, .laydate-theme-grid .layui-laydate-content td, .laydate-theme-grid .layui-laydate-content thead, .laydate-theme-molv .layui-laydate-footer {
    border: 1px solid #636363 !important;;
}
.laydate-theme-molv .layui-laydate-content {
    border: 1px solid #636363 !important;;
    border-top: none;
    border-bottom: none;
}
.layui-laydate-content td {
    color: #FFF !important;;
}
.layui-laydate-content th {
    font-weight: 400;
    color: #b8aeae !important;;
}
.layui-laydate-preview{
    color: rgb(255 14 14) !important;
}
.layui-laydate-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 10px;
    background-color: #424242  !important;
}
#selDate{position: absolute;background: #424242;
    z-index: 9999;
    left: 120px;
    top: -10px;}