Commit fbdb1f1c83bd97a3e8dda3959a430e3186dfeba4
1 parent
a6e908fc
test
Showing
30 changed files
with
4708 additions
and
8 deletions
Show diff stats
frontend/assets/AppAsset.php
... | ... | @@ -23,13 +23,18 @@ class AppAsset extends AssetBundle |
23 | 23 | //'https://fonts.googleapis.com/css?family=Roboto:400,700&subset=cyrillic,latin', |
24 | 24 | ]; |
25 | 25 | public $js = [ |
26 | - 'js/script.js', | |
26 | + '/js/script.js', | |
27 | 27 | //'http://maps.google.com/maps/api/js?sensor=false', |
28 | - 'js/markerclusterer.js', | |
29 | - 'js/jquery.scrollbox.min.js', | |
30 | - 'js/slider.js', | |
31 | - 'js/jquery.rating.js', | |
32 | - '/admin/js/option.js' | |
28 | + '/js/markerclusterer.js', | |
29 | + '/js/jquery.scrollbox.min.js', | |
30 | + '/js/slider.js', | |
31 | + '/js/jquery.rating.js', | |
32 | + '/admin/js/option.js', | |
33 | + '/js/jmousewhell.js', | |
34 | + '/js/autoresize.jquery.js', | |
35 | + '/js/forms.js', | |
36 | + '/js/jquery.MultiFile.js', | |
37 | + '/js/myGallery_min.js', | |
33 | 38 | ]; |
34 | 39 | public $depends = [ |
35 | 40 | 'yii\web\YiiAsset', | ... | ... |
frontend/controllers/AccountsController.php
... | ... | @@ -25,7 +25,7 @@ class AccountsController extends Controller |
25 | 25 | 'class' => AccessControl::className(), |
26 | 26 | 'rules' => [ |
27 | 27 | [ |
28 | - 'actions' => ['cabinet','change-password'], | |
28 | + 'actions' => ['cabinet','change-password', 'bookmarks'], | |
29 | 29 | 'allow' => true, |
30 | 30 | 'roles' => ['@'], |
31 | 31 | ], |
... | ... | @@ -56,6 +56,11 @@ class AccountsController extends Controller |
56 | 56 | |
57 | 57 | } |
58 | 58 | |
59 | + public function actionBookmarks() | |
60 | + { | |
61 | + return $this->render('bookmarks'); | |
62 | + } | |
63 | + | |
59 | 64 | |
60 | 65 | |
61 | 66 | ... | ... |
1 | +<?php | |
2 | +namespace frontend\controllers; | |
3 | + | |
4 | +use Yii; | |
5 | +use common\models\User; | |
6 | +use yii\data\ActiveDataProvider; | |
7 | +use yii\filters\AccessControl; | |
8 | +use yii\web\Controller; | |
9 | +use yii\web\NotFoundHttpException; | |
10 | + | |
11 | + | |
12 | +/** | |
13 | + * Site controller | |
14 | + */ | |
15 | +class ChatController extends Controller | |
16 | +{ | |
17 | + public $defaultAction = 'list'; | |
18 | + | |
19 | + public function behaviors() | |
20 | + { | |
21 | + return [ | |
22 | + 'access' => [ | |
23 | + 'class' => AccessControl::className(), | |
24 | + 'rules' => [ | |
25 | + [ | |
26 | + 'actions' => ['list', 'message'], | |
27 | + 'allow' => true, | |
28 | + 'roles' => ['@'], | |
29 | + ], | |
30 | + ], | |
31 | + ], | |
32 | + ]; | |
33 | + } | |
34 | + | |
35 | + | |
36 | + public function actionList() | |
37 | + { | |
38 | + return $this->render('list'); | |
39 | + } | |
40 | + | |
41 | + public function actionMessage(/*$user_id*/) | |
42 | + { | |
43 | + return $this->render('message'); | |
44 | + } | |
45 | +} | ... | ... |
1 | +<?php | |
2 | +namespace frontend\controllers; | |
3 | + | |
4 | +use Yii; | |
5 | +use common\models\LoginForm; | |
6 | +use frontend\models\PasswordResetRequestForm; | |
7 | +use frontend\models\ResetPasswordForm; | |
8 | +use frontend\models\SignupForm; | |
9 | +use frontend\models\ContactForm; | |
10 | +use frontend\models\Options; | |
11 | +use frontend\models\OptionValues; | |
12 | +use yii\base\InvalidParamException; | |
13 | +use yii\web\BadRequestHttpException; | |
14 | +use yii\web\Controller; | |
15 | +use yii\filters\VerbFilter; | |
16 | +use yii\filters\AccessControl; | |
17 | +use frontend\models\OptionsToValues; | |
18 | +use yii\validators\EmailValidator; | |
19 | +use common\models\User; | |
20 | +use yii\helpers\VarDumper; | |
21 | +use common\models\Page; | |
22 | +use frontend\models\Option; | |
23 | +use common\models\Social; | |
24 | + | |
25 | + | |
26 | +/** | |
27 | + * Site controller | |
28 | + */ | |
29 | +class CompanyController extends Controller | |
30 | +{ | |
31 | + public $layout = 'company'; | |
32 | + | |
33 | + public $defaultAction = 'common'; | |
34 | + | |
35 | + /** | |
36 | + * @inheritdoc | |
37 | + */ | |
38 | + public function actions() | |
39 | + { | |
40 | + return [ | |
41 | + 'error' => [ | |
42 | + 'class' => 'yii\web\ErrorAction', | |
43 | + ], | |
44 | + 'captcha' => [ | |
45 | + 'class' => 'yii\captcha\CaptchaAction', | |
46 | + 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, | |
47 | + ], | |
48 | + ]; | |
49 | + } | |
50 | + | |
51 | + public function actionIndex() | |
52 | + { | |
53 | + $this->redirect(['site/index']); | |
54 | + } | |
55 | + | |
56 | + public function actionCommon(/*$company_id*/) | |
57 | + { | |
58 | + return $this->render('common'); | |
59 | + } | |
60 | + | |
61 | + public function actionPortfolio(/*$company_id*/) | |
62 | + { | |
63 | + return $this->render('portfolio'); | |
64 | + } | |
65 | + | |
66 | + public function actionTeam(/*$company_id*/) | |
67 | + { | |
68 | + return $this->render('team'); | |
69 | + } | |
70 | + | |
71 | + public function actionBlog(/*$company_id*/) | |
72 | + { | |
73 | + return $this->render('blog-list'); | |
74 | + } | |
75 | + | |
76 | + public function actionBlogView(/*$company_id, $article_id*/) | |
77 | + { | |
78 | + return $this->render('blog-view'); | |
79 | + } | |
80 | + | |
81 | + public function actionReview(/*$company_id*/) | |
82 | + { | |
83 | + return $this->render('review'); | |
84 | + } | |
85 | + | |
86 | + public function actionVacancyList(/*$company_id*/) | |
87 | + { | |
88 | + return $this->render('vacancy-list'); | |
89 | + } | |
90 | + | |
91 | + public function actionVacancyView(/*$company_id, $vacancy_id*/) | |
92 | + { | |
93 | + return $this->render('vacancy-view'); | |
94 | + } | |
95 | + | |
96 | + public function actionGallery(/*$company_id*/) | |
97 | + { | |
98 | + $this->layout = 'gallery-company'; | |
99 | + return $this->render('gallery'); | |
100 | + } | |
101 | +} | ... | ... |
frontend/controllers/PerformerController.php
... | ... | @@ -30,6 +30,8 @@ class PerformerController extends Controller |
30 | 30 | { |
31 | 31 | public $layout = 'performer'; |
32 | 32 | |
33 | + public $defaultAction = 'common'; | |
34 | + | |
33 | 35 | /** |
34 | 36 | * @inheritdoc |
35 | 37 | */ |
... | ... | @@ -71,4 +73,19 @@ class PerformerController extends Controller |
71 | 73 | return $this->render('blog-view'); |
72 | 74 | } |
73 | 75 | |
76 | + public function actionReview(/*$performer_id*/) | |
77 | + { | |
78 | + return $this->render('review'); | |
79 | + } | |
80 | + | |
81 | + public function actionWorkplace(/*$performer_id*/) | |
82 | + { | |
83 | + return $this->render('workplace'); | |
84 | + } | |
85 | + | |
86 | + public function actionGallery(/*$performer_id*/) | |
87 | + { | |
88 | + $this->layout = 'gallery'; | |
89 | + return $this->render('gallery'); | |
90 | + } | |
74 | 91 | } | ... | ... |
1 | +<?php | |
2 | +namespace frontend\controllers; | |
3 | + | |
4 | +use Yii; | |
5 | +use common\models\LoginForm; | |
6 | +use frontend\models\PasswordResetRequestForm; | |
7 | +use frontend\models\ResetPasswordForm; | |
8 | +use frontend\models\SignupForm; | |
9 | +use frontend\models\ContactForm; | |
10 | +use frontend\models\Options; | |
11 | +use frontend\models\OptionValues; | |
12 | +use yii\base\InvalidParamException; | |
13 | +use yii\web\BadRequestHttpException; | |
14 | +use yii\web\Controller; | |
15 | +use yii\filters\VerbFilter; | |
16 | +use yii\filters\AccessControl; | |
17 | +use frontend\models\OptionsToValues; | |
18 | +use yii\validators\EmailValidator; | |
19 | +use common\models\User; | |
20 | +use yii\helpers\VarDumper; | |
21 | +use common\models\Page; | |
22 | +use frontend\models\Option; | |
23 | +use common\models\Social; | |
24 | + | |
25 | + | |
26 | +/** | |
27 | + * Site controller | |
28 | + */ | |
29 | +class SearchController extends Controller | |
30 | +{ | |
31 | + public $defaultAction = 'common'; | |
32 | + | |
33 | + /** | |
34 | + * @inheritdoc | |
35 | + */ | |
36 | + public function actions() | |
37 | + { | |
38 | + return [ | |
39 | + 'error' => [ | |
40 | + 'class' => 'yii\web\ErrorAction', | |
41 | + ], | |
42 | + 'captcha' => [ | |
43 | + 'class' => 'yii\captcha\CaptchaAction', | |
44 | + 'fixedVerifyCode' => YII_ENV_TEST ? 'testme' : null, | |
45 | + ], | |
46 | + ]; | |
47 | + } | |
48 | + | |
49 | + public function actionProject() | |
50 | + { | |
51 | + return $this->render('project'); | |
52 | + } | |
53 | + | |
54 | + public function actionCompany() | |
55 | + { | |
56 | + return $this->render('company'); | |
57 | + } | |
58 | + | |
59 | + public function actionPerformer() | |
60 | + { | |
61 | + return $this->render('performer'); | |
62 | + } | |
63 | + | |
64 | +} | ... | ... |
1 | +<?php | |
2 | + use common\models\Option; | |
3 | + | |
4 | + $this->title = 'Мой профиль'; | |
5 | +$this->params['breadcrumbs'][] = $this->title; | |
6 | +?> | |
7 | + | |
8 | +<div class="section-box content"> | |
9 | + <div class="section-box-22"> | |
10 | + <div class="box-wr"> | |
11 | + <div class="box-all"> | |
12 | + <div class="left-search-work"> | |
13 | + <div class="search-performer-button-bookmark"><a href="#">Закладки</a></div> | |
14 | + <a href="#" class="search-performer-button-performers">Исполнители</a> | |
15 | + <a href="#" class="search-performer-button-customers">Заказчики</a> | |
16 | + <a href="#" class="search-performer-button-project">Проекты</a> | |
17 | + </div> | |
18 | + <div class="right-search-work"> | |
19 | + <div class="search-worker-title style"><span>Исполнители</span></div> | |
20 | + <div class="search-worker-title-two style">Компании готовые приступить к работе <span>145</span></div> | |
21 | + <div class="search-worker-search-wr style"> | |
22 | + <div class="search-worker-sort-wr style"> | |
23 | + <div class="search-worker-sort">Сортировать: </div> | |
24 | + <ul> | |
25 | + <li class="activejob"> | |
26 | + <a href="#">рейтинг</a> | |
27 | + <div class="sidebar-droped-wr style"> | |
28 | + <ul> | |
29 | + <li><a href="#">1заказчик</a></li> | |
30 | + <li><a href="#">2заказчик</a></li> | |
31 | + <li><a href="#">3заказчик</a></li> | |
32 | + <li><a href="#">4заказчик</a></li> | |
33 | + <li style="display: none"><a href="#">рейтинг</a></li> | |
34 | + </ul> | |
35 | + </div> | |
36 | + </li> | |
37 | + </ul> | |
38 | + </div> | |
39 | + </div> | |
40 | + | |
41 | + <div class="search-company-blocks-wr style"> | |
42 | + <div class="search-company-block"> | |
43 | + <div class="search-company-block-left"> | |
44 | + <div class="search-worker-blocks-title-wr"> | |
45 | + <div class="land-stars-pro">PRO</div> | |
46 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
47 | + </div> | |
48 | + <div class="search-worker-blocks-title-wr"> | |
49 | + <div class="rating-new"> | |
50 | + <!--оценка--> | |
51 | + <input type="hidden" class="val" value="4"/> | |
52 | + </div> | |
53 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
54 | + </div> | |
55 | + <div class="search-worker-blocks-title-wr"> | |
56 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
57 | + </div> | |
58 | + <div class="search-worker-blocks-title-wr"> | |
59 | + <div class="search-company-geography"> | |
60 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
61 | + </div> | |
62 | + </div> | |
63 | + <div class="search-worker-blocks-title-wr"> | |
64 | + <div class="features-tags features-tags-company"> | |
65 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span> | |
66 | + </div> | |
67 | + </div> | |
68 | + <div class="search-worker-blocks-title-wr"> | |
69 | + <div class="search-company-visit"> | |
70 | + <span>Последний визит: </span>2 дня назад | |
71 | + </div> | |
72 | + </div> | |
73 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
74 | + <div class="search-worker-blocks-buttons style"> | |
75 | + <a class="get-project" href="#">Предложить проект</a> | |
76 | + | |
77 | + </div> | |
78 | + </div> | |
79 | + <div class="search-company-block-right"> | |
80 | + <div class="search-worker-blocks-foto-wr"> | |
81 | + <div class="logo-img-search-company-wrapper"> | |
82 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
83 | + <tr> | |
84 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
85 | + </tr> | |
86 | + </table> | |
87 | + </div> | |
88 | + <div class="gallery-box-search gallery-box"> | |
89 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
90 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
91 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
92 | + <div class="gallery-box-hidden"> | |
93 | + <div class="gallery-box-preview"> | |
94 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
95 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
96 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
97 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
98 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
99 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
100 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
101 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
102 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
103 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
104 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
105 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
106 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
107 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
108 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
109 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
110 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
111 | + </div> | |
112 | + <div class="gallery-box-big"> | |
113 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
114 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
115 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
116 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
117 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
118 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
119 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
120 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
121 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
122 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
123 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
124 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
125 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
126 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
127 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
128 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
129 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
130 | + </div> | |
131 | + </div> | |
132 | + </div> | |
133 | + </div> | |
134 | + </div> | |
135 | + </div> | |
136 | + <div class="search-company-block"> | |
137 | + <div class="search-company-block-left"> | |
138 | + <div class="search-worker-blocks-title-wr"> | |
139 | + <div class="land-stars-new">NEW</div> | |
140 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
141 | + </div> | |
142 | + <div class="search-worker-blocks-title-wr"> | |
143 | + <div class="rating-new"> | |
144 | + <!--оценка--> | |
145 | + <input type="hidden" class="val" value="4"/> | |
146 | + </div> | |
147 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
148 | + </div> | |
149 | + <div class="search-worker-blocks-title-wr"> | |
150 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
151 | + </div> | |
152 | + <div class="search-worker-blocks-title-wr"> | |
153 | + <div class="search-company-geography"> | |
154 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
155 | + </div> | |
156 | + </div> | |
157 | + <div class="search-worker-blocks-title-wr"> | |
158 | + <div class="features-tags features-tags-company"> | |
159 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span> | |
160 | + </div> | |
161 | + </div> | |
162 | + <div class="search-worker-blocks-title-wr"> | |
163 | + <div class="search-company-visit"> | |
164 | + <span>Последний визит: </span>2 дня назад | |
165 | + </div> | |
166 | + </div> | |
167 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
168 | + <div class="search-worker-blocks-buttons style"> | |
169 | + <a class="get-project" href="#">Предложить проект</a> | |
170 | + | |
171 | + </div> | |
172 | + </div> | |
173 | + <div class="search-company-block-right"> | |
174 | + <div class="search-worker-blocks-foto-wr"> | |
175 | + <div class="logo-img-search-company-wrapper"> | |
176 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
177 | + <tr> | |
178 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
179 | + </tr> | |
180 | + </table> | |
181 | + </div> | |
182 | + <div class="gallery-box-search gallery-box"> | |
183 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
184 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
185 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
186 | + <div class="gallery-box-hidden"> | |
187 | + <div class="gallery-box-preview"> | |
188 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
189 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
190 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
191 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
192 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
193 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
194 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
195 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
196 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
197 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
198 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
199 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
200 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
201 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
202 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
203 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
204 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
205 | + </div> | |
206 | + <div class="gallery-box-big"> | |
207 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
208 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
209 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
210 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
211 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
212 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
213 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
214 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
215 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
216 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
217 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
218 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
219 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
220 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
221 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
222 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
223 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
224 | + </div> | |
225 | + </div> | |
226 | + </div> | |
227 | + </div> | |
228 | + </div> | |
229 | + </div> | |
230 | + <div class="search-company-block"> | |
231 | + <div class="search-company-block-left"> | |
232 | + <div class="search-worker-blocks-title-wr"> | |
233 | + <div class="land-stars-pro">PRO</div> | |
234 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
235 | + </div> | |
236 | + <div class="search-worker-blocks-title-wr"> | |
237 | + <div class="rating-new"> | |
238 | + <!--оценка--> | |
239 | + <input type="hidden" class="val" value="4"/> | |
240 | + </div> | |
241 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
242 | + </div> | |
243 | + <div class="search-worker-blocks-title-wr"> | |
244 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
245 | + </div> | |
246 | + <div class="search-worker-blocks-title-wr"> | |
247 | + <div class="search-company-geography"> | |
248 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
249 | + </div> | |
250 | + </div> | |
251 | + <div class="search-worker-blocks-title-wr"> | |
252 | + <div class="features-tags features-tags-company"> | |
253 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span> | |
254 | + </div> | |
255 | + </div> | |
256 | + <div class="search-worker-blocks-title-wr"> | |
257 | + <div class="search-company-visit"> | |
258 | + <span>Последний визит: </span>2 дня назад | |
259 | + </div> | |
260 | + </div> | |
261 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
262 | + <div class="search-worker-blocks-buttons style"> | |
263 | + <a class="get-project" href="#">Предложить проект</a> | |
264 | + | |
265 | + </div> | |
266 | + </div> | |
267 | + <div class="search-company-block-right"> | |
268 | + <div class="search-worker-blocks-foto-wr"> | |
269 | + <div class="logo-img-search-company-wrapper"> | |
270 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
271 | + <tr> | |
272 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
273 | + </tr> | |
274 | + </table> | |
275 | + </div> | |
276 | + <div class="gallery-box-search gallery-box"> | |
277 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
278 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
279 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
280 | + <div class="gallery-box-hidden"> | |
281 | + <div class="gallery-box-preview"> | |
282 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
283 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
284 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
285 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
286 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
287 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
288 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
289 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
290 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
291 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
292 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
293 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
294 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
295 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
296 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
297 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
298 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
299 | + </div> | |
300 | + <div class="gallery-box-big"> | |
301 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
302 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
303 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
304 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
305 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
306 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
307 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
308 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
309 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
310 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
311 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
312 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
313 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
314 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
315 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
316 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
317 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
318 | + </div> | |
319 | + </div> | |
320 | + </div> | |
321 | + </div> | |
322 | + </div> | |
323 | + </div> | |
324 | + <div class="search-company-block"> | |
325 | + <div class="search-company-block-left"> | |
326 | + <div class="search-worker-blocks-title-wr"> | |
327 | + <div class="land-stars-pro">PRO</div> | |
328 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
329 | + </div> | |
330 | + <div class="search-worker-blocks-title-wr"> | |
331 | + <div class="rating-new"> | |
332 | + <!--оценка--> | |
333 | + <input type="hidden" class="val" value="4"/> | |
334 | + </div> | |
335 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
336 | + </div> | |
337 | + <div class="search-worker-blocks-title-wr"> | |
338 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
339 | + </div> | |
340 | + <div class="search-worker-blocks-title-wr"> | |
341 | + <div class="search-company-geography"> | |
342 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
343 | + </div> | |
344 | + </div> | |
345 | + <div class="search-worker-blocks-title-wr"> | |
346 | + <div class="features-tags features-tags-company"> | |
347 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span><span><a href="#">2Отделка домов</a>, </span> | |
348 | + </div> | |
349 | + </div> | |
350 | + <div class="search-worker-blocks-title-wr"> | |
351 | + <div class="search-company-visit"> | |
352 | + <span>Последний визит: </span>2 дня назад | |
353 | + </div> | |
354 | + </div> | |
355 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
356 | + <div class="search-worker-blocks-buttons style"> | |
357 | + <a class="get-project" href="#">Предложить проект</a> | |
358 | + | |
359 | + </div> | |
360 | + </div> | |
361 | + <div class="search-company-block-right"> | |
362 | + <div class="search-worker-blocks-foto-wr"> | |
363 | + <div class="logo-img-search-company-wrapper"> | |
364 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
365 | + <tr> | |
366 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
367 | + </tr> | |
368 | + </table> | |
369 | + </div> | |
370 | + <div class="gallery-box-search gallery-box"> | |
371 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
372 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
373 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
374 | + <div class="gallery-box-hidden"> | |
375 | + <div class="gallery-box-preview"> | |
376 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
377 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
378 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
379 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
380 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
381 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
382 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
383 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
384 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
385 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
386 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
387 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
388 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
389 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
390 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
391 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
392 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
393 | + </div> | |
394 | + <div class="gallery-box-big"> | |
395 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
396 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
397 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
398 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
399 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
400 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
401 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
402 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
403 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
404 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
405 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
406 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
407 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
408 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
409 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
410 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
411 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
412 | + </div> | |
413 | + </div> | |
414 | + </div> | |
415 | + </div> | |
416 | + </div> | |
417 | + </div> | |
418 | + <div class="navi-buttons-wr style"> | |
419 | + <ul class="pagination"> | |
420 | + <li><a href="#">1</a></li> | |
421 | + <li><a href="#">2</a></li> | |
422 | + <li><a href="#">3</a></li> | |
423 | + <li><a href="#">4</a></li> | |
424 | + <li><a href="#">5</a></li> | |
425 | + <li class="dots-next"><a href="#">...</a></li> | |
426 | + <li><a href="#">156</a></li> | |
427 | + </ul> | |
428 | + </div> | |
429 | + </div> | |
430 | + | |
431 | + </div> | |
432 | + </div> | |
433 | + </div> | |
434 | + </div> | |
435 | + | |
436 | +</div> | ... | ... |
1 | +<?php | |
2 | + use common\models\Option; | |
3 | + | |
4 | + $this->title = 'Мой профиль'; | |
5 | +$this->params['breadcrumbs'][] = $this->title; | |
6 | +?> | |
7 | + | |
8 | +<div class="section-box content"> | |
9 | + <div class="section-box-15"> | |
10 | + <div class="box-wr"> | |
11 | + <div class="box-all"> | |
12 | + <div class="section-box"> | |
13 | + <div class="cabinet-message-blocks-wr style"> | |
14 | + <div class="cabinet-message-blocks new-message-cabinet-blocks"> | |
15 | + <div class="ico-sender-wrapper"> | |
16 | + <div class="ico-sender"> | |
17 | + <a href="#"><img src="/images/cabinet-message/foto-ico-2.jpg" alt=""/></a> | |
18 | + </div> | |
19 | + </div> | |
20 | + <div class="cabinet-message-text-wrapper"> | |
21 | + <div class="cabinet-message-title">Иванов Иван</div> | |
22 | + <div class="cabinet-message-message"> | |
23 | + <a href="#"> <div class="cabinet-message-message-ico"></div>Сообщения (3), последнее от 25.11.15</a> | |
24 | + </div> | |
25 | + <div class="cabinet-message-status">(Есть непрочитанные)</div> | |
26 | + </div> | |
27 | + <a href="#" class="cabinet-message-write"> | |
28 | + <div class="cabinet-message-write-ico"></div> | |
29 | + <div class="cabinet-message-write-txt">Оставить заметку</div> | |
30 | + </a> | |
31 | + </div> | |
32 | + <div class="cabinet-message-blocks"> | |
33 | + <div class="ico-sender-wrapper"> | |
34 | + <div class="ico-sender"> | |
35 | + <a href="#"><img src="/images/cabinet-message/foto-ico-1.jpg" alt=""/></a> | |
36 | + </div> | |
37 | + </div> | |
38 | + <div class="cabinet-message-text-wrapper"> | |
39 | + <div class="cabinet-message-title">Петров Петр</div> | |
40 | + <div class="cabinet-message-message"> | |
41 | + <a href="#"> <div class="cabinet-message-message-ico"></div>Сообщения</a> | |
42 | + </div> | |
43 | + <div class="cabinet-message-status">(Все прочитаны)</div> | |
44 | + </div> | |
45 | + <a href="#" class="cabinet-message-write"> | |
46 | + <div class="cabinet-message-write-ico"></div> | |
47 | + <div class="cabinet-message-write-txt">Оставить заметку</div> | |
48 | + </a> | |
49 | + </div> | |
50 | + | |
51 | + <div class="cabinet-message-blocks"> | |
52 | + <div class="ico-sender-wrapper"> | |
53 | + <div class="ico-sender"> | |
54 | + <a href="#"><img src="/images/cabinet-message/foto-ico-1.jpg" alt=""/></a> | |
55 | + </div> | |
56 | + </div> | |
57 | + <div class="cabinet-message-text-wrapper"> | |
58 | + <div class="cabinet-message-title">Петров Петр</div> | |
59 | + <div class="cabinet-message-message"> | |
60 | + <a href="#"> <div class="cabinet-message-message-ico"></div>Сообщения</a> | |
61 | + </div> | |
62 | + <div class="cabinet-message-status">(Все прочитаны)</div> | |
63 | + </div> | |
64 | + <a href="#" class="cabinet-message-write"> | |
65 | + <div class="cabinet-message-write-ico"></div> | |
66 | + <div class="cabinet-message-write-txt">Оставить заметку</div> | |
67 | + </a> | |
68 | + </div> | |
69 | + | |
70 | + <div class="cabinet-message-blocks"> | |
71 | + <div class="ico-sender-wrapper"> | |
72 | + <div class="ico-sender"> | |
73 | + <a href="#"><img src="/images/cabinet-message/foto-ico-1.jpg" alt=""/></a> | |
74 | + </div> | |
75 | + </div> | |
76 | + <div class="cabinet-message-text-wrapper"> | |
77 | + <div class="cabinet-message-title">Петров Петр</div> | |
78 | + <div class="cabinet-message-message"> | |
79 | + <a href="#"> <div class="cabinet-message-message-ico"></div>Сообщения</a> | |
80 | + </div> | |
81 | + <div class="cabinet-message-status">(Все прочитаны)</div> | |
82 | + </div> | |
83 | + <a href="#" class="cabinet-message-write"> | |
84 | + <div class="cabinet-message-write-ico"></div> | |
85 | + <div class="cabinet-message-write-txt">Оставить заметку</div> | |
86 | + </a> | |
87 | + </div> | |
88 | + | |
89 | + <div class="navi-buttons-wr style"> | |
90 | + <ul class="pagination"> | |
91 | + <li><a href="#">1</a></li> | |
92 | + <li><a href="#">2</a></li> | |
93 | + <li><a href="#">3</a></li> | |
94 | + <li><a href="#">4</a></li> | |
95 | + <li><a href="#">5</a></li> | |
96 | + <li class="dots-next"><a href="#">...</a></li> | |
97 | + <li><a href="#">156</a></li> | |
98 | + </ul> | |
99 | + </div> | |
100 | + </div> | |
101 | + </div> | |
102 | + </div> | |
103 | + </div> | |
104 | + | |
105 | + </div> | |
106 | + | |
107 | +</div> | ... | ... |
1 | +<?php | |
2 | + use common\models\Option; | |
3 | + | |
4 | + $this->registerJsFile('/js/jscroll.js'); | |
5 | + $this->title = 'Мой профиль'; | |
6 | +$this->params['breadcrumbs'][] = $this->title; | |
7 | +?> | |
8 | + | |
9 | +<div class="section-box content"> | |
10 | + <div class="section-box-15"> | |
11 | + <div class="box-wr"> | |
12 | + <div class="box-all"> | |
13 | + <div class="section-box"> | |
14 | + <div class="cabinet-message-read-autor-wr style"> | |
15 | + <div class="cabinet-message-read-foto-wr"> | |
16 | + <div class="cabinet-message-read-foto"><img src="/images/ded-foto.jpg" alt=""/></div> | |
17 | + </div> | |
18 | + <div class="cab-mes-read-cont"> | |
19 | + <div class="cab-mes-read-cont-title">Петер Цумтор</div> | |
20 | + <div class="cab-mes-read-cont-stars"> | |
21 | + <div class="rating"> | |
22 | + <!--оценка--> | |
23 | + <input type="hidden" class="val" value="4"/> | |
24 | + </div> | |
25 | + </div> | |
26 | + <div class="cab-mes-read-cont-com">30 отзывов</div> | |
27 | + <div class="cab-mes-read-cont-soc"> | |
28 | + <a href="#"><img src="/images/ico-fb.png" alt=""/></a> | |
29 | + <a href="#"><img src="/images/ico-tw.png" alt=""/></a> | |
30 | + <a href="#"><img src="/images/ico-in.png" alt=""/></a> | |
31 | + <a href="#"><img src="/images/ico-vk.png" alt=""/></a> | |
32 | + </div> | |
33 | + </div> | |
34 | + <div class="performance-vacancy-add-favorite"><a href="#"></a></div> | |
35 | + <div class="cab-mes-read-last-visit"> | |
36 | + <!--<div class="cab-mes-read-min-bl-wr">--> | |
37 | + <!--<div class="cab-mes-read-min-bl">--> | |
38 | + <!--<img src="/images/sidebar-ico/ico-2.png" alt=""/><span><span class="sidebar-views-txt">На сайте: </span>1г. 8 мес.</span>--> | |
39 | + <!--</div>--> | |
40 | + <!--</div>--> | |
41 | + <!--<div class="cab-mes-read-min-bl"></div>--> | |
42 | + <!--<div class="cab-mes-read-min-bl cab-mes-visit"></div>--> | |
43 | + <!--<div class="cab-mes-read-min-bl"></div>--> | |
44 | + <div class="cab-mes-read-min-bl"> | |
45 | + <div class="profile-phone-site style"> | |
46 | + <div class="style"> | |
47 | + <div class="profile-phone"> | |
48 | + <img src="/images/sidebar-ico/ico-2.png" alt=""> | |
49 | + <span style="font-size: 13px" class="sidebar-views-txt">На сайте: </span>1г. 8 мес. | |
50 | + </div> | |
51 | + </div> | |
52 | + </div> | |
53 | + </div> | |
54 | + <div class="cab-mes-read-min-bl"> | |
55 | + <div class="profile-phone-site style"> | |
56 | + <div class="style"> | |
57 | + <div class="profile-phone"> | |
58 | + <img src="/images/ico-phone.png" alt=""> | |
59 | + <span>+38 (050) 123-45-67</span> | |
60 | + </div> | |
61 | + </div> | |
62 | + </div> | |
63 | + </div> | |
64 | + <div class="cab-mes-read-min-bl"> | |
65 | + <div class="profile-phone-site style"> | |
66 | + <div class="style"> | |
67 | + <div class="profile-phone"> | |
68 | + <img src="/images/sidebar-ico/ico-3.png" alt=""> | |
69 | + <span style="font-size: 13px" class="sidebar-views-txt">Последний визит:<br></span><p>2 дня назад</p> | |
70 | + </div> | |
71 | + </div> | |
72 | + </div> | |
73 | + </div> | |
74 | + <div class="cab-mes-read-min-bl"> | |
75 | + <div class="profile-phone-site style"> | |
76 | + <div class="style"> | |
77 | + <div class="profile-site"> | |
78 | + <img src="/images/ico-site.png" alt=""> | |
79 | + <a href="#" target="_blank">Сайт</a> | |
80 | + </div> | |
81 | + </div> | |
82 | + </div> | |
83 | + </div> | |
84 | + </div> | |
85 | + </div> | |
86 | + <div class="cabinet-message-read-wr style"> | |
87 | + <div class="comments_block"> | |
88 | + <div class="content"> | |
89 | + <div class="comment left"> | |
90 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
91 | + <div class="comment_text"> | |
92 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
93 | + <div class="comment_time"> | |
94 | + 25.11.15<br> | |
95 | + 15:00 | |
96 | + </div> | |
97 | + </div> | |
98 | + <div style="clear:both;"></div> | |
99 | + </div> | |
100 | + <div class="comment left"> | |
101 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
102 | + <div class="comment_text"> | |
103 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
104 | + <div class="comment_time"> | |
105 | + 25.11.15<br> | |
106 | + 15:00 | |
107 | + </div> | |
108 | + </div> | |
109 | + <div style="clear:both;"></div> | |
110 | + </div> | |
111 | + <div class="comment left"> | |
112 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
113 | + <div class="comment_text"> | |
114 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
115 | + <div class="comment_time"> | |
116 | + 25.11.15<br> | |
117 | + 15:00 | |
118 | + </div> | |
119 | + </div> | |
120 | + <div style="clear:both;"></div> | |
121 | + </div> | |
122 | + <div class="comment left"> | |
123 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
124 | + <div class="comment_text"> | |
125 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
126 | + <div class="comment_time"> | |
127 | + 25.11.15<br> | |
128 | + 15:00 | |
129 | + </div> | |
130 | + </div> | |
131 | + <div style="clear:both;"></div> | |
132 | + </div> | |
133 | + <div class="comment left"> | |
134 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
135 | + <div class="comment_text"> | |
136 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
137 | + <div class="comment_time"> | |
138 | + 25.11.15<br> | |
139 | + 15:00 | |
140 | + </div> | |
141 | + </div> | |
142 | + <div style="clear:both;"></div> | |
143 | + </div> | |
144 | + <div class="comment right"> | |
145 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
146 | + <div class="comment_text"> | |
147 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
148 | + <div class="comment_time"> | |
149 | + 26.11.15<br> | |
150 | + 18:00 | |
151 | + </div> | |
152 | + </div> | |
153 | + <div class="offer_link"><a href="#">Коммерческое предложение</a></div> | |
154 | + <div style="clear:both;"></div> | |
155 | + </div> | |
156 | + <div class="comment right"> | |
157 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
158 | + <div class="comment_text"> | |
159 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
160 | + <div class="comment_time"> | |
161 | + 26.11.15<br> | |
162 | + 18:00 | |
163 | + </div> | |
164 | + </div> | |
165 | + <div class="offer_link"><a href="#">Коммерческое предложение</a></div> | |
166 | + <div style="clear:both;"></div> | |
167 | + </div> | |
168 | + <div class="comment right"> | |
169 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
170 | + <div class="comment_text"> | |
171 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
172 | + <div class="comment_time"> | |
173 | + 26.11.15<br> | |
174 | + 18:00 | |
175 | + </div> | |
176 | + </div> | |
177 | + <div class="offer_link"><a href="#">Коммерческое предложение</a></div> | |
178 | + <div style="clear:both;"></div> | |
179 | + </div> | |
180 | + <div class="comment right"> | |
181 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
182 | + <div class="comment_text"> | |
183 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
184 | + <div class="comment_time"> | |
185 | + 26.11.15<br> | |
186 | + 18:00 | |
187 | + </div> | |
188 | + </div> | |
189 | + <div class="offer_link"><a href="#">Коммерческое предложение</a></div> | |
190 | + <div style="clear:both;"></div> | |
191 | + </div> | |
192 | + <div class="comment left"> | |
193 | + <div class="author_pic"><img src="/images/ded-ico.png"></div> | |
194 | + <div class="comment_text"> | |
195 | + На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов. | |
196 | + <div class="comment_time"> | |
197 | + 25.11.15<br> | |
198 | + 15:00 | |
199 | + </div> | |
200 | + </div> | |
201 | + <div style="clear:both;"></div> | |
202 | + </div> | |
203 | + <div style="height:20px;"></div> | |
204 | + </div> | |
205 | + </div> | |
206 | + <div class="comment_type"> | |
207 | + <form action="" method="post"> | |
208 | + <label>Сообщение</label> | |
209 | + <textarea class="message_text"></textarea> | |
210 | + <input type="submit" class="send_mess_but" value="Отправить"> | |
211 | + <div class="inputfile"> | |
212 | + <div class="file_input_title">Прикрепить файл</div> | |
213 | + <input type="file" class="input_file"> | |
214 | + <div class="input_file_text">Максимальный размер файла 5 МБ</div> | |
215 | + </div> | |
216 | + </form> | |
217 | + </div> | |
218 | + </div> | |
219 | + </div> | |
220 | + </div> | |
221 | + | |
222 | + </div> | |
223 | + | |
224 | + </div> | |
225 | +</div> | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
10 | + <div class="blog-post-wr"> | |
11 | + <div class="blog-post-title style"><p>Как обшить балкон вагонкой своими руками: пошаговая инструкция</p></div> | |
12 | + <div class="blog-post-icons-wr style"> | |
13 | + <div class="blog-post-date"> | |
14 | + <span></span><p>22.09.2015</p> | |
15 | + </div> | |
16 | + <div class="blog-post-views"> | |
17 | + <span></span><p>240</p> | |
18 | + </div> | |
19 | + <div class="blog-post-comm-num"> | |
20 | + <span></span><p>12</p> | |
21 | + </div> | |
22 | + </div> | |
23 | + <div class="blog-post-content style"> | |
24 | + <img src="/images/blog/blog-post-img.jpg" alt=""/> | |
25 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ.</p> | |
26 | + <p>Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно</p> | |
27 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ. Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.</p> | |
28 | + </div> | |
29 | + <a href="#" class="blog-post-see-all style"><span>Подробнее</span></a> | |
30 | + </div> | |
31 | + | |
32 | + <div class="blog-post-wr"> | |
33 | + <div class="blog-post-title style"><p>Как обшить балкон вагонкой своими руками: пошаговая инструкция</p></div> | |
34 | + <div class="blog-post-icons-wr style"> | |
35 | + <div class="blog-post-date"> | |
36 | + <span></span><p>22.09.2015</p> | |
37 | + </div> | |
38 | + <div class="blog-post-views"> | |
39 | + <span></span><p>240</p> | |
40 | + </div> | |
41 | + <div class="blog-post-comm-num"> | |
42 | + <span></span><p>12</p> | |
43 | + </div> | |
44 | + </div> | |
45 | + <div class="blog-post-content style"> | |
46 | + <img src="/images/blog/blog-post-img.jpg" alt=""/> | |
47 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ.</p> | |
48 | + <p>Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно</p> | |
49 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ. Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.</p> | |
50 | + </div> | |
51 | + <a href="#" class="blog-post-see-all style"><span>Подробнее</span></a> | |
52 | + </div> | |
53 | + | |
54 | + <div class="blog-post-wr"> | |
55 | + <div class="blog-post-title style"><p>Как обшить балкон вагонкой своими руками: пошаговая инструкция</p></div> | |
56 | + <div class="blog-post-icons-wr style"> | |
57 | + <div class="blog-post-date"> | |
58 | + <span></span><p>22.09.2015</p> | |
59 | + </div> | |
60 | + <div class="blog-post-views"> | |
61 | + <span></span><p>240</p> | |
62 | + </div> | |
63 | + <div class="blog-post-comm-num"> | |
64 | + <span></span><p>12</p> | |
65 | + </div> | |
66 | + </div> | |
67 | + <div class="blog-post-content style"> | |
68 | + <img src="/images/blog/blog-post-img.jpg" alt=""/> | |
69 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ.</p> | |
70 | + <p>Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно</p> | |
71 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне возможно выполнить своими силами — достаточно иметь в распоряжении необходимые инструменты и владеть базовыми навыками строительно-ремонтных работ. Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.</p> | |
72 | + </div> | |
73 | + <a href="#" class="blog-post-see-all style"><span>Подробнее</span></a> | |
74 | + </div> | |
75 | +</div> | |
76 | +<div class="navi-buttons-wr style"> | |
77 | + <ul class="pagination"> | |
78 | + <li><a href="#">1</a></li> | |
79 | + <li><a href="#">2</a></li> | |
80 | + <li><a href="#">3</a></li> | |
81 | + <li><a href="#">4</a></li> | |
82 | + <li><a href="#">5</a></li> | |
83 | + <li class="dots-next"><a href="#">...</a></li> | |
84 | + <li><a href="#">156</a></li> | |
85 | + </ul> | |
86 | +</div> | |
87 | + | ... | ... |
1 | +<?php | |
2 | + use \yii\helpers\Html; | |
3 | + | |
4 | + /* @var $this yii\web\View */ | |
5 | + $this->title = 'My Yii Application'; | |
6 | +?> | |
7 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
8 | + <div class="blog-post-wr"> | |
9 | + <div class="blog-post-title style"><p>Как обшить балкон вагонкой своими руками: пошаговая | |
10 | + инструкция</p></div> | |
11 | + <div class="blog-post-icons-wr style"> | |
12 | + <div class="blog-post-date"> | |
13 | + <span></span> | |
14 | + <p>22.09.2015</p> | |
15 | + </div> | |
16 | + <div class="blog-post-views"> | |
17 | + <span></span> | |
18 | + <p>240</p> | |
19 | + </div> | |
20 | + <div class="blog-post-comm-num"> | |
21 | + <span></span> | |
22 | + <p>12</p> | |
23 | + </div> | |
24 | + </div> | |
25 | + <div class="blog-post-content style"> | |
26 | + <img src="/images/blog/blog-post-img.jpg" alt=""/> | |
27 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне | |
28 | + возможно выполнить своими силами — достаточно иметь в распоряжении необходимые | |
29 | + инструменты и владеть базовыми навыками строительно-ремонтных работ.</p> | |
30 | + <p>Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из | |
31 | + плотно пригнанных элементов с качественно обработанной поверхностью. Толщина | |
32 | + евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 | |
33 | + мм.Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки | |
34 | + вполне возможно выполнить своими силами — достаточно</p> | |
35 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне | |
36 | + возможно выполнить своими силами — достаточно иметь в распоряжении необходимые | |
37 | + инструменты и владеть базовыми навыками строительно-ремонтных работ. Евровагонка — | |
38 | + удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно | |
39 | + пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки | |
40 | + составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.</p> | |
41 | + | |
42 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне | |
43 | + возможно выполнить своими силами — достаточно иметь в распоряжении необходимые | |
44 | + инструменты и владеть базовыми навыками строительно-ремонтных работ.</p> | |
45 | + <p>Евровагонка — удобная в монтаже фасонная доска, которая позволяет создать обшивку из | |
46 | + плотно пригнанных элементов с качественно обработанной поверхностью. Толщина | |
47 | + евровагонки составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 | |
48 | + мм.Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки | |
49 | + вполне возможно выполнить своими силами — достаточно</p> | |
50 | + <p>Балкон, обшитый вагонкой, выглядит аккуратно, стильно и уютно. Монтаж обшивки вполне | |
51 | + возможно выполнить своими силами — достаточно иметь в распоряжении необходимые | |
52 | + инструменты и владеть базовыми навыками строительно-ремонтных работ. Евровагонка — | |
53 | + удобная в монтаже фасонная доска, которая позволяет создать обшивку из плотно | |
54 | + пригнанных элементов с качественно обработанной поверхностью. Толщина евровагонки | |
55 | + составляет 125 мм, общая ширина (с гребнем) 960 мм, рабочая ширина 880 мм.</p> | |
56 | + </div> | |
57 | + </div> | |
58 | +</div> | |
0 | 59 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="company-performer-title style">О компании</div> | |
10 | +<div class="company-performer-txt style"> | |
11 | + <p>Строительная компания «Познякижилстрой» (официально – это корпорация) хорошо известна на столичном рынке недвижимости. Данный застройщик – единственный в Украине, который имеет сертификаты по трем международным стандартам.</p> | |
12 | + <p>Более миллиона квадратных метров жилья и других строений разного назначения было построено компанией с 1996 года, когда молодая киевская организация начала свой славный путь. Сейчас надежный и уверенный в своих силах застройщик «Познякижилстрой» пополняет свой каталог объектов новостройками, современными ЖК, офисными помещениями, паркингами и многими другими объектами. Корпорация уверенно занимает позиции лидера на украинском строительном рынке.</p> | |
13 | + <p>Новые подходы к проектированию, строительным работам и управлению компанией позволяют «Познякижилстрой» выставлять на продажу качественные квартиры, часть из которых реализуются с ремонтом и по приемлемой цене.</p> | |
14 | + <p>Корпорация «Познякижилстрой» строго придерживается буквы закона, гарантируя персоналу, своим потребителям и обществу выполнение нормативных требований, связанных с экологией, охраной здоровья и качеством выполняемых работ. На официальном сайте компании опубликованы объекты застройщика, есть описание его политики и последние новости.</p> | |
15 | +</div> | |
16 | +<?php | |
17 | + /*====Blocks for layout====*/ | |
18 | + $this->beginBlock('our_objects'); | |
19 | +?> | |
20 | + <div class="section-box-18"> | |
21 | + <div class="box-wr"> | |
22 | + <div class="box-all"> | |
23 | + <div class="company-performer-type-title style">Наши объекты (12)</div> | |
24 | + <div class="settings-map-ul"> | |
25 | + <ul> | |
26 | + <li><a href="#" class="active"><span>Последний год</span></a></li> | |
27 | + <li><a href="#"><span>Последние пять лет</span></a></li> | |
28 | + <li><a href="#"><span>Весь период</span></a></li> | |
29 | + </ul> | |
30 | + </div> | |
31 | + <div class="company-performer-type-map style"> | |
32 | + <div class="section-box-map"> | |
33 | + <div class="shadow-map"></div> | |
34 | + <div id="map_cloud" style="display: none;"> | |
35 | + <script type="text/javascript"> | |
36 | + function initialize() { | |
37 | + var start_position = new google.maps.LatLng('49', '33'); | |
38 | + var settings = { | |
39 | + zoom: 7, | |
40 | + scrollwheel: true, | |
41 | + center: start_position, | |
42 | + mapTypeControl: false, | |
43 | + mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, | |
44 | + navigationControl: false, | |
45 | + navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}, | |
46 | + scaleControl: false, | |
47 | + streetViewControl: false, | |
48 | + rotateControl: false, | |
49 | + zoomControl:true, | |
50 | + mapTypeId: google.maps.MapTypeId.ROADMAP}; | |
51 | + var map = new google.maps.Map(document.getElementById("map_canvas"), settings); | |
52 | + | |
53 | + | |
54 | + var image1 = new google.maps.MarkerImage('/images/markers/marker-we-1.png', | |
55 | + new google.maps.Size(21, 32), | |
56 | + new google.maps.Point(0,0), | |
57 | + new google.maps.Point(16, 35) | |
58 | + ); | |
59 | + var image2 = new google.maps.MarkerImage('/images/markers/marker-we-2.png', | |
60 | + new google.maps.Size(21, 32), | |
61 | + new google.maps.Point(0,0), | |
62 | + new google.maps.Point(16, 35) | |
63 | + ); | |
64 | + var image3 = new google.maps.MarkerImage('/images/markers/marker-we-3.png', | |
65 | + new google.maps.Size(21, 32), | |
66 | + new google.maps.Point(0,0), | |
67 | + new google.maps.Point(16, 35) | |
68 | + ); | |
69 | + var image4 = new google.maps.MarkerImage('/images/markers/marker-we-4.png', | |
70 | + new google.maps.Size(21, 32), | |
71 | + new google.maps.Point(0,0), | |
72 | + new google.maps.Point(16, 35) | |
73 | + ); | |
74 | + var image5 = new google.maps.MarkerImage('/images/markers/marker-we-5.png', | |
75 | + new google.maps.Size(21, 32), | |
76 | + new google.maps.Point(0,0), | |
77 | + new google.maps.Point(16, 35) | |
78 | + ); | |
79 | + var image6 = new google.maps.MarkerImage('/images/markers/marker-we-6.png', | |
80 | + new google.maps.Size(21, 32), | |
81 | + new google.maps.Point(0,0), | |
82 | + new google.maps.Point(16, 35) | |
83 | + ); | |
84 | + var image7 = new google.maps.MarkerImage('/images/markers/marker-we-7.png', | |
85 | + new google.maps.Size(21, 32), | |
86 | + new google.maps.Point(0,0), | |
87 | + new google.maps.Point(16, 35) | |
88 | + ); | |
89 | + var image8 = new google.maps.MarkerImage('/images/markers/marker-we-8.png', | |
90 | + new google.maps.Size(21, 32), | |
91 | + new google.maps.Point(0,0), | |
92 | + new google.maps.Point(16, 35) | |
93 | + ); | |
94 | + var image9 = new google.maps.MarkerImage('/images/markers/marker-we-9.png', | |
95 | + new google.maps.Size(21, 32), | |
96 | + new google.maps.Point(0,0), | |
97 | + new google.maps.Point(16, 35) | |
98 | + ); | |
99 | + var image10 = new google.maps.MarkerImage('/images/markers/marker-empl-1.png', | |
100 | + new google.maps.Size(21, 32), | |
101 | + new google.maps.Point(0,0), | |
102 | + new google.maps.Point(16, 35) | |
103 | + ); | |
104 | + var image11 = new google.maps.MarkerImage('/images/markers/marker-empl-2.png', | |
105 | + new google.maps.Size(21, 32), | |
106 | + new google.maps.Point(0,0), | |
107 | + new google.maps.Point(16, 35) | |
108 | + ); | |
109 | + var image12 = new google.maps.MarkerImage('/images/markers/marker-empl-3.png', | |
110 | + new google.maps.Size(21, 32), | |
111 | + new google.maps.Point(0,0), | |
112 | + new google.maps.Point(16, 35) | |
113 | + ); | |
114 | + var image13 = new google.maps.MarkerImage('/images/markers/marker-empl-4.png', | |
115 | + new google.maps.Size(21, 32), | |
116 | + new google.maps.Point(0,0), | |
117 | + new google.maps.Point(16, 35) | |
118 | + ); | |
119 | + var image14 = new google.maps.MarkerImage('/images/markers/marker-empl-5.png', | |
120 | + new google.maps.Size(21, 32), | |
121 | + new google.maps.Point(0,0), | |
122 | + new google.maps.Point(16, 35) | |
123 | + ); | |
124 | + var image15 = new google.maps.MarkerImage('/images/markers/marker-empl-6.png', | |
125 | + new google.maps.Size(21, 32), | |
126 | + new google.maps.Point(0,0), | |
127 | + new google.maps.Point(16, 35) | |
128 | + ); | |
129 | + var image16 = new google.maps.MarkerImage('/images/markers/marker-empl-7.png', | |
130 | + new google.maps.Size(21, 32), | |
131 | + new google.maps.Point(0,0), | |
132 | + new google.maps.Point(16, 35) | |
133 | + ); | |
134 | + var image17 = new google.maps.MarkerImage('/images/markers/marker-empl-8.png', | |
135 | + new google.maps.Size(21, 32), | |
136 | + new google.maps.Point(0,0), | |
137 | + new google.maps.Point(16, 35) | |
138 | + ); | |
139 | + var image18 = new google.maps.MarkerImage('/images/markers/marker-empl-9.png', | |
140 | + new google.maps.Size(21, 32), | |
141 | + new google.maps.Point(0,0), | |
142 | + new google.maps.Point(16, 35) | |
143 | + ); | |
144 | + | |
145 | + var markers = []; | |
146 | + | |
147 | + var marker = new google.maps.Marker({ | |
148 | + position: new google.maps.LatLng('49', '32.3'), | |
149 | + map: map, | |
150 | + title: 'Marker Title2', | |
151 | + icon: image1 | |
152 | + }); | |
153 | + markers.push(marker); | |
154 | + | |
155 | + var marker = new google.maps.Marker({ | |
156 | + position: new google.maps.LatLng('49', '36'), | |
157 | + map: map, | |
158 | + title: 'Marker Title2', | |
159 | + icon: image2 | |
160 | + }); | |
161 | + markers.push(marker); | |
162 | + | |
163 | + var marker = new google.maps.Marker({ | |
164 | + position: new google.maps.LatLng('49', '34.5'), | |
165 | + map: map, | |
166 | + title: 'Marker Title3', | |
167 | + icon: image18 | |
168 | + }); | |
169 | + markers.push(marker); | |
170 | + | |
171 | + var marker = new google.maps.Marker({ | |
172 | + position: new google.maps.LatLng('49', '35'), | |
173 | + map: map, | |
174 | + title: 'Marker Title4', | |
175 | + icon: image15 | |
176 | + }); | |
177 | + markers.push(marker); | |
178 | + | |
179 | + | |
180 | + var clusterStyles = [ | |
181 | + { | |
182 | + url: '/images/markers/clasters.png', | |
183 | + height: 36, | |
184 | + width: 36 | |
185 | + } | |
186 | + | |
187 | + ]; | |
188 | + markerClusterer = new MarkerClusterer(map, markers, | |
189 | + { | |
190 | + maxZoom: 10, | |
191 | + gridSize: 100, | |
192 | + styles: clusterStyles | |
193 | + }); | |
194 | + } | |
195 | + </script> | |
196 | + </div> | |
197 | + <div id="map_canvas" style="width: 100%; height:100%;"></div> | |
198 | + <div class="company-performer-map-menu"> | |
199 | + | |
200 | + <ul class="content-menu-first"> | |
201 | + <li> | |
202 | + <span data-menu-bg="#bb0f3f" style="background: #bb0f3f"></span><a href="#">Жилые</a> | |
203 | + <ul> | |
204 | + <li><a href="#">Жилые дома</a></li> | |
205 | + <li><a href="#">Виллы</a></li> | |
206 | + <li><a href="#">Коттеджи</a></li> | |
207 | + <li><a href="#">Гостиницы</a></li> | |
208 | + <li><a href="#">Базы отдыха</a></li> | |
209 | + <li><a href="#">Таунхаусы</a></li> | |
210 | + <li><a href="#">Квартиры</a></li> | |
211 | + <li><a href="#">Квартиры</a></li> | |
212 | + <li><a href="#">Квартиры</a></li> | |
213 | + </ul> | |
214 | + </li> | |
215 | + <li> | |
216 | + <span data-menu-bg="#ea640b" style="background: #ea640b"></span><a href="#">Офисные</a> | |
217 | + <ul> | |
218 | + <li><a href="#">Коттеджи</a></li> | |
219 | + <li><a href="#">Гостиницы</a></li> | |
220 | + <li><a href="#">Базы отдыха</a></li> | |
221 | + </ul> | |
222 | + </li> | |
223 | + <li><span data-menu-bg="#f7a901" style="background: #f7a901"></span><a href="#">Торговые</a></li> | |
224 | + <li><span data-menu-bg="#53a827" style="background: #53a827"></span><a href="#">Мосты</a></li> | |
225 | + <li><span data-menu-bg="#018232" style="background: #018232"></span><a href="#">Дороги</a></li> | |
226 | + <li><span data-menu-bg="#02857d" style="background: #02857d"></span><a href="#">Сооружения</a></li> | |
227 | + <li><span data-menu-bg="#019abf" style="background: #019abf"></span><a href="#">Склады</a></li> | |
228 | + <li><span data-menu-bg="#116da8" style="background: #116da8"></span><a href="#">Заводы</a></li> | |
229 | + <li><span data-menu-bg="#413e7f" style="background: #413e7f"></span><a href="#">Разное</a></li> | |
230 | + </ul> | |
231 | + | |
232 | + </div> | |
233 | + </div> | |
234 | + </div> | |
235 | + </div> | |
236 | + </div> | |
237 | + </div> | |
238 | +<?php | |
239 | + $this->endBlock(); | |
240 | + $this->beginBlock('blog'); | |
241 | +?> | |
242 | + <div class="section-box-232"> | |
243 | + <div class="box-wr"> | |
244 | + <div class="box-all"> | |
245 | + <div class="min-post-wr"> | |
246 | + <div class="min-post-block"> | |
247 | + <a href="#"><img src="/images/post-pic1.jpg" alt=""/></a> | |
248 | + <div class="min-post-txt"> | |
249 | + <div class="blog-post-icons-wr style"> | |
250 | + <div class="blog-post-date"> | |
251 | + <span></span><p>22.09.2015</p> | |
252 | + </div> | |
253 | + <div class="blog-post-views"> | |
254 | + <span></span><p>240</p> | |
255 | + </div> | |
256 | + <div class="blog-post-comm-num"> | |
257 | + <span></span><p>12</p> | |
258 | + </div> | |
259 | + </div> | |
260 | + <a href="#">Как обшить балкон | |
261 | + вагонкой своими руками: | |
262 | + пошаговая инструкция</a> | |
263 | + </div> | |
264 | + </div> | |
265 | + <div class="min-post-block"> | |
266 | + <a href="#"><img src="/images/post-pic2.jpg" alt=""/></a> | |
267 | + <div class="min-post-txt"> | |
268 | + <div class="blog-post-icons-wr style"> | |
269 | + <div class="blog-post-date"> | |
270 | + <span></span><p>22.09.2015</p> | |
271 | + </div> | |
272 | + <div class="blog-post-views"> | |
273 | + <span></span><p>240</p> | |
274 | + </div> | |
275 | + <div class="blog-post-comm-num"> | |
276 | + <span></span><p>12</p> | |
277 | + </div> | |
278 | + </div> | |
279 | + <a href="#">Натуральные компоненты | |
280 | + в защитных пропитках для | |
281 | + древесины: природа сама | |
282 | + о себе заботится | |
283 | + </a> | |
284 | + </div> | |
285 | + </div> | |
286 | + </div> | |
287 | + </div> | |
288 | + </div> | |
289 | + </div> | |
290 | +<?php | |
291 | + $this->endBlock(); | |
292 | + $this->beginBlock('team'); | |
293 | +?> | |
294 | + <div class="section-box-233"> | |
295 | + <div class="box-wr"> | |
296 | + <div class="box-all"> | |
297 | + <div class="table-team-title style">Состав команды</div> | |
298 | + <div class="table-team-wr style"> | |
299 | + <div class="table-team-left"> | |
300 | + <div class="tb-team-wr"> | |
301 | + <table class="title-table" cellspacing="0" cellpadding="0" border="0"> | |
302 | + <tr> | |
303 | + <td width="337">Административный</td> | |
304 | + <td align="center">(26 лет)</td> | |
305 | + </tr> | |
306 | + </table> | |
307 | + | |
308 | + <table class="all-table-first" cellspacing="0" cellpadding="0" border="0"> | |
309 | + <tr> | |
310 | + <td align="center" width="32"></td> | |
311 | + <td align="center" width="323">Ф.И.О.</td> | |
312 | + <td align="center" width="91">Опыт, лет</td> | |
313 | + </tr> | |
314 | + </table> | |
315 | + | |
316 | + <table class="all-table" cellspacing="0" cellpadding="0" border="0"> | |
317 | + <tr> | |
318 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
319 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
320 | + <td align="center" width="91">22</td> | |
321 | + </tr> | |
322 | + | |
323 | + <tr> | |
324 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
325 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
326 | + <td align="center" width="91">1</td> | |
327 | + </tr> | |
328 | + | |
329 | + <tr> | |
330 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
331 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
332 | + <td align="center" width="91">3</td> | |
333 | + </tr> | |
334 | + </table> | |
335 | + </div> | |
336 | + <div class="tb-team-wr"> | |
337 | + <table class="title-table" cellspacing="0" cellpadding="0" border="0"> | |
338 | + <tr> | |
339 | + <td width="337">Административный</td> | |
340 | + <td align="center">(26 лет)</td> | |
341 | + </tr> | |
342 | + </table> | |
343 | + | |
344 | + <table class="all-table-first" cellspacing="0" cellpadding="0" border="0"> | |
345 | + <tr> | |
346 | + <td align="center" width="32"></td> | |
347 | + <td align="center" width="323">Ф.И.О.</td> | |
348 | + <td align="center" width="91">Опыт, лет</td> | |
349 | + </tr> | |
350 | + </table> | |
351 | + | |
352 | + <table class="all-table" cellspacing="0" cellpadding="0" border="0"> | |
353 | + <tr> | |
354 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
355 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
356 | + <td align="center" width="91">22</td> | |
357 | + </tr> | |
358 | + | |
359 | + <tr> | |
360 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
361 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
362 | + <td align="center" width="91">1</td> | |
363 | + </tr> | |
364 | + | |
365 | + <tr> | |
366 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
367 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
368 | + <td align="center" width="91">3</td> | |
369 | + </tr> | |
370 | + | |
371 | + <tr> | |
372 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
373 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
374 | + <td align="center" width="91">10</td> | |
375 | + </tr> | |
376 | + | |
377 | + <tr> | |
378 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
379 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
380 | + <td align="center" width="91">1</td> | |
381 | + </tr> | |
382 | + </table> | |
383 | + </div> | |
384 | + <div class="tb-team-wr"> | |
385 | + <table class="title-table" cellspacing="0" cellpadding="0" border="0"> | |
386 | + <tr> | |
387 | + <td width="337">Административный</td> | |
388 | + <td align="center">(26 лет)</td> | |
389 | + </tr> | |
390 | + </table> | |
391 | + | |
392 | + <table class="all-table-first" cellspacing="0" cellpadding="0" border="0"> | |
393 | + <tr> | |
394 | + <td align="center" width="32"></td> | |
395 | + <td align="center" width="323">Ф.И.О.</td> | |
396 | + <td align="center" width="91">Опыт, лет</td> | |
397 | + </tr> | |
398 | + </table> | |
399 | + | |
400 | + <table class="all-table" cellspacing="0" cellpadding="0" border="0"> | |
401 | + <tr> | |
402 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
403 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
404 | + <td align="center" width="91">22</td> | |
405 | + </tr> | |
406 | + | |
407 | + <tr> | |
408 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
409 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
410 | + <td align="center" width="91">1</td> | |
411 | + </tr> | |
412 | + | |
413 | + <tr> | |
414 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
415 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
416 | + <td align="center" width="91">3</td> | |
417 | + </tr> | |
418 | + </table> | |
419 | + </div> | |
420 | + </div> | |
421 | + <div class="table-team-right"> | |
422 | + <div class="tb-team-wr"> | |
423 | + <table class="title-table" cellspacing="0" cellpadding="0" border="0"> | |
424 | + <tr> | |
425 | + <td width="337">Административный</td> | |
426 | + <td align="center">(26 лет)</td> | |
427 | + </tr> | |
428 | + </table> | |
429 | + | |
430 | + <table class="all-table-first" cellspacing="0" cellpadding="0" border="0"> | |
431 | + <tr> | |
432 | + <td align="center" width="32"></td> | |
433 | + <td align="center" width="323">Ф.И.О.</td> | |
434 | + <td align="center" width="91">Опыт, лет</td> | |
435 | + </tr> | |
436 | + </table> | |
437 | + | |
438 | + <table class="all-table" cellspacing="0" cellpadding="0" border="0"> | |
439 | + <tr> | |
440 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
441 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
442 | + <td align="center" width="91">22</td> | |
443 | + </tr> | |
444 | + | |
445 | + <tr> | |
446 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
447 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
448 | + <td align="center" width="91">1</td> | |
449 | + </tr> | |
450 | + | |
451 | + <tr> | |
452 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
453 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
454 | + <td align="center" width="91">3</td> | |
455 | + </tr> | |
456 | + | |
457 | + <tr> | |
458 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
459 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
460 | + <td align="center" width="91">3</td> | |
461 | + </tr> | |
462 | + </table> | |
463 | + </div> | |
464 | + | |
465 | + <div class="tb-team-wr"> | |
466 | + <table class="title-table" cellspacing="0" cellpadding="0" border="0"> | |
467 | + <tr> | |
468 | + <td width="337">Административный</td> | |
469 | + <td align="center">(26 лет)</td> | |
470 | + </tr> | |
471 | + </table> | |
472 | + | |
473 | + <table class="all-table-first" cellspacing="0" cellpadding="0" border="0"> | |
474 | + <tr> | |
475 | + <td align="center" width="32"></td> | |
476 | + <td align="center" width="323">Ф.И.О.</td> | |
477 | + <td align="center" width="91">Опыт, лет</td> | |
478 | + </tr> | |
479 | + </table> | |
480 | + | |
481 | + <table class="all-table" cellspacing="0" cellpadding="0" border="0"> | |
482 | + <tr> | |
483 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-1.jpg" alt=""/></td> | |
484 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
485 | + <td align="center" width="91">22</td> | |
486 | + </tr> | |
487 | + | |
488 | + <tr> | |
489 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-2.jpg" alt=""/></td> | |
490 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
491 | + <td align="center" width="91">1</td> | |
492 | + </tr> | |
493 | + | |
494 | + <tr> | |
495 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
496 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
497 | + <td align="center" width="91">3</td> | |
498 | + </tr> | |
499 | + | |
500 | + <tr> | |
501 | + <td align="center" width="32"><img src="/images/portfolio-project/flag-img-3.jpg" alt=""/></td> | |
502 | + <td align="center" width="323">Петриченко Дмитрий Николаевич</td> | |
503 | + <td align="center" width="91">3</td> | |
504 | + </tr> | |
505 | + </table> | |
506 | + </div> | |
507 | + </div> | |
508 | + </div> | |
509 | + </div> | |
510 | + </div> | |
511 | + </div> | |
512 | +<?php | |
513 | + $this->endBlock(); | |
514 | + $this->beginBlock('review'); | |
515 | +?> | |
516 | + <div class="section-box-19"> | |
517 | + <div class="box-wr"> | |
518 | + <div class="box-all"> | |
519 | + <div class="company-performer-comm-title style">Отзывов: 54</div> | |
520 | + <div class="company-performer-comments-wr style"> | |
521 | + <div class="company-performer-comments-bl"> | |
522 | + <div class="rating"> | |
523 | + <!--оценка--> | |
524 | + <input type="hidden" class="val" value="3"/> | |
525 | + <!--количество голосов--> | |
526 | + <input type="hidden" class="votes" value="12"/> | |
527 | + </div> | |
528 | + | |
529 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
530 | + <div class="company-performer-comments-txt"></div> | |
531 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
532 | + </div> | |
533 | + | |
534 | + <div class="company-performer-comments-bl"> | |
535 | + <div class="rating"> | |
536 | + <!--оценка--> | |
537 | + <input type="hidden" class="val" value="2"/> | |
538 | + <!--количество голосов--> | |
539 | + <input type="hidden" class="votes" value="12"/> | |
540 | + </div> | |
541 | + | |
542 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
543 | + <div class="company-performer-comments-txt">2Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения.</div> | |
544 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
545 | + </div> | |
546 | + | |
547 | + <div class="company-performer-comments-bl"> | |
548 | + <div class="rating"> | |
549 | + <!--оценка--> | |
550 | + <input type="hidden" class="val" value="4"/> | |
551 | + <!--количество голосов--> | |
552 | + <input type="hidden" class="votes" value="12"/> | |
553 | + </div> | |
554 | + | |
555 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
556 | + <div class="company-performer-comments-txt">3Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. | |
557 | + </div> | |
558 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
559 | + </div> | |
560 | + | |
561 | + <div class="company-performer-comments-bl"> | |
562 | + <div class="rating"> | |
563 | + <!--оценка--> | |
564 | + <input type="hidden" class="val" value="5"/> | |
565 | + <!--количество голосов--> | |
566 | + <input type="hidden" class="votes" value="12"/> | |
567 | + </div> | |
568 | + | |
569 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
570 | + <div class="company-performer-comments-txt">4Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. | |
571 | + </div> | |
572 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
573 | + </div> | |
574 | + </div> | |
575 | + <div class="company-performer-comm-see-all-butt style"><a href="#">Читать все отзывы</a></div> | |
576 | + </div> | |
577 | + </div> | |
578 | + </div> | |
579 | +<?php | |
580 | + $this->endBlock(); | |
581 | + /*====End blocks for layout====*/ | |
582 | +?> | |
0 | 583 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="video-performer-wrapper style"> | |
10 | + <div class="gallery-title">Видео: 12</div> | |
11 | + <div class="slider-video-wr"> | |
12 | + <div id="demo5" class="scroll-img video-slider"> | |
13 | + <ul> | |
14 | + <li> | |
15 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
16 | + | |
17 | + <a href="#"></a><span></span> | |
18 | + </li> | |
19 | + <li> | |
20 | + <div class="iframe-video"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/0wAgwxcO1HY" frameborder="0" allowfullscreen></iframe></div> | |
21 | + <a href="#"></a><span></span> | |
22 | + </li> | |
23 | + | |
24 | + <li> | |
25 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
26 | + <a href="#"></a><span></span> | |
27 | + </li> | |
28 | + <li> | |
29 | + <div class="iframe-video"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/0wAgwxcO1HY" frameborder="0" allowfullscreen></iframe></div> | |
30 | + <a href="#"></a><span></span> | |
31 | + </li> | |
32 | + | |
33 | + <li> | |
34 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
35 | + <a href="#"></a><span></span> | |
36 | + </li> | |
37 | + </ul> | |
38 | + </div> | |
39 | + <div id="demo5-btn" class="text-center"> | |
40 | + <button class="btn" id="demo5-backward"></button> | |
41 | + <button class="btn" id="demo5-forward"></button> | |
42 | + </div> | |
43 | + </div> | |
44 | + | |
45 | + | |
46 | +</div> | |
47 | +<div class="gallery-performer-wrapper style"> | |
48 | + <div class="gallery-title">Фото: 130</div> | |
49 | + <div class="gallery-performer-margin"> | |
50 | + <div class="gallery-box"> | |
51 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
52 | + <div class="gallery-box-hidden"> | |
53 | + <div class="gallery-box-preview"> | |
54 | + <span data-link="images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
55 | + <span data-link="images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
56 | + <span data-link="images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
57 | + <span data-link="images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
58 | + <span data-link="images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
59 | + <span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
60 | + <span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
61 | + <span data-link="images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
62 | + <span data-link="images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
63 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-10.jpg"></span>--> | |
64 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-1.jpg"></span>--> | |
65 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-2.jpg"></span>--> | |
66 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-3.jpg"></span>--> | |
67 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-4.jpg"></span>--> | |
68 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-5.jpg"></span>--> | |
69 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span>--> | |
70 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span>--> | |
71 | + | |
72 | + </div> | |
73 | + <div class="gallery-box-big"> | |
74 | + <span data-link="images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
75 | + <span data-link="images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
76 | + <span data-link="images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
77 | + <span data-link="images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
78 | + <span data-link="images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
79 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
80 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
81 | + <span data-link="images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
82 | + <span data-link="images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
83 | + <span data-link="images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
84 | + <span data-link="images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
85 | + <span data-link="images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
86 | + <span data-link="images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
87 | + <span data-link="images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
88 | + <span data-link="images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
89 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
90 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
91 | + </div> | |
92 | + </div> | |
93 | + </div> | |
94 | + | |
95 | + <div class="gallery-box"> | |
96 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
97 | + <div class="gallery-box-hidden"> | |
98 | + <div class="gallery-box-preview"> | |
99 | + <span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
100 | + <span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
101 | + <span data-link="images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
102 | + <span data-link="images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
103 | + <span data-link="images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
104 | + | |
105 | + </div> | |
106 | + <div class="gallery-box-big"> | |
107 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
108 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
109 | + <span data-link="images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
110 | + <span data-link="images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
111 | + <span data-link="images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
112 | + </div> | |
113 | + </div> | |
114 | + </div> | |
115 | + | |
116 | + <div class="gallery-box"> | |
117 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
118 | + </div> | |
119 | + <div class="gallery-box"> | |
120 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
121 | + </div> | |
122 | + <div class="gallery-box"> | |
123 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
124 | + </div> | |
125 | + <div class="gallery-box"> | |
126 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
127 | + </div> | |
128 | + <div class="gallery-box"> | |
129 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
130 | + </div> | |
131 | + <div class="gallery-box"> | |
132 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
133 | + </div> | |
134 | + <div class="gallery-box"> | |
135 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
136 | + </div> | |
137 | + <div class="gallery-box"> | |
138 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
139 | + </div> | |
140 | + <div class="gallery-box"> | |
141 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
142 | + </div> | |
143 | + <div class="gallery-box"> | |
144 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
145 | + </div> | |
146 | + </div> | |
147 | + | |
148 | + <div class="navi-buttons-wr style gallery-style"> | |
149 | + <ul class="pagination"> | |
150 | + <li><a href="#">1</a></li> | |
151 | + <li><a href="#">2</a></li> | |
152 | + <li><a href="#">3</a></li> | |
153 | + <li><a href="#">4</a></li> | |
154 | + <li><a href="#">5</a></li> | |
155 | + <li class="dots-next"><a href="#">...</a></li> | |
156 | + <li><a href="#">156</a></li> | |
157 | + </ul> | |
158 | + </div> | |
159 | + | |
160 | +</div> | |
0 | 161 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
10 | + <div class="portfolio-project-wr style"> | |
11 | + <div class="workplace-title style"><p>Проектов: 1054</p></div> | |
12 | + <div class="portfolio-project-tags style"> | |
13 | + <a href="#" class="active-tag">Все</a><a href="#">Дизайн интерьера (340)</a><a href="#">Архитектурное проектирование (15)</a><a href="#">3D-визуализация (155)</a><a href="#">Изготовление мебели (5)</a><a href="#">Декорирование стекол и зеркал (14)</a> | |
14 | + <a href="#">Ремонт квартиры под ключ (7)</a><a href="#">Строительство домов под ключ (12)</a><a href="#">Декорирование интерьера (30)</a><a href="#">Декорирование стен (5)</a> | |
15 | + </div> | |
16 | + </div> | |
17 | + <div class="style"> | |
18 | + <div class="portfolio-project-blocks-wrapper"> | |
19 | + <div class="portfolio-project-blocks-wr"> | |
20 | + <div class="portfolio-project-blocks-img-title"> | |
21 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-1.jpg" alt=""/></a></div> | |
22 | + <div class="portfolio-project-blocks-title-wr"> | |
23 | + <div class="portfolio-project-blocks-title"> | |
24 | + <a href="#">Отделка дома из бруса</a> | |
25 | + </div> | |
26 | + </div> | |
27 | + </div> | |
28 | + <div class="portfolio-project-views-wr"> | |
29 | + <div class="portfolio-project-views ico-views-bl"> | |
30 | + <div class="portfolio-project-views-img-wr"> | |
31 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
32 | + </div> | |
33 | + <div class="portfolio-project-views-txt">127</div> | |
34 | + </div> | |
35 | + <div class="portfolio-project-rati ico-views-bl"> | |
36 | + <div class="portfolio-project-views-img-wr"> | |
37 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
38 | + </div> | |
39 | + <div class="portfolio-project-views-txt">10.0</div> | |
40 | + </div> | |
41 | + <div class="ico-views-bl"> | |
42 | + <div class="portfolio-project-views-img-wr"> | |
43 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
44 | + </div> | |
45 | + <div class="portfolio-project-views-txt">14</div> | |
46 | + </div> | |
47 | + </div> | |
48 | + <div class="portfolio-project-blocks-tags"><a href="#">Деревянные дома</a></div> | |
49 | + </div> | |
50 | + <div class="portfolio-project-blocks-wr"> | |
51 | + <div class="portfolio-project-blocks-img-title"> | |
52 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-2.jpg" alt=""/></a></div> | |
53 | + <div class="portfolio-project-blocks-title-wr"> | |
54 | + <div class="portfolio-project-blocks-title"> | |
55 | + <a href="#">Квартира - студия в современном стиле </a> | |
56 | + </div> | |
57 | + </div> | |
58 | + </div> | |
59 | + <div class="portfolio-project-views-wr"> | |
60 | + <div class="portfolio-project-views ico-views-bl"> | |
61 | + <div class="portfolio-project-views-img-wr"> | |
62 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
63 | + </div> | |
64 | + <div class="portfolio-project-views-txt">127</div> | |
65 | + </div> | |
66 | + <div class="portfolio-project-rati ico-views-bl"> | |
67 | + <div class="portfolio-project-views-img-wr"> | |
68 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
69 | + </div> | |
70 | + <div class="portfolio-project-views-txt">10.0</div> | |
71 | + </div> | |
72 | + <div class="ico-views-bl"> | |
73 | + <div class="portfolio-project-views-img-wr"> | |
74 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
75 | + </div> | |
76 | + <div class="portfolio-project-views-txt">14</div> | |
77 | + </div> | |
78 | + </div> | |
79 | + <div class="portfolio-project-blocks-tags"><a href="#">Дизайн интерьера</a></div> | |
80 | + </div> | |
81 | + <div class="portfolio-project-blocks-wr"> | |
82 | + <div class="portfolio-project-blocks-img-title"> | |
83 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-1.jpg" alt=""/></a></div> | |
84 | + <div class="portfolio-project-blocks-title-wr"> | |
85 | + <div class="portfolio-project-blocks-title"> | |
86 | + <a href="#">Отделка дома из бруса</a> | |
87 | + </div> | |
88 | + </div> | |
89 | + </div> | |
90 | + <div class="portfolio-project-views-wr"> | |
91 | + <div class="portfolio-project-views ico-views-bl"> | |
92 | + <div class="portfolio-project-views-img-wr"> | |
93 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
94 | + </div> | |
95 | + <div class="portfolio-project-views-txt">127</div> | |
96 | + </div> | |
97 | + <div class="portfolio-project-rati ico-views-bl"> | |
98 | + <div class="portfolio-project-views-img-wr"> | |
99 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
100 | + </div> | |
101 | + <div class="portfolio-project-views-txt">10.0</div> | |
102 | + </div> | |
103 | + <div class="ico-views-bl"> | |
104 | + <div class="portfolio-project-views-img-wr"> | |
105 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
106 | + </div> | |
107 | + <div class="portfolio-project-views-txt">14</div> | |
108 | + </div> | |
109 | + </div> | |
110 | + <div class="portfolio-project-blocks-tags"><a href="#">Деревянные дома</a></div> | |
111 | + </div> | |
112 | + <div class="portfolio-project-blocks-wr"> | |
113 | + <div class="portfolio-project-blocks-img-title"> | |
114 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-2.jpg" alt=""/></a></div> | |
115 | + <div class="portfolio-project-blocks-title-wr"> | |
116 | + <div class="portfolio-project-blocks-title"> | |
117 | + <a href="#">Квартира - студия в современном стиле </a> | |
118 | + </div> | |
119 | + </div> | |
120 | + </div> | |
121 | + <div class="portfolio-project-views-wr"> | |
122 | + <div class="portfolio-project-views ico-views-bl"> | |
123 | + <div class="portfolio-project-views-img-wr"> | |
124 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
125 | + </div> | |
126 | + <div class="portfolio-project-views-txt">127</div> | |
127 | + </div> | |
128 | + <div class="portfolio-project-rati ico-views-bl"> | |
129 | + <div class="portfolio-project-views-img-wr"> | |
130 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
131 | + </div> | |
132 | + <div class="portfolio-project-views-txt">10.0</div> | |
133 | + </div> | |
134 | + <div class="ico-views-bl"> | |
135 | + <div class="portfolio-project-views-img-wr"> | |
136 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
137 | + </div> | |
138 | + <div class="portfolio-project-views-txt">14</div> | |
139 | + </div> | |
140 | + </div> | |
141 | + <div class="portfolio-project-blocks-tags"><a href="#">Дизайн интерьера</a></div> | |
142 | + </div> | |
143 | + <div class="portfolio-project-blocks-wr"> | |
144 | + <div class="portfolio-project-blocks-img-title"> | |
145 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-1.jpg" alt=""/></a></div> | |
146 | + <div class="portfolio-project-blocks-title-wr"> | |
147 | + <div class="portfolio-project-blocks-title"> | |
148 | + <a href="#">Отделка дома из бруса</a> | |
149 | + </div> | |
150 | + </div> | |
151 | + </div> | |
152 | + <div class="portfolio-project-views-wr"> | |
153 | + <div class="portfolio-project-views ico-views-bl"> | |
154 | + <div class="portfolio-project-views-img-wr"> | |
155 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
156 | + </div> | |
157 | + <div class="portfolio-project-views-txt">127</div> | |
158 | + </div> | |
159 | + <div class="portfolio-project-rati ico-views-bl"> | |
160 | + <div class="portfolio-project-views-img-wr"> | |
161 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
162 | + </div> | |
163 | + <div class="portfolio-project-views-txt">10.0</div> | |
164 | + </div> | |
165 | + <div class="ico-views-bl"> | |
166 | + <div class="portfolio-project-views-img-wr"> | |
167 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
168 | + </div> | |
169 | + <div class="portfolio-project-views-txt">14</div> | |
170 | + </div> | |
171 | + </div> | |
172 | + <div class="portfolio-project-blocks-tags"><a href="#">Деревянные дома</a></div> | |
173 | + </div> | |
174 | + <div class="portfolio-project-blocks-wr"> | |
175 | + <div class="portfolio-project-blocks-img-title"> | |
176 | + <div class="portfolio-project-blocks-img"><a href="#"><img src="/images/portfolio-project/portfolio-img-2.jpg" alt=""/></a></div> | |
177 | + <div class="portfolio-project-blocks-title-wr"> | |
178 | + <div class="portfolio-project-blocks-title"> | |
179 | + <a href="#">Квартира - студия в современном стиле </a> | |
180 | + </div> | |
181 | + </div> | |
182 | + </div> | |
183 | + <div class="portfolio-project-views-wr"> | |
184 | + <div class="portfolio-project-views ico-views-bl"> | |
185 | + <div class="portfolio-project-views-img-wr"> | |
186 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-1.png"/></div> | |
187 | + </div> | |
188 | + <div class="portfolio-project-views-txt">127</div> | |
189 | + </div> | |
190 | + <div class="portfolio-project-rati ico-views-bl"> | |
191 | + <div class="portfolio-project-views-img-wr"> | |
192 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-2.png"/></div> | |
193 | + </div> | |
194 | + <div class="portfolio-project-views-txt">10.0</div> | |
195 | + </div> | |
196 | + <div class="ico-views-bl"> | |
197 | + <div class="portfolio-project-views-img-wr"> | |
198 | + <div class="portfolio-project-views-img"><img src="/images/portfolio-project/ico-3.png"/></div> | |
199 | + </div> | |
200 | + <div class="portfolio-project-views-txt">14</div> | |
201 | + </div> | |
202 | + </div> | |
203 | + <div class="portfolio-project-blocks-tags"><a href="#">Дизайн интерьера</a></div> | |
204 | + </div> | |
205 | + | |
206 | + <div class="navi-buttons-wr style"> | |
207 | + <ul class="pagination"> | |
208 | + <li><a href="#">1</a></li> | |
209 | + <li><a href="#">2</a></li> | |
210 | + <li><a href="#">3</a></li> | |
211 | + <li><a href="#">4</a></li> | |
212 | + <li><a href="#">5</a></li> | |
213 | + <li class="dots-next"><a href="#">...</a></li> | |
214 | + <li><a href="#">156</a></li> | |
215 | + </ul> | |
216 | + </div> | |
217 | + | |
218 | + </div> | |
219 | + </div> | |
220 | +</div> | |
0 | 221 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
10 | + <div class="proektant-comments-wr style"> | |
11 | + <div class="workplace-title style"><p>Отзывы о пользователе: 4</p></div> | |
12 | + <ul class="proektant-comments style"> | |
13 | + <li> | |
14 | + <div class="comments-name">Иван Иванов</div> | |
15 | + <div class="comments-status"><span>Pro</span></div> | |
16 | + <div class="comments-date">10.07.2015</div> | |
17 | + <div class="rating"> | |
18 | + <!--оценка--> | |
19 | + <input type="hidden" class="val" value="2"/> | |
20 | + </div> | |
21 | + <div class="comments-content"> | |
22 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
23 | + <p>Спасибо большое! Всем советуем!</p> | |
24 | + </div> | |
25 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
26 | + </li> | |
27 | + | |
28 | + <li> | |
29 | + <div class="comments-name">Иван Иванов</div> | |
30 | + <div class="comments-status"><span>Pro</span></div> | |
31 | + <div class="comments-date">10.07.2015</div> | |
32 | + <div class="rating"> | |
33 | + <!--оценка--> | |
34 | + <input type="hidden" class="val" value="5"/> | |
35 | + </div> | |
36 | + <div class="comments-content"> | |
37 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
38 | + <p>Спасибо большое! Всем советуем!</p> | |
39 | + </div> | |
40 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
41 | + </li> | |
42 | + | |
43 | + <li> | |
44 | + <div class="comments-name">Иван Иванов</div> | |
45 | + <div class="comments-status"><span>Pro</span></div> | |
46 | + <div class="comments-date">10.07.2015</div> | |
47 | + <div class="rating"> | |
48 | + <!--оценка--> | |
49 | + <input type="hidden" class="val" value="4"/> | |
50 | + </div> | |
51 | + <div class="comments-content"> | |
52 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
53 | + <p>Спасибо большое! Всем советуем!</p> | |
54 | + </div> | |
55 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
56 | + </li> | |
57 | + | |
58 | + <li> | |
59 | + <div class="comments-name">Иван Иванов</div> | |
60 | + <div class="comments-status"><span>Pro</span></div> | |
61 | + <div class="comments-date">10.07.2015</div> | |
62 | + <div class="rating"> | |
63 | + <!--оценка--> | |
64 | + <input type="hidden" class="val" value="1"/> | |
65 | + </div> | |
66 | + <div class="comments-content"> | |
67 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
68 | + <p>Спасибо большое! Всем советуем!</p> | |
69 | + </div> | |
70 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
71 | + </li> | |
72 | + </ul> | |
73 | + <div class="navi-buttons-wr style"> | |
74 | + <ul class="pagination"> | |
75 | + <li><a href="#">1</a></li> | |
76 | + <li><a href="#">2</a></li> | |
77 | + <li><a href="#">3</a></li> | |
78 | + <li><a href="#">4</a></li> | |
79 | + <li><a href="#">5</a></li> | |
80 | + <li class="dots-next"><a href="#">...</a></li> | |
81 | + <li><a href="#">156</a></li> | |
82 | + </ul> | |
83 | + </div> | |
84 | + </div> | |
85 | + | |
86 | +</div> | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | + <div class="command-blocks-wr style"> | |
10 | + <div class="command-block-wrapper"> | |
11 | + <div class="command-block-wr-two"> | |
12 | + <div class="command-block-foto"> | |
13 | + <a href="#"> | |
14 | + <img src="/images/command/ded.jpg" alt=""/> | |
15 | + <!--не удалять блок hover-command-bg--> | |
16 | + <div class="hover-command-bg"></div> | |
17 | + </a> | |
18 | + </div> | |
19 | + <div class="command-block-name">Афанасий Петров</div> | |
20 | + <div class="command-block-job">директор</div> | |
21 | + <div class="command-block-line"> | |
22 | + <div class="command-block-line-left"></div> | |
23 | + <div class="command-block-line-right"></div> | |
24 | + </div> | |
25 | + </div> | |
26 | + </div> | |
27 | + | |
28 | + <div class="command-block-wrapper"> | |
29 | + <div class="command-block-wr-two"> | |
30 | + <div class="command-block-foto"> | |
31 | + <a href="#"> | |
32 | + <!--не удалять блок hover-command-bg--> | |
33 | + <div class="hover-command-bg"></div> | |
34 | + </a> | |
35 | + </div> | |
36 | + <div class="command-block-name">Афанасий Петров</div> | |
37 | + <div class="command-block-job">зам. начальника внутренне проектной документации</div> | |
38 | + <div class="command-block-line"> | |
39 | + <div class="command-block-line-left"></div> | |
40 | + <div class="command-block-line-right"></div> | |
41 | + </div> | |
42 | + </div> | |
43 | + </div> | |
44 | + | |
45 | + <div class="command-block-wrapper"> | |
46 | + <div class="command-block-wr-two"> | |
47 | + <div class="command-block-foto"> | |
48 | + <a href="#"> | |
49 | + <img src="/images/command/ded.jpg" alt=""/> | |
50 | + <!--не удалять блок hover-command-bg--> | |
51 | + <div class="hover-command-bg"></div> | |
52 | + </a> | |
53 | + </div> | |
54 | + <div class="command-block-name">Афанасий Петров</div> | |
55 | + <div class="command-block-job">директор</div> | |
56 | + <div class="command-block-line"> | |
57 | + <div class="command-block-line-left"></div> | |
58 | + <div class="command-block-line-right"></div> | |
59 | + </div> | |
60 | + </div> | |
61 | + </div> | |
62 | + | |
63 | + <div class="command-block-wrapper"> | |
64 | + <div class="command-block-wr-two"> | |
65 | + <div class="command-block-foto"> | |
66 | + <a href="#"> | |
67 | + <!--не удалять блок hover-command-bg--> | |
68 | + <div class="hover-command-bg"></div> | |
69 | + </a> | |
70 | + </div> | |
71 | + <div class="command-block-name">Афанасий Петров</div> | |
72 | + <div class="command-block-job">зам. начальника внутренне проектной документации</div> | |
73 | + <div class="command-block-line"> | |
74 | + <div class="command-block-line-left"></div> | |
75 | + <div class="command-block-line-right"></div> | |
76 | + </div> | |
77 | + </div> | |
78 | + </div> | |
79 | + | |
80 | + <div class="command-block-wrapper"> | |
81 | + <div class="command-block-wr-two"> | |
82 | + <div class="command-block-foto"> | |
83 | + <a href="#"> | |
84 | + <img src="/images/command/ded.jpg" alt=""/> | |
85 | + <!--не удалять блок hover-command-bg--> | |
86 | + <div class="hover-command-bg"></div> | |
87 | + </a> | |
88 | + </div> | |
89 | + <div class="command-block-name">Афанасий Петров</div> | |
90 | + <div class="command-block-job">директор</div> | |
91 | + <div class="command-block-line"> | |
92 | + <div class="command-block-line-left"></div> | |
93 | + <div class="command-block-line-right"></div> | |
94 | + </div> | |
95 | + </div> | |
96 | + </div> | |
97 | + | |
98 | + <div class="command-block-wrapper"> | |
99 | + <div class="command-block-wr-two"> | |
100 | + <div class="command-block-foto"> | |
101 | + <a href="#"> | |
102 | + <!--не удалять блок hover-command-bg--> | |
103 | + <div class="hover-command-bg"></div> | |
104 | + </a> | |
105 | + </div> | |
106 | + <div class="command-block-name">Афанасий Петров</div> | |
107 | + <div class="command-block-job">зам. начальника внутренне проектной документации</div> | |
108 | + <div class="command-block-line"> | |
109 | + <div class="command-block-line-left"></div> | |
110 | + <div class="command-block-line-right"></div> | |
111 | + </div> | |
112 | + </div> | |
113 | + </div> | |
114 | + | |
115 | + <div class="command-block-wrapper"> | |
116 | + <div class="command-block-wr-two"> | |
117 | + <div class="command-block-foto"> | |
118 | + <a href="#"> | |
119 | + <img src="/images/command/ded.jpg" alt=""/> | |
120 | + <!--не удалять блок hover-command-bg--> | |
121 | + <div class="hover-command-bg"></div> | |
122 | + </a> | |
123 | + </div> | |
124 | + <div class="command-block-name">Афанасий Петров</div> | |
125 | + <div class="command-block-job">директор</div> | |
126 | + <div class="command-block-line"> | |
127 | + <div class="command-block-line-left"></div> | |
128 | + <div class="command-block-line-right"></div> | |
129 | + </div> | |
130 | + </div> | |
131 | + </div> | |
132 | + | |
133 | + <div class="command-block-wrapper"> | |
134 | + <div class="command-block-wr-two"> | |
135 | + <div class="command-block-foto"> | |
136 | + <a href="#"> | |
137 | + <!--не удалять блок hover-command-bg--> | |
138 | + <div class="hover-command-bg"></div> | |
139 | + </a> | |
140 | + </div> | |
141 | + <div class="command-block-name">Афанасий Петров</div> | |
142 | + <div class="command-block-job">зам. начальника внутренне проектной документации</div> | |
143 | + <div class="command-block-line"> | |
144 | + <div class="command-block-line-left"></div> | |
145 | + <div class="command-block-line-right"></div> | |
146 | + </div> | |
147 | + </div> | |
148 | + </div> | |
149 | + | |
150 | + <div class="command-block-wrapper"> | |
151 | + <div class="command-block-wr-two"> | |
152 | + <div class="command-block-foto"> | |
153 | + <a href="#"> | |
154 | + <img src="/images/command/ded.jpg" alt=""/> | |
155 | + <!--не удалять блок hover-command-bg--> | |
156 | + <div class="hover-command-bg"></div> | |
157 | + </a> | |
158 | + </div> | |
159 | + <div class="command-block-name">Афанасий Петров</div> | |
160 | + <div class="command-block-job">директор</div> | |
161 | + <div class="command-block-line"> | |
162 | + <div class="command-block-line-left"></div> | |
163 | + <div class="command-block-line-right"></div> | |
164 | + </div> | |
165 | + </div> | |
166 | + </div> | |
167 | + | |
168 | + </div> | |
169 | + <div class="navi-buttons-wr style command-command-style"> | |
170 | + <ul class="pagination"> | |
171 | + <li><a href="#">1</a></li> | |
172 | + <li><a href="#">2</a></li> | |
173 | + <li><a href="#">3</a></li> | |
174 | + <li><a href="#">4</a></li> | |
175 | + <li><a href="#">5</a></li> | |
176 | + <li class="dots-next"><a href="#">...</a></li> | |
177 | + <li><a href="#">156</a></li> | |
178 | + </ul> | |
179 | + </div> | |
180 | +<?php | |
181 | + /*====Blocks for layout====*/ | |
182 | + $this->beginBlock('review'); | |
183 | +?> | |
184 | + <div class="section-box-19"> | |
185 | + <div class="box-wr"> | |
186 | + <div class="box-all"> | |
187 | + <div class="company-performer-comm-title style">Отзывов: 54</div> | |
188 | + <div class="company-performer-comments-wr style"> | |
189 | + <div class="company-performer-comments-bl"> | |
190 | + <div class="rating"> | |
191 | + <!--оценка--> | |
192 | + <input type="hidden" class="val" value="3"/> | |
193 | + <!--количество голосов--> | |
194 | + <input type="hidden" class="votes" value="12"/> | |
195 | + </div> | |
196 | + | |
197 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
198 | + <div class="company-performer-comments-txt"></div> | |
199 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
200 | + </div> | |
201 | + | |
202 | + <div class="company-performer-comments-bl"> | |
203 | + <div class="rating"> | |
204 | + <!--оценка--> | |
205 | + <input type="hidden" class="val" value="2"/> | |
206 | + <!--количество голосов--> | |
207 | + <input type="hidden" class="votes" value="12"/> | |
208 | + </div> | |
209 | + | |
210 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
211 | + <div class="company-performer-comments-txt">2Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения.</div> | |
212 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
213 | + </div> | |
214 | + | |
215 | + <div class="company-performer-comments-bl"> | |
216 | + <div class="rating"> | |
217 | + <!--оценка--> | |
218 | + <input type="hidden" class="val" value="4"/> | |
219 | + <!--количество голосов--> | |
220 | + <input type="hidden" class="votes" value="12"/> | |
221 | + </div> | |
222 | + | |
223 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
224 | + <div class="company-performer-comments-txt">3Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. | |
225 | + </div> | |
226 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
227 | + </div> | |
228 | + | |
229 | + <div class="company-performer-comments-bl"> | |
230 | + <div class="rating"> | |
231 | + <!--оценка--> | |
232 | + <input type="hidden" class="val" value="5"/> | |
233 | + <!--количество голосов--> | |
234 | + <input type="hidden" class="votes" value="12"/> | |
235 | + </div> | |
236 | + | |
237 | + <div class="company-performer-comments-autor">Отзыв от: Евгения</div> | |
238 | + <div class="company-performer-comments-txt">4Петер, очень понравились Ваши работы. Замечательный вкус!!! Тонкое сочетание стиля, цвета и формы! Очень нравится. Успехов в работе и вдохновения. | |
239 | + </div> | |
240 | + <a href="#" class="company-comm-see-all"><span>Развернуть</span></a> | |
241 | + </div> | |
242 | + </div> | |
243 | + <div class="company-performer-comm-see-all-butt style"><a href="#">Читать все отзывы</a></div> | |
244 | + </div> | |
245 | + </div> | |
246 | + </div> | |
247 | +<?php | |
248 | + $this->endBlock(); | |
249 | + /*====End blocks for layout====*/ | |
250 | +?> | |
0 | 251 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title style">Вакансии</div> | |
10 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
11 | + <div class="performer-vacant-reclam-bl"> | |
12 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
13 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
14 | + <div class="performer-vacant-reclam-bl-content"> | |
15 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
16 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
17 | + </div> | |
18 | + </div> | |
19 | + | |
20 | + <div class="performer-vacant-reclam-bl"> | |
21 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
22 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
23 | + <div class="performer-vacant-reclam-bl-content"> | |
24 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
25 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
26 | + </div> | |
27 | + </div> | |
28 | + | |
29 | + <div class="performer-vacant-reclam-bl"> | |
30 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
31 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
32 | + <div class="performer-vacant-reclam-bl-content"> | |
33 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
34 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
35 | + </div> | |
36 | + </div> | |
37 | + | |
38 | + <div class="performer-vacant-reclam-bl"> | |
39 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
40 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
41 | + <div class="performer-vacant-reclam-bl-content"> | |
42 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
43 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
44 | + </div> | |
45 | + </div> | |
46 | + | |
47 | + <div class="performer-vacant-reclam-bl"> | |
48 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
49 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
50 | + <div class="performer-vacant-reclam-bl-content"> | |
51 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
52 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
53 | + </div> | |
54 | + </div> | |
55 | + | |
56 | + <div class="performer-vacant-reclam-bl"> | |
57 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
58 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
59 | + <div class="performer-vacant-reclam-bl-content"> | |
60 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
61 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
62 | + </div> | |
63 | + </div> | |
64 | + | |
65 | + <div class="performer-vacant-reclam-bl"> | |
66 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
67 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
68 | + <div class="performer-vacant-reclam-bl-content"> | |
69 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
70 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
71 | + </div> | |
72 | + </div> | |
73 | + | |
74 | + <div class="performer-vacant-reclam-bl"> | |
75 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
76 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
77 | + <div class="performer-vacant-reclam-bl-content"> | |
78 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
79 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
80 | + </div> | |
81 | + </div> | |
82 | + | |
83 | + <div class="performer-vacant-reclam-bl"> | |
84 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
85 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
86 | + <div class="performer-vacant-reclam-bl-content"> | |
87 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
88 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
89 | + </div> | |
90 | + </div> | |
91 | + | |
92 | + <div class="performer-vacant-reclam-bl"> | |
93 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
94 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
95 | + <div class="performer-vacant-reclam-bl-content"> | |
96 | + <span>Полная занятость. Опыт работы от 2 лет. Высшее образование. Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии…</span> | |
97 | + <a href="#" class="performer-vacant-reclam-bl-content-read"><img src="/images/performar_vacancy/arrow-post.png" alt=""/></a> | |
98 | + </div> | |
99 | + </div> | |
100 | + | |
101 | +</div> | |
102 | +<div class="navi-buttons-wr style"> | |
103 | + <ul class="pagination"> | |
104 | + <li><a href="#">1</a></li> | |
105 | + <li><a href="#">2</a></li> | |
106 | + <li><a href="#">3</a></li> | |
107 | + <li><a href="#">4</a></li> | |
108 | + <li><a href="#">5</a></li> | |
109 | + <li class="dots-next"><a href="#">...</a></li> | |
110 | + <li><a href="#">156</a></li> | |
111 | + </ul> | |
112 | +</div> | |
0 | 113 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-list style"><a href="#" >к списку вакансий</a></div> | |
10 | +<div class="performer-vacancy-blocks-desk-wr style"> | |
11 | + <div class="performer-vacancy-date style"> Вакансия от 17.11.2015 </div> | |
12 | + <div class="performance-vacancy-page-title style">Инженер-технолог строитель</div> | |
13 | + <div class="performance-vacancy-page-options style"> | |
14 | + <ul> | |
15 | + <li><span>Контактное лицо:</span><p>Владимир</p></li> | |
16 | + <li><span>Телефон:</span><p>096 345-23-42</p></li> | |
17 | + <li><span>Город:</span><p>Бровары, ищем в Киеве</p></li> | |
18 | + <li><span>Вид занятости:</span><p>полная занятость</p></li> | |
19 | + <li><span>Требования:</span><p>опыт работы от 2 лет, высшее образование</p></li> | |
20 | + </ul> | |
21 | + </div> | |
22 | + <div class="performance-vacancy-description style">Описание вакансии</div> | |
23 | + <div class="performance-vacancy-desc-txt style"> | |
24 | + <p>Требования: Инженер технолог строитель. Образование инженер-строитель. Доскональное знание технологиии строительных работ.</p> | |
25 | + <p>Условия работы: Работа в офисе и командировки на стройки.</p> | |
26 | + <p>Обязанности: Составление технологических карт, Ведение обучения технологии выполнения общестроительных и отделочных работ. Контроль.качества выполнения строительных работ. Работа с рекламациями. Работа с проектными организациями.</p> | |
27 | + </div> | |
28 | + <div class="performance-vacancy-desc-form style"> | |
29 | + <a href="#">Отправить резюме</a> | |
30 | + </div> | |
31 | +</div> | |
32 | +<div class="performance-vacancy-similar style"> | |
33 | + <div class="performance-vacancy-similar-title style">Похожие вакансии</div> | |
34 | + <div class="style"> | |
35 | + | |
36 | + <div class="performance-vacancy-similar-blocks-wr style"> | |
37 | + <a href="#" class="performer-vacant-reclam-bl-title">Инженер-технолог строитель</a> | |
38 | + <div class="performer-vacant-reclam-bl-title-two">Бровары, ищем в Киеве. 21 декабря 2015. 8000 грн.</div> | |
39 | + </div> | |
40 | + | |
41 | + <div class="performance-vacancy-similar-blocks-wr style"> | |
42 | + <a href="#" class="performer-vacant-reclam-bl-title">Разнорабочий (в Бровары)</a> | |
43 | + <div class="performer-vacant-reclam-bl-title-two">Наш Дом. Киев. </div> | |
44 | + </div> | |
45 | + | |
46 | + <div class="performance-vacancy-similar-blocks-wr style"> | |
47 | + <a href="#" class="performer-vacant-reclam-bl-title">Замерщик по мебели (в Бровары)</a> | |
48 | + <div class="performer-vacant-reclam-bl-title-two">Наш Дом. Киев. 5000 грн.</div> | |
49 | + </div> | |
50 | + | |
51 | + </div> | |
52 | +</div> | |
0 | 53 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use yii\widgets\Breadcrumbs; | |
4 | +use yii\widgets\Menu; | |
5 | + | |
6 | +\frontend\assets\AdminAsset::register($this); | |
7 | +/* @var $content string */ | |
8 | +$this->beginContent('@app/views/layouts/main.php'); | |
9 | +?> | |
10 | + | |
11 | + <div class="section-box content"> | |
12 | + <div class="section-box-14" style="background: url('/images/performar_vacancy/bg-14.jpg') 50% no-repeat ;"> | |
13 | + <div class="box-wr"> | |
14 | + <div class="box-all"> | |
15 | + <div class="performance-vacancy-call-back"> | |
16 | + <div class="performance-vacancy-call-back-title">Оставьте заявку<br />и мы вам перезвоним</div> | |
17 | + <form class="callback" action=""> | |
18 | + <label for="callbac_name">Имя</label> | |
19 | + <input id="callbac_name" type="text"/> | |
20 | + <label for="callbac_phone">Телефон</label> | |
21 | + <input id="callbac_phone" type="text"/> | |
22 | + <input id="callbac_submit" type="submit" value="Перезвонить мне"/> | |
23 | + </form> | |
24 | + <div class="performance-vacancy-call-back-conf">Гарантируем конфидециальность</div> | |
25 | + </div> | |
26 | + <div class="performance-vacancy-add-favorite"><a href="#"></a></div> | |
27 | + </div> | |
28 | + </div> | |
29 | + </div> | |
30 | + <div class="section-box menu-content-wr"> | |
31 | + <div class="box-wr"> | |
32 | + <div class="box-all"> | |
33 | + <ul class="menu-content"> | |
34 | + <li><a href="#">Общее</a></li> | |
35 | + <li><a href="#">Выполненные работы</a></li> | |
36 | + <li><a href="#">Команда</a></li> | |
37 | + <li class="active-menu-content"><a href="#">Вакансии</a></li> | |
38 | + <li><a href="#">Блог</a></li> | |
39 | + <li><a href="#">Отзывы</a></li> | |
40 | + <li><a href="#">Галерея</a></li> | |
41 | + </ul> | |
42 | + </div> | |
43 | + </div> | |
44 | + </div> | |
45 | + <div class="section-box-15"> | |
46 | + <div class="box-wr"> | |
47 | + <div class="box-all"> | |
48 | + <div class="performer-vacancy-sidebar-left-wr"> | |
49 | + <div class="performer-vacancy-sidebar-left"> | |
50 | + <div class="performance-vacancy-sidebar-company-wr"> | |
51 | + <div class="performance-vacancy-sidebar-company-title style">Познякижилстрой</div> | |
52 | + <div class="performance-vacancy-sidebar-company-job style"> | |
53 | + <ul> | |
54 | + <li class="activejob"> | |
55 | + <a href="#">Испонитель</a> | |
56 | + <div class="sidebar-droped-wr style"> | |
57 | + <ul> | |
58 | + <li><a href="#">Заказчик</a></li> | |
59 | + <li style="display: none"><a href="#">Испонитель</a></li> | |
60 | + </ul> | |
61 | + </div> | |
62 | + </li> | |
63 | + </ul> | |
64 | + </div> | |
65 | + <div class="performance-vacancy-sidebar-stars style"> | |
66 | + <div class="rating"> | |
67 | + <!--оценка--> | |
68 | + <input type="hidden" class="val" value="5"/> | |
69 | + <!--количество голосов--> | |
70 | + <input type="hidden" class="votes" value="12"/> | |
71 | + </div> | |
72 | + </div> | |
73 | + <div class="performance-vacancy-sidebar-comm style">30 отзывов</div> | |
74 | + <a href="#" class="performance-vacancy-sidebar-write style">написать отзыв</a> | |
75 | + </div> | |
76 | + <div class="performer-vacancy-sidebar-img style"><img src="/images/performar_vacancy/ico-sidebar.jpg" alt=""/></div> | |
77 | + <div class="performer-vacancy-sidebar-all style"> | |
78 | + <div class="performer-vacancy-sidebar-soc style"> | |
79 | + <ul> | |
80 | + <li><a target="_blank" href="#"><img src="/images/ico-fb.png" alt=""/></a></li> | |
81 | + <li><a target="_blank" href="#"><img src="/images/ico-tw.png" alt=""/></a></li> | |
82 | + <li><a target="_blank" href="#"><img src="/images/ico-in.png" alt=""/></a></li> | |
83 | + <li><a target="_blank" href="#"><img src="/images/ico-vk.png" alt=""/></a></li> | |
84 | + </ul> | |
85 | + </div> | |
86 | + <div class="performer-vacancy-sidebar-views style"> | |
87 | + <ul class="style"> | |
88 | + <li><img src="/images/sidebar-ico/ico-1.png" alt=""/><div class="sidebarvievstxt">2562 просмотра</div></li> | |
89 | + <li><img src="/images/sidebar-ico/ico-2.png" alt=""/><div class="sidebarvievstxt"><span class="sidebar-views-txt">На сайте: </span>1г. 8 мес.</div></li> | |
90 | + <li><img src="/images/sidebar-ico/ico-3.png" alt=""/><div class="sidebarvievstxt"><span class="sidebar-views-txt">Последний визит: <br /></span>2 дня назад</div></li> | |
91 | + <li><img src="/images/sidebar-ico/ico-4.png" alt=""/><div class="sidebarvievstxt"><span class="sidebar-views-txt">Последнее обновление: </span>1 ноября 2015</div></li> | |
92 | + <li><img src="/images/sidebar-ico/ico-5.png" alt=""/><div class="sidebarvievstxt"><span class="sidebar-views-txt">Сотрудники:<br /></span>Более 400</div></li> | |
93 | + <li><img src="/images/sidebar-ico/ico-6.png" alt=""/><div class="sidebarvievstxt"><span class="sidebarvievs-phone">+38 (050) 123-45-67</span></div></li> | |
94 | + <li><img src="/images/sidebar-ico/ico-7.png" alt=""/><div class="sidebarvievstxt"><a target="_blank" href="#">Сайт</a></div></li> | |
95 | + <li><img src="/images/sidebar-ico/ico-8.png" alt=""/><div class="sidebarvievstxt"><span class="sidebar-views-txt">Адрес:<br /></span>Украина, г. Киев, бульвар Леси Украинки 30В</div></li> | |
96 | + </ul> | |
97 | + </div> | |
98 | + </div> | |
99 | + </div> | |
100 | + </div> | |
101 | + <div class="section-box performer-vacancy-vacant-wr"> | |
102 | + <?= $content ?> | |
103 | + </div> | |
104 | + </div> | |
105 | + </div> | |
106 | + </div> | |
107 | + <?php | |
108 | + /*====Blocks created in view====*/ | |
109 | + if(isset($this->blocks['our_objects'])) { | |
110 | + echo $this->blocks['our_objects']; | |
111 | + } | |
112 | + if(isset($this->blocks['blog'])) { | |
113 | + echo $this->blocks['blog']; | |
114 | + } | |
115 | + if(isset($this->blocks['team'])) { | |
116 | + echo $this->blocks['team']; | |
117 | + } | |
118 | + if(isset($this->blocks['review'])) { | |
119 | + echo $this->blocks['review']; | |
120 | + } | |
121 | + /*====End of blocks created in view====*/ | |
122 | + ?> | |
123 | + </div> | |
124 | +<?php $this->endContent() ?> | |
0 | 125 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use yii\widgets\Breadcrumbs; | |
4 | +use yii\widgets\Menu; | |
5 | + | |
6 | +\frontend\assets\AdminAsset::register($this); | |
7 | +/* @var $content string */ | |
8 | +$this->beginContent('@app/views/layouts/main.php'); | |
9 | +?> | |
10 | + <div class="section-box content"> | |
11 | + <div class="section-box-14" style="background: url('/images/performar_vacancy/bg-14.jpg') 50% no-repeat ;"> | |
12 | + <div class="box-wr"> | |
13 | + <div class="box-all"> | |
14 | + <div class="performance-vacancy-call-back"> | |
15 | + <div class="performance-vacancy-call-back-title">Оставьте заявку<br />и мы вам перезвоним</div> | |
16 | + <form class="callback" action=""> | |
17 | + <label for="callbac_name">Имя</label> | |
18 | + <input id="callbac_name" type="text"/> | |
19 | + <label for="callbac_phone">Телефон</label> | |
20 | + <input id="callbac_phone" type="text"/> | |
21 | + <input id="callbac_submit" type="submit" value="Перезвонить мне"/> | |
22 | + </form> | |
23 | + <div class="performance-vacancy-call-back-conf">Гарантируем конфидециальность</div> | |
24 | + </div> | |
25 | + <div class="performance-vacancy-add-favorite"><a href="#"></a></div> | |
26 | + </div> | |
27 | + </div> | |
28 | + </div> | |
29 | + <div class="section-box menu-content-wr"> | |
30 | + <div class="box-wr"> | |
31 | + <div class="box-all"> | |
32 | + <ul class="menu-content"> | |
33 | + <li><a href="#">Общее</a></li> | |
34 | + <li><a href="#">Выполненные работы</a></li> | |
35 | + <li><a href="#">Команда</a></li> | |
36 | + <li class="active-menu-content"><a href="#">Вакансии</a></li> | |
37 | + <li><a href="#">Блог</a></li> | |
38 | + <li><a href="#">Отзывы</a></li> | |
39 | + <li><a href="#">Галерея</a></li> | |
40 | + </ul> | |
41 | + </div> | |
42 | + </div> | |
43 | + </div> | |
44 | + <div class="section-box-15"> | |
45 | + <div class="box-wr"> | |
46 | + <div class="box-all"> | |
47 | + <div class="performer-vacancy-sidebar-left-wr gallery-page-sidebar"> | |
48 | + <div class="performer-vacancy-sidebar-left"> | |
49 | + <div class="performance-vacancy-sidebar-company-wr"> | |
50 | + <div class="performance-vacancy-sidebar-company-title style">Познякижилстрой</div> | |
51 | + <div class="performance-vacancy-sidebar-company-job style"> | |
52 | + <ul> | |
53 | + <li class="activejob"> | |
54 | + <a href="#">Испонитель</a> | |
55 | + <div class="sidebar-droped-wr style"> | |
56 | + <ul> | |
57 | + <li><a href="#">Заказчик</a></li> | |
58 | + <li style="display: none"><a href="#">Испонитель</a></li> | |
59 | + </ul> | |
60 | + </div> | |
61 | + </li> | |
62 | + </ul> | |
63 | + </div> | |
64 | + <div class="performance-vacancy-sidebar-stars style"> | |
65 | + <div class="rating"> | |
66 | + <!--оценка--> | |
67 | + <input type="hidden" class="val" value="5"/> | |
68 | + <!--количество голосов--> | |
69 | + <input type="hidden" class="votes" value="12"/> | |
70 | + </div> | |
71 | + </div> | |
72 | + <div class="performance-vacancy-sidebar-comm style">30 отзывов</div> | |
73 | + <a href="#" class="performance-vacancy-sidebar-write style">написать отзыв</a> | |
74 | + </div> | |
75 | + <div class="performer-vacancy-sidebar-img style"><img src="/images/performar_vacancy/ico-sidebar.jpg" alt=""/></div> | |
76 | + </div> | |
77 | + </div> | |
78 | + <div class="section-box-21"> | |
79 | + <div class="box-wr"> | |
80 | + <div class="box-all"> | |
81 | + <?= $content ?> | |
82 | + </div> | |
83 | + </div> | |
84 | + </div> | |
85 | + </div> | |
86 | + </div> | |
87 | + </div> | |
88 | + <?php | |
89 | + /*====Blocks created in view====*/ | |
90 | + if(isset($this->blocks['our_objects'])) { | |
91 | + echo $this->blocks['our_objects']; | |
92 | + } | |
93 | + if(isset($this->blocks['blog'])) { | |
94 | + echo $this->blocks['blog']; | |
95 | + } | |
96 | + if(isset($this->blocks['team'])) { | |
97 | + echo $this->blocks['team']; | |
98 | + } | |
99 | + if(isset($this->blocks['review'])) { | |
100 | + echo $this->blocks['review']; | |
101 | + } | |
102 | + /*====End of blocks created in view====*/ | |
103 | + ?> | |
104 | + </div> | |
105 | +<?php $this->endContent() ?> | |
0 | 106 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use yii\widgets\Breadcrumbs; | |
4 | +use yii\widgets\Menu; | |
5 | + | |
6 | +\frontend\assets\AdminAsset::register($this); | |
7 | +/* @var $content string */ | |
8 | +$this->beginContent('@app/views/layouts/main.php'); | |
9 | +?> | |
10 | + <div class="section-box content"> | |
11 | + <div class="section-box-16" style="background: url('/images/blog/box-16.jpg') no-repeat"> | |
12 | + <div class="box-wr"> | |
13 | + <div class="box-all"> | |
14 | + <div class="blog-buttons-wr style"> | |
15 | + <a class="blog-buttons-offer" href="#">Предложить<br>проект</a> | |
16 | + <a class="blog-buttons-write" href="#">Написать<br>сообщение</a> | |
17 | + <a class="blog-buttons-add-favorite" href="#">Добавить<br>в закладки</a> | |
18 | + </div> | |
19 | + </div> | |
20 | + </div> | |
21 | + </div> | |
22 | + <div class="section-box menu-content-wr"> | |
23 | + <div class="box-wr"> | |
24 | + <div class="box-all"> | |
25 | + <ul class="menu-content"> | |
26 | + <li><a href="#">Общее</a></li> | |
27 | + <li><a href="#">Портфолио</a></li> | |
28 | + <li class="active-menu-content"><a href="#">Блог</a></li> | |
29 | + <li><a href="#">Отзывы </a></li> | |
30 | + <li><a href="#">Места работы</a></li> | |
31 | + <li><a href="#">Галерея</a></li> | |
32 | + </ul> | |
33 | + </div> | |
34 | + </div> | |
35 | + </div> | |
36 | + <div class="section-box-20"> | |
37 | + <div class="box-wr"> | |
38 | + <div class="box-all"> | |
39 | + <div class="performer-vacancy-sidebar-left-wr gallery-page-sidebar"> | |
40 | + <div class="performer-vacancy-sidebar-left"> | |
41 | + <div class="performance-vacancy-sidebar-company-wr"> | |
42 | + <div class="performance-vacancy-sidebar-company-title style">Познякижилстрой</div> | |
43 | + <div class="performance-vacancy-sidebar-company-job style"> | |
44 | + <ul> | |
45 | + <li class="activejob"> | |
46 | + <a href="#">Исполнитель</a> | |
47 | + <div class="sidebar-droped-wr style"> | |
48 | + <ul> | |
49 | + <li><a href="#">Заказчик</a></li> | |
50 | + <li style="display: none"><a href="#">Исполнитель</a></li> | |
51 | + </ul> | |
52 | + </div> | |
53 | + </li> | |
54 | + </ul> | |
55 | + </div> | |
56 | + <div class="performance-vacancy-sidebar-stars style"> | |
57 | + <div class="rating"> | |
58 | + <!--оценка--> | |
59 | + <input type="hidden" class="val" value="5"/> | |
60 | + <!--количество голосов--> | |
61 | + <input type="hidden" class="votes" value="12"/> | |
62 | + </div> | |
63 | + </div> | |
64 | + <div class="performance-vacancy-sidebar-comm style">30 отзывов</div> | |
65 | + <a href="#" class="performance-vacancy-sidebar-write style">написать отзыв</a> | |
66 | + </div> | |
67 | + <div class="performer-vacancy-sidebar-img style"><img src="/images/ded-foto.jpg" alt=""/></div> | |
68 | + </div> | |
69 | + </div> | |
70 | + </div> | |
71 | + </div> | |
72 | + </div> | |
73 | + <div class="section-box-21"> | |
74 | + <div class="box-wr"> | |
75 | + <div class="box-all"> | |
76 | + <?= $content ?> | |
77 | + </div> | |
78 | + </div> | |
79 | + </div> | |
80 | + </div> | |
81 | + | |
82 | +<?php $this->endContent() ?> | |
0 | 83 | \ No newline at end of file | ... | ... |
frontend/views/layouts/main.php
... | ... | @@ -62,7 +62,7 @@ AppAsset::register($this); |
62 | 62 | <div class="section-box menu-header-all"> |
63 | 63 | <div class="box-wr"> |
64 | 64 | <div class="box-all"> |
65 | - <ul class="main-menu"> | |
65 | + <ul class="main-menu main-menu-buttons"> | |
66 | 66 | <li> |
67 | 67 | <span>Проектанту</span> |
68 | 68 | <div class="main-menu-hover"> |
... | ... | @@ -123,6 +123,12 @@ AppAsset::register($this); |
123 | 123 | <input type="submit" value=""/> |
124 | 124 | </form> |
125 | 125 | </div> |
126 | + | |
127 | + <div class="main-menu-icons-wr"> | |
128 | + <a class="main-menu-icons-home" href="#"></a> | |
129 | + <a class="main-menu-icons-edit" href="#"></a> | |
130 | + <a class="main-menu-icons-copy" href="#"></a> | |
131 | + </div> | |
126 | 132 | </div> |
127 | 133 | </div> |
128 | 134 | </div> | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="video-performer-wrapper style"> | |
10 | + <div class="gallery-title">Видео: 12</div> | |
11 | + <div class="slider-video-wr"> | |
12 | + <div id="demo5" class="scroll-img video-slider"> | |
13 | + <ul> | |
14 | + <li> | |
15 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
16 | + | |
17 | + <a href="#"></a><span></span> | |
18 | + </li> | |
19 | + <li> | |
20 | + <div class="iframe-video"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/0wAgwxcO1HY" frameborder="0" allowfullscreen></iframe></div> | |
21 | + <a href="#"></a><span></span> | |
22 | + </li> | |
23 | + | |
24 | + <li> | |
25 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
26 | + <a href="#"></a><span></span> | |
27 | + </li> | |
28 | + <li> | |
29 | + <div class="iframe-video"><iframe width="100%" height="100%" src="https://www.youtube.com/embed/0wAgwxcO1HY" frameborder="0" allowfullscreen></iframe></div> | |
30 | + <a href="#"></a><span></span> | |
31 | + </li> | |
32 | + | |
33 | + <li> | |
34 | + <div class="iframe-video"><iframe width="560" height="320" src="https://www.youtube.com/embed/0wAgwxcO1HY?showinfo=0&autoplay=0" frameborder="0" allowfullscreen></iframe></div> | |
35 | + <a href="#"></a><span></span> | |
36 | + </li> | |
37 | + </ul> | |
38 | + </div> | |
39 | + <div id="demo5-btn" class="text-center"> | |
40 | + <button class="btn" id="demo5-backward"></button> | |
41 | + <button class="btn" id="demo5-forward"></button> | |
42 | + </div> | |
43 | + </div> | |
44 | + | |
45 | + | |
46 | +</div> | |
47 | +<div class="gallery-performer-wrapper style"> | |
48 | + <div class="gallery-title">Фото: 130</div> | |
49 | + <div class="gallery-performer-margin"> | |
50 | + <div class="gallery-box"> | |
51 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
52 | + <div class="gallery-box-hidden"> | |
53 | + <div class="gallery-box-preview"> | |
54 | + <span data-link="images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
55 | + <span data-link="images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
56 | + <span data-link="images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
57 | + <span data-link="images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
58 | + <span data-link="images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
59 | + <span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
60 | + <span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
61 | + <span data-link="images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
62 | + <span data-link="images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
63 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-10.jpg"></span>--> | |
64 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-1.jpg"></span>--> | |
65 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-2.jpg"></span>--> | |
66 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-3.jpg"></span>--> | |
67 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-4.jpg"></span>--> | |
68 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-5.jpg"></span>--> | |
69 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span>--> | |
70 | + <!--<span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span>--> | |
71 | + | |
72 | + </div> | |
73 | + <div class="gallery-box-big"> | |
74 | + <span data-link="images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
75 | + <span data-link="images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
76 | + <span data-link="images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
77 | + <span data-link="images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
78 | + <span data-link="images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
79 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
80 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
81 | + <span data-link="images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
82 | + <span data-link="images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
83 | + <span data-link="images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
84 | + <span data-link="images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
85 | + <span data-link="images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
86 | + <span data-link="images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
87 | + <span data-link="images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
88 | + <span data-link="images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
89 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
90 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
91 | + </div> | |
92 | + </div> | |
93 | + </div> | |
94 | + | |
95 | + <div class="gallery-box"> | |
96 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
97 | + <div class="gallery-box-hidden"> | |
98 | + <div class="gallery-box-preview"> | |
99 | + <span data-link="images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
100 | + <span data-link="images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
101 | + <span data-link="images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
102 | + <span data-link="images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
103 | + <span data-link="images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
104 | + | |
105 | + </div> | |
106 | + <div class="gallery-box-big"> | |
107 | + <span data-link="images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
108 | + <span data-link="images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
109 | + <span data-link="images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
110 | + <span data-link="images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
111 | + <span data-link="images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
112 | + </div> | |
113 | + </div> | |
114 | + </div> | |
115 | + | |
116 | + <div class="gallery-box"> | |
117 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
118 | + </div> | |
119 | + <div class="gallery-box"> | |
120 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
121 | + </div> | |
122 | + <div class="gallery-box"> | |
123 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
124 | + </div> | |
125 | + <div class="gallery-box"> | |
126 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
127 | + </div> | |
128 | + <div class="gallery-box"> | |
129 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
130 | + </div> | |
131 | + <div class="gallery-box"> | |
132 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
133 | + </div> | |
134 | + <div class="gallery-box"> | |
135 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-1.jpg" alt=""/></a> | |
136 | + </div> | |
137 | + <div class="gallery-box"> | |
138 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-2.jpg" alt=""/></a> | |
139 | + </div> | |
140 | + <div class="gallery-box"> | |
141 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-3.jpg" alt=""/></a> | |
142 | + </div> | |
143 | + <div class="gallery-box"> | |
144 | + <a href="#" class="gallery-box-min"><img src="/images/gallery-pic/gal-img-4.jpg" alt=""/></a> | |
145 | + </div> | |
146 | + </div> | |
147 | + | |
148 | + <div class="navi-buttons-wr style gallery-style"> | |
149 | + <ul class="pagination"> | |
150 | + <li><a href="#">1</a></li> | |
151 | + <li><a href="#">2</a></li> | |
152 | + <li><a href="#">3</a></li> | |
153 | + <li><a href="#">4</a></li> | |
154 | + <li><a href="#">5</a></li> | |
155 | + <li class="dots-next"><a href="#">...</a></li> | |
156 | + <li><a href="#">156</a></li> | |
157 | + </ul> | |
158 | + </div> | |
159 | + | |
160 | +</div> | |
0 | 161 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
10 | + <div class="proektant-comments-wr style"> | |
11 | + <div class="workplace-title style"><p>Отзывы о пользователе: 4</p></div> | |
12 | + <ul class="proektant-comments style"> | |
13 | + <li> | |
14 | + <div class="comments-name">Иван Иванов</div> | |
15 | + <div class="comments-status"><span>Pro</span></div> | |
16 | + <div class="comments-date">10.07.2015</div> | |
17 | + <div class="rating"> | |
18 | + <!--оценка--> | |
19 | + <input type="hidden" class="val" value="2"/> | |
20 | + </div> | |
21 | + <div class="comments-content"> | |
22 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
23 | + <p>Спасибо большое! Всем советуем!</p> | |
24 | + </div> | |
25 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
26 | + </li> | |
27 | + | |
28 | + <li> | |
29 | + <div class="comments-name">Иван Иванов</div> | |
30 | + <div class="comments-status"><span>Pro</span></div> | |
31 | + <div class="comments-date">10.07.2015</div> | |
32 | + <div class="rating"> | |
33 | + <!--оценка--> | |
34 | + <input type="hidden" class="val" value="5"/> | |
35 | + </div> | |
36 | + <div class="comments-content"> | |
37 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
38 | + <p>Спасибо большое! Всем советуем!</p> | |
39 | + </div> | |
40 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
41 | + </li> | |
42 | + | |
43 | + <li> | |
44 | + <div class="comments-name">Иван Иванов</div> | |
45 | + <div class="comments-status"><span>Pro</span></div> | |
46 | + <div class="comments-date">10.07.2015</div> | |
47 | + <div class="rating"> | |
48 | + <!--оценка--> | |
49 | + <input type="hidden" class="val" value="4"/> | |
50 | + </div> | |
51 | + <div class="comments-content"> | |
52 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
53 | + <p>Спасибо большое! Всем советуем!</p> | |
54 | + </div> | |
55 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
56 | + </li> | |
57 | + | |
58 | + <li> | |
59 | + <div class="comments-name">Иван Иванов</div> | |
60 | + <div class="comments-status"><span>Pro</span></div> | |
61 | + <div class="comments-date">10.07.2015</div> | |
62 | + <div class="rating"> | |
63 | + <!--оценка--> | |
64 | + <input type="hidden" class="val" value="1"/> | |
65 | + </div> | |
66 | + <div class="comments-content"> | |
67 | + <p>Уже дважды пользовались услугами мастеров и очень довольны качеством работы, профессиональной консультацией в подборе материалов и оформлением дизайна!</p> | |
68 | + <p>Спасибо большое! Всем советуем!</p> | |
69 | + </div> | |
70 | + <div class="comments-project-link">Проект: <a href="#">Ремонт спальни</a></div> | |
71 | + </li> | |
72 | + </ul> | |
73 | + <div class="navi-buttons-wr style"> | |
74 | + <ul class="pagination"> | |
75 | + <li><a href="#">1</a></li> | |
76 | + <li><a href="#">2</a></li> | |
77 | + <li><a href="#">3</a></li> | |
78 | + <li><a href="#">4</a></li> | |
79 | + <li><a href="#">5</a></li> | |
80 | + <li class="dots-next"><a href="#">...</a></li> | |
81 | + <li><a href="#">156</a></li> | |
82 | + </ul> | |
83 | + </div> | |
84 | + </div> | |
85 | + | |
86 | +</div> | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | +<div class="performer-vacancy-vacant-title-reclam-wr style"> | |
10 | + <div class="workplace-wr"> | |
11 | + <div class="workplace-title style"><p>Опыт работы</p></div> | |
12 | + <div class="workplace-experience-wr style"> | |
13 | + <div class="workplace-experience-post"> | |
14 | + <div class="workplace-experience-post-title">Проектное бюра Арсеньева</div> | |
15 | + <div class="workplace-experience-post-date">08.2014-08.2015 (1 год)</div> | |
16 | + <div class="workplace-experience-post-vacancy">Архитектор</div> | |
17 | + </div> | |
18 | + | |
19 | + <div class="workplace-experience-post"> | |
20 | + <div class="workplace-experience-post-title">Студия Keppy</div> | |
21 | + <div class="workplace-experience-post-date">06.2009-08.2014 (5 лет 2 месяца)</div> | |
22 | + <div class="workplace-experience-post-vacancy">Архитектор, дизайнер</div> | |
23 | + </div> | |
24 | + | |
25 | + <div class="workplace-experience-post"> | |
26 | + <div class="workplace-experience-post-title">Фриланс</div> | |
27 | + <div class="workplace-experience-post-date">09.2008-06.2009 (9 месяцев)</div> | |
28 | + <div class="workplace-experience-post-vacancy">Дизайнер</div> | |
29 | + </div> | |
30 | + </div> | |
31 | + </div> | |
32 | +</div> | |
0 | 33 | \ No newline at end of file | ... | ... |
1 | +<?php | |
2 | + use \yii\helpers\Html; | |
3 | + | |
4 | + /* @var $this yii\web\View */ | |
5 | + $this->title = 'My Yii Application'; | |
6 | +?> | |
7 | + | |
8 | +<div class="section-box content"> | |
9 | + <div class="section-box-22"> | |
10 | + <div class="box-wr"> | |
11 | + <div class="box-all"> | |
12 | + <div class="left-search-work"> | |
13 | + <form action="" class="search-work-form"> | |
14 | + <div class="blocks-check-list-wrapp"> | |
15 | + <div class="blocks-check-title"><label for="theme-1">Город</label></div> | |
16 | + <select id="theme-1"> | |
17 | + <option selected value="">Любой</option> | |
18 | + <option value="">Киев</option> | |
19 | + <option value="">Житомир</option> | |
20 | + <option value="">Львов</option> | |
21 | + <option value="">Киев</option> | |
22 | + <option value="">Житомир</option> | |
23 | + <option value="">Львов</option> | |
24 | + </select> | |
25 | + </div> | |
26 | + <div class="blocks-check-list-wrapp"> | |
27 | + <div class="blocks-check-title"><label for="theme-2">Специализация</label></div> | |
28 | + <select id="theme-2"> | |
29 | + <option selected value="">Любая</option> | |
30 | + <option value="">Киев</option> | |
31 | + <option value="">Житомир</option> | |
32 | + <option value="">Львов</option> | |
33 | + <option value="">Киев</option> | |
34 | + <option value="">Житомир</option> | |
35 | + <option value="">Львов</option> | |
36 | + </select> | |
37 | + </div> | |
38 | + | |
39 | + <div class="blocks-check-list-wrapp"> | |
40 | + <div class="blocks-check-title"><label for="theme-3">Тип исполнителя</label></div> | |
41 | + <select id="theme-3"> | |
42 | + <option selected value="">Любая</option> | |
43 | + <option value="">Киев</option> | |
44 | + <option value="">Житомир</option> | |
45 | + <option value="">Львов</option> | |
46 | + <option value="">Киев</option> | |
47 | + <option value="">Житомир</option> | |
48 | + <option value="">Львов</option> | |
49 | + </select> | |
50 | + </div> | |
51 | + | |
52 | + <div class="blocks-check-list-wrapp"> | |
53 | + <div class="blocks-check-title">Условия работы</div> | |
54 | + <div class="blocks-check-list"> | |
55 | + <input type="checkbox" name="group2" class="check-search" id="theme-4"><label for="theme-4"><span></span>С гарантией</label> | |
56 | + </div> | |
57 | + <div class="blocks-check-list"> | |
58 | + <input type="checkbox" name="group2" class="check-search" id="theme-5"><label for="theme-5"><span></span>С договором</label> | |
59 | + </div> | |
60 | + <div class="blocks-check-list"> | |
61 | + <input type="checkbox" name="group2" class="check-search" id="theme-6"><label for="theme-6"><span></span>Со сметой</label> | |
62 | + </div> | |
63 | + <div class="blocks-check-list"> | |
64 | + <input type="checkbox" name="group2" class="check-search" id="theme-7"><label for="theme-7"><span></span>Без предоплаты</label> | |
65 | + </div> | |
66 | + </div> | |
67 | + | |
68 | + <div class="blocks-check-list-wrapp"> | |
69 | + <div class="blocks-check-title">Рейтинг</div> | |
70 | + <div class="rating"> | |
71 | + <!--оценка--> | |
72 | + <input type="hidden" class="val" value="0"/> | |
73 | + </div> | |
74 | + </div> | |
75 | + | |
76 | + <div class="blocks-check-list-wrapp"> | |
77 | + <div class="blocks-check-title">Статус</div> | |
78 | + <div class="blocks-check-list"> | |
79 | + <input type="radio" name="group3" class="check-search" id="theme-8"><label for="theme-8"><span></span>Онлайн</label> | |
80 | + </div> | |
81 | + <div class="blocks-check-list"> | |
82 | + <input type="radio" name="group3" class="check-search" id="theme-9" checked><label for="theme-9"><span></span>Все</label> | |
83 | + </div> | |
84 | + </div> | |
85 | + | |
86 | + <div class="blocks-check-list-wrapp"> | |
87 | + <div class="blocks-check-title">Дополнительно</div> | |
88 | + <div class="blocks-check-list"> | |
89 | + <input type="checkbox" name="group4" class="check-search" id="theme-10"><label for="theme-10"><span></span>Только с портфолио</label> | |
90 | + </div> | |
91 | + <div class="blocks-check-list"> | |
92 | + <input type="checkbox" name="group4" class="check-search" id="theme-11"><label for="theme-11"><span></span>Только с отзывами</label> | |
93 | + </div> | |
94 | + <div class="blocks-check-list"> | |
95 | + <input type="checkbox" name="group4" class="check-search" id="theme-12"><label for="theme-12"><span></span>Только свободные</label> | |
96 | + </div> | |
97 | + </div> | |
98 | + <div class="blocks-check-list-submit"> | |
99 | + <input type="submit" value="Найти"/> | |
100 | + </div> | |
101 | + </form> | |
102 | + </div> | |
103 | + <div class="right-search-work"> | |
104 | + <div class="search-worker-title style">Найти исполнителя</div> | |
105 | + <div class="search-worker-title-two style">Компании готовые приступить к работе <span>145</span></div> | |
106 | + <div class="search-worker-search-wr style"> | |
107 | + <form action="" class="search-worker-form"> | |
108 | + <input id="srch-wrk-text" type="text" placeholder="Любая информация о проектанте" required=""/> | |
109 | + <input id="srch-wrk-sub" type="submit" value="Найти"/> | |
110 | + </form> | |
111 | + <a href="#" class="add-to-catalog-search-worker">Добавить себя в каталог</a> | |
112 | + <div class="search-worker-sort-wr style"> | |
113 | + <div class="search-worker-sort">Сортировать: </div> | |
114 | + <ul> | |
115 | + <li class="activejob"> | |
116 | + <a href="#">рейтинг</a> | |
117 | + <div class="sidebar-droped-wr style"> | |
118 | + <ul> | |
119 | + <li><a href="#">1заказчик</a></li> | |
120 | + <li><a href="#">2заказчик</a></li> | |
121 | + <li><a href="#">3заказчик</a></li> | |
122 | + <li><a href="#">4заказчик</a></li> | |
123 | + <li style="display: none"><a href="#">рейтинг</a></li> | |
124 | + </ul> | |
125 | + </div> | |
126 | + </li> | |
127 | + </ul> | |
128 | + </div> | |
129 | + </div> | |
130 | + | |
131 | + <div class="search-company-blocks-wr style"> | |
132 | + <div class="search-company-block"> | |
133 | + <div class="search-company-block-left"> | |
134 | + <div class="search-worker-blocks-title-wr"> | |
135 | + <div class="land-stars-pro">PRO</div> | |
136 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
137 | + </div> | |
138 | + <div class="search-worker-blocks-title-wr"> | |
139 | + <div class="rating-new"> | |
140 | + <!--оценка--> | |
141 | + <input type="hidden" class="val" value="4"/> | |
142 | + </div> | |
143 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
144 | + </div> | |
145 | + <div class="search-worker-blocks-title-wr"> | |
146 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
147 | + </div> | |
148 | + <div class="search-worker-blocks-title-wr"> | |
149 | + <div class="search-company-geography"> | |
150 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
151 | + </div> | |
152 | + </div> | |
153 | + <div class="search-worker-blocks-title-wr"> | |
154 | + <div class="features-tags features-tags-company"> | |
155 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span> | |
156 | + </div> | |
157 | + </div> | |
158 | + <div class="search-worker-blocks-title-wr"> | |
159 | + <div class="search-company-visit"> | |
160 | + <span>Последний визит: </span>2 дня назад | |
161 | + </div> | |
162 | + </div> | |
163 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
164 | + <div class="search-worker-blocks-buttons style"> | |
165 | + <a class="get-project" href="#">Предложить проект</a> | |
166 | + <a class="get-list" href="#">Добавить в закладки</a> | |
167 | + </div> | |
168 | + </div> | |
169 | + <div class="search-company-block-right"> | |
170 | + <div class="search-worker-blocks-foto-wr"> | |
171 | + <div class="logo-img-search-company-wrapper"> | |
172 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
173 | + <tr> | |
174 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
175 | + </tr> | |
176 | + </table> | |
177 | + </div> | |
178 | + <div class="gallery-box-search gallery-box"> | |
179 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
180 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
181 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
182 | + <div class="gallery-box-hidden"> | |
183 | + <div class="gallery-box-preview"> | |
184 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
185 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
186 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
187 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
188 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
189 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
190 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
191 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
192 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
193 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
194 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
195 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
196 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
197 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
198 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
199 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
200 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
201 | + </div> | |
202 | + <div class="gallery-box-big"> | |
203 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
204 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
205 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
206 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
207 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
208 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
209 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
210 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
211 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
212 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
213 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
214 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
215 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
216 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
217 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
218 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
219 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
220 | + </div> | |
221 | + </div> | |
222 | + </div> | |
223 | + </div> | |
224 | + </div> | |
225 | + </div> | |
226 | + <div class="search-company-block"> | |
227 | + <div class="search-company-block-left"> | |
228 | + <div class="search-worker-blocks-title-wr"> | |
229 | + <div class="land-stars-new">NEW</div> | |
230 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
231 | + </div> | |
232 | + <div class="search-worker-blocks-title-wr"> | |
233 | + <div class="rating-new"> | |
234 | + <!--оценка--> | |
235 | + <input type="hidden" class="val" value="4"/> | |
236 | + </div> | |
237 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
238 | + </div> | |
239 | + <div class="search-worker-blocks-title-wr"> | |
240 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
241 | + </div> | |
242 | + <div class="search-worker-blocks-title-wr"> | |
243 | + <div class="search-company-geography"> | |
244 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
245 | + </div> | |
246 | + </div> | |
247 | + <div class="search-worker-blocks-title-wr"> | |
248 | + <div class="features-tags features-tags-company"> | |
249 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span> | |
250 | + </div> | |
251 | + </div> | |
252 | + <div class="search-worker-blocks-title-wr"> | |
253 | + <div class="search-company-visit"> | |
254 | + <span>Последний визит: </span>2 дня назад | |
255 | + </div> | |
256 | + </div> | |
257 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
258 | + <div class="search-worker-blocks-buttons style"> | |
259 | + <a class="get-project" href="#">Предложить проект</a> | |
260 | + <a class="get-list" href="#">Добавить в закладки</a> | |
261 | + </div> | |
262 | + </div> | |
263 | + <div class="search-company-block-right"> | |
264 | + <div class="search-worker-blocks-foto-wr"> | |
265 | + <div class="logo-img-search-company-wrapper"> | |
266 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
267 | + <tr> | |
268 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
269 | + </tr> | |
270 | + </table> | |
271 | + </div> | |
272 | + <div class="gallery-box-search gallery-box"> | |
273 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
274 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
275 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
276 | + <div class="gallery-box-hidden"> | |
277 | + <div class="gallery-box-preview"> | |
278 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
279 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
280 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
281 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
282 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
283 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
284 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
285 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
286 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
287 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
288 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
289 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
290 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
291 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
292 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
293 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
294 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
295 | + </div> | |
296 | + <div class="gallery-box-big"> | |
297 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
298 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
299 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
300 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
301 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
302 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
303 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
304 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
305 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
306 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
307 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
308 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
309 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
310 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
311 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
312 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
313 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
314 | + </div> | |
315 | + </div> | |
316 | + </div> | |
317 | + </div> | |
318 | + </div> | |
319 | + </div> | |
320 | + <div class="search-company-block"> | |
321 | + <div class="search-company-block-left"> | |
322 | + <div class="search-worker-blocks-title-wr"> | |
323 | + <div class="land-stars-pro">PRO</div> | |
324 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
325 | + </div> | |
326 | + <div class="search-worker-blocks-title-wr"> | |
327 | + <div class="rating-new"> | |
328 | + <!--оценка--> | |
329 | + <input type="hidden" class="val" value="4"/> | |
330 | + </div> | |
331 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
332 | + </div> | |
333 | + <div class="search-worker-blocks-title-wr"> | |
334 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
335 | + </div> | |
336 | + <div class="search-worker-blocks-title-wr"> | |
337 | + <div class="search-company-geography"> | |
338 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
339 | + </div> | |
340 | + </div> | |
341 | + <div class="search-worker-blocks-title-wr"> | |
342 | + <div class="features-tags features-tags-company"> | |
343 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span> | |
344 | + </div> | |
345 | + </div> | |
346 | + <div class="search-worker-blocks-title-wr"> | |
347 | + <div class="search-company-visit"> | |
348 | + <span>Последний визит: </span>2 дня назад | |
349 | + </div> | |
350 | + </div> | |
351 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
352 | + <div class="search-worker-blocks-buttons style"> | |
353 | + <a class="get-project" href="#">Предложить проект</a> | |
354 | + <a class="get-list" href="#">Добавить в закладки</a> | |
355 | + </div> | |
356 | + </div> | |
357 | + <div class="search-company-block-right"> | |
358 | + <div class="search-worker-blocks-foto-wr"> | |
359 | + <div class="logo-img-search-company-wrapper"> | |
360 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
361 | + <tr> | |
362 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
363 | + </tr> | |
364 | + </table> | |
365 | + </div> | |
366 | + <div class="gallery-box-search gallery-box"> | |
367 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
368 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
369 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
370 | + <div class="gallery-box-hidden"> | |
371 | + <div class="gallery-box-preview"> | |
372 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
373 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
374 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
375 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
376 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
377 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
378 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
379 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
380 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
381 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
382 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
383 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
384 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
385 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
386 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
387 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
388 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
389 | + </div> | |
390 | + <div class="gallery-box-big"> | |
391 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
392 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
393 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
394 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
395 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
396 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
397 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
398 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
399 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
400 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
401 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
402 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
403 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
404 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
405 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
406 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
407 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
408 | + </div> | |
409 | + </div> | |
410 | + </div> | |
411 | + </div> | |
412 | + </div> | |
413 | + </div> | |
414 | + <div class="search-company-block"> | |
415 | + <div class="search-company-block-left"> | |
416 | + <div class="search-worker-blocks-title-wr"> | |
417 | + <div class="land-stars-pro">PRO</div> | |
418 | + <div class="search-worker-blocks-title">ООО «Ортекс»</div> | |
419 | + </div> | |
420 | + <div class="search-worker-blocks-title-wr"> | |
421 | + <div class="rating-new"> | |
422 | + <!--оценка--> | |
423 | + <input type="hidden" class="val" value="4"/> | |
424 | + </div> | |
425 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
426 | + </div> | |
427 | + <div class="search-worker-blocks-title-wr"> | |
428 | + <span class="search-company-worker">Сотрудники: более 40 </span> | |
429 | + </div> | |
430 | + <div class="search-worker-blocks-title-wr"> | |
431 | + <div class="search-company-geography"> | |
432 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
433 | + </div> | |
434 | + </div> | |
435 | + <div class="search-worker-blocks-title-wr"> | |
436 | + <div class="features-tags features-tags-company"> | |
437 | + <span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">Архитектурное проектирование</a>, </span><span><a href="#">Ремонт квартир</a>, </span><span><a href="#">Ремонт ванной</a>, </span><span><a href="#">Отделка домов</a>, </span><span><a href="#">Строительство коттеджей</a>, </span><span><a href="#">Дизайн интерьера</a>, </span><span><a href="#">2Архитектурное проектирование</a>, </span><span><a href="#">2Ремонт квартир</a>, </span><span><a href="#">2Ремонт ванной</a>, </span><span><a href="#">2Отделка домов</a>, </span><span><a href="#">2Строительство коттеджей</a>, </span><span><a href="#">2Отделка домов</a>, </span> | |
438 | + </div> | |
439 | + </div> | |
440 | + <div class="search-worker-blocks-title-wr"> | |
441 | + <div class="search-company-visit"> | |
442 | + <span>Последний визит: </span>2 дня назад | |
443 | + </div> | |
444 | + </div> | |
445 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
446 | + <div class="search-worker-blocks-buttons style"> | |
447 | + <a class="get-project" href="#">Предложить проект</a> | |
448 | + <a class="get-list" href="#">Добавить в закладки</a> | |
449 | + </div> | |
450 | + </div> | |
451 | + <div class="search-company-block-right"> | |
452 | + <div class="search-worker-blocks-foto-wr"> | |
453 | + <div class="logo-img-search-company-wrapper"> | |
454 | + <table cellpadding="0" cellspacing="0" border="0" width="100%"> | |
455 | + <tr> | |
456 | + <td align="center"><img src="/images/logo-company.jpg" alt=""></td> | |
457 | + </tr> | |
458 | + </table> | |
459 | + </div> | |
460 | + <div class="gallery-box-search gallery-box"> | |
461 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
462 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
463 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
464 | + <div class="gallery-box-hidden"> | |
465 | + <div class="gallery-box-preview"> | |
466 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
467 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
468 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
469 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
470 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
471 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
472 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
473 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
474 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
475 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
476 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
477 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
478 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
479 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
480 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
481 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
482 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
483 | + </div> | |
484 | + <div class="gallery-box-big"> | |
485 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
486 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
487 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
488 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
489 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
490 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
491 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
492 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
493 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
494 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
495 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
496 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
497 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
498 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
499 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
500 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
501 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
502 | + </div> | |
503 | + </div> | |
504 | + </div> | |
505 | + </div> | |
506 | + </div> | |
507 | + </div> | |
508 | + <div class="navi-buttons-wr style"> | |
509 | + <ul class="pagination"> | |
510 | + <li><a href="#">1</a></li> | |
511 | + <li class="active"><a href="#">2</a></li> | |
512 | + <li><a href="#">3</a></li> | |
513 | + <li><a href="#">4</a></li> | |
514 | + <li><a href="#">5</a></li> | |
515 | + <li class="dots-next"><a href="#">...</a></li> | |
516 | + <li><a href="#">156</a></li> | |
517 | + </ul> | |
518 | + </div> | |
519 | + </div> | |
520 | + | |
521 | + </div> | |
522 | + </div> | |
523 | + </div> | |
524 | + </div> | |
525 | + | |
526 | +</div> | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | + | |
10 | +<div class="section-box content"> | |
11 | + <div class="section-box-22"> | |
12 | + <div class="box-wr"> | |
13 | + <div class="box-all"> | |
14 | + <div class="left-search-work"> | |
15 | + <form action="" class="search-work-form"> | |
16 | + <div class="blocks-check-list-wrapp"> | |
17 | + <div class="blocks-check-title"><label for="theme-1">Город</label></div> | |
18 | + <select id="theme-1"> | |
19 | + <option selected value="">Любой</option> | |
20 | + <option value="">Киев</option> | |
21 | + <option value="">Житомир</option> | |
22 | + <option value="">Львов</option> | |
23 | + <option value="">Киев</option> | |
24 | + <option value="">Житомир</option> | |
25 | + <option value="">Львов</option> | |
26 | + | |
27 | + <option value="">Киев</option> | |
28 | + <option value="">Житомир</option> | |
29 | + <option value="">Львов</option> | |
30 | + <option value="">Киев</option> | |
31 | + <option value="">Житомир</option> | |
32 | + <option value="">Львов</option> | |
33 | + <option value="">Киев</option> | |
34 | + <option value="">Житомир</option> | |
35 | + <option value="">Львов</option> | |
36 | + <option value="">Киев</option> | |
37 | + <option value="">Житомир</option> | |
38 | + <option value="">Львов</option> | |
39 | + <option value="">Киев</option> | |
40 | + <option value="">Житомир</option> | |
41 | + <option value="">Львов</option> | |
42 | + <option value="">Киев</option> | |
43 | + <option value="">Житомир</option> | |
44 | + <option value="">Львов</option> | |
45 | + <option value="">Киев</option> | |
46 | + <option value="">Житомир</option> | |
47 | + <option value="">Львов</option> | |
48 | + <option value="">Киев</option> | |
49 | + <option value="">Житомир</option> | |
50 | + <option value="">Львов</option> | |
51 | + <option value="">Киев</option> | |
52 | + <option value="">Житомир</option> | |
53 | + <option value="">Львов</option> | |
54 | + <option value="">Киев</option> | |
55 | + <option value="">Житомир</option> | |
56 | + <option value="">Львов</option> | |
57 | + <option value="">Киев</option> | |
58 | + <option value="">Житомир</option> | |
59 | + <option value="">Львов</option> | |
60 | + <option value="">Киев</option> | |
61 | + <option value="">Житомир</option> | |
62 | + <option value="">Львов</option> | |
63 | + <option value="">Киев</option> | |
64 | + <option value="">Житомир</option> | |
65 | + <option value="">Львов</option> | |
66 | + <option value="">Киев</option> | |
67 | + <option value="">Житомир</option> | |
68 | + <option value="">Львов</option> | |
69 | + <option value="">Киев</option> | |
70 | + <option value="">Житомир</option> | |
71 | + <option value="">Львов</option> | |
72 | + <option value="">Киев</option> | |
73 | + <option value="">Житомир</option> | |
74 | + <option value="">Львов</option> | |
75 | + <option value="">Киев</option> | |
76 | + <option value="">Житомир</option> | |
77 | + <option value="">Львов</option> | |
78 | + <option value="">Киев</option> | |
79 | + <option value="">Житомир</option> | |
80 | + <option value="">Львов</option> | |
81 | + <option value="">Киев</option> | |
82 | + | |
83 | + </select> | |
84 | + </div> | |
85 | + <div class="blocks-check-list-wrapp"> | |
86 | + <div class="blocks-check-title"><label for="theme-2">Специализация</label></div> | |
87 | + <select id="theme-2"> | |
88 | + <option selected value="">Любая</option> | |
89 | + <option value="">Киев</option> | |
90 | + <option value="">Житомир</option> | |
91 | + <option value="">Львов</option> | |
92 | + <option value="">Киев</option> | |
93 | + <option value="">Житомир</option> | |
94 | + <option value="">Львов</option> | |
95 | + </select> | |
96 | + </div> | |
97 | + | |
98 | + <div class="blocks-check-list-wrapp"> | |
99 | + <div class="blocks-check-title"><label for="theme-3">Тип исполнителя</label></div> | |
100 | + <select id="theme-3"> | |
101 | + <option selected value="">Любая</option> | |
102 | + <option value="">Киев</option> | |
103 | + <option value="">Житомир</option> | |
104 | + <option value="">Львов</option> | |
105 | + <option value="">Киев</option> | |
106 | + <option value="">Житомир</option> | |
107 | + <option value="">Львов</option> | |
108 | + </select> | |
109 | + </div> | |
110 | + | |
111 | + <div class="blocks-check-list-wrapp"> | |
112 | + <div class="blocks-check-title">Условия работы</div> | |
113 | + <div class="blocks-check-list"> | |
114 | + <input type="checkbox" name="group2" class="check-search" id="theme-4"><label for="theme-4"><span></span>С гарантией</label> | |
115 | + </div> | |
116 | + <div class="blocks-check-list"> | |
117 | + <input type="checkbox" name="group2" class="check-search" id="theme-5"><label for="theme-5"><span></span>С договором</label> | |
118 | + </div> | |
119 | + <div class="blocks-check-list"> | |
120 | + <input type="checkbox" name="group2" class="check-search" id="theme-6"><label for="theme-6"><span></span>Со сметой</label> | |
121 | + </div> | |
122 | + <div class="blocks-check-list"> | |
123 | + <input type="checkbox" name="group2" class="check-search" id="theme-7"><label for="theme-7"><span></span>Без предоплаты</label> | |
124 | + </div> | |
125 | + </div> | |
126 | + | |
127 | + <div class="blocks-check-list-wrapp"> | |
128 | + <div class="blocks-check-title">Рейтинг</div> | |
129 | + <div class="rating"> | |
130 | + <!--оценка--> | |
131 | + <input type="hidden" class="val" value="0"/> | |
132 | + </div> | |
133 | + </div> | |
134 | + | |
135 | + <div class="blocks-check-list-wrapp"> | |
136 | + <div class="blocks-check-title">Статус</div> | |
137 | + <div class="blocks-check-list"> | |
138 | + <input type="radio" name="group3" class="check-search" id="theme-8"><label for="theme-8"><span></span>Онлайн</label> | |
139 | + </div> | |
140 | + <div class="blocks-check-list"> | |
141 | + <input type="radio" name="group3" class="check-search" id="theme-9" checked><label for="theme-9"><span></span>Все</label> | |
142 | + </div> | |
143 | + </div> | |
144 | + | |
145 | + <div class="blocks-check-list-wrapp"> | |
146 | + <div class="blocks-check-title">Дополнительно</div> | |
147 | + <div class="blocks-check-list"> | |
148 | + <input type="checkbox" name="group4" class="check-search" id="theme-10"><label for="theme-10"><span></span>Только с портфолио</label> | |
149 | + </div> | |
150 | + <div class="blocks-check-list"> | |
151 | + <input type="checkbox" name="group4" class="check-search" id="theme-11"><label for="theme-11"><span></span>Только с отзывами</label> | |
152 | + </div> | |
153 | + <div class="blocks-check-list"> | |
154 | + <input type="checkbox" name="group4" class="check-search" id="theme-12"><label for="theme-12"><span></span>Только свободные</label> | |
155 | + </div> | |
156 | + </div> | |
157 | + <div class="blocks-check-list-submit"> | |
158 | + <input type="submit" value="Найти"/> | |
159 | + </div> | |
160 | + </form> | |
161 | + </div> | |
162 | + <div class="right-search-work"> | |
163 | + <div class="search-worker-title style">Найти исполнителя</div> | |
164 | + <div class="search-worker-title-two style">Проектанты готовые приступить к работе <span>145</span></div> | |
165 | + <div class="search-worker-search-wr style"> | |
166 | + <form action="" class="search-worker-form"> | |
167 | + <input id="srch-wrk-text" type="text" placeholder="Любая информация о проектанте" required=""/> | |
168 | + <input id="srch-wrk-sub" type="submit" value="Найти"/> | |
169 | + </form> | |
170 | + <a href="#" class="add-to-catalog-search-worker">Добавить себя в каталог</a> | |
171 | + <div class="search-worker-sort-wr style"> | |
172 | + <div class="search-worker-sort">Сортировать: </div> | |
173 | + <ul> | |
174 | + <li class="activejob"> | |
175 | + <a href="#">рейтинг</a> | |
176 | + <div class="sidebar-droped-wr style"> | |
177 | + <ul> | |
178 | + <li><a href="#">1заказчик</a></li> | |
179 | + <li><a href="#">2заказчик</a></li> | |
180 | + <li><a href="#">3заказчик</a></li> | |
181 | + <li><a href="#">4заказчик</a></li> | |
182 | + <li style="display: none"><a href="#">рейтинг</a></li> | |
183 | + </ul> | |
184 | + </div> | |
185 | + </li> | |
186 | + </ul> | |
187 | + </div> | |
188 | + </div> | |
189 | + | |
190 | + <div class="search-worker-blocks-wr style"> | |
191 | + <div class="search-worker-blocks"> | |
192 | + <div class="search-worker-blocks-foto-wr"> | |
193 | + <div class="gallery-box-search gallery-box"> | |
194 | + <a href="#" class="big-img-search gallery-box-min"><img src="/images/search-warker/foto-big-1.jpg" alt=""></a> | |
195 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
196 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
197 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
198 | + <div class="gallery-box-hidden"> | |
199 | + <div class="gallery-box-preview"> | |
200 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
201 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
202 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
203 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
204 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
205 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
206 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
207 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
208 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
209 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
210 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
211 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
212 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
213 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
214 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
215 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
216 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
217 | + </div> | |
218 | + <div class="gallery-box-big"> | |
219 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
220 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
221 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
222 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
223 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
224 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
225 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
226 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
227 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
228 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
229 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
230 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
231 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
232 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
233 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
234 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
235 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
236 | + </div> | |
237 | + </div> | |
238 | + </div> | |
239 | + </div> | |
240 | + | |
241 | + <div class="search-worker-blocks-text-wr"> | |
242 | + <div class="search-worker-blocks-ico-wr"> | |
243 | + <img src="/images/ded-ico.png" alt=""/> | |
244 | + </div> | |
245 | + <div class="search-worker-blocks-title-wr"> | |
246 | + <div class="land-stars-pro">PRO</div> | |
247 | + <div class="search-worker-blocks-title">Петер Цумтор</div> | |
248 | + </div> | |
249 | + <div class="search-worker-blocks-title-wr"> | |
250 | + <div class="rating-new"> | |
251 | + <!--оценка--> | |
252 | + <input type="hidden" class="val" value="4"/> | |
253 | + <!--количество голосов--> | |
254 | + <!--<input type="hidden" class="votes" value="12"/>--> | |
255 | + | |
256 | + </div> | |
257 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
258 | + </div> | |
259 | + <div class="search-worker-blocks-title-wr"> | |
260 | + <div class="search-worker-blocks-status"><img src="/images/sidebar-ico/ico-9.png" alt=""/><span>свободен</span></div> | |
261 | + </div> | |
262 | + <div class="search-worker-blocks-geographic style"> | |
263 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
264 | + </div> | |
265 | + <div class="search-worker-blocks-tags style"> | |
266 | + <a href="#">Дизайн интерьера</a>,<a href="#">Архитектурное проектирование</a>, <a href="#">Ремонт квартир</a>, <a href="#">Ремонт ванной</a>, <a href="#">Отделка домов</a>, <a href="#">Строительство коттеджей</a> | |
267 | + </div> | |
268 | + <div class="search-worker-blocks-visit style"><span>Последний визит: </span>2 дня назад</div> | |
269 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
270 | + <div class="search-worker-blocks-buttons style"> | |
271 | + <a class="get-list" href="#">Добавить в закладки</a> | |
272 | + <a class="get-project" href="#">Предложить проект</a> | |
273 | + </div> | |
274 | + </div> | |
275 | + </div> | |
276 | + | |
277 | + <div class="search-worker-blocks"> | |
278 | + <div class="search-worker-blocks-foto-wr"> | |
279 | + <div class="gallery-box-search gallery-box"> | |
280 | + <a href="#" class="big-img-search gallery-box-min"><img src="/images/search-warker/foto-big-1.jpg" alt=""></a> | |
281 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
282 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
283 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
284 | + <div class="gallery-box-hidden"> | |
285 | + <div class="gallery-box-preview"> | |
286 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
287 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
288 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
289 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
290 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
291 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
292 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
293 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
294 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
295 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
296 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
297 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
298 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
299 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
300 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
301 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
302 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
303 | + </div> | |
304 | + <div class="gallery-box-big"> | |
305 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
306 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
307 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
308 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
309 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
310 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
311 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
312 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
313 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
314 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
315 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
316 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
317 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
318 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
319 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
320 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
321 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
322 | + </div> | |
323 | + </div> | |
324 | + </div> | |
325 | + </div> | |
326 | + | |
327 | + <div class="search-worker-blocks-text-wr"> | |
328 | + <div class="search-worker-blocks-ico-wr"> | |
329 | + <img src="/images/ded-ico.png" alt=""/> | |
330 | + </div> | |
331 | + <div class="search-worker-blocks-title-wr"> | |
332 | + <div class="land-stars-new">NEW</div> | |
333 | + <div class="search-worker-blocks-title">Петер Цумтор</div> | |
334 | + </div> | |
335 | + <div class="search-worker-blocks-title-wr"> | |
336 | + <div class="rating-new"> | |
337 | + <!--оценка--> | |
338 | + <input type="hidden" class="val" value="4"/> | |
339 | + <!--количество голосов--> | |
340 | + <!--<input type="hidden" class="votes" value="12"/>--> | |
341 | + | |
342 | + </div> | |
343 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
344 | + </div> | |
345 | + <div class="search-worker-blocks-title-wr"> | |
346 | + <div class="search-worker-blocks-status"><img src="/images/sidebar-ico/ico-9.png" alt=""/><span>свободен</span></div> | |
347 | + </div> | |
348 | + <div class="search-worker-blocks-geographic style"> | |
349 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
350 | + </div> | |
351 | + <div class="search-worker-blocks-tags style"> | |
352 | + <a href="#">Дизайн интерьера</a>,<a href="#">Архитектурное проектирование</a>, <a href="#">Ремонт квартир</a>, <a href="#">Ремонт ванной</a>, <a href="#">Отделка домов</a>, <a href="#">Строительство коттеджей</a> | |
353 | + </div> | |
354 | + <div class="search-worker-blocks-visit style"><span>Последний визит: </span>2 дня назад</div> | |
355 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
356 | + <div class="search-worker-blocks-buttons style"> | |
357 | + <a class="get-list" href="#">Добавить в закладки</a> | |
358 | + <a class="get-project" href="#">Предложить проект</a> | |
359 | + </div> | |
360 | + </div> | |
361 | + </div> | |
362 | + | |
363 | + <div class="search-worker-blocks"> | |
364 | + <div class="search-worker-blocks-foto-wr"> | |
365 | + <div class="gallery-box-search gallery-box"> | |
366 | + <a href="#" class="big-img-search gallery-box-min"><img src="/images/search-warker/foto-big-1.jpg" alt=""></a> | |
367 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-2.jpg" alt=""></a> | |
368 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-3.jpg" alt=""></a> | |
369 | + <a href="#" class="small-img-search gallery-box-min"><img src="/images/search-warker/foto-small-4.jpg" alt=""></a> | |
370 | + <div class="gallery-box-hidden"> | |
371 | + <div class="gallery-box-preview"> | |
372 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
373 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
374 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
375 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
376 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
377 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
378 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
379 | + <span data-link="/images/gallery-pic/gallery-preview/img-8.jpg"></span> | |
380 | + <span data-link="/images/gallery-pic/gallery-preview/img-9.jpg"></span> | |
381 | + <span data-link="/images/gallery-pic/gallery-preview/img-10.jpg"></span> | |
382 | + <span data-link="/images/gallery-pic/gallery-preview/img-1.jpg"></span> | |
383 | + <span data-link="/images/gallery-pic/gallery-preview/img-2.jpg"></span> | |
384 | + <span data-link="/images/gallery-pic/gallery-preview/img-3.jpg"></span> | |
385 | + <span data-link="/images/gallery-pic/gallery-preview/img-4.jpg"></span> | |
386 | + <span data-link="/images/gallery-pic/gallery-preview/img-5.jpg"></span> | |
387 | + <span data-link="/images/gallery-pic/gallery-preview/img-6.jpg"></span> | |
388 | + <span data-link="/images/gallery-pic/gallery-preview/img-7.jpg"></span> | |
389 | + </div> | |
390 | + <div class="gallery-box-big"> | |
391 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
392 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
393 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
394 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
395 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
396 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
397 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
398 | + <span data-link="/images/gallery-pic/gallery-big/img-big-8.jpg"></span> | |
399 | + <span data-link="/images/gallery-pic/gallery-big/img-big-9.jpg"></span> | |
400 | + <span data-link="/images/gallery-pic/gallery-big/img-big-10.jpg"></span> | |
401 | + <span data-link="/images/gallery-pic/gallery-big/img-big-1.jpg"></span> | |
402 | + <span data-link="/images/gallery-pic/gallery-big/img-big-2.jpg"></span> | |
403 | + <span data-link="/images/gallery-pic/gallery-big/img-big-3.jpg"></span> | |
404 | + <span data-link="/images/gallery-pic/gallery-big/img-big-4.jpg"></span> | |
405 | + <span data-link="/images/gallery-pic/gallery-big/img-big-5.jpg"></span> | |
406 | + <span data-link="/images/gallery-pic/gallery-big/img-big-6.jpg"></span> | |
407 | + <span data-link="/images/gallery-pic/gallery-big/img-big-7.jpg"></span> | |
408 | + </div> | |
409 | + </div> | |
410 | + </div> | |
411 | + </div> | |
412 | + | |
413 | + <div class="search-worker-blocks-text-wr"> | |
414 | + <div class="search-worker-blocks-ico-wr"> | |
415 | + <img src="/images/ded-ico.png" alt=""/> | |
416 | + </div> | |
417 | + <div class="search-worker-blocks-title-wr"> | |
418 | + <div class="land-stars-pro">PRO</div> | |
419 | + <div class="search-worker-blocks-title">Петер Цумтор</div> | |
420 | + </div> | |
421 | + <div class="search-worker-blocks-title-wr"> | |
422 | + <div class="rating-new"> | |
423 | + <!--оценка--> | |
424 | + <input type="hidden" class="val" value="4"/> | |
425 | + <!--количество голосов--> | |
426 | + <!--<input type="hidden" class="votes" value="12"/>--> | |
427 | + | |
428 | + </div> | |
429 | + <div class="search-worker-blocks-atr">30 отзывов, Киев</div> | |
430 | + </div> | |
431 | + <div class="search-worker-blocks-title-wr"> | |
432 | + <div class="search-worker-blocks-status"><img src="/images/sidebar-ico/ico-9.png" alt=""/><span>свободен</span></div> | |
433 | + </div> | |
434 | + <div class="search-worker-blocks-geographic style"> | |
435 | + <span>География работ: </span>Киев, Полтава, Харьков, Днепропетровск, Львов, Одесса | |
436 | + </div> | |
437 | + <div class="search-worker-blocks-tags style"> | |
438 | + <a href="#">Дизайн интерьера</a>,<a href="#">Архитектурное проектирование</a>, <a href="#">Ремонт квартир</a>, <a href="#">Ремонт ванной</a>, <a href="#">Отделка домов</a>, <a href="#">Строительство коттеджей</a> | |
439 | + </div> | |
440 | + <div class="search-worker-blocks-visit style"><span>Последний визит: </span>2 дня назад</div> | |
441 | + <a href="#" class="search-worker-blocks-jobs-portfolio">21 работа в портфолио</a> | |
442 | + <div class="search-worker-blocks-buttons style"> | |
443 | + <a class="get-list" href="#">Добавить в закладки</a> | |
444 | + <a class="get-project" href="#">Предложить проект</a> | |
445 | + </div> | |
446 | + </div> | |
447 | + </div> | |
448 | + | |
449 | + <div class="navi-buttons-wr style"> | |
450 | + <ul class="pagination"> | |
451 | + <li><a href="#">1</a></li> | |
452 | + <li><a href="#">2</a></li> | |
453 | + <li><a href="#">3</a></li> | |
454 | + <li><a href="#">4</a></li> | |
455 | + <li><a href="#">5</a></li> | |
456 | + <li class="dots-next"><a href="#">...</a></li> | |
457 | + <li><a href="#">156</a></li> | |
458 | + </ul> | |
459 | + </div> | |
460 | + | |
461 | + </div> | |
462 | + </div> | |
463 | + </div> | |
464 | + </div> | |
465 | + </div> | |
466 | + | |
467 | +</div> | |
468 | + | |
469 | + | ... | ... |
1 | +<?php | |
2 | + | |
3 | +use \yii\helpers\Html; | |
4 | + | |
5 | +/* @var $this yii\web\View */ | |
6 | + | |
7 | +$this->title = 'My Yii Application'; | |
8 | +?> | |
9 | + | |
10 | +<div class="section-box content"> | |
11 | + <div class="section-box-22"> | |
12 | + <div class="box-wr"> | |
13 | + <div class="box-all"> | |
14 | + <div class="left-search-work"> | |
15 | + <form action="" class="search-work-form"> | |
16 | + | |
17 | + <div class="blocks-check-list-wrapp"> | |
18 | + <div class="blocks-check-title">Профиль</div> | |
19 | + <div class="blocks-check-list-wrapp"> | |
20 | + <select> | |
21 | + <option selected disabled>Дизайн</option> | |
22 | + <option value="">Ландшафтный дизайн</option> | |
23 | + <option value="">Интерьерный дизайн</option> | |
24 | + </select> | |
25 | + </div> | |
26 | + | |
27 | + <div class="blocks-check-list-wrapp"> | |
28 | + <select> | |
29 | + <option selected disabled>Архитектура</option> | |
30 | + <option value="">Ландшафтный дизайн</option> | |
31 | + <option value="">Интерьерный дизайн</option> | |
32 | + </select> | |
33 | + </div> | |
34 | + | |
35 | + <div class="blocks-check-list-wrapp"> | |
36 | + <select> | |
37 | + <option selected disabled>Строительство</option> | |
38 | + <option value="">Ландшафтный дизайн</option> | |
39 | + <option value="">Интерьерный дизайн</option> | |
40 | + </select> | |
41 | + </div> | |
42 | + </div> | |
43 | + | |
44 | + <div class="blocks-check-list-wrapp"> | |
45 | + <div class="blocks-check-title">Регион</div> | |
46 | + <select> | |
47 | + <option selected value="">Все страны</option> | |
48 | + <option style="color: #000; font-weight: bold !important;" value="">Украина</option> | |
49 | + <option value="">Россия</option> | |
50 | + <option value="">Белорусь</option> | |
51 | + </select> | |
52 | + </div> | |
53 | + <div class="blocks-check-list-wrapp"> | |
54 | + <select id="theme-1"> | |
55 | + <option selected disabled>Город</option> | |
56 | + <option value="">Все</option> | |
57 | + <option value="">Киев</option> | |
58 | + <option value="">Житомир</option> | |
59 | + <option value="">Львов</option> | |
60 | + <option value="">Киев</option> | |
61 | + <option value="">Житомир</option> | |
62 | + <option value="">Львов</option> | |
63 | + </select> | |
64 | + </div> | |
65 | + | |
66 | + <div class="blocks-check-list-wrapp"> | |
67 | + <div class="blocks-check-title">Бюджет</div> | |
68 | + <div class="form-price-wr"> | |
69 | + <input type="text" placeholder="от"/> | |
70 | + <input type="text" placeholder="до"/> | |
71 | + <div class="blocks-check-list-wrapp check-valuta"> | |
72 | + <select> | |
73 | + <option selected>грн</option> | |
74 | + <option value="">$</option> | |
75 | + <option value="">eur</option> | |
76 | + </select> | |
77 | + </div> | |
78 | + </div> | |
79 | + <div class="blocks-check-list"> | |
80 | + <input type="checkbox" name="group2" class="check-search" id="theme-4"><label for="theme-4"><span></span>Договорной</label> | |
81 | + </div> | |
82 | + <div class="blocks-check-list"> | |
83 | + <input type="checkbox" name="group2" class="check-search" id="theme-5"><label for="theme-5"><span></span>Компании</label> | |
84 | + </div> | |
85 | + <div class="blocks-check-list"> | |
86 | + <input type="checkbox" name="group2" class="check-search" id="theme-6"><label for="theme-6"><span></span>Проектанты</label> | |
87 | + </div> | |
88 | + <div class="blocks-check-list"> | |
89 | + <input checked type="checkbox" name="group2" class="check-search" id="theme-7"><label for="theme-7"><span></span>Все</label> | |
90 | + </div> | |
91 | + </div> | |
92 | + | |
93 | + | |
94 | + <a href="#" class="reset-filter">Сбросить фильтр</a> | |
95 | + <div class="blocks-check-list-submit"> | |
96 | + <input type="submit" value="Найти"/> | |
97 | + </div> | |
98 | + </form> | |
99 | + </div> | |
100 | + <div class="right-search-work"> | |
101 | + <div class="search-worker-title style">Сейчас 751 предложение</div> | |
102 | + <div class="search-profile-blocks-wr style"> | |
103 | + <div class="search-profile-blocks"> | |
104 | + <a href="" class="srch-prof-title">Создание проекта дома</a> | |
105 | + <div class="srch-prof-budget"><span></span>Бюджет: 20 000 грн (Договорной)</div> | |
106 | + <div class="srch-prof-contract-wr"> | |
107 | + <div class="srch-prof-contract-button">ПОДРЯД</div> | |
108 | + <div class="srch-prof-contract-txt"> | |
109 | + <span>Из проекта: </span><a href="#">Печерский квартал</a> | |
110 | + </div> | |
111 | + </div> | |
112 | + <div class="srch-prof-text"> | |
113 | + <p>На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов.</p> | |
114 | + <p>P.S. Студиям прошу не беспокоить! Нужен специалист в команду</p> | |
115 | + </div> | |
116 | + <div class="srch-prof-params-wr"> | |
117 | + <div class="srch-prof-params srch-prof-params-city"> | |
118 | + <img src="/images/ico-city.png" alt=""/><span>Киев</span> | |
119 | + </div> | |
120 | + <div class="srch-prof-params srch-prof-params-clock"> | |
121 | + <img src="/images/ico-clock.png" alt=""/><span>15.10.2016</span> | |
122 | + </div> | |
123 | + <div class="srch-prof-params srch-prof-params-comm"> | |
124 | + <img src="/images/ico-comm.png" alt=""/><span>4 предложения</span> | |
125 | + </div> | |
126 | + </div> | |
127 | + </div> | |
128 | + | |
129 | + <div class="search-profile-blocks"> | |
130 | + <a href="" class="srch-prof-title">Создание проекта дома</a> | |
131 | + <div class="srch-prof-budget"><span></span>Бюджет: 20 000 грн (Договорной)</div> | |
132 | + <div class="srch-prof-contract-wr"> | |
133 | + <div class="srch-prof-contract-button">ПОДРЯД</div> | |
134 | + <div class="srch-prof-contract-txt"> | |
135 | + <span>Из проекта: </span><a href="#">Печерский квартал</a> | |
136 | + </div> | |
137 | + </div> | |
138 | + <div class="srch-prof-text"> | |
139 | + <p>На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов.</p> | |
140 | + <p>P.S. Студиям прошу не беспокоить! Нужен специалист в команду</p> | |
141 | + </div> | |
142 | + <div class="srch-prof-params-wr"> | |
143 | + <div class="srch-prof-params srch-prof-params-city"> | |
144 | + <img src="/images/ico-city.png" alt=""/><span>Киев</span> | |
145 | + </div> | |
146 | + <div class="srch-prof-params srch-prof-params-clock"> | |
147 | + <img src="/images/ico-clock.png" alt=""/><span>15.10.2016</span> | |
148 | + </div> | |
149 | + <div class="srch-prof-params srch-prof-params-comm"> | |
150 | + <img src="/images/ico-comm.png" alt=""/><span>4 предложения</span> | |
151 | + </div> | |
152 | + </div> | |
153 | + </div> | |
154 | + | |
155 | + <div class="search-profile-blocks"> | |
156 | + <a href="" class="srch-prof-title">Создание проекта дома</a> | |
157 | + <div class="srch-prof-budget"><span></span>Бюджет: 20 000 грн (Договорной)</div> | |
158 | + <div class="srch-prof-contract-wr"> | |
159 | + <div class="srch-prof-contract-button">ПОДРЯД</div> | |
160 | + <div class="srch-prof-contract-txt"> | |
161 | + <span>Из проекта: </span><a href="#">Печерский квартал</a> | |
162 | + </div> | |
163 | + </div> | |
164 | + <div class="srch-prof-text"> | |
165 | + <p>На постоянные работы по созданию сайтов, в нашу команду требуется html-верстальщик. Оплата сдельная за проект. В отклике прошу написать свой Skype и почту. А так же 3 проекта с реализованной адаптивной версткой и 3 проекта мобильных сайтов.</p> | |
166 | + <p>P.S. Студиям прошу не беспокоить! Нужен специалист в команду</p> | |
167 | + </div> | |
168 | + <div class="srch-prof-params-wr"> | |
169 | + <div class="srch-prof-params srch-prof-params-city"> | |
170 | + <img src="/images/ico-city.png" alt=""/><span>Киев</span> | |
171 | + </div> | |
172 | + <div class="srch-prof-params srch-prof-params-clock"> | |
173 | + <img src="/images/ico-clock.png" alt=""/><span>15.10.2016</span> | |
174 | + </div> | |
175 | + <div class="srch-prof-params srch-prof-params-comm"> | |
176 | + <img src="/images/ico-comm.png" alt=""/><span>4 предложения</span> | |
177 | + </div> | |
178 | + </div> | |
179 | + </div> | |
180 | + | |
181 | + <div class="navi-buttons-wr style navi-buttons-yet-wr"> | |
182 | + <ul class="pagination"> | |
183 | + <li><a href="#">1</a></li> | |
184 | + <li><a href="#">2</a></li> | |
185 | + <li><a href="#">3</a></li> | |
186 | + <li><a href="#">4</a></li> | |
187 | + <li><a href="#">5</a></li> | |
188 | + <li class="dots-next"><a href="#">...</a></li> | |
189 | + <li><a href="#">156</a></li> | |
190 | + </ul> | |
191 | + <a href="#" class="navi-buttons-yet">Еще 24 проекта</a> | |
192 | + </div> | |
193 | + </div> | |
194 | + | |
195 | + </div> | |
196 | + </div> | |
197 | + </div> | |
198 | + </div> | |
199 | + <div> | |
200 | + | |
201 | + <div class="section-box" style="height: 720px; overflow: hidden"> | |
202 | + <div class="map-settings-opacity"></div> | |
203 | + <div class="map-settings-wrapp"> | |
204 | + <div class="min_markers-wrapp"> | |
205 | + <ul class="min_markers"> | |
206 | + <li class="active_m"><span></span><p>Все</p></li> | |
207 | + <li><span><img src="/images/markers/marker-min-1.png"/></span><p>Жилые</p></li> | |
208 | + <li><span><img src="/images/markers/marker-min-2.png"/></span><p>Офисные</p></li> | |
209 | + <li><span><img src="/images/markers/marker-min-3.png"/></span><p>Торговые</p></li> | |
210 | + <li><span><img src="/images/markers/marker-min-4.png"/></span><p>Мосты</p></li> | |
211 | + <li><span><img src="/images/markers/marker-min-5.png"/></span><p>Дороги</p></li> | |
212 | + <li><span><img src="/images/markers/marker-min-6.png"/></span><p>Сооружения</p></li> | |
213 | + <li><span><img src="/images/markers/marker-min-7.png"/></span><p>Склады</p></li> | |
214 | + <li><span><img src="/images/markers/marker-min-8.png"/></span><p>Заводы</p></li> | |
215 | + <li><span><img src="/images/markers/marker-min-9.png"/></span><p>Разное</p></li> | |
216 | + </ul> | |
217 | + <ul class="min_markers_two"> | |
218 | + <li><span><img src="/images/markers/marker-min-10.png"/></span><p>проекты</p></li> | |
219 | + <li><span><img src="/images/markers/marker-min-11.png"/></span><p>подряды</p></li> | |
220 | + </ul> | |
221 | + </div> | |
222 | + </div> | |
223 | + <div class="slider-map"></div> | |
224 | + <div id="map_cloud" style="display: none;"> | |
225 | + <script type="text/javascript"> | |
226 | + function initialize() { | |
227 | + var start_position = new google.maps.LatLng('56', '30'); | |
228 | + var settings = { | |
229 | + zoom: 7, | |
230 | + // scrollwheel: false, | |
231 | + center: start_position, | |
232 | + mapTypeControl: false, | |
233 | + mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}, | |
234 | + navigationControl: false, | |
235 | + navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL}, | |
236 | + scaleControl: false, | |
237 | + streetViewControl: false, | |
238 | + rotateControl: false, | |
239 | + zoomControl: false, | |
240 | + mapTypeId: google.maps.MapTypeId.ROADMAP}; | |
241 | + var map = new google.maps.Map(document.getElementById("map_canvas"), settings); | |
242 | + | |
243 | + | |
244 | + var image1 = new google.maps.MarkerImage('/images/markers/marker-we-1.png', | |
245 | + new google.maps.Size(21, 32), | |
246 | + new google.maps.Point(0,0), | |
247 | + new google.maps.Point(16, 35) | |
248 | + ); | |
249 | + var image2 = new google.maps.MarkerImage('/images/markers/marker-we-2.png', | |
250 | + new google.maps.Size(21, 32), | |
251 | + new google.maps.Point(0,0), | |
252 | + new google.maps.Point(16, 35) | |
253 | + ); | |
254 | + var image3 = new google.maps.MarkerImage('/images/markers/marker-we-3.png', | |
255 | + new google.maps.Size(21, 32), | |
256 | + new google.maps.Point(0,0), | |
257 | + new google.maps.Point(16, 35) | |
258 | + ); | |
259 | + var image4 = new google.maps.MarkerImage('/images/markers/marker-we-4.png', | |
260 | + new google.maps.Size(21, 32), | |
261 | + new google.maps.Point(0,0), | |
262 | + new google.maps.Point(16, 35) | |
263 | + ); | |
264 | + var image5 = new google.maps.MarkerImage('/images/markers/marker-we-5.png', | |
265 | + new google.maps.Size(21, 32), | |
266 | + new google.maps.Point(0,0), | |
267 | + new google.maps.Point(16, 35) | |
268 | + ); | |
269 | + var image6 = new google.maps.MarkerImage('/images/markers/marker-we-6.png', | |
270 | + new google.maps.Size(21, 32), | |
271 | + new google.maps.Point(0,0), | |
272 | + new google.maps.Point(16, 35) | |
273 | + ); | |
274 | + var image7 = new google.maps.MarkerImage('/images/markers/marker-we-7.png', | |
275 | + new google.maps.Size(21, 32), | |
276 | + new google.maps.Point(0,0), | |
277 | + new google.maps.Point(16, 35) | |
278 | + ); | |
279 | + var image8 = new google.maps.MarkerImage('/images/markers/marker-we-8.png', | |
280 | + new google.maps.Size(21, 32), | |
281 | + new google.maps.Point(0,0), | |
282 | + new google.maps.Point(16, 35) | |
283 | + ); | |
284 | + var image9 = new google.maps.MarkerImage('/images/markers/marker-we-9.png', | |
285 | + new google.maps.Size(21, 32), | |
286 | + new google.maps.Point(0,0), | |
287 | + new google.maps.Point(16, 35) | |
288 | + ); | |
289 | + var image10 = new google.maps.MarkerImage('/images/markers/marker-empl-1.png', | |
290 | + new google.maps.Size(21, 32), | |
291 | + new google.maps.Point(0,0), | |
292 | + new google.maps.Point(16, 35) | |
293 | + ); | |
294 | + var image11 = new google.maps.MarkerImage('/images/markers/marker-empl-2.png', | |
295 | + new google.maps.Size(21, 32), | |
296 | + new google.maps.Point(0,0), | |
297 | + new google.maps.Point(16, 35) | |
298 | + ); | |
299 | + var image12 = new google.maps.MarkerImage('/images/markers/marker-empl-3.png', | |
300 | + new google.maps.Size(21, 32), | |
301 | + new google.maps.Point(0,0), | |
302 | + new google.maps.Point(16, 35) | |
303 | + ); | |
304 | + var image13 = new google.maps.MarkerImage('/images/markers/marker-empl-4.png', | |
305 | + new google.maps.Size(21, 32), | |
306 | + new google.maps.Point(0,0), | |
307 | + new google.maps.Point(16, 35) | |
308 | + ); | |
309 | + var image14 = new google.maps.MarkerImage('/images/markers/marker-empl-5.png', | |
310 | + new google.maps.Size(21, 32), | |
311 | + new google.maps.Point(0,0), | |
312 | + new google.maps.Point(16, 35) | |
313 | + ); | |
314 | + var image15 = new google.maps.MarkerImage('/images/markers/marker-empl-6.png', | |
315 | + new google.maps.Size(21, 32), | |
316 | + new google.maps.Point(0,0), | |
317 | + new google.maps.Point(16, 35) | |
318 | + ); | |
319 | + var image16 = new google.maps.MarkerImage('/images/markers/marker-empl-7.png', | |
320 | + new google.maps.Size(21, 32), | |
321 | + new google.maps.Point(0,0), | |
322 | + new google.maps.Point(16, 35) | |
323 | + ); | |
324 | + var image17 = new google.maps.MarkerImage('/images/markers/marker-empl-8.png', | |
325 | + new google.maps.Size(21, 32), | |
326 | + new google.maps.Point(0,0), | |
327 | + new google.maps.Point(16, 35) | |
328 | + ); | |
329 | + var image18 = new google.maps.MarkerImage('/images/markers/marker-empl-9.png', | |
330 | + new google.maps.Size(21, 32), | |
331 | + new google.maps.Point(0,0), | |
332 | + new google.maps.Point(16, 35) | |
333 | + ); | |
334 | + | |
335 | + var markers = []; | |
336 | + | |
337 | + var marker = new google.maps.Marker({ | |
338 | + position: new google.maps.LatLng('56', '35.3'), | |
339 | + map: map, | |
340 | + title: 'Marker Title2', | |
341 | + icon: image1 | |
342 | + }); | |
343 | + markers.push(marker); | |
344 | + | |
345 | + var marker = new google.maps.Marker({ | |
346 | + position: new google.maps.LatLng('56', '36'), | |
347 | + map: map, | |
348 | + title: 'Marker Title2', | |
349 | + icon: image2 | |
350 | + }); | |
351 | + markers.push(marker); | |
352 | + | |
353 | + var marker = new google.maps.Marker({ | |
354 | + position: new google.maps.LatLng('56', '34.5'), | |
355 | + map: map, | |
356 | + title: 'Marker Title3', | |
357 | + icon: image18 | |
358 | + }); | |
359 | + markers.push(marker); | |
360 | + | |
361 | + var marker = new google.maps.Marker({ | |
362 | + position: new google.maps.LatLng('56', '35'), | |
363 | + map: map, | |
364 | + title: 'Marker Title4', | |
365 | + icon: image13 | |
366 | + }); | |
367 | + markers.push(marker); | |
368 | + | |
369 | + | |
370 | + var clusterStyles = [ | |
371 | + { | |
372 | + url: '/images/markers/clasters.png', | |
373 | + height: 36, | |
374 | + width: 36 | |
375 | + } | |
376 | + | |
377 | + ]; | |
378 | + markerClusterer = new MarkerClusterer(map, markers, | |
379 | + { | |
380 | + maxZoom: 10, | |
381 | + gridSize: 100, | |
382 | + styles: clusterStyles | |
383 | + }); | |
384 | +//балун | |
385 | + var infowindow = new google.maps.InfoWindow({ | |
386 | + content: '<div style="width: 112px;"><a href="#" style="text-decoration: none; color: #333"><img style="width: 112px; height: 60px" src="/images/infowindow_marker_slider.jpg" alt=""/><p style="width: 100%; text-align: center; font-family: Ubuntu Bold; font-size: 11px;">Трц “Дарница”</p></a></div>' | |
387 | + }); | |
388 | + google.maps.event.addListener(marker, 'click', function() { | |
389 | + infowindow.open(map, this); | |
390 | + }); | |
391 | + } | |
392 | + </script> | |
393 | + </div> | |
394 | + <div id="map_canvas" style="width: 100%; height:100%;"></div> | |
395 | + <div class="slider_map-wr"> | |
396 | + <div class="slider_map_overlay"></div> | |
397 | + <div class="slider_map"> | |
398 | + <div id="demo5" class="scroll-img"> | |
399 | + <ul> | |
400 | + <li> | |
401 | + <a href="#" class="slider_a"> | |
402 | + <div class="slider-marker-bl"> | |
403 | + <div class="slider-marker-bl-img"> | |
404 | + <img src="/images/marker_slider.jpg" alt=""/> | |
405 | + </div> | |
406 | + <div class="slider-marker-bl-text"> | |
407 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
408 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
409 | + </div> | |
410 | + </div> | |
411 | + </a> | |
412 | + </li> | |
413 | + <li> | |
414 | + <a href="#" class="slider_a"> | |
415 | + <div class="slider-marker-bl"> | |
416 | + <div class="slider-marker-bl-img"> | |
417 | + <img src="/images/marker_slider.jpg" alt=""/> | |
418 | + </div> | |
419 | + <div class="slider-marker-bl-text"> | |
420 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
421 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
422 | + </div> | |
423 | + </div> | |
424 | + </a> | |
425 | + </li> | |
426 | + <li> | |
427 | + <a href="#" class="slider_a"> | |
428 | + <div class="slider-marker-bl"> | |
429 | + <div class="slider-marker-bl-img"> | |
430 | + <img src="/images/marker_slider.jpg" alt=""/> | |
431 | + </div> | |
432 | + <div class="slider-marker-bl-text"> | |
433 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
434 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
435 | + </div> | |
436 | + </div> | |
437 | + </a> | |
438 | + </li> | |
439 | + <li> | |
440 | + <a href="#" class="slider_a"> | |
441 | + <div class="slider-marker-bl"> | |
442 | + <div class="slider-marker-bl-img"> | |
443 | + <img src="/images/marker_slider.jpg" alt=""/> | |
444 | + </div> | |
445 | + <div class="slider-marker-bl-text"> | |
446 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
447 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
448 | + </div> | |
449 | + </div> | |
450 | + </a> | |
451 | + </li> | |
452 | + <li> | |
453 | + <a href="#" class="slider_a"> | |
454 | + <div class="slider-marker-bl"> | |
455 | + <div class="slider-marker-bl-img"> | |
456 | + <img src="/images/marker_slider.jpg" alt=""/> | |
457 | + </div> | |
458 | + <div class="slider-marker-bl-text"> | |
459 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
460 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
461 | + </div> | |
462 | + </div> | |
463 | + </a> | |
464 | + </li> | |
465 | + <li> | |
466 | + <a href="#" class="slider_a"> | |
467 | + <div class="slider-marker-bl"> | |
468 | + <div class="slider-marker-bl-img"> | |
469 | + <img src="/images/marker_slider.jpg" alt=""/> | |
470 | + </div> | |
471 | + <div class="slider-marker-bl-text"> | |
472 | + <div class="slider-marker-bl-text-title">ТЦ «Дарница»</div> | |
473 | + <div class="slider-marker-bl-text-p">Киев, Днепровский район, проспект Воссоединения, 2/1 Район Днепровский</div> | |
474 | + </div> | |
475 | + </div> | |
476 | + </a> | |
477 | + </li> | |
478 | + </ul> | |
479 | + </div> | |
480 | + <div id="demo5-btn" class="text-center"> | |
481 | + <a id="demo5-backward"></a> | |
482 | + <a id="demo5-forward"></a> | |
483 | + </div> | |
484 | + </div> | |
485 | + </div> | |
486 | + </div> | |
487 | + | |
488 | + </div> | |
489 | +</div> | ... | ... |
1 | +*{margin:0;padding:0}body{font-family:'Roboto';font-style:normal;font-weight:400;font-size:15px;color:#333}img{border:none}input::-webkit-input-placeholder{color:#777}input::-moz-placeholder{color:#777}input:-moz-placeholder{color:#777}input:-ms-input-placeholder{color:#777}textarea::-webkit-input-placeholder{color:#777}textarea::-moz-placeholder{color:#777}textarea:-moz-placeholder{color:#777}textarea:-ms-input-placeholder{color:#777}input,textarea{color:#777}[class*="section-box"]{width:100%;position:relative;float:left}.box-wr{margin:0 auto;width:960px}.box-all{width:960px;float:left;box-sizing:border-box;padding:0 10px;position:relative}.section-box.header{height:114px}.section-box-1{height:500px;background:url(../images/sect-bg-1.jpg) 50% no-repeat}.section-box-3{height:601px;background:#fff;box-sizing:border-box;padding-top:40px}.section-box-4{height:424px;background:url(../images/sect-bg-4.jpg) 50% no-repeat}.section-box-map{height:500px;margin-top:21px}.section-box.footer{height:272px}.section-box.first-header{height:114px;background:#fff}.section-box.first-header .box-all{height:114px}.section-box.menu-header-all{height:41px;background:#0072bc}.section-box.footer-all{height:232px;background:#f1f1f1;box-sizing:border-box}.section-box.artweb-footer-all{height:40px;background:#757575}img.logo{position:absolute;top:50%;margin-top:-34px;left:10px}.header-proektant-slogan{width:620px;padding:23px 0 0 120px;box-sizing:border-box;font-size:28px;line-height:35px;float:left}ul.header-contacts-menu{width:136px;float:left;height:114px;margin-left:20px;box-sizing:border-box;padding-top:30px}ul.header-contacts-menu li{list-style:none;position:relative;box-sizing:border-box;padding-left:22px;height:20px;transition:.3s;margin-top:11px}ul.header-contacts-menu li:first-child{margin-top:0}ul.header-contacts-menu li:hover a{opacity:.9}ul.header-contacts-menu li span{width:16px;height:16px;position:absolute;left:0;top:50%;margin-top:-8px}ul.header-contacts-menu li a{color:#0072bc;text-decoration:underline;font-size:13px;height:20px;display:block;line-height:20px}ul.header-contacts-menu li:last-child a{text-decoration:dashed}.header-cabinet-wr{width:164px;float:left;height:114px;box-sizing:border-box;padding-top:33px}.header-cabinet-foto{width:48px;height:48px;float:left;overflow:hidden;border-radius:4px;background:url(../images/ico-profile.png) no-repeat}.header-cabinet-foto img{width:48px;height:48px;max-width:48px;max-height:48px}.header-cabinet-profile{float:left;font-size:18px;margin-right:26px;margin-top:5px;margin-left:13px}.header-cabinet-wr a{float:left;text-decoration:underline;color:#0072bc;font-size:13px;transition:.3s;margin-left:14px}.header-cabinet-wr a:hover{opacity:.9}ul.main-menu{width:620px;float:left;height:41px}ul.main-menu li{float:left;list-style:none;height:100%;border-right:1px solid #338ec9;padding:0 35px 0 20px;position:relative}ul.main-menu li:first-child{border-left:1px solid #338ec9}ul.main-menu li span{cursor:pointer;color:#fff;display:block;height:100%;line-height:41px;position:relative}ul.main-menu li span:after{content:'';width:9px;height:6px;position:absolute;right:0;margin-right:-15px;top:50%;margin-top:-3px;background:url(../images/arrow-main-menu.png) no-repeat}.main-menu-hover{display:none;background:#fff;width:218px;border:1px solid #d7d7d7;position:absolute;top:41px;left:0;z-index:333}.main-menu li ul{width:218px;float:left;border-bottom:1px solid #d7d7d7}.main-menu li ul li{width:100%;float:left;border-right:0;padding:0;text-align:center;height:40px;line-height:40px}.main-menu li ul li a{text-decoration:none;width:100%;height:40px;line-height:40px;color:inherit}.main-menu li ul li:hover{background:#62b8ef}.main-menu li ul li:hover a{color:#fff}.main-menu li ul li:first-child{border-left:none}.main-menu li:hover .main-menu-hover{display:block!important}.main-menu-category{color:#0072bc!important}.main-menu-category:hover{color:#0072bc!important;background:#fff!important}.main-menu-hover ul:last-child{border-bottom:none}.search-main-menu{float:right;width:300px;height:41px}.search-main-menu form{width:100%;height:100%;position:relative;margin-top:6px}.search-main-menu form input{width:100%;height:29px;border:none;box-sizing:border-box;padding:0 32px 0 10px}.search-main-menu form input[type="submit"]{width:29px;height:27px;margin-top:1px;position:absolute;top:0;right:1px;background:#fff url(../images/ico-search.png) 7px 6px no-repeat;border:none;outline:none;cursor:pointer;padding:0!important}.section-box-base{font-size:40px;font-weight:700;color:#fff;text-align:center;margin-top:42px;line-height:48px}.section-box-base-block{height:282px;overflow:hidden;margin-top:80px}.base-blocks{width:300px;height:100%;float:left;margin-left:20px;text-align:center}.base-blocks:first-child{margin-left:0}.base-blocks-button{width:248px;height:62px;border-radius:4px;display:block;text-align:center;color:#fff;font-size:18px;text-decoration:none;line-height:65px;margin:0 auto;transition:.3s}.base-blocks-button:hover{font-size:20px}.base-blocks-button.first_butt{background:#fc9b28;border-bottom:3px solid #ef8505}.base-blocks-button.second_butt{background:#64c04a;border-bottom:3px solid #3e9825}.base-blocks-button.third_butt{background:#0e83cf;border-bottom:3px solid #0054a6}.base-blocks-button.first_butt:hover{background:#ef8505;border-bottom:3px solid #fc9b28}.base-blocks-button.second_butt:hover{background:#3e9825;border-bottom:3px solid #64c04a}.base-blocks-button.third_butt:hover{background:#0054a6;border-bottom:3px solid #0e83cf}.base-blocks-text{width:100%}.base-blocks-text p{width:100%;color:#fff;font-size:18px;line-height:22px;margin-top:20px}.base-blocks-text p:first-child{margin-top:17px}.base-blocks-text p a{width:100%;text-decoration:underline;color:#69d34b;transition:.3s;display:block}.base-blocks-text p a:hover{opacity:.9}.menu-two-wrapp-title{width:100%;float:left;font-size:28px;font-weight:700;text-align:center;margin-top:44px}.menu-two-wrapp{width:100%;float:left;border-radius:4px;height:323px;position:relative;overflow:hidden;margin-top:23px;border-top:1px solid #dfdfdf;border-bottom:1px solid #dfdfdf;border-right:1px solid #dfdfdf}ul.content-menu-first{width:235px;float:left;position:relative}ul.content-menu-first li{width:100%;list-style:none;box-sizing:border-box;border-top:1px solid #dfdfdf;border-right:1px solid #dfdfdf;height:36px;line-height:36px;cursor:pointer;transition:.3s;background:#fff}ul.content-menu-first li:first-child{border-top:0}ul.content-menu-first li:hover{background:#bb0f3f}ul.content-menu-first li a{text-decoration:none;color:#333;display:block}ul.content-menu-first li:hover a{color:#fff!important}ul.content-menu-first li span{width:5px;height:100%;display:block;margin-right:13px;float:left}ul.content-menu-first li > ul{position:absolute;top:0;left:235px;width:235px;height:100%;display:none}ul.content-menu-first li:hover ul{display:block}ul.content-menu-first li ul li:hover{background:#f3f3f3!important}ul.content-menu-first li ul li:hover a{color:#333!important}ul.content-menu-first li > ul li{box-sizing:border-box;padding-left:19px}ul.content-menu-first li > ul li a{color:#fff!important}.remove-link,.remove-link-two{position:relative}.hack-arrow{width:6px;height:100%;background:url(../images/arrow-menu-two.png) center center no-repeat;position:absolute;right:8px;top:0}.yes-after:hover .hack-arrow{background:url(../images/arrow-menu-two-hov.png) center center no-repeat}.remove-link-two .hack-arrow{background:url(../images/arrow-menu-two-hov.png) center center no-repeat}li.hov-arrow:after{background:url(../images/arrow-menu-two-hov.png) no-repeat!important}ul.third-ul-menu{display:none!important}ul.content-menu-first li ul li:hover ul.third-ul-menu{display:block!important}.third-ul-menu li:last-child{border-bottom:1px solid #dfdfdf}ul.last-ul-menu{display:none!important}.last-display-imp{display:block!important}.last-ul-menu li{border-right:none!important}ul.third-ul-menu li:hover ul.last-ul-menu{display:block!important}ul.content-menu-first li ul li:last-child,ul.content-menu-first li:last-child{border-bottom:1px solid #dfdfdf}ul.third-ul-menu li{background:#fff!important;height:auto;line-height:18px;min-height:36px;padding:9px 0 8px}ul.third-ul-menu li:after{margin-top:-13px}.all-project-home-title_menu{width:100%;float:left;text-align:center}.all-project-home-title_menu p{font-weight:700;font-size:28px;float:left;display:block;height:40px;line-height:40px;margin-left:182px;margin-right:29px}.all-project-home-title_menu ul{float:left;height:40px;box-sizing:border-box;padding-top:10px}.all-project-home-title_menu ul li{float:left;list-style:none;height:27px;line-height:27px;color:#0072bc;cursor:pointer;padding:0 17px}.all-project-home-title_menu ul li span{border-bottom:1px dashed #0072bc;font-size:15px}li.project-home-active{background:#0072bc;cursor:default!important;border-radius:27px}li.project-home-active span{border-bottom:none!important;color:#fff}.shadow-map{width:100%;height:6px;background:url(../images/shadow-map.png);position:absolute;top:0;left:0;z-index:3}.federation-home-title{width:100%;float:left;font-size:28px;font-weight:700;color:#fff;margin-top:44px;text-align:center}.federation-home-list{height:27px;width:502px;margin:0 auto}.federation-home-list li{list-style:none;float:left;padding:0 20px;height:27px;line-height:27px;cursor:pointer}.federation-home-list li span{border-bottom:1px dashed #0072bc;color:#fff}.federation-home-list li:last-child span{border-bottom:1px dashed #fff200;color:#fff200}.federation-home-list-active{color:inherit!important;background:#fff;border-radius:27px;cursor:default!important}.federation-home-list-active span{border-bottom:none!important;color:inherit!important}.federation-home-list-wr{width:100%;float:left;margin-top:22px;position:relative;height:27px}.federation-home-blocks{width:300px;height:134px;float:left;margin-left:20px;margin-top:122px}.federation-home-blocks:first-child{margin-left:0}.federation-home-blocks-wr-blocks{display:none}.federation-home-blocks-wr-blocks:first-child{display:block}.federation-home-blocks-wr,.federation-home-blocks-wr-blocks{width:100%;float:left}.federation-home-ico,.federation-home-text{width:100%;float:left;text-align:center}.federation-home-ico{height:46px}.federation-home-text{font-size:18px;color:#fff;margin-top:28px;box-sizing:border-box;padding:0 27px}.footer-all-wr{width:100%;float:left;margin-top:34px}.footer-menu{width:100%;float:left}.footer-menu li{width:100%;float:left;list-style:none;height:31px}.footer-menu li a{color:#555;font-size:13px;text-decoration:none}.footer-menu li a:hover{text-decoration:underline}.footer-menu-wrapper{width:207px;float:left;height:198px}.first-footer-menu{margin-right:13px}.second-footer-menu .footer-menu li,.third-footer-menu .footer-menu li{height:28px}.footer-menu-project{width:125px;height:72px;border-radius:4px;border:1px solid #c1c1c1;float:left;margin-top:27px}.footer-menu-project-ico{width:100%;box-sizing:border-box;padding:7px 0 0 23px;float:left}.footer-menu-project-ico a{width:36px;height:36px;float:left;margin-left:8px}.footer-menu-project-ico img{width:36px;height:36px}.footer-menu-project-ico a:first-child{margin-left:0}.footer-menu-project-ico-txt{width:100%;float:left;text-align:center;font-size:13px;color:#555;line-height:16px;margin-top:6px}.footer-menu-project-two{width:151px;height:72px;border-radius:4px;border:1px solid #c1c1c1;float:left;margin-top:27px}.footer-menu-project-two .footer-menu-project-ico{padding:7px 0 0 14px}.last-footer-menu{width:300px;float:right}.last-footer-menu .footer-menu li{text-align:right;height:22px}.last-footer-menu .footer-menu li:last-child{margin-top:20px;margin-top:22px}.copyright{width:50%;float:left;height:40px;line-height:40px;font-size:11px;color:#fff}.artweb-wr{width:50%;float:right;height:40px;position:relative}.artweb-wr a{height:40px;line-height:40px;text-decoration:underline;color:#fff;opacity:.3;font-size:11px;float:right;margin-right:36px}.artweb-img{width:24px;height:23px;position:absolute;right:0;top:50%;margin-top:-11px;opacity:.3;cursor:default}.artweb-img img{width:24px;height:23px}.artweb-img a{margin:0;padding:0;width:24px;height:23px;display:block}.style{width:100%;float:left}.form-questions-wrapp{width:502px;height:347px;border-radius:4px;background:#fff;opacity:.5;position:absolute;top:111px;left:50%;margin-left:-251px}.form-questions{width:502px;position:absolute;top:111px;left:50%;margin-left:-251px;box-sizing:border-box;padding:40px 40px 0 20px}.form-questions textarea{width:420px;height:142px;max-height:142px;background:#fff;border:none;border-radius:4px;float:left;resize:none;box-sizing:border-box;padding:8px 0 0 10px;margin-left:20px}.form-questions input{width:200px;height:32px;float:left;background:#fff;border:none;border-radius:4px;box-sizing:border-box;margin-left:20px;margin-top:22px;padding-left:8px}.form-questions input[type="submit"]{width:190px;height:40px;color:#fff;line-height:42px;background:#077cc6;border-bottom:2px solid #0054a6;font-size:13px;font-weight:700;text-transform:uppercase;margin-top:30px;cursor:pointer;outline:none;transition:.2s;margin-left:136px}.form-questions input[type="submit"]:hover{background:#0054a6;border-bottom:2px solid #077cc6}.callback{width:100%;float:left;padding:0 20px;box-sizing:border-box;margin-top:8px}.callback input{width:100%;height:29px;float:left;background:#fff;box-sizing:border-box;border:1px solid #dcdcdc;margin-top:5px;padding-left:10px}.callback input[type="submit"]{background:#0072bc;color:#fff;cursor:pointer;transition:.3s;margin-top:20px;font-size:13px;border-radius:4px;border:none;padding:0}.callback label{width:100%;float:left;font-weight:700;font-size:13px;margin-top:13px}.callback input[type="submit"]:hover{background:#0c81cc}.performance-vacancy-call-back-conf{width:180px;margin-top:20px;border-top:1px solid #dbdbdb;font-size:11px;color:#636363;height:45px;line-height:45px;text-align:center;float:left;margin-left:20px}#overlay{position:fixed;width:100%;height:100%;background:#000;opacity:.95;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=95);display:none;z-index:9991}#modal_form{width:460px;height:533px;position:fixed;top:30%;left:50%;margin-top:-230px;margin-left:-267px;display:none;opacity:0;z-index:9992}.closed-form{width:15px;height:15px;background:url(../images/modal-close.png) no-repeat;position:absolute;top:-39px;right:-50px;cursor:pointer;transition:.3s}.closed-form:hover{opacity:.8}.form-resume-wr{width:100%;height:100%;float:left;display:block;position:relative;border-radius:4px;overflow:hidden;background:#fff;position:relative}.form-resume-sub{height:73px;line-height:73px;color:#fff;background:#0c81cc;text-align:center;font-size:18px}.form-resume-wr form{width:240px;float:left;position:absolute;top:73px;left:50%;margin-left:-120px;margin-top:22px}.form-resume-wr form label{font-size:13px;font-weight:700;width:100%;float:left;margin-bottom:5px}.form-resume-wr form input{width:240px;height:29px;border:1px solid #dcdcdc;box-sizing:border-box;padding-left:10px;margin-bottom:13px}.form-resume-wr form textarea{width:240px;height:123px;max-height:123px;min-height:123px;resize:none;border:1px solid #dcdcdc;box-sizing:border-box;padding:5px 0 0 10px}.form-resume-wr form input[type="submit"]{background:#0072bc;color:#fff;cursor:pointer;height:29px;border:1px solid #0072bc;padding:0 32px;outline:none;transition:.2s;border-radius:4px;font-size:13px;width:auto;margin-top:48px;margin-left:30px}.form-resume-wr form input[type="submit"]:hover{background:#fff;color:#0072bc}.form-resume-wr form input[type="file"]{border:none;outline:none}.label-file{position:relative;width:100%;float:left;height:29px;margin-top:10px}.label-file label{width:96px!important;line-height:31px}.label-file input{position:absolute;z-index:9993;width:90px!important;height:29px!important;background:#fff;border:1px solid #0072bc!important;opacity:0;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);top:1px;left:96px;cursor:pointer}.label-file input[type="file"]{cursor:pointer}.label-file a{position:absolute;z-index:9992;width:88px;height:27px;background:#fff;border:1px solid #0072bc!important;color:#0072bc;font-size:13px;text-decoration:none;display:block;line-height:27px;text-align:center;top:1px;left:96px;cursor:pointer;border-radius:4px}[role="button"]{cursor:pointer}input[type=file]::-webkit-file-upload-button{cursor:pointer}.res-wrapper-mb{width:100%;float:left;margin-top:8px;margin-left:104px;position:relative}.res-wrapper-mb p{width:250px;background:#fff;position:absolute;top:0;left:-10px;font-size:11px;color:#636363;z-index:2;box-sizing:border-box;padding-left:10px;height:29px;overflow:hidden}.res_form_line{width:100%;height:1px;background:#dbdbdb;position:absolute;left:0;bottom:89px;z-index:1}.section-box-15 .rating{padding-left:0;margin-left:-4px}.section-box-15 .vote-stars,.section-box-15 .vote-active{cursor:default!important}.section-box-15 .rating .vote-result,.section-box-15 .rating .vote-success{display:none}.rating{width:150px;overflow:hidden;height:16px;float:left;box-sizing:border-box;padding-left:9px}div.vote-wrap{overflow:hidden}div.vote-block{position:relative}div.vote-hover{float:left;cursor:default}div.vote-stars,div.vote-active{position:absolute;left:0;top:0;cursor:pointer}div.vote-result{color:#ccc;font-size:14px;margin-top:12px;padding-left:190px}div.vote-success{clear:both;color:#ccc;font-size:14px;margin:10px 0 0 10px}.section-box-9 .vote-success,.section-box-9 .vote-result{display:none}.navi-buttons-wr{margin-top:29px}.pagination{display:block;padding:0;margin:0;float:right}.pagination li{display:block;border:1px solid #dcdcdc;float:left;margin-left:6px;border-radius:4px;height:29px}.pagination li.active{background:#f1f1f1;border:1px solid #f1f1f1}.pagination li.active a{cursor:default}.pagination li:first-child{margin-left:0}.pagination > li a{padding:0 11px;height:100%;line-height:31px;display:block;text-decoration:none;font-weight:700;color:inherit}.pagination li.dots-next{border:1px solid #fff}.pagination li:hover{border:1px solid #0072bc}.pagination li:hover a{color:#0072bc}.pagination li.active:hover{border:1px solid #f1f1f1}.pagination li.active:hover a{color:inherit}.pagination li.dots-next:hover{border:1px solid #fff}.section-box-5{height:500px;background:url(../images/landing/bg-5.jpg) 50% no-repeat}.landing-reg-title{text-align:center;color:#fff;font-size:48px;font-weight:700;margin-top:124px;float:left;width:100%;text-shadow:0 0 12px rgba(115,115,115,0.75)}.landing-reg-button{height:65px;margin-top:94px}.landing-reg-button a{width:288px;height:62px;text-align:center;display:block;background:#0276c0;border-bottom:3px solid #0054a6;color:#fff;text-decoration:none;font-size:18px;line-height:65px;transition:.2s;border-radius:4px;margin:0 auto}.landing-reg-button a:hover{background:#0054a6;border-bottom:3px solid #0276c0}.landing-reg-txt{text-align:center;font-size:18px;color:#fff;margin-top:27px}.section-box-6{height:579px;background:#fff}.section-box-7{height:275px;background:#f1f1f1}.section-box-8{height:444px;background:url(../images/landing/bg-8.jpg) 50% no-repeat}.section-box-8.landing-work-our-wr-section{height:273px;background:url(../images/landing-order-project/bg-30.jpg) 50% no-repeat}.section-box-9{height:341px;background:#fff}.landing-your-buisnes-tit{text-align:center;font-weight:700;font-size:28px;margin-top:44px}.section-box-6 .box-all{overflow:hidden}.landing-your-buisnes-anim-wr{width:960px!important;overflow:hidden;margin-left:-20px;margin-top:32px;position:relative;perspective:1000px;-webkit-perspective:1000px}.landing-your-buisnes-blocks{width:300px;height:218px;float:left;position:relative;margin-left:20px}.lan_yo_buis_img{background:url(../images/landing/landing-ico-1.png) no-repeat;height:163px}.lan_yo_buis_txt{text-align:center;box-sizing:border-box;padding:0 50px;line-height:18px;position:absolute;height:36px;left:0;bottom:35px}.lan_yo_buis_arr{width:88px;height:35px;background:url(../images/landing/landing-ico-2.png) no-repeat;position:absolute}.lan_yo_buis_arr:last-child{height:110px}.landing-your-buisnes-blocks{transform:rotateY(-180deg);-moz-transform:rotateY(-180deg);-webkit-transform:rotateY(-180deg);-o-transform:rotateY(-180deg);-ms-transform:rotateY(-180deg);transition:1.2s}.landing-best-jobs{height:111px;text-align:center;line-height:122px;font-size:28px;font-weight:700}.logos-slider{width:100%;float:left;height:130px;position:relative}.scroll-img{width:870px;height:100%;margin:0 auto;position:relative;overflow:hidden}.scroll-img ul{margin:0 auto;width:1870px;height:100%}.scroll-img ul li:first-child{margin-left:0}.scroll-img ul li{width:150px;height:100%;float:left;list-style:none;margin-left:30px}.buttons-slider-best{position:absolute;width:35px;height:75px;background:red;top:0;opacity:.3;transition:.3s}.buttons-slider-best:hover{opacity:1}#prew.buttons-slider-best{left:0;background:url(../images/landing/arrow-best-1.png) 0 50% no-repeat}#next.buttons-slider-best{right:0;background:url(../images/landing/arrow-best-2.png) 100% 50% no-repeat}.scroll-img ul li p{width:100%;float:left;line-height:16px;text-align:center;font-size:13px;color:#666;margin-top:8px}.section-box-8 .landing-best-jobs{color:#fff}.landing-work-our{width:300px;height:153px;float:left;margin-left:20px;position:relative;overflow:hidden}.land-wrk-wr{width:100%;overflow:hidden}.landing-work-our-wr{width:960px;float:left;margin-left:-20px}.landing-work-our-img{width:100%;height:64px;float:left}.lnd-wrk-img{width:64px;height:64px;margin:0 auto;background:url(../images/landing/ico-circle-1.png) no-repeat}.landing-work-our-img p{width:100%;text-align:center;color:#fff;line-height:18px;float:left;margin-top:17px;cursor:default;transition:.3s}.landing-work-our:hover p{font-size:18px}.landing-work-our-img-text{width:100%;float:left;height:100%}.landing-slider-comments-wr{height:180px;position:relative}.landing-slider-comments{width:860px;height:100%;background:#f5f5f5;margin:0 auto;border-radius:4px;overflow:hidden}.prev-slide,.next-slide{width:40px;height:100%;position:absolute;top:0;opacity:.3;transition:.3s}.prev-slide{left:0;background:url(../images/landing/arrow-best-1.png) 0 50% no-repeat}.next-slide{right:0;background:url(../images/landing/arrow-best-2.png) 100% 50% no-repeat}.prev-slide:hover,.next-slide:hover{opacity:1}.slider-wrapper{width:100%;height:100%;overflow:hidden;margin:0 auto;position:relative}.slider_timer{height:100%;position:relative;width:100%}.slide_t{width:100%;height:100%;float:left}.land-sld-blocks-wr{width:100%;height:100%;float:left;box-sizing:border-box;padding:30px 19px 30px 30px}.land-sld-blocks-wr img{width:120px;height:120px;border-radius:100%;float:left}.land-sld-txt{width:421px;float:right;position:relative;padding-top:13px;line-height:16px}.land-sld-txt p{font-size:13px}.land-sld-txt:before{content:'“';font-size:111px;font-family:georgia;color:#c6c6c6;position:absolute;left:-56px;top:46px;width:35px;height:28px}.land-sld-name-tit{float:left;width:100%;font-size:20px;height:24px;line-height:24px;margin-top:15px}.land-sld-autor-comm-wr{float:left;width:230px;margin-left:19px}.land-stars-wr{height:16px;margin-top:8px}.land-stars-pro,.land-stars-new{height:16px;border-radius:4px;background:#0e84cf;color:#fff;text-align:center;line-height:17px;text-transform:uppercase;font-size:11px;float:left;padding:0 6px}.land-stars-new{background:#64c04a!important}.land-comments-a{text-decoration:underline;color:#0072bc;transition:.3s;margin-top:7px;line-height:12px}.land-comments-a:hover{opacity:.9}.section-box-10{height:398px;background:url(../images/landing/bg-10.jpg) 50% no-repeat}.section-box-11{height:537px;background:url(../images/landing/bg-11.jpg) 50% no-repeat}.section-box-10 .landing-best-jobs,.section-box-11 .landing-best-jobs{color:#fff}.section-box-10 .box-all{padding:0;overflow:hidden}.land-numbers-wr{margin-left:-10px}.land-numbers{width:300px;margin-left:20px;height:136px;overflow:hidden;float:left;margin-bottom:2px}.land-numbers-num,.land-numbers-txt{width:100%;color:#fff;text-align:center}.land-numbers-num{font-size:60px;font-weight:700;line-height:60px}.land-numbers-txt{margin-top:6px;box-sizing:border-box;padding:0 33px;line-height:18px}.wrong{border:1px solid #ff0042!important}.normal{border:1px solid #00ff6c!important}.section-box-12{height:500px;background:url(../images/landing-freelance/bg-12.jpg) 50% no-repeat}.section-box-12 .landing-reg-button a{background:#68c64d;border-bottom:3px solid #3e9825;width:248px}.section-box-12 .landing-reg-button a:hover{background:#3e9825;border-bottom:3px solid #68c64d}.new-buisnes-freelance .lan_yo_buis_img{background:url(../images/landing-freelance/landing-fr-ico-1.png) no-repeat;height:163px}.landing-work-our-wr.freelance .lnd-wrk-img{background:url(../images/landing-freelance/landing-free-ico-1.png) no-repeat}.order-landing-anim .lan_yo_buis_img{background:url(../images/landing-order-project/landing-or-1.png) no-repeat;height:163px}.section-box-13{height:500px;background:url(../images/landing-work/bg-13.jpg) 50% no-repeat!important}.section-box-14{height:380px}.performance-vacancy-call-back{width:220px;height:320px;float:right;background:#fff;border-radius:4px;margin-top:30px;overflow:hidden;box-shadow:0 0 5px 0 rgba(149,149,149,0.75)}.performance-vacancy-call-back-title{width:100%;height:73px;background:#0c81cc;color:#fff;font-size:18px;line-height:18px;box-sizing:border-box;padding-left:17px;padding-top:23px}.performance-vacancy-add-favorite{width:44px;height:380px;float:right;margin-right:20px;position:relative}.performance-vacancy-add-favorite a{width:44px;height:125px;background:url(../images/add_favorite.png) no-repeat;position:absolute;left:0;bottom:0;display:block;transition:.3s}.performance-vacancy-add-favorite a:hover{opacity:.95}.menu-content-wr{height:43px;background:#f1f1f1}.menu-content{width:720px;float:right;height:43px}.menu-content li{list-style:none;float:left;height:40px;padding:0 16px;border-top:3px solid #f1f1f1;background:#f1f1f1}.menu-content li a{float:left;height:100%;line-height:38px;text-decoration:none;color:inherit}.active-menu-content{transition:.3s;border-top:3px solid #0072bc!important;background:#fff!important}.active-menu-content a{color:#0072bc!important}.section-box-15{background:#fff;padding-top:27px;padding-bottom:50px}.performer-vacancy-vacant-wr{width:720px;float:right}.performer-vacancy-vacant-title{font-size:18px;margin-top:1px}.performer-vacant-reclam-bl{width:100%;float:left;border-bottom:1px solid #dcdcdc;padding-bottom:10px}.performer-vacant-reclam-bl-title{width:100%;float:left;color:#0072bc;font-size:16px;text-decoration:none;margin-top:12px}.performer-vacant-reclam-bl-title:hover{text-decoration:underline}.performer-vacant-reclam-bl-title-two{width:100%;float:left;font-size:15px;margin-top:6px}.performer-vacant-reclam-bl-content{width:100%;float:left;font-size:13px;margin-top:7px;line-height:18px}.performer-vacant-reclam-bl-content-read img{width:4px;height:7px}.performer-vacancy-sidebar-left-wr{width:200px;float:left;background:#fff;position:relative}.performer-vacancy-sidebar-left{width:200px;background:#fff;position:absolute;top:-319px;border-radius:4px;box-shadow:0 0 5px 0 rgba(149,149,149,0.75);float:left}.performer-vacancy-sidebar-img{text-align:center;margin-top:10px}.performer-vacancy-sidebar-img img{max-width:180px;max-height:180px}.performer-vacancy-sidebar-soc ul{width:100%;float:left;height:24px}.performer-vacancy-sidebar-soc ul li{width:24px;height:100%;display:block;margin-left:4px;float:left;list-style:none}.performer-vacancy-sidebar-soc ul li:first-child{margin-left:0}.performer-vacancy-sidebar-soc ul li a img{width:24px;height:24px}.performer-vacancy-sidebar-all{box-sizing:border-box;padding-left:20px;padding-top:27px}.performer-vacancy-sidebar-views ul{margin-top:19px;padding-bottom:17px}.performer-vacancy-sidebar-views ul li{list-style:none;width:100%;float:left;margin-top:18px;line-height:16px}.performer-vacancy-sidebar-views ul li img{float:left;max-width:20px}.performer-vacancy-sidebar-views ul li:first-child{margin-top:0}.sidebarvievstxt{font-size:13px;width:156px;float:right;margin-top:-2px;box-sizing:border-box;padding-right:5px}.sidebar-views-ico{width:24px;float:left;height:100%}.sidebar-views-txt{font-weight:700}.performer-vacancy-sidebar-views ul li a{text-decoration:none;color:inherit}.performer-vacancy-sidebar-views ul li a:hover{text-decoration:underline}.sidebarvievs-phone{font-size:15px}.performance-vacancy-sidebar-company-wr{width:230px;float:left;position:absolute;top:0;left:220px;padding-top:82px}.performance-vacancy-sidebar-company-title{font-size:24px;color:#fff;margin-bottom:1px}.performance-vacancy-sidebar-company-job ul li{position:relative;list-style:none}.performance-vacancy-sidebar-company-job ul li a{text-decoration:underline;color:#69d34b;position:relative;height:22px;line-height:22px;transition:.4s}.performance-vacancy-sidebar-company-job ul li a:after{content:'';width:8px;height:4px;display:block;background:url(../images/sidebar-ico/arrow-ico.png) no-repeat;position:absolute;right:-15px;top:50%;margin-top:-1px}.sidebar-droped-wr a{color:inherit!important;text-decoration:none!important}.sidebar-droped-wr li a:hover{text-decoration:underline!important}.sidebar-droped-wr{display:none;position:absolute;z-index:9}.sidebar-droped-wr ul li a:after{display:none}.sidebar-droped-wr ul li{background:#fff;padding-bottom:7px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.performance-vacancy-sidebar-comm{color:#fff;margin-top:10px}.performance-vacancy-sidebar-write{text-decoration:underline;color:#69d34b;margin-top:1px}.active-dropped-ul{box-shadow:0 0 5px 0 rgba(149,149,149,0.75);background:#fff;width:120px;float:left;border-top-left-radius:4px;border-top-right-radius:4px}.active-dropped-ul a{margin-left:10px}.sidebar-droped-wr.act{display:block}.performance-vacancy-sidebar-stars{margin-top:24px}.performer-vacancy-list{border-bottom:1px solid #dcdcdc;padding-bottom:16px}.performer-vacancy-list a{font-size:13px;color:#0072bc;float:left;margin-top:1px;position:relative;margin-left:10px}.performer-vacancy-list a:before{width:4px;height:7px;content:'';display:block;background:url(../images/performar_vacancy/arrow-list-prev.png) no-repeat;position:absolute;top:50%;margin-top:-3px;left:0;margin-left:-10px}.performer-vacancy-date{font-size:11px;color:#636363;margin-top:18px}.performance-vacancy-page-title{font-size:18px;color:#0072bc;margin-top:13px}.performance-vacancy-page-options{margin-top:9px}.performance-vacancy-page-options ul{width:100%;float:left}.performance-vacancy-page-options ul li{width:100%;float:left;list-style:none;line-height:24px}.performance-vacancy-page-options ul li:first-child{margin-top:0}.performance-vacancy-page-options ul li span{display:block;float:left;color:#636363}.performance-vacancy-page-options ul li p{width:556px;float:right}.performance-vacancy-description{font-size:18px;margin-top:25px}.performance-vacancy-desc-txt{font-size:13px;margin-top:7px}.performance-vacancy-desc-txt p{font-size:13px;margin-top:15px;line-height:16px}.performance-vacancy-desc-txt p:first-child{margin-top:0}.performance-vacancy-desc-form{margin-top:25px}.performance-vacancy-desc-form a{display:block;background:#0072bc;text-decoration:none;color:#fff;height:29px;line-height:29px;float:left;border-radius:4px;transition:.3s;padding:0 19px;font-size:13px}.performance-vacancy-desc-form a:hover{opacity:.9}.performer-vacancy-blocks-desk-wr{border-bottom:1px solid #dcdcdc;padding-bottom:20px}.performance-vacancy-similar-title{font-size:18px}.performance-vacancy-similar{padding-top:36px}.performance-vacancy-similar-blocks-wr .performer-vacant-reclam-bl-title-two{margin-top:0}.performance-vacancy-similar-blocks-wr{margin-top:6px}.performance-vacancy-similar-blocks-wr:first-child{margin-top:0}.section-box-16{height:235px}.blog-buttons-wr{margin-top:160px;width:526px;float:right}.blog-buttons-wr a{float:left;color:#fff;font-size:13px;position:relative;width:170px;height:45px;border-radius:4px;display:block;transition:.2s;text-decoration:none;margin-left:8px;box-sizing:border-box;padding-left:59px;padding-top:8px;line-height:14px;border-bottom:2px solid #3e9825;background:#6bcb50;background:-moz-linear-gradient(top,rgba(107,203,80,1) 0%,rgba(96,187,70,1) 100%);background:-webkit-linear-gradient(top,rgba(107,203,80,1) 0%,rgba(96,187,70,1) 100%);background:linear-gradient(to bottom,rgba(107,203,80,1) 0%,rgba(96,187,70,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6bcb50',endColorstr='#60bb46',GradientType=0)}.blog-buttons-wr a:hover{font-size:15px;background:#60bb46;background:-moz-linear-gradient(top,rgba(96,187,70,1) 0%,rgba(107,203,80,1) 100%);background:-webkit-linear-gradient(top,rgba(96,187,70,1) 0%,rgba(107,203,80,1) 100%);background:linear-gradient(to bottom,rgba(96,187,70,1) 0%,rgba(107,203,80,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#60bb46',endColorstr='#6bcb50',GradientType=0)}.blog-buttons-wr a:first-child{margin-left:0;border-bottom:2px solid #ef8505;background:#fd9d2b;background:-moz-linear-gradient(top,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);background:-webkit-linear-gradient(top,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);background:linear-gradient(to bottom,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9d2b',endColorstr='#f8941e',GradientType=0)}.blog-buttons-wr a:first-child:hover{background:#f8941e;background:-moz-linear-gradient(top,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);background:-webkit-linear-gradient(top,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);background:linear-gradient(to bottom,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8941e',endColorstr='#fd9d2b',GradientType=0)}.blog-buttons-wr a.blog-buttons-add-favorite{border-bottom:2px solid #0054a6;background:#148ad6;background:-moz-linear-gradient(top,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);background:-webkit-linear-gradient(top,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);background:linear-gradient(to bottom,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#148ad6',endColorstr='#0072bc',GradientType=0)}.blog-buttons-wr a.blog-buttons-add-favorite:hover{background:#0072bc;background:-moz-linear-gradient(top,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);background:-webkit-linear-gradient(top,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);background:linear-gradient(to bottom,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0072bc',endColorstr='#148ad6',GradientType=0)}.blog-buttons-wr a:after{width:20px;height:24px;display:block;content:'';background:url(../images/blog/ico-buttons-2.png) no-repeat;position:absolute;top:50%;margin-top:-12px;left:15px}.blog-buttons-wr a:first-child::after{background:url(../images/blog/ico-buttons-1.png) no-repeat;width:24px}.blog-buttons-wr a:last-child::after{background:url(../images/blog/ico-buttons-3.png) no-repeat}.blog-post-wr{width:100%;float:left;border-bottom:1px solid #dcdcdc;padding-bottom:17px;transition:.2s;margin-top:27px}.blog-post-wr:first-child{margin-top:-1px}.blog-post-title p{font-size:18px}.blog-post-icons-wr{height:16px;margin-top:9px}.blog-post-date{width:97px;height:100%;float:left}.blog-post-date span,.blog-post-views span,.blog-post-comm-num span{width:16px;height:16px;margin-right:7px;display:block;background:url(../images/blog/ico-post.png) 0 0 no-repeat;float:left}.blog-post-date p,.blog-post-views p,.blog-post-comm-num p{height:100%;line-height:18px;float:left;color:#888;font-size:12px}.blog-post-views{height:100%;float:left}.blog-post-views span{background-position:-16px 0;margin-right:4px!important}.blog-post-comm-num{height:100%;float:left;margin-left:15px}.blog-post-comm-num span{background-position:-32px 0;margin-right:6px!important}.blog-post-content img{max-width:340px;float:left;margin-right:30px;margin-top:4px}.blog-post-content{margin-top:7px;overflow:hidden}.blog-post-content p{font-size:13px;line-height:20px}.blog-post-see-all{font-size:13px;color:#0072bc;text-decoration:none;height:16px;margin-top:10px}.blog-post-see-all span{border-bottom:1px dashed #0072bc;position:relative;height:100%}.blog-post-see-all span:after{display:none;position:absolute;content:'';width:8px;height:4px;background:url(../images/blog/ico-see-all-dawn.png) no-repeat;top:50%;margin-top:-2px;right:-13px}.blog-post-see-all.blog-expand span:after{transform:rotate(180deg)}.section-box-17 .performer-vacancy-sidebar-left{top:-217px}.section-box-17 .performance-vacancy-sidebar-company-wr{padding-top:0;margin-top:-6px}.company-performer-title{font-size:18px}.company-performer-txt p{width:100%;font-size:13px;margin-top:18px;line-height:18px}.company-performer-txt p:first-child{margin-top:0}.company-performer-type-title{text-align:center;font-size:18px;margin-top:-18px}.company-performer-type-map .section-box-map{height:460px;margin-top:25px;position:relative}.section-box-19{margin-top:36px;margin-bottom:50px}.company-performer-comm-title{text-align:center;font-size:18px}.company-performer-map-menu{position:absolute;width:235px;height:324px;top:20px;left:20px}.company-performer-map-menu .content-menu-first li:first-child{border-top:1px solid #dfdfdf}.company-performer-comments-wr{margin-top:15px}.company-performer-comments-bl{width:220px;float:left;margin-left:20px}.company-performer-comments-bl:first-child{margin-left:0}.company-performer-comments-bl .rating{padding-left:0;margin-left:-4px;width:130px;overflow:hidden}.company-performer-comments-autor,.company-performer-comments-txt{width:100%;float:left;font-size:13px}.company-performer-comments-autor{margin-top:6px;font-weight:700}.company-performer-comments-txt{color:#636363;line-height:16px;margin-top:2px;max-height:80px;overflow:hidden}.company-comm-see-all{width:100%;float:left;color:#0072bc;text-decoration:none;font-size:13px}.company-comm-see-all span{border-bottom:1px dashed #0072bc;position:relative}.company-performer-comments-txt.auto-height-blog-post{height:auto!important;max-height:none}.company-comm-see-all span:after{background:url(../images/ico-see-all-dawn.png) no-repeat;width:8px;height:4px;display:block;content:'';position:absolute;top:50%;margin-top:-2px;right:-14px}.company-comm-expand span:after{transform:rotate(180deg)}.company-performer-comments-bl .vote-stars,.company-performer-comments-bl .vote-active{cursor:default!important}.company-performer-comm-see-all-butt{height:45px;margin-top:27px}.company-performer-comm-see-all-butt a{display:block;margin:0 auto;width:168px;height:43px;border:1px solid #0072bc;text-align:center;line-height:45px;text-decoration:none;color:#0072bc;font-size:13px;border-radius:4px;transition:.2s}.company-performer-comm-see-all-butt a:hover{background:#0072bc;color:#fff}.command-block-wrapper{width:220px;height:325px;float:left;margin-left:20px}.command-blocks-wr{margin-top:3px}.command-block-foto{width:220px;height:220px;overflow:hidden;background:#f1f1f1 url(../images/command/bg-command.png) 50% 100% no-repeat;text-align:center;position:relative;text-align:center}.command-block-foto img{width:220px;height:220px;max-width:220px;max-height:220px}.hover-command-bg{width:220px;height:220px;position:absolute;top:0;left:0;background:#0072bc;opacity:0;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);transition:.3s}.command-block-wr-two{width:100%;height:295px;float:left}.command-block-name,.command-block-job{width:100%;float:left;text-align:center;font-size:18px}.command-block-name{margin-top:10px}.command-block-job{font-size:13px!important;margin-top:3px;line-height:16px;height:32px;overflow:hidden}.command-block-line{width:100%;height:5px;background:#e1e1e1;position:relative;float:left;margin-top:3px;overflow:hidden}.command-block-line-left,.command-block-line-right{width:50%;height:100%;background:#0072bc;position:absolute;top:0}.command-block-line-left{left:-50%}.command-block-line-right{right:-50%}.command-block-wr-two:hover .hover-command-bg{opacity:.2;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=20)}.command-block-wr-two:hover .command-block-line-left{left:0;transition:.2s ease-in}.command-block-wr-two:hover .command-block-line-right{right:0;transition:.2s ease-in}.commands-performer-wr{width:720px;float:right}.command-command-style.navi-buttons-wr{margin-top:0}.section-box-line-command{height:1px;margin-top:-20px}.section-box-line-command .box-all{border-bottom:1px solid #dcdcdc}.gallery-title{font-size:18px;margin-bottom:17px}.video-performer-wrapper{margin-top:56px}.slider-video-wr{height:143px;width:100%;float:left}.video-slider{width:860px;height:143px;position:absolute;margin-left:40px;z-index:1}.slider-video-wr #demo5-btn{height:143px;width:100%;position:relative}.slider-video-wr #demo5-backward{position:absolute;left:0;z-index:2;width:16px;height:24px;background:url(../images/gallery-left.png) no-repeat;top:50%;margin-top:-12px;border:none;cursor:pointer;outline:none}.slider-video-wr #demo5-forward{position:absolute;right:0;z-index:2;width:16px;height:24px;background:url(../images/gallery-right.png) no-repeat;top:50%;margin-top:-12px;border:none;cursor:pointer;outline:none}.video-slider ul{min-width:860px}.video-slider li{position:relative;width:200px!important;height:143px!important;margin-left:20px!important;overflow:hidden}.video-slider li:first-child{margin-left:0!important}.ytp-large-play-button.ytp-button{display:none!important}.video-slider iframe{width:100%!important;height:100%!important;z-index:1}.video-slider li a{width:100%;height:100%;position:absolute;top:0;left:0;z-index:4;background:url(../images/button_video_01.png) 50% 50% no-repeat;transition:.3s}.video-slider li a:hover{background:url(../images/button_video_02.png) 50% 50% no-repeat}.video-slider li span{display:block;width:100%;height:100%;background:#000;opacity:.6;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=60);position:absolute;top:0;left:0;z-index:3}.video-full{width:840px;height:560px;position:fixed;top:0;left:50%;margin-left:-420px;z-index:9992;margin-top:-280px;opacity:0;display:none;}.video-full-iframe{width:100%;height:100%;display:block}.video-full .closed-form{top:17px;right:-13px}.section-box-20 .performer-vacancy-sidebar-img{margin-bottom:6px}.gallery-performer-wrapper{overflow:hidden;margin-top:32px}.gallery-performer-margin{float:left;width:973px;margin-left:-33px}.navi-buttons-wr.gallery-style{margin-bottom:50px;margin-top:0}.gallery-box{width:210px;height:150px;float:left;background:#f1f1f1;margin-left:33px;margin-bottom:40px;transition:.3s}.gallery-box:hover{opacity:.8}.gallery-box:nth-child(4n){margin-left:34px}.gallery-box-min img{width:210px;height:150px}.gallery-box-hidden,.gallery-box-preview,.gallery-box-big{display:none}.gallery-box-min{display:block}.gallery-page{width:940px;height:710px;float:left;display:none;z-index:9992;position:fixed;left:50%;margin-left:-470px;top:0}.gallery-box-big-wrapper-first{width:840px;height:560px;margin:0 auto}.gallery-show-big-wrp{width:840px;height:560px;margin:0 auto;position:relative}.galley-show-min-wrapper{width:840px;margin:0 auto;overflow:hidden;padding-top:40px;height:108px}.gallery-show-big tr{display:none}.gallery-show-big tr:first-child{display:block}.gallery-show-big tr td{vertical-align:middle;width:840px;height:560px;text-align:center}.gallery-show-big img{max-width:100%;max-height:100%;vertical-align:middle;position:relative}.gallery-show-min img{margin-right:20px;cursor:pointer}.gallery-show-min img:last-child{margin-right:0}.gallery-show-min{float:left;position:relative;height:108px}.border-gallery{position:absolute;top:0;left:0;width:148px;height:104px;border:2px solid #adff2f}.gallery-min-left,.gallery-min-right,.copy-gallery-min-left,.copy-gallery-min-right{width:35px;height:108px;position:absolute;bottom:0;cursor:pointer;transition:.3s;z-index:2}.copy-gallery-min-left,.copy-gallery-min-right,.copy-gallery-big-left,.copy-gallery-big-right{z-index:1!important;opacity:.35}.gallery-min-left,.copy-gallery-min-left{left:0;background:url(../images/gallery-left.png) 0 50% no-repeat}.gallery-min-right,.copy-gallery-min-right{right:0;background:url(../images/gallery-right.png) 100% 50% no-repeat}.copy-gallery-big-left,.copy-gallery-big-right,.gallery-big-left,.gallery-big-right{width:35px;height:100%;position:absolute;cursor:pointer;z-index:2;top:0}.gallery-big-left,.copy-gallery-big-left{left:-50px;background:url(../images/gallery-left.png) 0 50% no-repeat}.gallery-big-right,.copy-gallery-big-right{right:-50px;background:url(../images/gallery-right.png) 100% 50% no-repeat}.gallery-page-sidebar .performer-vacancy-sidebar-left{top:-190px}.gallery-page-sidebar .performance-vacancy-sidebar-company-wr{padding-top:0;margin-top:-6px}.gallery-page-sidebar .vote-hover,.blocks-check-list-wrapp .vote-hover{padding:0!important}.gallery-page-sidebar .rating,.blocks-check-list-wrapp .rating{padding-left:0!important}.blocks-check-list-wrapp .rating{margin-bottom:16px}.blocks-check-list-wrapp .vote-result,.blocks-check-list-wrapp .vote-success{display:none}.section-box-22{margin-top:30px}.left-search-work{width:200px;float:left;box-shadow:0 0 5px 0 rgba(149,149,149,0.75);border-radius:4px;box-sizing:border-box;padding:17px 10px 20px;margin-bottom:50px}.right-search-work{width:720px;float:right;padding-bottom:50px}.blocks-check-list-wrapp{width:100%;float:left;position:relative;margin-top:1px}.blocks-check-list-wrapp:first-child{margin-top:0}.blocks-check-title{width:100%;float:left;font-size:13px;font-weight:700;margin-bottom:5px}.search-work-form select{border:1px solid #dcdcdc;height:29px;width:180px;float:left;cursor:pointer;color:#636363;font-size:13px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent;margin-bottom:16px}.search-work-form select option:first-child{border-top:none}.select-after{position:absolute;width:8px;height:4px;display:block;margin-top:-0;right:9px;background:url(../images/arrow-select.png) no-repeat;bottom:28px}.blocks-check-list input[type="checkbox"],.blocks-check-list input[type="radio"]{display:none}.search-work-form input[type="checkbox"] + label,.search-work-form input[type="radio"] + label{color:#0072bc;text-decoration:underline;font-size:13px;cursor:pointer;margin-left:6px}.search-work-form input[type="checkbox"] + label span{width:12px;height:12px;background:url(../images/check.png) no-repeat;float:left;transition:.2s;margin-top:4px}.search-work-form input[type="checkbox"]:checked + label span{background:url(../images/check-active.png) no-repeat}.search-work-form input[type="radio"] + label span{width:12px;height:12px;background:url(../images/radio.png) no-repeat;float:left;transition:.2s;margin-top:4px}.search-work-form input[type="radio"]:checked + label span{background:url(../images/radio-active.png) no-repeat}.blocks-check-list{margin-bottom:3px}.blocks-check-list:last-child{margin-bottom:14px}.blocks-check-list-submit{width:100%;float:left;margin-top:6px}.blocks-check-list-submit input[type="submit"]{width:82px;height:29px;border:1px solid #0072bc;background:#0072bc;color:#fff;text-align:center;margin:0 auto;border-radius:4px;display:block;font-size:13px;cursor:pointer;transition:.2s}.blocks-check-list-submit input[type="submit"]:hover{background:#fff;color:#0072bc}.search-worker-title{font-size:18px;margin-top:-3px}.search-worker-title-two{font-size:13px;font-weight:700;margin-top:4px}.search-worker-title-two span{color:#fc9b28}.search-worker-search-wr{border-bottom:1px solid #dcdcdc;margin-top:17px;padding-bottom:12px}.search-worker-form{float:left}.search-worker-form input{width:300px;height:29px;color:#636363;background:#fff;border:1px solid #dcdcdc;box-sizing:border-box;padding-left:8px;float:left}.search-worker-form input[type="submit"]{float:left;width:82px;height:29px;border:1px solid #0072bc;background:#0072bc;color:#fff;text-align:center;border-radius:4px;display:block;font-size:13px;cursor:pointer;transition:.2s;padding-left:0;margin-left:6px}.search-worker-form input[type="submit"]:hover{background:#fff;color:#0072bc}.add-to-catalog-search-worker{float:right;width:197px;height:29px;border-bottom:1px solid #3e9825;background:#63bf49;color:#fff;line-height:29px;box-sizing:border-box;position:relative;border-radius:4px;padding-left:34px;font-size:13px;display:block;text-decoration:none;transition:.2s}.add-to-catalog-search-worker:after{position:absolute;width:18px;height:18px;top:50%;margin-top:-9px;left:10px;content:'';display:block;background:url(../images/add_catalog.png) no-repeat}.add-to-catalog-search-worker:hover{border-bottom:1px solid #63bf49;background:#3e9825}.search-worker-sort{float:left;font-size:13px;color:#636363}.search-worker-sort-wr ul{float:left;margin-top:-2px}.search-worker-sort-wr ul li{list-style:none}.search-worker-sort-wr ul li a{font-size:13px;color:#0072bc;text-decoration:none;position:relative;border-bottom:1px dashed #0072bc}.activejob a:after{position:absolute;display:block;content:'';width:8px;height:4px;right:-14px;top:6px;background:url(../images/arrow-select.png) no-repeat}.search-worker-sort-wr{margin-top:17px}.search-worker-sort-wr .sidebar-droped-wr a{text-decoration:none;border-bottom:none}.search-worker-sort-wr .sidebar-droped-wr ul li{padding-bottom:4px;border-radius:0}.search-worker-sort-wr .sidebar-droped-wr ul li a{padding:0 10px}.search-worker-sort-wr .sidebar-droped-wr.act{margin-left:-10px}.search-worker-blocks{width:100%;float:left;padding-bottom:20px;border-bottom:1px solid #dcdcdc;margin-top:30px}.search-worker-blocks:first-child{margin-top:20px}.search-worker-blocks-foto-wr{width:318px;float:left}.search-worker-blocks-text-wr{width:382px;float:right}.search-worker-blocks-ico-wr{width:48px;float:left}.search-worker-blocks-title-wr{width:322px;float:right}.search-worker-blocks-title-pro,.search-worker-blocks-title{float:left}.search-worker-blocks-title-pro{margin-right:12px;color:#fff;width:33px;height:16px;background:#0e84cf;border-radius:4px;font-size:11px;line-height:17px;text-align:center}.search-worker-blocks-title{font-size:18px;margin-top:-4px}.rating-new{float:left;margin-right:12px;margin-top:5px}.rating-new .vote-result,.rating-new .vote-success{display:none}.rating-new .vote-hover{padding:0!important}.search-worker-blocks-atr{float:left;margin-top:5px}.search-worker-blocks-buttons a{float:right;height:28px;color:#fff;text-decoration:none;font-size:13px;line-height:29px;border-radius:4px;margin-left:4px;position:relative}.get-project,.get-project-new{border-bottom:1px solid #ef8505;background:#fd9d2b;background:-moz-linear-gradient(top,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);background:-webkit-linear-gradient(top,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);background:linear-gradient(to bottom,rgba(253,157,43,1) 0%,rgba(248,148,30,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9d2b',endColorstr='#f8941e',GradientType=0);padding:0 10px 0 34px}.get-project:after{width:18px;height:18px;content:'';display:block;background:url(../images/search-warker/ico-1.png) no-repeat;top:50%;margin-top:-9px;left:10px;position:absolute}.get-list,.get-list-new{border-bottom:1px solid #0054a6;background:#148ad6;background:-moz-linear-gradient(top,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);background:-webkit-linear-gradient(top,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);background:linear-gradient(to bottom,rgba(20,138,214,1) 0%,rgba(0,114,188,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#148ad6',endColorstr='#0072bc',GradientType=0);padding:0 10px 0 31px}.get-list:after{width:15px;height:18px;content:'';display:block;background:url(../images/search-warker/ico-2.png) no-repeat;top:50%;margin-top:-9px;left:10px;position:absolute}.get-project:hover,.get-project-new:hover{background:#f8941e;background:-moz-linear-gradient(top,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);background:-webkit-linear-gradient(top,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);background:linear-gradient(to bottom,rgba(248,148,30,1) 0%,rgba(253,157,43,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8941e',endColorstr='#fd9d2b',GradientType=0)}.get-list:hover,.get-list-new:hover{background:#0072bc;background:-moz-linear-gradient(top,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);background:-webkit-linear-gradient(top,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);background:linear-gradient(to bottom,rgba(0,114,188,1) 0%,rgba(20,138,214,1) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0072bc',endColorstr='#148ad6',GradientType=0)}.search-worker-blocks-status{font-size:13px;height:16px;margin-top:6px}.search-worker-blocks-status img{float:left;margin-right:6px}.search-worker-blocks-status span{height:16px;display:block;line-height:16px;float:left}.search-worker-blocks-visit{font-size:13px}.search-worker-blocks-visit,.search-worker-blocks-geographic{font-size:13px;line-height:16px}.search-worker-blocks-visit span,.search-worker-blocks-geographic span{font-weight:700}.search-worker-blocks-geographic{margin-top:13px}.search-worker-blocks-visit{margin-top:17px}.search-worker-blocks-tags a{font-size:13px;color:#636363;text-decoration:underline}.search-worker-blocks-tags a:hover{text-decoration:none}.search-worker-blocks-jobs-portfolio{float:left;font-size:13px;color:#0072bc;text-decoration:underline;margin-top:16px;line-height:16px}.search-worker-blocks .land-stars-pro,.search-worker-blocks .land-stars-new{margin-right:11px}.search-worker-blocks-tags{margin-top:18px;line-height:17px}.search-worker-blocks-buttons{margin-top:49px}.gallery-box-search{width:100%;float:left;height:auto;margin-left:0;background:none;margin-bottom:0;transition:none}.big-img-search{width:100%;float:left;text-align:center;display:block;max-height:228px;height:228px}.big-img-search img{width:318px;height:228px}.small-img-search{width:100px;height:72px;float:left;margin-top:20px;margin-right:9px}.small-img-search img{width:100%;height:100%}.small-img-search:last-of-type{margin-right:0}.section-box-23{height:500px;background:url(../images/landing-order-project/bg-23.jpg) 50% no-repeat}.section-box-23 .landing-reg-button a{border-bottom:3px solid #ef8505;width:248px;background:#fd9d2b;background:-moz-linear-gradient(top,#fd9d2b 0%,#f8941e 100%);background:-webkit-linear-gradient(top,#fd9d2b 0%,#f8941e 100%);background:linear-gradient(to bottom,#fd9d2b 0%,#f8941e 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9d2b',endColorstr='#f8941e',GradientType=0)}.section-box-23 .landing-reg-button a:hover{border-bottom:3px solid #fd9d2b;width:248px;background:#f8941e;background:-moz-linear-gradient(top,#f8941e 0%,#fd9d2b 100%);background:-webkit-linear-gradient(top,#f8941e 0%,#fd9d2b 100%);background:linear-gradient(to bottom,#f8941e 0%,#fd9d2b 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8941e',endColorstr='#fd9d2b',GradientType=0)}.workplace-wr{width:100%;float:left;margin-top:-1px}.workplace-title{font-size:18px}.workplace-experience-post{width:100%;float:left;margin-top:17px}.workplace-experience-post:first-child{margin-top:0}.workplace-experience-post-title,.workplace-experience-post-date,.workplace-experience-post-vacancy{font-size:13px;line-height:18px}.workplace-experience-post-title{font-weight:700}.workplace-experience-wr{margin-top:16px}.portfolio-project-tags{margin-top:9px;padding-right:90px;box-sizing:border-box;margin-left:-16px}.portfolio-project-tags a{color:#636363;font-size:13px;text-decoration:underline;margin-left:16px;display:block;float:left;line-height:20px;transition:.3s}.portfolio-project-tags a:hover{opacity:.8}.portfolio-project-tags a.active-tag{color:#0072bc;text-decoration:none;cursor:default}.portfolio-project-tags a.active-tag:hover{opacity:1}.portfolio-project-blocks-wrapper{width:750px;float:left;margin:6px 0 0 -20px}.portfolio-project-blocks-wr{width:230px;height:270px;border:1px solid #dfdfdf;float:left;margin:20px 0 0 18px;box-shadow:0 0 5px 0 rgba(149,149,149,0.75);border-radius:6px}.portfolio-project-blocks-img-title{width:100%;height:201px;background:#f1f1f1;float:left;box-sizing:border-box;padding:10px 10px 0}.portfolio-project-blocks-img{width:210px;height:150px;text-align:center;display:table-cell;vertical-align:middle;transition:.3s}.portfolio-project-blocks-img img{vertical-align:middle;max-width:210px;max-height:150px}.portfolio-project-blocks-title-wr{height:41px;width:100%;box-sizing:border-box;padding-left:11px}.portfolio-project-blocks-title{width:210px;height:41px;display:table-cell;vertical-align:middle;line-height:16px}.portfolio-project-blocks-title a{vertical-align:middle;text-decoration:none;color:inherit}.portfolio-project-blocks-wr:hover .portfolio-project-blocks-title a{text-decoration:underline}.portfolio-project-blocks-wr:hover .portfolio-project-blocks-img{opacity:.85;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=85)}.portfolio-project-views-wr{border-bottom:1px solid #dbdbdb;margin:10px 10px 0;width:210px;float:left;box-sizing:border-box;padding:0 0 8px 10px;overflow:hidden}.ico-views-bl{height:18px;float:left;box-sizing:border-box;padding-right:4px}.portfolio-project-views{min-width:64px}.portfolio-project-rati{min-width:62px}.portfolio-project-views-img-wr{float:left;height:18px}.portfolio-project-views-img{height:18px;display:table-cell;vertical-align:middle}.portfolio-project-views-img img{vertical-align:middle}.portfolio-project-views-txt{height:100%;line-height:21px;float:left;margin-left:6px;font-size:13px}.portfolio-project-blocks-tags{width:100%;float:left;box-sizing:border-box;padding-left:21px;line-height:30px}.portfolio-project-blocks-tags a{font-size:13px;color:#636363}.portfolio-project-blocks-tags a:hover{text-decoration:none}.proektant-profile-content{width:480px;float:left}.proektant-profile-sidebar-right{width:220px;float:right}.proektant-profile-hidden-txt{width:100%;float:left;overflow:hidden}.proektant-profile-hidden-txt p{font-size:13px;line-height:18px}.profile-see-all{display:none;float:left;font-size:13px;color:#0072bc;text-decoration:none;border-bottom:1px dashed #0072bc;position:relative}.profile-see-all:before{background:url(../images/ico-see-all-dawn.png) no-repeat;width:8px;height:4px;display:block;content:'';position:absolute;top:50%;margin-top:-2px;right:-14px}.profile-see-all.profile-txt-big:before{transform:rotate(180deg)}.proektant-profile-courses-wr{border-bottom:1px solid #dcdcdc;padding-bottom:15px}.proektant-profile-courses{width:100%;float:left;margin-top:18px}.proektant-profile-courses-title,.proektant-profile-courses-year,.proektant-profile-courses-content{font-size:13px;line-height:18px;width:100%;float:left}.proektant-profile-courses-title{font-weight:700}.proektant-profile-stat-table{margin-top:9px}.proektant-profile-stat-table table td{height:33px}.proektant-profile-stat-table table tr:first-child td{height:35px;background:#f1f1f1;border-top:none;font-weight:700}.proektant-profile-stat-table table td{border-left:1px solid #dfdfdf;font-size:13px}.proektant-profile-stat-table table tr td{border-top:1px solid #f1f1f1;text-align:center}.proektant-profile-stat-table table tr td:first-child{text-align:left;padding-left:11px}.proektant-profile-stat-title{font-size:18px;margin-top:2px}.proektant-profile-stat-title-h2{font-size:13px;font-weight:700;margin-top:4px}.proektant-profile-statistic-wr{margin-top:26px}.proektant-profile-tb-blocks{width:100%;float:left;margin-top:23px}.proektant-profile-tb-blocks:first-child{margin-top:0}.proektant-profile-tb-blocks:first-child .proektant-profile-stat-title{margin-top:0}.proektant-profile-tb-blocks:first-child .proektant-profile-stat-table{margin-top:12px}table.last-tabl-profile tr:first-child td{height:41px}img.flag-ico-profile{margin-left:-3px}.profile-phone-site>div{height:18px;display:table-cell;vertical-align:middle;margin-top:10px}.profile-phone-site>div:first-child{margin-top:0}.profile-phone-site img{vertical-align:middle;margin-right:4px}.profile-phone span{font-size:15px;color:#000;vertical-align:middle}.profile-site a{color:#636363;text-decoration:none;vertical-align:middle}.profile-site a:hover{text-decoration:underline}.profile-phone-site{padding-bottom:19px;border-bottom:1px solid #dbdbdb}.profile-features ul{width:100%;float:left;margin-top:26px;border-bottom:1px solid #dbdbdb;padding-bottom:13px}.profile-features li{list-style:none;font-size:13px;line-height:16px;margin-top:17px}.profile-features li:first-child{margin-top:0}.profile-features li span{font-weight:700}.features-tags .features-tags-left{color:#0072bc;border-bottom:1px dashed #0072bc;text-decoration:none;font-size:13px;position:relative}.features-tags .features-tags-left:after{position:absolute;display:block;content:'';width:8px;height:4px;right:-14px;top:6px;background:url(../images/arrow-select.png) no-repeat}.features-tags span:first-child{margin-left:0}.features-tags span.features-tags-display{display:none}.features-tags{width:100%;float:left;line-height:18px;margin-bottom:17px}.features-tags a{color:#636363;font-size:13px}.profile-comments{margin-top:26px}.profile-comments .company-performer-comm-title{text-align:left}.profile-comments .company-performer-comments-wr{margin-top:9px}.profile-comments .company-performer-comments-bl{margin-left:0;margin-top:21px}.profile-comments .company-performer-comments-bl:first-child{margin-top:0}.profile-comments .company-performer-comm-see-all-butt{margin-top:27px}ul.proektant-comments{margin-top:15px}.proektant-comments li{width:100%;float:left;list-style:none;border-bottom:1px solid #dcdcdc;padding-bottom:17px;margin-top:27px}.proektant-comments li:first-child{margin-top:0}.proektant-comments li>div{float:left;width:100%;font-size:13px}.comments-name{font-weight:700}.comments-project-link a{color:#0073bc;text-decoration:underline}.comments-status span{color:#0072bc;border-bottom:1px dashed #0072bc}.comments-status,.comments-date,.proektant-comments .rating{margin-top:3px}.comments-content{line-height:18px;margin-top:11px}.comments-project-link{margin-top:19px}.search-company-block{width:100%;float:left;padding-bottom:20px;border-bottom:1px solid #dcdcdc;margin-top:18px}.search-company-block:first-child{margin-top:0;margin-top:0}.search-company-block-left{width:400px;float:left}.search-company-block-right{width:320px;float:right}.search-company-block-left .search-worker-blocks-title-wr{float:left;width:100%!important}.search-company-block-left .land-stars-pro,.land-stars-new{margin-right:11px}.search-company-worker{font-size:18px;margin-top:6px;display:block}.search-company-geography,.search-company-visit{font-size:13px;line-height:16px}.search-company-geography span,.search-company-visit span{font-weight:700}.search-company-geography{margin-top:17px}.search-company-visit{margin-top:14px}.search-company-blocks-wr{margin-top:18px}.search-company-blocks-wr .rating-new,.search-company-blocks-wr .search-worker-blocks-atr{margin-top:6px}.search-company-blocks-wr .features-tags{margin-top:15px;margin-bottom:0}.search-company-blocks-wr .search-worker-blocks-buttons{margin-top:38px;box-sizing:border-box;padding-left:35px}.search-company-blocks-wr .search-worker-blocks-buttons a{float:left}.search-company-blocks-wr .search-worker-blocks-foto-wr{float:right}.search-company-blocks-wr .gallery-box:hover{opacity:1}.logo-img-search-company-wrapper,.logo-img-search-company{height:228px;width:100%}.logo-img-search-company-wrapper{float:left;text-align:center;display:block;max-height:228px}.logo-img-search-company-wrapper table{height:228px}.logo-img-search-company-wrapper table img{vertical-align:middle;max-width:318px;max-height:228px;text-align:center}.proektant-client-txt,.proektant-client-txt p{width:100%;float:left;font-size:13px;line-height:18px}.proektant-client-txt p{margin-top:18px}.proektant-client-txt p:first-child{margin-top:0}.proektant-client-wr .features-tags{margin-bottom:0}.proektant-client-address-title,.proektant-client-address-coordinates{width:100%;float:left}.proektant-client-address-title{font-size:18px}.proektant-client-address-coordinates{font-weight:700;margin-top:10px}.proektant-client-address-map{width:100%;height:280px;float:left;margin-top:22px}.proektant-client-address-map iframe,.video-full iframe{width:100%!important;height:100%!important}.proektant-client-address-wr{margin-top:31px}.vacancy-general-sidebar-wr .left-search-work{margin-top:2px}.main-menu.main-menu-buttons{width:440px}.main-menu-icons-wr{width:104px;height:41px;float:right;margin-right:20px;position:relative}.main-menu-icons-wr a{height:24px;float:left;margin-left:20px;margin-top:9px}.main-menu-icons-wr a:first-child{margin-left:0}.main-menu-icons-home{width:24px;background:url(../images/menu_icons.png) no-repeat}.main-menu-icons-edit{width:20px;background:url(../images/menu_icons.png) -24px 0 no-repeat}.main-menu-icons-copy{width:20px;background:url(../images/menu_icons.png) -44px 0 no-repeat}#modal_form_favorite,#modal_form_offer,#modal_form_question{width:460px;height:263px;position:absolute;top:30%;left:50%;margin-left:-267px;display:none;opacity:0;z-index:9992}#modal_form_question{height:533px}#modal_form_favorite .res_form_line{bottom:85px}.page-favorite{height:85px;width:100%;position:absolute;bottom:0;text-align:center}.page-favorite a{color:#0c81cc;font-size:13px;text-decoration:underline;line-height:85px}.page-favorite a:hover{text-decoration:none}.favorite-user-wr{margin-top:26px;float:left}.favorite-user-wr img{max-width:48px;max-height:48px;margin-left:156px;float:left;margin-right:13px}.favorite-user-profile{float:left;width:240px;overflow:hidden;font-size:13px;margin-top:17px}.favorite-user-profile-add{float:left;width:240px;overflow:hidden;font-size:13px}.favorite-user-profile-add img{float:left;width:16px;height:16px;margin-right:10px;margin-left:0}.favorite-user-profile-add span{line-height:18px}form.offer-project{height:531px}#off_submit{bottom:25px;width:180px;left:50%;margin:0 0 0 -90px;position:absolute}.cabinet-message-blocks-wr{margin-top:3px}.cabinet-message-blocks{width:100%;height:180px;box-sizing:border-box;border:1px solid #b7b7b7;float:left;margin-top:30px}.cabinet-message-blocks:first-child{margin-top:0}.ico-sender-wrapper{width:160px;height:160px;float:left;margin:9px 0 0 9px}.ico-sender{width:160px;height:160px;display:table-cell;vertical-align:middle;text-align:center}.ico-sender img{max-width:100%;max-height:100%;vertical-align:middle}.cabinet-message-text-wrapper{width:540px;height:100%;box-sizing:border-box;margin-left:30px;float:left}.cabinet-message-title{font-size:18px;color:#b7b7b7;margin-top:56px;line-height:18px}.cabinet-message-message{height:32px;margin-top:21px}.cabinet-message-message-ico{width:44px;height:32px;float:left;margin-right:26px;background:url(../images/cabinet-message/ico-1.png) no-repeat}.cabinet-message-message a{line-height:32px;color:#b7b7b7;text-decoration:none}.cabinet-message-status{font-size:13px;color:#b7b7b7;margin-left:70px;margin-top:1px}.cabinet-message-write{width:179px;height:178px;display:block;float:right;background:#b7b7b7;text-align:center;text-decoration:none}.cabinet-message-write-ico{width:42px;height:40px;margin-top:65px;margin-left:72px;background:url(../images/cabinet-message/ico-3.png) no-repeat}.cabinet-message-write-txt{color:#fff;text-decoration:underline;margin-top:11px}.cabinet-message-write:hover .cabinet-message-write-txt{text-decoration:none}.cabinet-message-blocks.new-message-cabinet-blocks{border:1px solid #0072bc}.new-message-cabinet-blocks .cabinet-message-title{color:#0072bc}.new-message-cabinet-blocks .cabinet-message-message a{color:#0072bc;font-weight:700}.new-message-cabinet-blocks .cabinet-message-message-ico{background:url(../images/cabinet-message/ico-1.png) -44px 0 no-repeat}.new-message-cabinet-blocks .cabinet-message-write{background:#0072bc}.search-worker-title span{color:#fc9b28;font-weight:700;margin-top:28px;display:block}.search-performer-button-bookmark{width:100%;height:54px;position:relative;margin-top:-2px}.search-performer-button-bookmark a{position:absolute;right:-10px;top:0;width:214px;height:53px;border-bottom:1px solid #0054a6;line-height:54px;font-size:18px;color:#fff;background:#148ad6;background:-moz-linear-gradient(top,#148ad6 0%,#0072bc 100%);background:-webkit-linear-gradient(top,#148ad6 0%,#0072bc 100%);background:linear-gradient(to bottom,#148ad6 0%,#0072bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#148ad6',endColorstr='#0072bc',GradientType=0);transition:.2s;text-decoration:none;text-align:center}.search-performer-button-bookmark a:hover{background:#0072bc;background:-moz-linear-gradient(top,#0072bc 0%,#148ad6 100%);background:-webkit-linear-gradient(top,#0072bc 0%,#148ad6 100%);background:linear-gradient(to bottom,#0072bc 0%,#148ad6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0072bc',endColorstr='#148ad6',GradientType=0)}.search-performer-button-bookmark a:before{display:block;content:'';position:absolute;left:16px;border:27px solid transparent;border-top:7px solid #fff;transform:rotate(270deg);height:52px;top:-16px}.search-performer-button-performers,.search-performer-button-customers,.search-performer-button-project{width:170px;height:43px;line-height:45px;text-align:center;color:#fff;text-decoration:none;font-size:16px;margin-top:15px;display:block;transition:.2s;border-radius:4px}.search-performer-button-performers{margin-top:30px;border-bottom:2px solid #ef8505;background:#fd9d2b;background:-moz-linear-gradient(top,#fd9d2b 0%,#f8941e 100%);background:-webkit-linear-gradient(top,#fd9d2b 0%,#f8941e 100%);background:linear-gradient(to bottom,#fd9d2b 0%,#f8941e 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fd9d2b',endColorstr='#f8941e',GradientType=0)}.search-performer-button-performers:hover{background:#f8941e;background:-moz-linear-gradient(top,#f8941e 0%,#fd9d2b 100%);background:-webkit-linear-gradient(top,#f8941e 0%,#fd9d2b 100%);background:linear-gradient(to bottom,#f8941e 0%,#fd9d2b 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#f8941e',endColorstr='#fd9d2b',GradientType=0)}.search-performer-button-customers{border-bottom:2px solid #3e9825;background:#6bcb50;background:-moz-linear-gradient(top,#6bcb50 0%,#60bb46 100%);background:-webkit-linear-gradient(top,#6bcb50 0%,#60bb46 100%);background:linear-gradient(to bottom,#6bcb50 0%,#60bb46 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6bcb50',endColorstr='#60bb46',GradientType=0)}.search-performer-button-customers:hover{background:#60bb46;background:-moz-linear-gradient(top,#60bb46 0%,#6bcb50 100%);background:-webkit-linear-gradient(top,#60bb46 0%,#6bcb50 100%);background:linear-gradient(to bottom,#60bb46 0%,#6bcb50 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#60bb46',endColorstr='#6bcb50',GradientType=0)}.search-performer-button-project{border-bottom:2px solid #0054a6;background:#148ad6;background:-moz-linear-gradient(top,#148ad6 0%,#0072bc 100%);background:-webkit-linear-gradient(top,#148ad6 0%,#0072bc 100%);background:linear-gradient(to bottom,#148ad6 0%,#0072bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#148ad6',endColorstr='#0072bc',GradientType=0)}.search-performer-button-project:hover{background:#0072bc;background:-moz-linear-gradient(top,#0072bc 0%,#148ad6 100%);background:-webkit-linear-gradient(top,#0072bc 0%,#148ad6 100%);background:linear-gradient(to bottom,#0072bc 0%,#148ad6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0072bc',endColorstr='#148ad6',GradientType=0)}.cabinet-message-read-autor-wr{margin-top:3px;height:200px;box-shadow:0 0 5px 0 rgba(149,149,149,0.75)}.cabinet-message-read-foto-wr{width:180px;height:180px;float:left;margin:10px 0 0 10px}.cabinet-message-read-foto{width:180px;height:180px;text-align:center;display:table-cell;vertical-align:middle}.cabinet-message-read-foto img{max-width:100%;max-height:100%;vertical-align:middle}.cab-mes-read-cont{width:214px;float:left;overflow:hidden;margin-left:30px}.cab-mes-read-cont>div{width:100%}.cab-mes-read-cont-title{color:#0072bc;font-size:24px;margin-top:13px;text-decoration:none}.cab-mes-read-cont-com{color:#0072bc;margin-top:10px;text-decoration:none}.cab-mes-read-cont-stars{height:16px;margin-top:14px}.cab-mes-read-cont-soc a{margin-right:1px}.cab-mes-read-cont-soc{width:135px!important;margin-top:11px}.cabinet-message-read-autor-wr .performance-vacancy-add-favorite{height:100%;float:left;margin-left:2px}.cab-mes-read-last-visit{width:390px;float:right;height:100%;box-sizing:border-box;padding-top:42px}.cab-mes-read-min-bl{width:170px;float:left;margin-top:15px}.cab-mes-read-min-bl .profile-phone-site{padding-bottom:0;border-bottom:0}.cab-mes-read-min-bl .profile-site img{margin-right:7px}.cab-mes-read-min-bl p{padding-left:18px;box-sizing:border-box;font-size:13px}.cabinet-message-read-wr{margin-top:30px}.search-profile-blocks{background:#fcfcfc;margin-top:30px;box-sizing:border-box;border-radius:4px;padding:10px 0 11px 15px;float:left}.search-profile-blocks:first-child{margin-top:0}.search-profile-blocks-wr{margin-top:46px}.srch-prof-title{font-size:21px;text-decoration:none;color:inherit}.search-profile-blocks:hover .srch-prof-title{text-decoration:underline}.srch-prof-budget{font-size:18px;margin-top:11px}.srch-prof-budget span{width:10px;height:10px;display:block;background:#0072bc;float:left;margin-top:6px;margin-right:15px}.srch-prof-contract-wr{margin-top:28px}.srch-prof-contract-button{text-transform:uppercase;height:23px;line-height:23px;color:#fff;cursor:default;padding:0 13px;font-size:12px;background:#62b8ef;float:left;margin:0 12px 0 -15px}.srch-prof-contract-txt{line-height:23px}.srch-prof-contract-txt span{font-weight:700}.srch-prof-contract-txt a{text-decoration:underline;color:inherit}.srch-prof-text{margin-top:37px}.srch-prof-text p{font-size:13px;width:100%;line-height:16px;margin-top:16px}.srch-prof-text p:first-child{margin-top:0}.srch-prof-params{float:left;height:18px;line-height:18px;color:#b7b7b7}.srch-prof-params-city{margin-right:63px}.srch-prof-params-city img{margin:3px 10px 0 0}.srch-prof-params-wr{margin-top:22px;height:18px}.srch-prof-params-clock{margin-right:62px}.srch-prof-params img{margin:3px 10px 0 0}.navi-buttons-yet-wr{position:relative;height:50px}.navi-buttons-yet-wr .pagination{margin-top:10px}.navi-buttons-yet{display:block;float:right;margin-right:29px;line-height:50px;color:#333;font-size:24px;text-decoration:none;padding:0 39px;background:#f1f1f1;height:48px;border-radius:25px;border:1px solid #f1f1f1;transition:.2s}.navi-buttons-yet:hover{background:#fff;border:1px solid #0072bc}.reset-filter{text-align:center;text-decoration:none;color:#a1a1a1;font-size:13px;width:100%;float:left;display:block}.form-price-wr{width:100%;float:left;margin-bottom:5px}.check-valuta{width:40px;height:20px;float:right}.check-valuta select{width:100%;height:20px}.check-valuta .select-after{right:4px;bottom:7px}.form-price-wr input{width:53px;height:18px;border:1px solid #dcdcdc;float:left;margin-left:10px;text-align:center}.form-price-wr input:first-child{margin-left:0}.map-settings-opacity,.map-settings-wrapp{width:220px;position:absolute;left:0;top:0;bottom:0;box-sizing:border-box;padding-top:62px;z-index:998}.map-settings-opacity{background:#000;opacity:.85;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=85)}.min_markers-wrapp{width:160px;height:489px;position:absolute;top:50%;margin-top:-214px;left:30px}ul.min_markers,ul.min_markers_two{width:160px;float:left;padding-bottom:26px;border-bottom:1px solid #636363}ul.min_markers_two{border-bottom:none;margin-top:26px}.min_markers li:first-child,.min_markers_two li:first-child{margin-top:0}.min_markers li,.min_markers_two li{cursor:pointer;list-style:none;height:26px;margin-top:10px;width:160px}.min_markers li.active_m,.min_markers_two li.active_m{border:1px solid #636363;border-radius:24px;height:24px;width:158px}.min_markers li.active_m span,.min_markers_two li.active_m span{margin-left:9px;padding-top:3px}.min_markers li.active_m p,.min_markers_two li.active_m p{line-height:24px}.min_markers span,.min_markers_two span{float:left;padding-top:4px;width:24px;display:block;height:24px;box-sizing:border-box;margin-left:10px}.min_markers p,.min_markers_two p{color:#ebebeb;font-size:12px;text-transform:uppercase;float:left;line-height:26px}.min_markers:last-child .min_markers_two:last-child{padding-bottom:0;border-bottom:none;margin-top:26px}.min_markers li.last_m .min_markers_two li.last_m{height:50px}.min_markers li.last_m p,.min_markers_two li.last_m p{float:none;line-height:18px;padding-top:7px}.min_markers li.last_m span,.min_markers_two li.last_m span{margin-top:3px}.min_markers-wrapp{width:160px;height:489px;position:absolute;top:50%;margin-top:-214px;left:30px}.navi-circle-offset{position:absolute;top:0;left:0;display:block;float:left}.slider_map-wr{height:150px;width:100%;position:absolute;left:220px;bottom:0;overflow:hidden}.slider_map_overlay{opacity:.4;height:100%;width:100%;background:#000;position:absolute;left:0;bottom:0}.slider_map{height:150px;width:100%;position:absolute;left:0;bottom:0;overflow:hidden}.slider_map .scroll-img{height:110px;width:100%;overflow:hidden;position:absolute;top:50%;margin-top:-55px;left:0;z-index:10}.slider_map #demo5.scroll-img ul{width:300000px;height:100%}.slider_map .scroll-img ul li{width:300px;height:110px;display:inline-block;margin:0 10px 0 0;background:#fff;border-radius:4px}.slider_map #demo5-backward{width:15px;height:24px;display:block;background:url(../images/slider-arrow-prev.png);cursor:pointer;position:absolute;top:50%;margin-top:-12px;left:25px;z-index:333}.slider_map #demo5-forward{background:url(../images/slider-arrow-next.png);width:15px;height:24px;display:block;cursor:pointer;position:absolute;top:50%;margin-top:-12px;right:25px;z-index:333}.slider-marker-bl{width:100%;height:100%}.slider-marker-bl-img{width:110px;height:90px;margin:10px 10px 0;float:left}.slider-marker-bl-text{width:155px;height:90px;margin-top:10px;float:left}.slider_a{text-decoration:none}.slider-marker-bl-text-title{width:100%;font-weight:700;color:#333;font-size:13px;height:15px}.slider-marker-bl-text-p{height:75px;width:100%;color:#333;font-size:11px;margin-top:8px}.left-proektant-cabinet{width:100%;float:left}.left-left-proektant-cabinet{width:700px;box-sizing:border-box;padding-right:19px;float:left}.right-proektant-cabinet{width:216px;float:right;box-sizing:border-box;padding-right:9px}.left-proektant-cabinet .srch-prof-text{margin-top:11px}.left-proektant-cabinet .srch-prof-title{color:#0072bc}.left-proektant-cabinet .srch-prof-budget{margin-left:-10px}.left-proektant-cabinet .srch-prof-budget span{margin-right:9px}.left-proektant-cabinet .srch-prof-params-wr{margin-top:13px}.left-proektant-cabinet .search-profile-blocks{margin-top:26px;width:100%;padding-bottom:19px}.left-proektant-cabinet .search-profile-blocks:first-child{margin-top:0}.left-proektant-cabinet-title{font-size:21px;font-weight:700;margin-top:-4px}.cabinet-list{margin:15px 0 12px}.cabinet-list li{list-style:none;float:left;height:18px;line-height:18px;font-size:13px;margin-left:19px}.cabinet-list li:first-child{margin-left:0}.cabinet-list li img{margin-top:4px;float:left;margin-right:10px}.cabinet-list li span{border-bottom:1px solid #333}.left-proektant-cabinet .navi-buttons-yet-wr{margin-bottom:50px}.right-proektant-cabinet-candidate,.right-proektant-cabinet-message,.right-proektant-cabinet-message-new{float:right}.right-proektant-cabinet-candidate{margin-top:3px}.right-proektant-cabinet-candidate img{float:left;margin-top:10px;margin-right:6px}.right-proektant-cabinet-candidate span{font-size:11px;color:#0072bc;border-bottom:1px solid #0072bc;padding-bottom:2px}.right-proektant-cabinet-message{font-size:11px;color:#959595;margin-top:8px}.right-proektant-cabinet-message-new{margin-top:2px}.right-proektant-cabinet-message-new img{margin-top:7px;float:left;margin-right:9px}.right-proektant-cabinet-message-new a{font-size:11px;color:#0072bc}.jspContainer{overflow:hidden;position:relative}.jspPane{position:absolute}.jspVerticalBar{position:absolute;top:0;right:0;width:16px;height:100%;background:red}.jspHorizontalBar{position:absolute;bottom:0;left:0;width:100%;height:16px;background:red}.jspCap{display:none}.jspHorizontalBar .jspCap{float:left}.jspTrack{background:#dde;position:relative}.jspDrag{background:#bbd;position:relative;top:0;left:0;cursor:pointer}.jspHorizontalBar .jspTrack,.jspHorizontalBar .jspDrag{float:left;height:100%}.jspArrow{background:#50506d;text-indent:-20000px;display:block;cursor:pointer;padding:0;margin:0}.jspArrow.jspDisabled{cursor:default;background:#80808d}.jspVerticalBar .jspArrow{height:16px}.jspHorizontalBar .jspArrow{width:16px;float:left;height:100%}.jspVerticalBar .jspArrow:focus{outline:none}.jspCorner{background:#eeeef4;float:left;height:100%}* html .jspCorner{margin:0 -3px 0 0}.comments_block{width:938px;height:498px;background-color:#fcfcfc;border:1px solid #b7b7b7;border-right:none;margin-bottom:57px;color:#333;font-family:Roboto;font-size:13px;position:relative;overflow:hidden;outline:none}.comment_type{width:940px}.comment_type .pole{width:660px;margin:0 auto;position:relative}.comment_type .mes_title{font-size:18px;color:#333;margin:18px 0}.message_text{width:638px;height:78px;resize:none;border:1px solid #c2c2c2;margin:0 auto;margin-bottom:26px;margin-top:18px;padding:10px;font-family:Roboto}.send_mess_but{outline:none;border:none;cursor:pointer;font-size:12px!important;padding-top:2px;width:170px;height:43px;text-align:center;text-transform:uppercase;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr = '#148ad6',endColorstr = '#0072bc');-ms-filter:"progid:DXImageTransform.Microsoft.gradient(startColorstr = '#148ad6',endColorstr = '#0072bc')";background-image:-moz-linear-gradient(top,#148ad6,#0072bc);background-image:-ms-linear-gradient(top,#148ad6,#0072bc);background-image:-o-linear-gradient(top,#148ad6,#0072bc);background-image:-webkit-gradient(linear,center top,center bottom,from(#148ad6),to(#0072bc));background-image:-webkit-linear-gradient(top,#148ad6,#0072bc);background-image:linear-gradient(top,#148ad6,#0072bc);color:#fff;border-bottom:2px solid #0054a6;border-radius:4px;transition:.1s;top:170px;line-height:3.5}.send_mess_but:hover{opacity:.9}.send_mess_but:active{line-height:3.7}.pick_file{position:absolute;top:170px;right:0;width:130px}.pick_file .link:after{content:'';background:url(../images/skrpk.png) left center no-repeat;position:absolute;width:19px;height:21px;left:-28px;top:0}.pick_file .link{text-transform:uppercase;color:#0276c0;font-size:13px;cursor:pointer;text-decoration:none;border-bottom:1px solid #70b2db;position:relative}.pick_file .capt{color:#c2c2c2;font-size:11px;line-height:16px;margin-top:3px}.comment_text{position:relative;padding:12px 13px;width:602px;border:1px solid #c2c2c2;min-height:74px;left:10px;line-height:1.3;background-color:#fff}.comment.left .comment_text{float:left}.comment.right .comment_text{float:right}.comment.left .comment_text:before{content:'';background:url(../images/mes_bord_left.png);position:absolute;width:11px;height:11px;top:-1px;left:-11px}.comment.right .comment_text:before{content:'';background:url(../images/mes_bord_right.png);position:absolute;width:11px;height:11px;top:-1px;right:-11px}.comment.left .author_pic{float:left;margin:0 10px}.comment.right .author_pic{float:right;margin:0 25px 0 30px}.comment_time{color:#c6c6c6;font-family:Roboto;font-size:13px;font-weight:600;line-height:32px;position:absolute}.comment.left .comment_time{top:17px;right:-64px}.comment.right .comment_time{top:18px;left:-64px}.comment{position:relative;margin:30px 21px 30px 1px}.comment .offer_link a{color:#0173bd;position:relative}.comment .offer_link a:before{content:'';position:absolute;background:url(../images/skrpk_sm.png) left center no-repeat;width:19px;height:21px;left:-26px;top:-3px}.comment.right .offer_link{float:right;margin-right:94px;margin-top:12px;margin-bottom:-17px}.comment.left .offer_link{left:104px;bottom:-27px}.comment_block .content{overflow:auto;width:938px;height:498px}.fileform{background-color:#FFF;border:1px solid #CCC;border-radius:2px;cursor:pointer;height:26px;overflow:hidden;padding:2px;position:relative;text-align:left;vertical-align:middle;width:230px}.comment_type form{width:660px;margin:0 auto}.comment_type form label{color:#333;font-family:Roboto;font-size:18px}.input_file_text{color:#c2c2c2;font-size:11px;font-family:Roboto;width:125px;position:absolute;right:0;line-height:16px;top:18px;overflow:hidden;text-overflow:ellipsis;white-space:pre-line}.inputfile{float:right;position:relative;width:153px;padding-bottom:10px;background:url(../images/skrpk.png);background-repeat:no-repeat}.input_file{opacity:0;cursor:pointer;width:160px}.inputfile .file_input_title{position:absolute;color:#0276c0;border-bottom:1px solid #0276c0;text-transform:uppercase;font-family:Roboto;font-size:13px;right:0}.jspArrow{background-color:#0173bd;width:20px;height:20px}.jspVerticalBar{width:20px}.jspVerticalBar .jspArrow{height:20px}.jspTrack{background:#ebebeb;position:relative}.jspDrag{background:#c2c2c2;position:relative;top:0;left:0;cursor:pointer;border-left:2px solid #ebebeb;border-right:2px solid #ebebeb}.jspVerticalBar{background:#ebebeb}.jspArrowUp{background:#0173bd url(../images/scroll_up.png) center center no-repeat}.jspArrowUp:hover{opacity:.8}.jspArrowUp:active{background-position-y:1px!important}.jspDisabled.jspArrowUp{background:#80808d url(../images/scroll_up_grey.png) center center no-repeat}.jspArrowDown{background:#0173bd url(../images/scroll_down.png) center center no-repeat}.jspArrowDown:hover{opacity:.8}.jspArrowDown:active{background-position-y:1px!important}.jspArrowDown{background:#0173bd url(../images/scroll_down.png) center center no-repeat}.jspDisabled.jspArrowDown{background:#80808d url(../images/scroll_down_grey.png) center center no-repeat}.jspContainer{outline:none;border:none}#modal_form_offer{height:505px}#modal_form_offer,#modal_form_question{margin-top:70px}.form-resume-wr form input[type="submit"]{margin-left:55px}.form-resume-wr form{top:72px}.form-resume-wr.offer form textarea{height:60px;max-height:60px;min-height:60px;margin-bottom:13px}.form-resume-wr.question form textarea{height:185px;max-height:185px;min-height:185px}.form-resume-sub{line-height:73px}.closed-form{top:-46px;right:-45px}.list_item .pr_title{font-weight:700;margin-bottom:3px}.list_item{font-size:13px;border:1px solid #dcdcdc;position:relative;cursor:pointer}.list_item.title{margin-bottom:15px}.list_item .arrow{position:absolute;height:100%;width:25px;background-color:#0072bc;top:0;right:0;transition:.15s;transform:rotate(180deg)}.list_item:hover .arrow{opacity:.6}.list_item .arrow.up:after{content:'';position:absolute;top:22px;left:9px;border:4px solid transparent;border-bottom-color:#fff}.list_item .arrow.down:after{content:'';position:absolute;top:26px;left:9px;border:4px solid transparent;border-top-color:#fff}form.offer-project{height:406px}.list_item .main_item{padding:10px 37px 12px 12px;transition:.3s}.off_list ul li:hover{background-color:#fffccc}.act-offer-li{opacity:.6;cursor:default}.act-offer-li:hover{background-color:#fff!important}.off_list{position:absolute;width:100%;width:238px;background-color:#fff;border:1px solid #dcdcdc;left:-1px;height:109px;bottom:-110px;overflow:hidden;outline:none}.off_list .content li{list-style:none;line-height:18px;font-size:13px;padding:9px 0 10px 12px;border-bottom:1px solid #dcdcdc;width:100%;transition:.2s}.off_list .content li:last-child{border-bottom:none}.off_list .content li .title1{font-weight:700}#modal_form_offer .jspVerticalBar{position:absolute;top:0;right:0;width:25px;height:100%;background:#f1f1f1}#modal_form_offer .jspTrack{background:#f1f1f1}#modal_form_offer .jspDrag{background:#d7d7d7;border-left:3px solid #f1f1f1;border-right:2px solid #f1f1f1;box-shadow:inset 0 0 0 1px #dcdcdc}#modal_form_offer .jspVerticalBar #modal_form_offer .jspArrow{background-color:#f1f1f1}#modal_form_offer .jspArrowUp,#modal_form_offer .jspArrowUp.jspDisabled{background:url(../images/arrow-scroll-up.png) center center no-repeat;width:25px}#modal_form_offer .jspDisabled{opacity:.5;width:25px}#modal_form_offer .jspArrowDown,#modal_form_offer .jspArrowDown.jspDisabled{background:url(../images/arrow-select.png) center center no-repeat;width:25px}#modal_form_offer .jspArrow:active{background-position-y:7px}#modal_form_offer .jspArrow.jspDisabled{background-position:center center!important}.features-tags.features-tags-profile span{font-weight:400}.cabinet-profile .search-profile-blocks{width:100%}.cabinet-profile .search-profile-blocks-left{width:460px;float:left}.cabinet-profile .srch-prof-params-wr{width:150px;float:right;margin-top:8px;height:auto}.cabinet-profile .srch-prof-params-wr > div{margin:0}.cabinet-profile .srch-prof-params-wr .srch-prof-params{width:100%;float:left;font-weight:700}.section-box-tender-title{font-size:21px;text-align:center;margin-top:25px}.tender-contract-wr{height:23px;margin-top:30px}.tender-contract-left,.tender-contract-right{height:100%;width:50%;float:left}.tender-contract-right{float:right!important}.tender-contract-left .srch-prof-contract-button{margin:0 12px 0 0}.tender-contract-right span{float:right;display:block;height:100%;line-height:23px}.tender-contract-right img{width:23px;height:23px;float:right;margin-right:10px}.tender-date{margin-top:6px}.tender-date img{float:left}.tender-date span{float:left;height:18px;line-height:18px;display:block}.cab-mes-read-min-bl .profile-phone{font-size:13px}.section-box-15.tender-page{padding-top:6px;padding-bottom:0}.tender-page .cabinet-message-read-autor-wr{margin-top:0}.section-box-tender-navi{margin-top:16px;height:25px}.section-box-tender-navi span{font-size:18px;color:#0072bc;height:100%;display:block;float:left;line-height:25px}.section-box-tender-navi a{font-size:18px;color:#0072bc;text-decoration:underline;height:100%;display:block;float:left;line-height:25px}.section-box-tender-navi img{width:40px;height:25px;float:left;margin:0 15px}.tender-info-title{font-size:18px;margin-bottom:2px}.section-box-tender-info-wr{line-height:18px;font-size:13px;margin-top:37px}.section-box-tender-txt ul{list-style:none}.section-box-tender-tags-title{font-size:20px}.section-box-tender-tags a{font-size:13px;color:#636363}.section-box-tender-tags-wr{margin-top:24px}.section-box-tender-tags{line-height:18px;margin-top:4px}.tender-map{margin-top:15px}.tender-offer-proj-title-all{text-align:center;font-size:20px;margin-top:78px}.tender-offer-proj-blocks-wr{padding-bottom:50px}.tender-offer-proj-blocks .performer-vacancy-sidebar-left{top:-10px}.tender-offer-proj-blocks{padding-bottom:17px;border-bottom:1px solid #bababa;margin-top:50px}.tender-offer-proj-blocks:first-child{margin-top:47px}.tender-see-profile{text-decoration:none;text-align:center;color:#bfbfbf;font-size:13px;transition:.2s;margin-left:-20px;width:200px;margin-top:-8px;padding-bottom:8px}.tender-see-profile:hover{text-decoration:underline}.tender-offer-proj-block-right-wr{width:740px;float:right}.tender-offer-proj-block-right{width:100px;height:100px;float:right;background:#62b8ef}.tender-offer-proj-min-blocks{width:98px;height:49px;margin-top:1px;margin-left:1px}.tender-offer-proj-min-blocks:first-child{background:#fff}.tender-offer-proj-min-blocks span{color:#fff;font-size:15px;text-transform:uppercase;text-align:center;line-height:49px;display:block}.tender-offer-proj-min-blocks:first-child span{color:#62b8ef;text-transform:none}.tender-offer-proj-block-left{width:625px;float:left;min-height:387px;box-sizing:border-box;padding-left:18px}.tender-offer-proj-block-left .search-worker-blocks-title-wr{width:100%;float:left;margin-top:14px}.search-worker-blocks-title-title{font-size:24px;float:left;margin-right:30px}.tender-offer-proj-block-left .rating-new{margin-right:30px}.link-to-comm{color:#bfbfbf;text-decoration:underline;float:left}.tender-offer-proj-block-left .rating-new,.tender-offer-proj-block-left .link-to-comm{margin-top:9px}.tender-offer-proj-txt{line-height:18px;font-size:13px;float:left;margin-top:18px;margin-bottom:21px}ul.download-list-files{width:100%;float:left;margin-bottom:21px}ul.download-list-files li{list-style:none;width:100%;float:left;height:18px}ul.download-list-files li span{width:10px;height:8px;background:url(../images/tender/ico-3.png) no-repeat;display:block;float:left;margin-top:3px;margin-left:3px}ul.download-list-files li a{float:left;font-size:13px;text-decoration:none;color:inherit;margin-left:16px}ul.download-list-files li .download-link{font-size:11px;color:#c2c2c2;margin-left:14px;margin-top:2px;opacity:0;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0)}ul.download-list-files li{margin-top:7px}ul.download-list-files li:first-child{margin-top:0}ul.download-list-files li:hover .download-link{transition:.2s;opacity:1;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=100)}.tender-more-buttons-wr{height:29px;width:600px;float:left;box-sizing:border-box;padding-left:18px}.tender-more-buttons-wr a:after{display:none}.tender-more-buttons-wr a{padding:0;height:28px;color:#fff;text-decoration:none;font-size:13px;line-height:29px;border-radius:4px;width:167px;text-align:center;display:block;float:left;margin-right:4px}.tender-add-answer-title{text-align:center;font-size:20px;margin-top:30px}.form-value-wr{height:48px;margin-top:26px}.form-value-ded-name{height:48px;float:left;line-height:48px;margin-left:18px;font-size:13px;font-weight:700}.form-value-price-wr{float:left}.form-value-price-wr .blocks-check-list-wrapp{margin-top:0;margin-left:20px}.form-value-price-wr select{border:1px solid #dcdcdc;height:20px;width:40px;float:left;cursor:pointer;color:#636363;font-size:13px;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:transparent}.form-value-price-wr .check-valuta{float:left}.form-value-price-wr .form-price-wr{width:auto;margin:14px 0 0}.form-value-price-title{float:left;height:48px;line-height:48px;margin-right:9px;font-size:13px;font-weight:700}.form-ico-ded-wr{width:320px;float:left}.form-tender-txt{margin-top:21px}.form-tender-txt textarea{width:100%;max-width:100%;border:1px solid #c2c2c2;height:100px;box-sizing:border-box;padding:8px 0 10px 11px;font-size:13px}.tender-form-buttons-wr{width:620px;float:left;margin-top:18px}.form-tender-answer form input[type="submit"]{height:45px;outline:none;color:#fff;text-transform:uppercase;font-size:13px;padding:0;border-top:none;border-left:none;border-right:none;width:170px;border-radius:4px;cursor:pointer;margin-right:10px;float:left}.tender-form-buttons-wr a{height:45px;line-height:45px;float:left;font-size:13px;color:#bfbfbf;text-decoration:none}.tender-form-buttons-wr a:hover{text-decoration:underline}.tender-file-wr{float:right;position:relative;width:200px}.tender-file-wr input[type="file"]{width:131px;height:16px;position:absolute;right:0;top:2px;opacity:0;-ms-filter:progid:DXImageTransform.Microsoft.Alpha(Opacity=0);z-index:2}.tender-file-wr .addfilemulti{position:absolute;right:0;top:2px;color:#0276c0;font-size:13px;text-decoration:underline;height:16px;line-height:16px;z-index:1}.tender-file-wr .addfilemulti:before{position:absolute;content:'';display:block;width:13px;height:14px;left:-23px;top:50%;margin-top:-7px;background:url(../images/skrpk_min.png) no-repeat}.MultiFile-remove:before{display:none!important}.MultiFile-label{height:18px}.MultiFile-list{margin-top:25px;float:right}.MultiFile-remove{float:right;margin-left:31px;margin-top:3px;width:12px;height:12px;background:url(../images/delet-file.png) no-repeat}.MultiFile-title{font-size:13px;position:relative}.MultiFile-title:before{position:absolute;content:'';width:10px;height:8px;background:url(../images/tender/ico-3.png) no-repeat;top:4px;left:-17px}.max-size{float:right;color:#c2c2c2;font-size:11px;margin-top:20px} .settings-map-ul { width: 100%;float: left; height: 27px; text-align: center;margin-top: 13px;} .settings-map-ul ul{height: 100%; display: inline-block} .settings-map-ul ul li{float: left; list-style: none; height: 100%;margin-left: 4px} .settings-map-ul ul li:first-child{margin-left: 0} .settings-map-ul ul li a{height: 100%; display: block; text-decoration: none; color: #0072bc; line-height: 27px; padding: 0 15px;} .settings-map-ul ul li a.active {background: #0072bc;color: #fff; border-radius: 27px} .settings-map-ul ul li a span {border-bottom: 1px dashed #0072bc;}.settings-map-ul ul li a.active span{border-bottom: none} .min-post-wr {width: 100%; float: left; } .min-post-block {padding-bottom: 20px; border-bottom: 1px solid #dcdcdc; width: 450px; margin-left: 40px; float: left} .min-post-block:first-child{margin-left: 0} .min-post-block a, .min-post-block a img{width: 200px;height: 153px;display: block; float: left} .min-post-txt {width: 230px;float: right;} .min-post-txt .blog-post-icons-wr {margin-top: 0} .min-post-txt a {text-decoration: none; color: inherit; height: 123px; margin-top: 14px;} .min-post-block:hover a {text-decoration: underline} .section-box-232{margin-top: 40px} .table-team-title {font-size: 18px; text-align: center;} .section-box-233{margin-top: 36px} .table-team-left {width: 450px; float: left} .table-team-right {width: 450px; float: right} .tb-team-wr {width: 100%; float: left;} .tb-team-wr table {width: 100%; float: left; font-size: 13px;} .tb-team-wr table tr{height: 33px} .title-table {background: #0072bc; color: #fff; border-top-left-radius: 5px; border-top-right-radius: 5px} .title-table td:first-child{padding-left: 20px} .all-table {border-left:1px solid #dfdfdf; border-right: 1px solid #dfdfdf; border-bottom: 1px solid #dfdfdf; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;} .all-table-first {background: #f1f1f1; font-weight: 700;border-left:1px solid #dfdfdf; border-right: 1px solid #dfdfdf;} .all-table tr td, .all-table-first tr td {border-left: 1px solid #dfdfdf} .all-table tr td:first-child, .all-table-first tr td:first-child{border-left: none} .all-table td {border-top: 1px solid #dfdfdf} .all-table tr:first-child td {border-top: none} .tb-team-wr {margin-top: 15px} .tb-team-wr table img{vertical-align: middle} | |
0 | 2 | \ No newline at end of file | ... | ... |