html,body{
    font-size: 14px;
    color: #333;
}
body{
    margin: 0;
    background-color: #f1f1f1;
}
table{
    width: 100%;
    border-collapse: collapse;
}
a{
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}
a:hover{
    opacity: 0.6;
}
header{
    background-color: #fff;
}
.container{
    width: 1200px;
    margin: 0 auto;
}
.header-top{
    background-color: #f5f5f5;
    border-bottom: 1px solid #ddd;
}
.header-top-container{
    display: flex;
    align-items: center;
    height: 40px;
}
.header-top-left{
    flex: 1;
}
.header-top-right {
    display: flex;
    align-items: center;
}
.header-top-right a{
    color: #1696e7;
    margin-left: 12px;
}
.header-container{
    display: flex;
    align-items: center;
    height: 80px;
}
.header-left{
    flex: 1;
}
.header-logo{
    font-size: 20px;
    font-weight: bolder;
}
.push-btn{
    display: block;
    width: 100px;
    line-height: 36px;
    text-align: center;
    background-color: #1696e7;
    color: #ffffff;
    border-radius: 4px;
}
.header-nav{
    background-color: #1696e7;
}
.header-nav-container{
    display: flex;
    align-items: center;
}
.header-nav a{
    color: #ffffff;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 16px;
    font-size: 17px;
}
footer{
    background-color: #333;
    text-align: center;
    padding: 30px 0;
    color: #999;
}
.main{
    padding: 30px 0;
}
.banner{
    background-color: #ffffff;
    margin-bottom: 20px;
}
.card{
    background-color: #ffffff;
    border-radius: 4px;
}
.card-head{
    padding: 20px;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #f1f1f1;
}
.card-head-title{
    font-size: 17px;
    font-weight: bolder;
    flex: 1;
}
.card-body{
    padding: 20px;
}
.card-body th{
    background-color: #f1f1f1;
}
.card-body th,.card-body td{
    padding: 10px;
}
.card-body td a{
    color: #1696e7;
}
.grid{
    display: grid;
    grid-template-columns: repeat(1,1fr);
    grid-gap: 20px;
}
.list-item{
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: solid 1px #f1f1f1;
}
.list-item-thumb{
    width: 80px;
    height: 80px;
    margin-right: 15px;
    object-fit: cover;
}
.list-item-main{
    flex: 1;
}
.list-item-title{
    font-size: 16px;
    font-weight: bolder;
}
.list-item-desc{
    font-size: 14px;
    color: #999;
    margin-top: 8px;
}
.content-desc{
    color: #999;
    font-size: 14px;
}
.content-desc span{
    margin-right: 12px;
}
.content-body{
    padding-top: 30px;
    font-size: 16px;
    line-height: 1.6;
}
.content-body img{
    max-width: 100%;
    height: auto;
}
.passport-form{
    width: 424px;
    margin: 0 auto;
    padding: 30px 0;
}
.passport-title{
    text-align: center;
    font-weight: bolder;
    font-size: 24px;
    margin-bottom: 40px;
}
.form-item{
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.form-item input{
    flex: 1;
    height: 44px;
    border: solid 1px #cbcbcb;
    border-radius: 2px;
    padding: 0 12px;
    font-size: 14px;
    box-sizing: border-box;
}
.form-item input[type="file"]{
    border: unset;
    height: unset;
    padding: unset;
}
.form-item fieldset{
    border: solid 1px #cbcbcb;
    border-radius: 2px;
    width: 100%;
}
.form-item input[type="file"]:focus{
    border: unset;
}
.form-item select{
    height: 44px;
    border: solid 1px #cbcbcb;
    padding: 0 12px;
    border-radius: 2px;
}

.form-item textarea{
    border: solid 1px #cbcbcb;
    flex: 1;
    font-size: 14px;
    box-sizing: border-box;
    padding: 12px;
    border-radius: 2px;
}
.form-item .checkbox{
    height: 16px;
    width: 16px;
    flex: none;
    margin-right: 8px;
}
.form-item input:focus,.form-item textarea:focus,.form-item select:focus{
    border: solid 1px #1696e7;
    outline: none;
}
.form-item label a{
    color: #1696e7;
}
.code-img{
    height: 44px;
    margin-left: 20px;
    cursor: pointer;
}
.form-shubmit{
    height: 44px;
    background-color: #1696e7;
    display: block;
    flex: 1;
    border: none;
    color: #ffffff;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
}
.form-shubmit:hover{
    opacity: 0.6;
}
.form-other{
    flex: 1;
    text-align: right;
    color: #1696e7;
}
.shop-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    grid-gap: 20px;
}
.goods-item{
    display: block;
}
.goods-item-thumb{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.goods-item-title{
    font-size: 14px;
    margin-top: 10px;
    color: #333;
    font-weight: bolder;
}
.goods-item-price{
    font-size: 14px;
    color: #ff5000;
    margin-top: 10px;
}
.goods-details{
    display: flex;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 20px;
}
.goods-thumbs{
    width: 400px;
    margin-right: 20px;
}
.goods-big-thumb{
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}
.goods-thumb-list{
    display: grid;
    grid-template-columns: repeat(6,1fr);
}
.goods-thumb-list a{
    display: block;
    width: 50px;
    height: 50px;
    border: solid 2px #fff;
}
.goods-thumb-list a img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.goods-thumb-list a.goods-big-select{
    border-color: #ff5000;
}
.goods-info{
    flex: 1;
}
.goods-title{
    font-size: 17px;
    font-weight: bolder;
    padding-top: 10px;
    line-height: 28px;
    margin-bottom: 25px;
}
.goods-price-container{
    box-sizing: border-box;
    background-color: #FFF2E8;
    border-radius: 4px;
    padding: 12px 0;
    margin-bottom: 20px;
}
.goods-price-item{
    padding: 8px 0;
    display: flex;
    align-items: center;
}
.goods-lable{
    display: block;
    width: 70px;
    padding-left: 20px;
}
.goods-price-old{
    color: #999;
    text-decoration: line-through;
}
.goods-price-new{
    color: #ff5000;
    font-size: 24px;
    font-weight: bolder;
}
.goods-num{
    display: flex;
    align-items: center;
}
.goods-num-input{
    margin: 0;
    padding: 0;
    width: 48px;
    height: 26px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #666;
    border: 1px solid #CCC;
    border-left: none;
    border-right: 0;
    outline: 0;
    background: #FFF;
}
.goods-num-btn{
    display: block;
    width: 26px;
    height: 26px;
    border: 1px solid #ccc;
    line-height: 26px;
    padding: 0;
    overflow: hidden;
    text-align: center;
    background-color: #ededed;
    color: #3C3C3C;
}
.goods-buy{
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.goods-buy-btn{
    background-color: #df3033;
    color: #fff;
    height: 46px;
    line-height: 46px;
    padding: 0 26px;
    font-size: 18px;
    margin: 0 20px;
}
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}
.pagination > li {
    display: inline;
}
.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #ffffff;
    border: 1px solid #dddddd;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #dddddd;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    z-index: 3;
    color: #ffffff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #ffffff;
    border-color: #dddddd;
}
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}