/**
 * @license chowa v1.1.3
 *
 * Copyright (c) Chowa Techonlogies Co.,Ltd.(http://www.chowa.cn).
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
@import "../../styles/variables.scss";

.#{$prefix}container {
    position: relative;
    margin: auto;
    padding: 0;
    box-sizing: border-box;
}

@media only screen and (max-width: #{$screen-small}) {
    .#{$prefix}container {
        width: 100%;
        padding: 10px;
    }
}

@media only screen and (min-width: #{$screen-small}) and (max-width: #{$screen-medium}) {
    .#{$prefix}container {
        width: 100%;
        padding: 20px;
    }
}

@media only screen and (min-width: #{$screen-medium}) and (max-width: #{$screen-large}) {
    .#{$prefix}container {
        width: 960px;
    }
}

@media only screen and (min-width: #{$screen-large}) {
    .#{$prefix}container {
        width: 1080px;
    }
}
