body {
  background: #f6f8fb;
}

body .container.productView {
  background-color: #fff;
  margin-top: 20px;
  margin-bottom: 20px;
}

body .container.productView .selectCon {
  padding: 20px;
  display: flex;
}

body .container.productView .selectCon .left {
  width: 400px;
}

body .container.productView .selectCon .left .currImg {
  width: 100%;
  height: 400px;
}

body .container.productView .selectCon .left .imgList {
  height: 60px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

body .container.productView .selectCon .left .imgList li {
  width: 60px;
  height: 60px;
  cursor: pointer;
  border: 2px solid transparent;
}

body .container.productView .selectCon .left .imgList li img {
  width: 100%;
  height: 100%;
}

body .container.productView .selectCon .left .imgList li.selected {
  border: 2px solid #0990ee;
}

body .container.productView .selectCon .left .imgList li:not(:first-child) {
  margin-left: 15px;
}

body .container.productView .selectCon .right {
  padding-left: 20px;
  flex: 1;
}

body .container.productView .selectCon .right .title {
  height: 48px;
  font-size: 18px;
  font-weight: bold;
  line-height: 24px;
}

body .container.productView .selectCon .right .noti {
  font-size: 16px;
  color: #666666;
  line-height: 21px;
  margin-top: 10px;
}

body .container.productView .selectCon .right .amountCon {
  height: 55px;
  background: #f6f8fb;
  display: flex;
  font-size: 14px;
  line-height: 55px;
  padding-left: 10px;
  margin-top: 20px;
}

body .container.productView .selectCon .right .amountCon .name {
  margin-right: 30px;
  color: #666666;
}

body .container.productView .selectCon .right .amountCon .unit {
  color: #ee2a4a;
  font-size: 16px;
  font-weight: bold;
}

body .container.productView .selectCon .right .amountCon .val {
  font-weight: bold;
  color: #ee2a4a;
  font-size: 24px;
  line-height: 50px;
}

body .container.productView .selectCon .right .detailCon {
  padding: 20px 0 0 10px;
}

body .container.productView .selectCon .right .detailCon li {
  display: flex;
  font-size: 14px;
  line-height: 19px;
}

body .container.productView .selectCon .right .detailCon li:not(:first-child) {
  margin-top: 25px;
}

body .container.productView .selectCon .right .detailCon li .name {
  width: 86px;
  color: #666666;
}

body .container.productView .selectCon .right .detailCon li .val {
  flex: 1;
}

body .container.productView .selectCon .right .detailCon li.packages .name {
  line-height: 36px;
}

body .container.productView .selectCon .right .detailCon li.packages .val {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 5px;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem {
  margin-bottom: 10px;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem:not(:nth-of-type(5n + 1)) {
  margin-left: 10px;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem input {
  display: none;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem input:checked + label {
  border: 1px solid #0990ee;
  position: relative;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem input:checked + label:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  background: url(../images/icon_check_nor.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -1px;
  bottom: -1px;
}

body .container.productView .selectCon .right .detailCon li.packages .val .packItem label {
  display: block;
  width: 120px;
  height: 36px;
  border: 1px solid #b7b9bc;
  line-height: 36px;
  text-align: center;
  font-size: 13px;
  cursor: pointer;
  user-select: none;
}

body .container.productView .imgCon {
  margin-top: 45px;
}

body .container.productView .imgCon .tabCon {
  border-bottom: 1px solid #e2e3e4;
  height: 33px;
  display: flex;
}

body .container.productView .imgCon .tabCon li {
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  margin: 0 33px;
}

body .container.productView .imgCon .tabCon li.selected {
  color: #0990ee;
  border-bottom: 2px solid #0990ee;
}

body .container.productView .imgCon iframe {
  width: 100%;
  border: none;
  margin-top: 50px;
  padding-bottom: 40px;
}

body .container.productView .imgCon #proPackage {
  padding: 0px 30px 40px 80px;
}

body .container.productView .imgCon #proPackage .title {
  margin-top: 30px;
  height: 32px;
  font-size: 16px;
  font-weight: bold;
  color: #0990ee;
  line-height: 32px;
  position: relative;
}

body .container.productView .imgCon #proPackage .title.packing::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icon_bzsm.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -46px;
  top: 0;
}

body .container.productView .imgCon #proPackage .title.afterSales::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(../images/icon_shsm.png) no-repeat;
  background-size: 100% 100%;
  position: absolute;
  left: -46px;
  top: 0;
}

body .container.productView .imgCon #proPackage p {
  line-height: 20px;
  font-size: 14px;
  margin-top: 8px;
}

#buyBtn {
  width: 180px;
  height: 40px;
  background: #0990ee;
  border-radius: 2px;
  font-size: 16px;
  color: #ffffff;
  line-height: 38px;
  border: none;
  cursor: pointer;
  margin-left: 96px;
  margin-top: 10px;
}

#buyBtn:active {
  background: #0778c9;
}
