/*by AYANG*/
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-width: 1200px;
    background-color: #f1f2f3;
}

input,botton {
    outline: none;
}
ol, ul, li {
    list-style: none;
}

a {
    text-decoration: none!important;
    transition: .3s;
    color: #525252;
}

i,em {
    font-style: normal;
}

ul,li {
    list-style: none;
    padding: 0;
    margin: 0;
}

p {
    padding: 0;
    margin: 0;
}

.icon {
    position: absolute;
    display: inline-block;
    transition:all .3s;
}

.header {
    width: 100%;
    height: 100px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}

.header header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.header .left {
    width: 240px;
    height: 100px;
    display: flex;
    align-items: center;
}

.header .left a,
.header .left img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

/* 中间主导航（菜单项在 templates/pc/classic/_site-nav.php 的数组里维护） */
.header .center {
    flex: 1;
    min-width: 0;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .nav {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header .nav li {
    height: 100px;
    display: flex;
    align-items: center;
}

.header .nav li a {
    display: block;
    height: 44px;
    padding: 0 22px;
    color: var(--ay-blue);
    font-size: 15px;
    font-weight: 600;
    line-height: 44px;
    white-space: nowrap;
    border-radius: 999px;
}

.header .nav li a:hover,
.header .nav li a.active {
    background-color: var(--bs-gray-200);
}

/* 右侧搜索框 */
.header .right {
    width: 300px;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .right .search-form {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
}

.header .right .search-form .search-focus {
    width: calc(100% - 55px);
    height: 40px;
    border: none;
    font-size: 16px;
    padding-left: 20px;
    background-color: var(--bs-gray-200);
}

.header .right .search-form .search-submit {
    width: 55px;
    height: 41px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s;
    background-color: var(--bs-gray-200);
}

.header .right .search-form .search-submit:hover {
    background-color: var(--bs-gray-300);
}

.header .right .search-form .search-submit .icon {
    -webkit-mask: url(../images/search.svg) no-repeat 50% 50%;
    mask: url(../images/search.svg) no-repeat 50% 50%;
    -webkit-mask-size: cover;
    mask-size: cover;
    width: 20px;
    height: 20px;
    background: var(--ay-blue);
}

.crumbs {
    width: 100%;
}

.crumbs a {
    font-size: 14px;
    line-height: 14px;
    color: var(--bs-gray-600);
}

.crumbs a:not([href]) {
    color: var(--bs-gray-600);
}

.crumbs a:hover {
    color: var(--ay-blue);
}

.crumbs a .icon {
    position: relative;
    margin-top: -3px;
    margin-right: 3px;
}

.crumbs span {
    font-size: 14px;
    line-height: 14px;
    color: var(--bs-gray-600);
    margin-left: 5px;
}

.crumbs span .icon {
    position: relative;
    margin-top: -3px;
    margin-right: 3px;
    width: 10px;
    height: 10px;
}

.footer {
    width: 100%;
    padding: 30px 0;
    text-align: center;
    background-color: var(--bs-gray-800);
    color: white;
}

.footer * {
    color: #fff;
}