/*样式重置*/
ol, ul, li {
    list-style: none;
}
a{text-decoration:none; color:#333; outline:none; transition:cubic-bezier(0.215,.61,.355,1) .45s;}
img {
    max-width: 100%;
    vertical-align: middle;
}
table {
    border-collapse: collapse;
}
input,button,select,textarea {
    outline: none;
    -webkit-appearance: none;
    border-radius: 0;
    border: none;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*配色规范*/
:root {
    --primary-color: #FAF7F1;
    --secondary-color: #D4AF37;
    --secondary-dark-color: #B8962E;
    --bg-light-gray: #FAF7F1;
    --bg-white: #FFFFFF;
    --bg-light-blue: #FAF7F1;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --link-color: #D4AF37;
    --link-hover-color: #B8962E;
}

/*字体规范*/
html, body{
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}
h1 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
}
h2 {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
}
h3 {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
}
h4 {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.2;
    color: #333333;
}
p, .text-normal {
    font-size: 14px;
    line-height: 1.5;
    color: #666666;
}
.product-param, .form-field {
    font-size: 13px;
    line-height: 1.5;
    color: #666666;
}
button, .btn {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #333333;
}
a {
    color: #D4AF37;
}

/*间距规范*/
.page-box {
    padding-top: 70px;
}

/* @media screen and (max-width: 768px) {
    .page-box {
        padding-top: 160px;
    }
} */

@media screen and (max-width: 480px) {
    .page-box {
        padding-top: 180px;
    }
}
@media only screen and (min-width: 720px) and (max-width: 1280px) {
    body{
        min-width: 100%;
    }
}

/*公共宽度*/
.container {
    width: 1280px;
    margin: 0 auto;
}
.pw1040 {
    width: 1040px;
    margin: 0 auto;
}
.pw1100 {
    width: 1100px;
    margin: 0 auto;
}
.pw1200 {
    width: 1200px;
    margin: 0 auto;
}
.pw1450 {
    width: 1450px;
    margin: 0 auto;
}
.pw1400 {
    width: 1400px;
    margin: 0 auto;
}

/*清除浮动*/
.clearfix:after {
    content: "";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}
.clearfix {
    zoom: 1;
}

/*图标规范*/
.icon {
    width: 24px;
    height: 24px;
    color: #D4AF37;
    stroke-width: 1.5;
}
