/* 网站全部灰色 */
/*html {*/
/*    -webkit-filter: grayscale(100%);*/
/*    -moz-filter: grayscale(100%);*/
/*    -ms-filter: grayscale(100%);*/
/*    -o-filter: grayscale(100%);*/
/*    filter: grayscale(100%);*/
/*    filter: progid:DXImageTransform.Microsoft.BasicImage(grayscale=1)*/
/*}*/


body {
    padding: 0;
    margin: 0;
    min-width: 1200px;
    min-height: 900px;
    color: #151515;
}

a {
    text-decoration: none; /* 去掉下划线 */
    color: inherit; /* 继承父元素的文本颜色 */
    cursor: pointer; /* 可选：改变鼠标指针为手形状 */
    border-bottom: 1px solid transparent;
}

a:hover {
    text-decoration: none; /* 去掉下划线 */
}

ul {
    list-style-type: none; /* 移除默认点 */
    padding-left: 0; /* 移除内边距 */
}

.base-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.base-header {
    height: 100px;
    width: 1200px;
    padding: 0;
    color: #151515;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.login-view {
    position: relative;
    display: flex;
    align-items: center;
}

.login-view span {
    display: inline-block;
    cursor: pointer;
    font-size: 16px;
}

.login-btn {
    height: 35px;
    width: 110px;
    line-height: 35px;
    text-align: center;
    border-radius: 8px;
    color: #FFFFFF;
    background-color: #4B9FFF;
}

.register-btn {
    color: #424242;
    height: 35px;
    width: 67px;
    line-height: 35px;
    text-align: center;
    border-radius: 8px;
    background-color: #E8ECF5;
    margin-left: 12px;
}

.base-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 51px;
    width: 100%;
    background: #0257B2;
    position: relative;
}

.base-navigation-view {
    width: 1150px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 0;
}

.base-navigation-view img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.base-navigation .nav-btn {
    height: 100%;
    width: 136px;
    margin-right: 38px;
    color: #FFFFFF;
    font-size: 20px;
    border-radius: 2px;
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-navigation .nav-btn:last-child {
    margin-right: 0;
}

.base-navigation .active {
    background: #4B9FFF;
}

.base-navigation .hover-active {
    background: #4B9FFF; /* 或者设置为其他需要的背景 */
}

.base-navigation .nav-btn:hover {
    background: #32ADE6;
}

.footer {
    position: relative;
    width: 100%;
    margin-top: 66px;
    min-height: 385px;
    align-items: center;
    display: flex;
    background: url("../img/footer-bg.png?v=219222") center;
    background-size: cover;
    flex-direction: column;
    color: #758093;
    font-size: 14px;
}

.footer a {
    border-bottom: none;
}

.footer-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #3A4557;
}


.footer-top {
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 每行 5 列，列宽相等 */
    gap: 5px; /* 每列之间的间距 */
    margin-top: 45px;
}

.footer-top li {
    display: flex;
    align-items: center;
    line-height: 30px;
}

.footer-top li > img {
    width: 8px;
    height: 13px;
}

.footer-top > div {
    display: flex;
    flex-direction: column;
    line-height: 35px;
}


.footer-top > div:first-child > div {
    width: 100%;
}

.footer a:hover {
    color: #539BE8;
}

.footer .gz-img {
    position: relative;
}

.footer .gz-text {
    align-items: center;
    justify-content: center;
    display: flex;
    width: 96px;
    height: 31px;
    background-color: rgba(117, 128, 147, 0.1);
    border-color: rgba(3, 75, 199, 0.12);
    color: #758093;
    font-size: 12px;
    border-radius: 20px;
    margin-top: 8px;

}
.gz-icon {
    width: 14px;
    height: 14px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

.footer .gz-img .gz-img-2 {
    width: 110px;
    height: 110px;
    position: absolute;
    top: -6px;
    left: 100px;
    z-index: 9;
    display: none;
}

.footer .gz-img:hover .gz-img-2 {
    display: inline-block;
}

.footer-top > div:first-child {
    width: 330px;
    border-right: 2px rgba(117, 128, 147, .2) solid;
    display: flex;
    align-items: center;
    padding-right: 24px;
    margin-right: 24px;
}

.footer-box {
    cursor: pointer;
    display: flex;
    border: 1px white solid;
    border-radius: 50px;
    align-items: center;
    justify-content: center;
    width: 220px;
    line-height: 38px;
}

.footer-bottom {
    width: 1000px;
    margin: 18px 324px 40px 324px;
    border-top: 2px rgba(117, 128, 147, .2) solid;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-bottom > div {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.footer-bottom > div > div {
    display: flex;
    align-items: center;

}

.footer-top .item {
    position: relative;
    padding-left: 10px;
}

.footer-top .item:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #758093;
    width: 5px;
    height: 5px;
    border-radius: 50%;

}


/* 使用伪元素创建小三角 */
.footer .find-order {
    margin-top: 12px;
    border: 1.2px #409eff7d solid;
    display: flex;
    align-items: center;
    padding: 0px 16px;
    border-radius: 16px;
    color: #409EFF;
    background-color: #c1ddfa82;
    font-size: 12px;
}

.nav-btn-sub {
    line-height: 25px;
    position: absolute;
    background-color: white;
    padding: 10px;
    color: #151515;
    width: max-content;
    top: 55px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    font-size: 15px;
    z-index: 2;
}

.nav-btn-sub .active {
    color: #32ADE6;
    background-color: white;
}

.nav-btn-sub-item:hover {
    color: #32ADE6;
    background-color: white;
}


.nav-btn-sub-arrow {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 26px solid #32ADE6;
    position: absolute;
    top: 34px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
}

.bg-container-1 {
    height: 258px;
    width: 100%;
    background: url(../img/index-bk.png?v=219222) no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.user-info {
    position: relative;
    height: 40px;
    border-radius: 60px;
    background-color: #F1F5FF;
    padding: 0px 12px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user-info:hover {
    background-color: #E3E8F4;
}

.user-info .user-name {
    font-size: 18px;
    color: #4B9FFF;
}

.user-info .user-icon {
    width: 24px;
    height: 24px;
    margin-right: 9px;
}

.user-info .arrow-icon {
    margin-left: 9px;
    width: 16px;
    height: 16px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.user-info-menu {
    position: absolute;
    left: 0px;
    top: 50px;
    right: 0;
    background: #fff;
    z-index: 8;
    width: 162px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    flex-direction: column;
}

.user-info-menu > .menu-line {
    height: 1px;
    margin: 0px 16px;
    background-color: #EBEBEB;
}

.user-info-menu > .menu-item {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.user-info-menu > .menu-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.user-info-menu > .menu-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.user-info-menu > .menu-item:hover {
    background-color: #F1F5FF;
}

.user-info-menu a {
    line-height: 30px;
    display: block;
    border: none;
    margin-left: 8px;
}

.user-info-menu img {
    width: 20px;
    height: 20px;
}

.b-header-boyd > .header-desc {
    font-size: 15px;
    left: 0px;
    position: absolute;
    top: 15px;
    color: #B3D7FD;
}

.b-header-boyd > .header-desc > span {
    color: #FFFFFF;
}

.b-header-boyd {
    width: 1100px;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.b-header-boyd > .header-title {
    font-size: 36px;
    color: #FFFFFF;
}

.b-header-boyd > .header-title-desc {
    margin-top: 8px;
    font-weight: bold;
    font-size: 24px;
    color: #A8F2FF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 580px;
}

.b-header-boyd > .header-title-desc span {
    height: 2px;
    width: 150px;
    background: #FFFFFF;
}


.base-navigation .subnav {
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    height: 66px;
    line-height: 66px;
    background-color: #0F6ED2;
    z-index: 999;
    transition: all .3s;
}

.base-navigation .subnav .dot {
    position: absolute;
    left: 0;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid rgba(2, 94, 192, 0.5);
    transition: all .3s;
}

.base-navigation .subnav .box {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.base-navigation .subnav .item {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}

.base-navigation .subnav a {
    display: inline-block;
    height: 100%;
    color: #fff;
    padding: 0 10px;
    transition: all .2s;
    font-size: 15px;
    margin-right: 20px;
}

.base-navigation .subnav a:last-child {
    margin-right: 0;
}

.base-navigation .subnav a:hover {
    background: rgba(255, 255, 255, 0.13);
}

.base-navigation .subnav.hide {
    height: 0;
    overflow: hidden;
}


.aboutus-png {
    width: 100%;
}

.default-shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.layui-form-select {
    font-size: 14px;
}

.layui-form-select dl dd.layui-this {
    color: #32ADE6;
    background: rgba(50, 173, 230, .05);
}

.layui-input:focus, .layui-textarea:focus {
    border-color: #32ADE6 !important;
    box-shadow: 0 0 0 3px rgba(22, 183, 119, .08);
}

.layui-select-title input {
    border-radius: 5px;
}

.layui-form-select .layui-anim-upbit {
    border-radius: 5px;
}

.layui-form-label .required {
    color: #f56c6c;  /* 红色 */
    font-size: 18px;  /* 调整大小 */
    margin-left: 4px; /* 留出间距 */
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}

::-webkit-scrollbar-track {
    background: rgb(239, 239, 239);
    border-radius: 2px;
}

::-webkit-scrollbar-thumb {
    background: #bfbfbf;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #bfbfbf;
}

::-webkit-scrollbar-corner {
    background: #bfbfbf;
}
.loading-mask {
    position: absolute;
    z-index: 2000;
    background-color: hsla(0, 0%, 100%, .9);
    margin: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: opacity .3s;
    pointer-events: none;
}
.loading-spinner {
    top: 50%;
    margin-top: -21px;
    width: 100%;
    text-align: center;
    position: absolute;
}
.loading-spinner .circular {
    height: 42px;
    width: 42px;
    animation: loading-rotate 2s linear infinite;
}
.loading-spinner .path {
    animation: loading-dash 1.5s ease-in-out infinite;
    stroke-dasharray: 90, 150;
    stroke-dashoffset: 0;
    stroke-width: 2;
    stroke: #409eff;
    stroke-linecap: round;
}


@keyframes loading-rotate {
    to {
        transform: rotate(1turn);
    }
}

@keyframes loading-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -40px
    }

    to {
        stroke-dasharray: 90,150;
        stroke-dashoffset: -120px
    }
}
.el-badge__content__is-dot {
    height: 8px;
    width: 8px;
    padding: 0;
    border-radius: 50%;
    background-color: #F56C6C;
    position: absolute;
    right: 16px;
    border: none;
    top: 10px;
}
.el-badge__content_m {
    position: absolute;
    background-color: #F56C6C;
    border-radius: 10px;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px !important;
    height: 18px;
    line-height: 18px;
    padding: 0 6px;
    text-align: center;
    white-space: nowrap;
    right: 8px;
    top: 2px;
    border: 1px solid #FFFFFF;
}
body {
    font: 14px Helvetica Neue, Helvetica, PingFang SC, Tahoma, Arial, sans-serif;
}
.el-loading-mask {
    border-radius: 10px;
}
