/*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: 160px;
    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%;
}

.header .auto {
    width: calc(100% - 480px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.header .auto .search-form {
    width: 60%;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
}

.header .auto .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 .auto .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 .auto .search-form .search-submit:hover {
    background-color: var(--bs-gray-300);
}

.header .auto .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);
}

.header .right {
    width: 240px;
    height: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .right a.abtn {
    display: flex;
    width: 80px;
    height: 55px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header .right a.abtn:hover,
.header .right a.abtn:hover .icon,
.header .right a.abtn:hover .text {
    color: var(--ay-blue);
    transition: all .3s;
}

.header .right a.abtn .icon {
    width: 30px;
    height: 30px;
    position: relative;
    color: var(--ay-blue);
}

.header .right a.abtn .text {
    max-width: 80px;
    height: 20px;
    font-size: 14px;
    color: var(--bs-gray-600);
    margin-top: 5px;
}

.header footer {
    width: 100%;
    height: 60px;
}

.header footer .nav {
    border-top: 1px solid var(--bs-gray-200);
}

.header .nav li{
    height: 60px;
    margin-right: 20px;
}

.header .nav li a {
    display: block;
    height: 60px;
    padding: 0 30px;
    color: var(--ay-blue);
    line-height: 60px;
}

.header .nav li a:hover {
    background-color: var(--bs-gray-200);
}

.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;
}