﻿@charset "UTF-8";

@import url('work.css');
@import url('about.css');
@import url('contact.css');
@import url('idea.css');

/*
  CONTENTS:
  01. Common
  02. Container
  03. Banner
  04. Content
  04-1. Nav(Navigation)
  04-2. Column
  05. Tel
  06. Footer
*/

/* 01. Common */
body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "Microsoft YaHei";
  line-height: 28px;
  color: #FFF;
  background-color: #EAF0FF;
  word-wrap: break-word;
}
p {
  margin: 0 0 15px;
}
img {
  border: 0;
}
a {
  color: #FFF;
  text-decoration: none;
}
a:hover {
  color: #FFF;
  text-decoration: none;
}
h1, h2, dl, dt, dd, ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

/* 02. Container */
#container {
  display: block;
  margin: 0 auto;
  padding: 40px 10px;
  width: 1180px;
}

@media all and (max-width: 1199px) {
  #container {
    float: left;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 5px;
  	width: 100%;
  }
}

/* 03. Banner */
#banner {
  float: left;
  width: 650px;
  line-height: 35px;
  color: #114DBD;
}
#banner .logo {
  position: relative;
  display: block;
  width: 154px;
  height: 40px;
  text-indent: -1000px;
  background: url(../img/logo.png) center center no-repeat;
  overflow: hidden;
}
#banner p {
  position: relative;
  margin-bottom: -40px;
  font-size: 12px;
}
#banner img {
  width: 100%;
}

@media all and (max-width: 1199px) {
  #banner {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 10px 10px 0;
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  #banner {
    line-height: 30px;
	  font-size: 13px;
  }
  #banner p {
    margin-bottom: -30px;
  }
/*
  #banner .logo {
    width: 135px;
    height: 35px;
    background: url(../img/logo.png) center center no-repeat;
    background-size: auto 100%;
    -moz-background-size: auto 100%;
  }
*/
}

/* 04. Content */
#content {
  float: right;
  width: 530px;
  height: 550px;
  background-color: #114DBD;
  border-radius: 20px;
  -moz-border-radius: 20px;
  overflow: hidden;
}

@media all and (max-width: 1199px) {
  #content {
    position: relative;
    top: -21px;
    margin-bottom: -16px;
    width: 100%;
    height: auto;
  }
}

/* 04-1. Nav(Navigation) */
#nav {
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  width: 90%;
  text-align: right;
}
#nav li {
  float: left;
  padding-top: 10px;
  width: 25%;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
#nav li.small {
  float: none;
  display: inline-block;
  width: 13%;
  font-size: 16px;
}
#nav li.active {
  background: url(../img/underline.png) center bottom no-repeat;
  background-size: 50% auto;
  -moz-background-size: 50% auto;
}

@media all and (max-width: 1199px) {
  #nav li {
    width: 30%;
  }
  #nav li.small {
    width: 15%;
  }
}

/* 04-2. Column */
#column {
  clear: both;
  width: 100%;
}
#column .col {
  float: left;
  display: inline-block;
  padding: 20px 0;
  width: 100%;
  height: 420px;
}
* html #column .col {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}
* +html #column .col {
  position: relative;
  overflow-x: hidden;
  overflow-y: scroll;
}
#column .col .text {
  padding-top: 15px;
  padding-left: 30px;
  color: #A0B8E5;
}
#column .col .text b {
  padding: 0 3px;
  color: #FFF;
  font-weight: normal;
}

@media all and (max-width: 1199px) {
  #column .col {
    height: auto;
    overflow-y: auto; 
  }
  #column .col .text {
    padding-right: 30px;
  }
}

/* 05. Tel */
.tel {
  display: none;
}

@media all and (max-width: 1199px) {
  .tel {
    clear: both;
	display: block;
    position: fixed;
    z-index: 99;
    bottom: 0;
	padding-top: 10px;
    width: 100%;
    height: 55px;
    overflow: hidden;
    text-align: center;
  }
  .tel a {
    display: inline-block;
    padding-top: 30px;
    width: 100px;
    height: 70px;
    background: url(../img/icon_tel.png) center 12px no-repeat #FFF;
    background-size: auto 20px;
    -moz-background-size: auto 20px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    box-shadow: 0 5px 10px #C2C2C2;
    -moz-box-shadow: 0 5px 10px #C2C2C2;
    color: #114DBD;
	font-size: 18px;
	font-weight: bold;
  }
  .tel a:hover {
    color: #114DBD;
  }
}

/* 06. Footer */
#footer {
  clear: both;
  position: relative;
  top: -35px;
  margin-bottom: -35px;
  width: 600px;
  line-height: 18px;
  text-align: right;
  color: #13C595;
  font-size: 12px;
}
#footer a, #footer a:hover {
  color: #13C595;
}

@media all and (max-width: 1199px) {
  #footer {
    display: none;
  }
}