body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Microsoft Yahei", sans-serif;
    color: #333;
    list-style: none;
    cursor: default;
}

html,
body {
    width: 100%;
    height: 100%;
    font-size: 100%;
}

input,
img {
    margin: 0;
    padding: 0;
    border: 0 none;
    outline-style: none;
    vertical-align: middle;
}

a,
a:active,
a:visited {
    color：black；
    text-decoration: none;

}


textarea {
    border: none;
    outline: none;
    resize: none;
}

i {
    font-style: normal;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix::before,
.clearfix::after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

.clearfix {
    zoom: 1;
}

.w {
    width: 1200px;
    margin: 0 auto;
}

input[type="radio"],
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    display: none;
}

label {
    display: inline-block;
    cursor: pointer;
}

label input[type="radio"]:checked~i,
label input[type="checkbox"]:checked~i {
    color: #4CAF50;
}

input[type="number"] {
    width: 76px;
    height: 36px;
    background-color: rgba(5, 45, 82, 0.4);
    border: 2px solid #ccc;
    border-radius: 4px;
    color: #fff;
    font-size: 20px;
    padding: 0 10px;
}

input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"]+div {
    width: 30px;
    height: 40px;
    padding-left: 2px;
    cursor: pointer;
}

/* 通用容器样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 通用按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background: #1890ff;
    color: white;
}

.btn-primary:hover {
    background: #40a9ff;
    transform: translateY(-2px);
}

/* 通用阴影效果 */
.shadow-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* 通用过渡效果 */
.transition {
    transition: all 0.3s ease;
}