* {
    margin: 0;
    padding: 0;
}
body {
    background: #f7f7f7;
    font-size: 14px;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */ 
    text-align: left;
}
::-moz-placeholder { /* Firefox 19+ */  
    text-align: left;
}
:-ms-input-placeholder { /* IE 10+ */ 
    text-align: left;
}
:-moz-placeholder { /* Firefox 18- */ 
    text-align: left;
}

.wrapper  {
    width: 1200px;
    margin: 0 auto;
}
/* 头部 */
.header {
    padding: 20px 0 10px 0;
}
.header .wrapper {
    display: flex;
    justify-content: space-between;
}
.header .shop .name {
    font-weight: bold;
    font-size: 16px;
    padding-bottom: 10px;
}
.header .shop .qq {
    color: #666;
    display: flex;
    align-items: center;
}
.header .shop .qq .icon {
    margin-right: 5px;
}
.header .header-nav {
    display: flex;
    align-items: center;
}
.header .header-nav a {
    display: block;
    background: #ebeef8;
    color: #3369ff;
    padding: 8px 20px;
    border-radius: 45px;
    margin-left: 15px;
    display: flex;
    align-items: center;
}
.header .header-nav a.on {
    color: #fff;
    box-shadow: 0 5px 6px 0 rgba(73,105,230,.22);
    background: linear-gradient(0deg,#2a62ff,#4e7dff);
}
.header .header-nav a img {
    margin-right: 8px;
}

/* 店铺公告 */
.shop-notice {
    background: #f1f1f1;
    color: #666;
    padding: 20px;
    font-size: 12px;
    border-radius: 5px;
}
.shop-notice .title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
}

/* panel */
.choose .panel {
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    margin-top: 20px;
    box-shadow: 0 7px 29px 0 rgba(18,52,91,.11);
}
.choose .panel > .title {
    display: flex;
    align-items: center;
    font-weight: bold;
    padding-bottom: 20px;
    font-size: 16px;
}
.choose .panel  > .title img {
    margin-right: 10px;
}

.choose .category {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}
.choose .category .categorys {
    display: flex;
    flex-wrap: wrap;
}
.choose .category .categorys .item {
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
    color: #666;
    border-radius: 10px;
    min-width: 120px;
    max-width: 180px;
    height: 67px;
    line-height: 67px;
    cursor: pointer;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 10px 10px 10px 0;
}
.choose .category .categorys .item img {
    display: none;
}
.choose .category .categorys .item.active {
    background: linear-gradient(-45deg,#3369ff,#3798f7);
    box-shadow: 0 7px 10px 0 rgba(54,144,248,.23);
    border: 1px solid #3580fb;
    color: #fff;
}
.choose .category .categorys .item.active img {
    position: absolute;
    right: -6px;
    bottom: -19px;
    display: block;
}

.choose .goods {
    padding: 20px 0 30px 0;
    border-bottom: 1px solid #eee;
}
.choose .goods .title {
    font-weight: bold;
    color: #999;
}
.choose .goods .list {
    display: flex;
    flex-wrap: wrap;
}
.choose .goods .item {
    height: 84px;
    min-width: 182px;
    /*max-width: 220px;*/
    padding-left: 18px;
    padding-right: 26px;
    background: #fff;
    border: 2px solid #f1f4fb;
    box-shadow: 0 4px 10px 0 rgba(135,142,154,.14);
    border-radius: 10px;
    margin: 10px 10px 0 0;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.choose .goods .item .pwd {
    line-height: 84px;
    text-align: center;
    color: red;
}
.choose .goods .item .name {
    color: #545454;
    font-size: 12px;
    font-weight: 400;
    margin: 15px 0 5px 0;
    text-overflow: ellipsis;
    /*white-space: nowrap;*/
    overflow: hidden;
}
.choose .goods .item .price {
    color: #3369ff;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}
.choose .goods .item .stores {
    color: #0db26a;
    font-size: 12px;
    position: absolute;
    right: 30px;
    bottom: 10px;
}
.choose .goods .item img {
    display: none;
}
.choose .goods .item.active {
    border: 2px solid #3369ff;
}
.choose .goods .item.active .name {
    color: #3369ff;
}
.choose .goods .item.active img {
    position: absolute;
    right: -2px;
    bottom: -1px;
    border-radius: 0 0 10px 0;
    display: block;
}

/* 产品说明 */
.choose-tip {
    font-size: 12px;
    padding-top: 20px;
}
.choose-tip .title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.choose-tip .title img {
    margin-right: 10px;
}
.choose-tip #remark {
    color: #666;
}

/* 字段 */
.form-field {

}
.form-field .label {
    font-weight: 550;
    padding: 20px 0 20px 0;
}
.form-field .label .required {
    color: red;
    margin-right: 10px;
}
.form-field .value .input {
    height: 50px;
    width: 430px;
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 10px 0 rgba(135,142,154,.07);
    border-radius: 4px;
    overflow: hidden;
    padding: 0 10px;
}
.form-field .value input {
    display: inline-block;
    width: 100%;
    height: 100%;
    font-weight: 500;
    font-size: 14px;
    color: #999;
    border: none;
    outline: none;
}
.form-field .remark {
    font-size: 12px;
    color: #666;
    padding: 10px 0;
}

/* 通知方式 */
.notice-type {
    display: flex;
    align-items: center;
}
.notice-type >div {
    margin-right: 10px;
    border-radius: 45px;
    border: 2px solid #f7f7f7;
    background: #f7f7f7;
}
.notice-type >div.on {
    border-color: #3369ff;
    color: #3369ff;
}
.notice-type label {
    display: inline-block;
    padding: 12px 20px;
    cursor: pointer;
}

/* 提交订单栏 */
.submit-bar {
    width: 100%;
    background: #fff;
    box-shadow: 0 -1px 0 0 hsla(0,0%,71%,.18);
    position: fixed;
    left: 0;
    bottom: 0;
}
.submit-bar .wrapper {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.submit-bar .goods-name {
    font-weight: bold;
    display: flex;
    align-items: center;
}
.submit-bar .goods-name img {
    margin-right: 20px;
}
.submit-bar .total {
    display: flex;
    align-items: center;
}
.submit-bar .total input {
    border: 1px solid #eee;
    border-radius: 5px;
    background: #f7f7f7;
    height: 40px;
    padding: 0 10px;
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}
.submit-bar .total .total-price {
    margin-left: 20px;
}
.submit-bar .total .total-price .tprice {
    color: #3369ff;
    font-weight: bold;
}
.submit-bar .btn button {
    background: #3369ff;
    color: #fff;
    border: none;
    border-radius: 45px;
    height: 40px;
    padding: 0 30px;
    cursor: pointer;
}

/* 支付方式 */
.paytype .title {
    color: #999;
    font-size: 16px;
    font-weight: bold;
    padding: 30px 20px;
    margin-top: 30px;
    border-top: 1px solid #eee;
}
.paytype .items {
    display: flex;
    padding: 0 20px;
}
.paytype .items >label {
    border-radius: 8px;
    padding: 5px 15px;
    border: 2px solid #f7f7f7;
    cursor: pointer;
    margin-right: 20px;
}
.paytype label img {
    height: 40px;
    cursor: pointer;
}
.paytype .items >label:hover, .paytype .items >label.on {
    border-color: #2a62ff;
}

.copyright {
    color: #000;
    width: 300px;
    margin: 50px auto 20px auto;
    text-align: center;
}