#body
{
  padding-top:80px;
  padding-bottom:80px;
  padding-left:calc(50% - 580px);
  padding-right:calc(50% - 580px);
  @media(max-width:1208px)
  {
    padding-left: 24px;
    padding-right:24px;
  }

  #main-photo
  {
    overflow-y: auto;
    .main
    {
      display: flex;
      li
      {
        min-width: 100%;
        picture
        {
          display: block;
          width: 100%;
          img
          {
            display: block;
            width: 100%;
          }
        }
      }
    }   
  }
  header
  {
    padding-top:80px;
    padding-bottom:40px;
    margin-bottom:40px;
    border-bottom: 1px solid #929292;
    h1
    {
      font-size: 40px;
      letter-spacing: 1.6px;
      line-height:60px
    }

    #product-info
    {
      dl
      {
        display: flex;
        margin-bottom: 8px;
      }
    }
  }

  #sale-info
  {
    margin-bottom: 48px;
    *[data-dh-shopcart=price]
    {
      color:$main-color;
      font-size: 32px;
      line-height: 48px;
      letter-spacing: 1.28px;
    }
    *[data-dh-shopcart=options]
    {
      .form-group
      {
        margin-bottom: 24px;
        label
        {
          display: block;
          margin-bottom: 8px;
        }
        select
        {
          height: 48px;
          width: 100%;
          border:1px solid $main-color;
          border-radius: 4px;
          padding:4px 12px;
        }
      }
    }
    *[data-dh-shopcart=num]
    {
      margin-bottom: 24px;
      border:1px solid $main-color;
      border-radius: 4px;
      display: flex;
      overflow: hidden;
      button
      {
        width: 46px;
        height: 46px;
        border:0;
        background-color: #fff;
        cursor: pointer;
        
      }
      >div
      {
        text-align: center;
        line-height: 46px;
        flex:1;
        input
        {
          display: none;
        }
      }
    }
    *[data-dh-shopcart=info]
    {
      color:#a00;
    }
    *[data-dh-shopcart=button]
    {
      
      button
      {
        width: 100%;
        height: 48px;
        border:1px solid $main-color;
        color:#fff;
        background-color: $main-color;
        border-radius: 8px;
        cursor: pointer;
        transition-duration:.5s;
        &:hover
        {
          background-color: #fff;
          color:$main-color;
        }
      }
    }

  }
  
  
}