/* 引入字体样式 */
@import url('./fonts.css');

/* 其他公共样式 */
* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    color: var(--text-color);
}

:root {
    /* 色调 */
    --myBlue: #0E6AF2;
    --blue-deep: #0E6AF2;
    --blue: #0E6AF2;
    --myBlueBg: #0E6AF21A;
    --myBorder: #bbbbbb;

    /* 文本 */
    --text-color: #2E2E2E;
    --text-color1: #676767;
    --text-color2: #888888;
    --text-color3: #666666;

    /* 边框和分隔线 */
    --line: #d5e1e7d1;
    --line2: #BABABA;
    --line3: #C4C6CF;

    /* 背景 */
    --white: white;
    --bg: #eff1f5;
    --bg2: #445268;
    --bg3: #1B283BCC;
    --bg4: #1664BE;
    --bg5: #f9f9f9;
    --bg6: #D9D9D9;
    --bg7: #0E6AF233;


}

.layui-laypage input:focus,
.layui-laypage select:focus {
    border-color: var(--myBlue) !important;
}

.layui-bg-blue {
    background-color: var(--myBlue) !important;
}

.myContent {
    display: flex;
    gap: 1vw;
    align-items: flex-start;
    /* 阻止子元素高度拉伸 */
}

.h3 {
    font-size: 20px;
}

.myContent-right {
    flex: 1;

}

.introBox {
    flex: 1;
}

.introBox>h2:first-of-type {
    padding-bottom: 20px;
    font-weight: 400;
    border-bottom: 1px solid var(--line);
}

.company-intro {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0;
}


.search {
    display: flex;
    justify-content: space-between;
    margin-right: 50px;
    padding-bottom: 1ch;
    border-bottom: 1px solid var(--line);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.layui-input {
    border-color: var(--myBlue);
}

.layui-input-suffix {
    color: var(--white);
    background: var(--myBlue);
    border: 1px solid var(--myBlue);
    border-radius: 0 0 5px;
}



.layui-laypage .layui-laypage-curr .layui-laypage-em {
    background-color: var(--myBlue);
}

.layui-laypage a:hover {
    color: var(--myBlue);
}

.pageBox {
    width: 100%;
    margin: auto;
    position: relative;
    box-sizing: border-box;

}


.hover:hover {
    color: var(--blue-deep);
    cursor: pointer;
}

.blue {
    color: var(--blue-deep);
}



.flex {
    display: flex;
    justify-content: center;
    place-items: center;
}



a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}



button {
    cursor: pointer;
}


.line {
    /* border-left: 1px solid var(--line); */
    height: 23px;
    margin-left: 5px;
}



.textSelect {
    color: var(--myBlue) !important;
}

.textOverBox{
    display: flex;
    align-items: center;
    justify-content: center;
}

.textOver {
    width:194px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    display: block;
}



.layui-btn {
    width: 80%;
}

.main {
    margin: 0 auto;
    width: 1340px;
    overflow-x: hidden;
    padding-bottom: 50px;
    position: relative;
}

/* 面包屑 --常用公共模块 */
.breadBox {
    padding: .8vw 10px;
    font-size: 15px;
    display: flex;
    border-bottom: none;
}

.breadBox>div {
    color: var(--text-color3);
    cursor: pointer;
    line-height: 30px;
}

.breadBox>div:nth-child(2n) {
    padding: 0px 4px;
}


.bug {
    margin-top: auto;
    height: 20vh;
}

.icon {
    cursor: pointer;
    font-size: 1vw;
}

.icon:hover {
    color: var(--white);
}

/* 加载 */
@keyframes load {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);

    }
}

/* 小菜单显示状态 */
.small-menu {
    border-top: 1px solid var(--line);
    padding: 3vw 0;
    margin-left: 4vw;
    font-size: 16px;
    width: 92vw;
    display: flex;
    gap: 1vw;
    flex-direction: column;
    display: none;
    transition: all 0.3s ease;
}

.show {
    display: block;
}

.rotate {
    transform: rotate(90deg);
    display: inline-block;
}

.row1 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.row2 {
    /* 英文单词也会强制断行 */
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* 显示2行，超出省略 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

